W32-compatible integartion tests, try to handle rmtree()ing of read-only files
[oweals/gnunet.git] / src / integration-tests / test_integration_reconnect.py.in
1 #!@PYTHON@
2 #    This file is part of GNUnet.
3 #    (C) 2010 Christian Grothoff (and other contributing authors)
4 #
5 #    GNUnet is free software; you can redistribute it and/or modify
6 #    it under the terms of the GNU General Public License as published
7 #    by the Free Software Foundation; either version 2, or (at your
8 #    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 #    General Public License for more details.
14 #
15 #    You should have received a copy of the GNU General Public License
16 #    along with GNUnet; see the file COPYING.  If not, write to the
17 #    Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 #    Boston, MA 02111-1307, USA.
19 #
20
21 import sys
22 import os
23 import subprocess
24 import re
25 import shutil
26 import time
27 import signal
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, botth peers are shutdown and restarted 
39 #
40 # Conditions for successful exit:
41 # Both peers have 1 connected peer in transport, core, topology, fs after restart
42
43 #definitions
44
45
46 testname = "test_integration_restart"
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     retries = 10
70     path = os.path.join (tmp, "c_bootstrap_server")  
71     test.p ("Removing " + path)      
72     while ((os.path.exists(path)) and (retries > 0)):
73         shutil.rmtree ((path), False, cleanup_onerror)
74         time.sleep (1)
75         retries -= 1
76     if (os.path.exists(path)):
77         test.p ("Failed to remove " + path) 
78         
79     
80     retries = 10
81     path = os.path.join (tmp, "c_no_nat_client")  
82     test.p ("Removing " + path)      
83     while ((os.path.exists(path)) and (retries > 0)):
84         shutil.rmtree ((path), False, cleanup_onerror)
85         time.sleep (1)
86         retries -= 1
87     if (os.path.exists(path)):
88         test.p ("Failed to remove " + path) 
89
90 def success_restart_cont (check):
91         global success 
92         print 'Peers connected successfully after restart'
93         server.stop ()
94         client.stop ()
95         success = True; 
96
97
98 def fail_restart_cont (check):    
99         global success 
100         success = False;
101         print 'Peers failed to connect after restart'
102         check.evaluate(True)   
103     
104
105 def success_connect_cont (check):
106         print 'Peers connected successfully'
107         server.stop ()
108         client.stop ()
109         
110         time.sleep(5)
111         
112         test.p ('Restarting client & server')
113         server.start ()
114         client.start ()
115         
116         check = Check (test)
117         check.add (StatisticsCondition (client, 'transport', '# peers connected',1))
118         check.add (StatisticsCondition (client, 'core', '# neighbour entries allocated',1))  
119         check.add (StatisticsCondition (client, 'core', '# peers connected',1))
120         check.add (StatisticsCondition (client, 'topology', '# peers connected',1))
121         check.add (StatisticsCondition (client, 'fs', '# peers connected',1))
122         
123         check.add (StatisticsCondition (server, 'transport', '# peers connected',1))
124         check.add (StatisticsCondition (server, 'core', '# neighbour entries allocated',1))  
125         check.add (StatisticsCondition (server, 'core', '# peers connected',1))
126         check.add (StatisticsCondition (server, 'topology', '# peers connected',1))
127         check.add (StatisticsCondition (server, 'fs', '# peers connected',1))  
128         
129         check.run_blocking (check_timeout, success_restart_cont, fail_restart_cont)
130
131
132 def fail_connect_cont (check):    
133         global success 
134         success= False;
135         print 'Peers failed to connect'
136         check.evaluate(True)
137
138
139 def check_connect ():
140         check = Check (test)
141         check.add (StatisticsCondition (client, 'transport', '# peers connected',1))
142         check.add (StatisticsCondition (client, 'core', '# neighbour entries allocated',1))  
143         check.add (StatisticsCondition (client, 'core', '# peers connected',1))
144         check.add (StatisticsCondition (client, 'topology', '# peers connected',1))
145         check.add (StatisticsCondition (client, 'fs', '# peers connected',1))
146         
147         check.add (StatisticsCondition (server, 'transport', '# peers connected',1))
148         check.add (StatisticsCondition (server, 'core', '# neighbour entries allocated',1))  
149         check.add (StatisticsCondition (server, 'core', '# peers connected',1))
150         check.add (StatisticsCondition (server, 'topology', '# peers connected',1))
151         check.add (StatisticsCondition (server, 'fs', '# peers connected',1))  
152         
153         check.run_blocking (check_timeout, success_connect_cont, fail_connect_cont)
154
155
156 # Test execution
157
158
159
160 def SigHandler(signum = None, frame = None):
161         global success  
162         global server
163         global client  
164         
165         print 'Test was aborted!'
166         if (None != server):
167                 server.stop ()
168         if (None != client):            
169                 client.stop ()
170         cleanup ()
171         sys.exit(success)
172
173 def run ():
174         global success
175         global test
176         global server
177         global client
178         
179         success = False
180         server = None
181         client = None   
182
183         for sig in signals:
184                 signal.signal(sig, SigHandler)
185         
186         
187         test = Test ('test_integration_disconnect', verbose)
188         cleanup ()
189         server = Peer(test, './confs/c_bootstrap_server.conf');
190         server.start();
191         
192         client = Peer(test, './confs/c_no_nat_client.conf');
193         client.start();
194         
195
196         if (True != server.start()):
197                 print 'Failed to start server'
198                 if (None != server):
199                         server.stop ()
200                 if (None != server):            
201                         client.stop ()
202                 cleanup ()
203                 sys.exit(success)
204                 
205         # Give the server time to start
206         time.sleep(5)
207                         
208         if (True != client.start()):
209                 print 'Failed to start client'
210                 if (None != server):
211                         server.stop ()
212                 if (None != server):            
213                         client.stop ()
214                 cleanup ()
215                 sys.exit(success)
216         
217         check_connect ()
218         
219         server.stop ()    
220         client.stop ()
221         cleanup ()
222         
223         if (success == False):
224                 print ('Test failed')
225                 return True
226         else:
227                 return False
228
229         
230 try:
231     run ()
232 except (KeyboardInterrupt, SystemExit):    
233     print 'Test interrupted'
234     server.stop ()
235     client.stop ()
236     cleanup ()
237 if (success == False):
238         sys.exit(1)   
239 else:
240         sys.exit(0)    
241
242