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