got integration tests to pass, fixes #5560
[oweals/gnunet.git] / src / integration-tests / test_integration_disconnect.py.in
1 #!@PYTHON@
2 #    This file is part of GNUnet.
3 #    (C) 2010, 2017 Christian Grothoff (and other contributing authors)
4 #
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.
9 #
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.
14 #
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/>.
17 #
18 #    SPDX-License-Identifier: AGPL3.0-or-later
19 #
20 #
21 from __future__ import print_function
22 import sys
23 import signal
24 import os
25 import subprocess
26 import re
27 import shutil
28 import time
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 *
34
35
36 #
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
40 #
41 # Conditions for successful exit:
42 # Client peer has 0 connected peer in transport, core, topology, dht, fs
43
44 #definitions
45
46 testname = "test_integration_disconnect"
47 verbose = True
48 check_timeout = 180
49
50 if os.name == "nt":
51   tmp = os.getenv ("TEMP")
52   signals = [signal.SIGTERM, signal.SIGINT]
53 else:
54   tmp = "/tmp"
55   signals = [signal.SIGTERM, signal.SIGINT, signal.SIGHUP, signal.SIGQUIT]
56
57 def cleanup_onerror (function, path, excinfo):
58   import stat
59   if not os.path.exists (path):
60     pass
61   elif not os.access(path, os.W_OK):
62     # Is the error an access error ?
63     os.chmod (path, stat.S_IWUSR)
64     function (path)
65   else:
66     raise
67
68 def cleanup ():
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)
71
72
73 def success_disconnect_cont (check):
74         print('Peers disconnected successfully')
75         global success
76         success = True;
77
78
79 def fail_disconnect_cont (check):
80         global success
81         success = False;
82         print('Peers failed to disconnect')
83         check.evaluate(True)
84
85 def check_disconnect ():
86   test.p ('Shutting down bootstrap server')
87   server.stop ()
88   check = Check (test)
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)
95
96
97 def success_connect_cont (check):
98         print('Peers connected successfully')
99         check_disconnect ()
100
101
102 def fail_connect_cont (check):
103   global success
104   success= False
105   print('Peers failed to connected!')
106   check.evaluate(True)
107
108
109 def check_connect ():
110   check = Check (test)
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))
116
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))
122
123   check.run_blocking (check_timeout, success_connect_cont, fail_connect_cont)
124
125 #
126 # Test execution
127 #
128
129 def SigHandler(signum = None, frame = None):
130         global success
131         global server
132         global client
133
134         print('Test was aborted!')
135         if (None != server):
136                 server.stop ()
137         if (None != client):
138                 client.stop ()
139         cleanup ()
140         sys.exit(success)
141
142 def run ():
143         global success
144         global test
145         global server
146         global client
147
148         server = None
149         client = None
150         success = False
151
152         for sig in signals:
153                 signal.signal(sig, SigHandler)
154
155         test = Test ('test_integration_bootstrap_and_connect.py', verbose)
156         cleanup ()
157
158         server = Peer(test, './confs/c_bootstrap_server.conf');
159         client = Peer(test, './confs/c_no_nat_client.conf');
160
161         if (True != server.start()):
162                 print('Failed to start server')
163                 if (None != server):
164                         server.stop ()
165                 cleanup ()
166                 sys.exit(success)
167
168         # Give the server time to start
169         time.sleep(5)
170
171         if (True != client.start()):
172                 print('Failed to start client')
173                 if (None != server):
174                         server.stop ()
175                 if (None != client):
176                         client.stop ()
177                 cleanup ()
178                 sys.exit(success)
179
180         if ((client.started == True) and (server.started == True)):
181                 test.p ('Peers started, running check')
182                 time.sleep(5)
183                 check_connect ()
184         server.stop ()
185         client.stop ()
186
187         cleanup ()
188
189         if (success == False):
190                 print ('Test failed')
191                 return False
192         else:
193                 return True
194
195 try:
196         run ()
197 except (KeyboardInterrupt, SystemExit):
198         print('Test interrupted')
199         server.stop ()
200         client.stop ()
201         cleanup ()
202 if (success == False):
203         sys.exit(1)
204 else:
205         sys.exit(0)