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/>.
26 from gnunet_testing import Peer
27 from gnunet_testing import Test
28 from gnunet_testing import Check
29 from gnunet_testing import Condition
30 from gnunet_testing import *
34 # This test tests if a fresh peer bootstraps from a hostlist server and then
35 # successfully connects to the server. When both peers are connected
36 # in transport, core, topology, fs, the server is shutdown
38 # Conditions for successful exit:
39 # Client peer has 0 connected peer in transport, core, topology, dht, fs
43 testname = "test_integration_disconnect"
48 tmp = os.getenv ("TEMP")
49 signals = [signal.SIGTERM, signal.SIGINT]
52 signals = [signal.SIGTERM, signal.SIGINT, signal.SIGHUP, signal.SIGQUIT]
54 def cleanup_onerror (function, path, excinfo):
56 if not os.path.exists (path):
58 elif not os.access(path, os.W_OK):
59 # Is the error an access error ?
60 os.chmod (path, stat.S_IWUSR)
66 shutil.rmtree (os.path.join (tmp, "c_bootstrap_server"), False, cleanup_onerror)
67 shutil.rmtree (os.path.join (tmp, "c_no_nat_client"), False, cleanup_onerror)
70 def success_disconnect_cont (check):
71 print('Peers disconnected successfully')
76 def fail_disconnect_cont (check):
79 print('Peers failed to disconnect')
82 def check_disconnect ():
83 test.p ('Shutting down bootstrap server')
86 check.add (StatisticsCondition (client, 'transport', '# peers connected',0))
87 check.add (StatisticsCondition (client, 'core', '# peers connected',0))
88 check.add (StatisticsCondition (client, 'topology', '# peers connected',0))
89 check.add (StatisticsCondition (client, 'dht', '# peers connected',0))
90 check.add (StatisticsCondition (client, 'fs', '# peers connected',0))
91 check.run_blocking (check_timeout, success_disconnect_cont, fail_disconnect_cont)
94 def success_connect_cont (check):
95 print('Peers connected successfully')
99 def fail_connect_cont (check):
102 print('Peers failed to connected!')
106 def check_connect ():
108 check.add (StatisticsCondition (client, 'transport', '# peers connected',1))
109 check.add (StatisticsCondition (client, 'core', '# peers connected',1))
110 check.add (StatisticsCondition (client, 'topology', '# peers connected',1))
111 check.add (StatisticsCondition (client, 'dht', '# peers connected',1))
112 check.add (StatisticsCondition (client, 'fs', '# peers connected',1))
114 check.add (StatisticsCondition (server, 'transport', '# peers connected',1))
115 check.add (StatisticsCondition (server, 'core', '# peers connected',1))
116 check.add (StatisticsCondition (server, 'topology', '# peers connected',1))
117 check.add (StatisticsCondition (server, 'dht', '# peers connected',1))
118 check.add (StatisticsCondition (server, 'fs', '# peers connected',1))
120 check.run_blocking (check_timeout, success_connect_cont, fail_connect_cont)
126 def SigHandler(signum = None, frame = None):
131 print('Test was aborted!')
150 signal.signal(sig, SigHandler)
152 test = Test ('test_integration_bootstrap_and_connect.py', verbose)
155 server = Peer(test, './confs/c_bootstrap_server.conf');
156 client = Peer(test, './confs/c_no_nat_client.conf');
158 if (True != server.start()):
159 print('Failed to start server')
165 # Give the server time to start
168 if (True != client.start()):
169 print('Failed to start client')
177 if ((client.started == True) and (server.started == True)):
178 test.p ('Peers started, running check')
186 if (success == False):
187 print ('Test failed')
194 except (KeyboardInterrupt, SystemExit):
195 print('Test interrupted')
199 if (success == False):