2 # This file is part of GNUnet.
3 # (C) 2010, 2017 Christian Grothoff (and other contributing authors)
5 # GNUnet is free software: you can redistribute it and/or modify it
6 # under the terms of the GNU Affero General Public License as published
7 # by the Free Software Foundation, either version 3 of the License,
8 # or (at your option) any later version.
10 # GNUnet is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Affero General Public License for more details.
15 # You should have received a copy of the GNU Affero General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # SPDX-License-Identifier: AGPL3.0-or-later
28 from gnunet_testing import Peer
29 from gnunet_testing import Test
30 from gnunet_testing import Check
31 from gnunet_testing import Condition
32 from gnunet_testing import *
36 # This test tests if a fresh peer bootstraps from a hostlist server and then
37 # successfully connects to the server. When both peers are connected
38 # in transport, core, topology, fs, the server is shutdown
40 # Conditions for successful exit:
41 # Client peer has 0 connected peer in transport, core, topology, dht, fs
45 testname = "test_integration_disconnect"
50 tmp = os.getenv ("TEMP")
51 signals = [signal.SIGTERM, signal.SIGINT]
54 signals = [signal.SIGTERM, signal.SIGINT, signal.SIGHUP, signal.SIGQUIT]
56 def cleanup_onerror (function, path, excinfo):
58 if not os.path.exists (path):
60 elif not os.access(path, os.W_OK):
61 # Is the error an access error ?
62 os.chmod (path, stat.S_IWUSR)
68 shutil.rmtree (os.path.join (tmp, "c_bootstrap_server"), False, cleanup_onerror)
69 shutil.rmtree (os.path.join (tmp, "c_no_nat_client"), False, cleanup_onerror)
72 def success_disconnect_cont (check):
73 print('Peers disconnected successfully')
78 def fail_disconnect_cont (check):
81 print('Peers failed to disconnect')
84 def check_disconnect ():
85 test.p ('Shutting down bootstrap server')
88 check.add (StatisticsCondition (client, 'transport', '# peers connected',0))
89 check.add (StatisticsCondition (client, 'core', '# peers connected',0))
90 check.add (StatisticsCondition (client, 'topology', '# peers connected',0))
91 check.add (StatisticsCondition (client, 'dht', '# peers connected',0))
92 check.add (StatisticsCondition (client, 'fs', '# peers connected',0))
93 check.run_blocking (check_timeout, success_disconnect_cont, fail_disconnect_cont)
96 def success_connect_cont (check):
97 print('Peers connected successfully')
101 def fail_connect_cont (check):
104 print('Peers failed to connected!')
108 def check_connect ():
110 check.add (StatisticsCondition (client, 'transport', '# peers connected',1))
111 check.add (StatisticsCondition (client, 'core', '# peers connected',1))
112 check.add (StatisticsCondition (client, 'topology', '# peers connected',1))
113 check.add (StatisticsCondition (client, 'dht', '# peers connected',1))
114 check.add (StatisticsCondition (client, 'fs', '# peers connected',1))
116 check.add (StatisticsCondition (server, 'transport', '# peers connected',1))
117 check.add (StatisticsCondition (server, 'core', '# peers connected',1))
118 check.add (StatisticsCondition (server, 'topology', '# peers connected',1))
119 check.add (StatisticsCondition (server, 'dht', '# peers connected',1))
120 check.add (StatisticsCondition (server, 'fs', '# peers connected',1))
122 check.run_blocking (check_timeout, success_connect_cont, fail_connect_cont)
128 def SigHandler(signum = None, frame = None):
133 print('Test was aborted!')
152 signal.signal(sig, SigHandler)
154 test = Test ('test_integration_bootstrap_and_connect.py', verbose)
157 server = Peer(test, './confs/c_bootstrap_server.conf');
158 client = Peer(test, './confs/c_no_nat_client.conf');
160 if (True != server.start()):
161 print('Failed to start server')
167 # Give the server time to start
170 if (True != client.start()):
171 print('Failed to start client')
179 if ((client.started == True) and (server.started == True)):
180 test.p ('Peers started, running check')
188 if (success == False):
189 print ('Test failed')
196 except (KeyboardInterrupt, SystemExit):
197 print('Test interrupted')
201 if (success == False):