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
21 from __future__ import print_function
29 from gnunet_testing import Peer
30 from gnunet_testing import Test
31 from gnunet_testing import Check
32 from gnunet_testing import Condition
33 from gnunet_testing import *
37 # This test tests if a fresh peer bootstraps from a hostlist server and then
38 # successfully connects to the server. When both peers are connected
39 # in transport, core, topology, fs, the server is shutdown
41 # Conditions for successful exit:
42 # Client peer has 0 connected peer in transport, core, topology, dht, fs
46 testname = "test_integration_disconnect"
51 tmp = os.getenv ("TEMP")
52 signals = [signal.SIGTERM, signal.SIGINT]
55 signals = [signal.SIGTERM, signal.SIGINT, signal.SIGHUP, signal.SIGQUIT]
57 def cleanup_onerror (function, path, excinfo):
59 if not os.path.exists (path):
61 elif not os.access(path, os.W_OK):
62 # Is the error an access error ?
63 os.chmod (path, stat.S_IWUSR)
69 shutil.rmtree (os.path.join (tmp, "c_bootstrap_server"), False, cleanup_onerror)
70 shutil.rmtree (os.path.join (tmp, "c_no_nat_client"), False, cleanup_onerror)
73 def success_disconnect_cont (check):
74 print('Peers disconnected successfully')
79 def fail_disconnect_cont (check):
82 print('Peers failed to disconnect')
85 def check_disconnect ():
86 test.p ('Shutting down bootstrap server')
89 check.add (StatisticsCondition (client, 'transport', '# peers connected',0))
90 check.add (StatisticsCondition (client, 'core', '# peers connected',0))
91 check.add (StatisticsCondition (client, 'topology', '# peers connected',0))
92 check.add (StatisticsCondition (client, 'dht', '# peers connected',0))
93 check.add (StatisticsCondition (client, 'fs', '# peers connected',0))
94 check.run_blocking (check_timeout, success_disconnect_cont, fail_disconnect_cont)
97 def success_connect_cont (check):
98 print('Peers connected successfully')
102 def fail_connect_cont (check):
105 print('Peers failed to connected!')
109 def check_connect ():
111 check.add (StatisticsCondition (server, 'transport', '# peers connected',1))
112 check.add (StatisticsCondition (server, 'core', '# peers connected',1))
113 check.add (StatisticsCondition (server, 'topology', '# peers connected',1))
114 check.add (StatisticsCondition (server, 'dht', '# peers connected',1))
115 check.add (StatisticsCondition (server, 'fs', '# peers connected',1))
117 check.add (StatisticsCondition (client, 'transport', '# peers connected',1))
118 check.add (StatisticsCondition (client, 'core', '# peers connected',1))
119 check.add (StatisticsCondition (client, 'topology', '# peers connected',1))
120 check.add (StatisticsCondition (client, 'dht', '# peers connected',1))
121 check.add (StatisticsCondition (client, 'fs', '# peers connected',1))
123 check.run_blocking (check_timeout, success_connect_cont, fail_connect_cont)
129 def SigHandler(signum = None, frame = None):
134 print('Test was aborted!')
153 signal.signal(sig, SigHandler)
155 test = Test ('test_integration_bootstrap_and_connect.py', verbose)
158 server = Peer(test, './confs/c_bootstrap_server.conf');
159 client = Peer(test, './confs/c_no_nat_client.conf');
161 if (True != server.start()):
162 print('Failed to start server')
168 # Give the server time to start
171 if (True != client.start()):
172 print('Failed to start client')
180 if ((client.started == True) and (server.started == True)):
181 test.p ('Peers started, running check')
189 if (success == False):
190 print ('Test failed')
197 except (KeyboardInterrupt, SystemExit):
198 print('Test interrupted')
202 if (success == False):