- msg
[oweals/gnunet.git] / src / integration-tests / test_integration_restart.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 from gnunet_testing import Peer
28 from gnunet_testing import Test
29 from gnunet_testing import Check
30 from gnunet_testing import Condition
31 from gnunet_testing import * 
32  
33
34 #
35 # This test tests if a fresh peer bootstraps from a hostlist server and then
36 # successfully connects to the server. When both peers are connected
37 # in transport, core, topology, fs, botth peers are shutdown and restarted 
38 #
39 # Conditions for successful exit:
40 # Both peers have 1 connected peer in transport, core, topology, fs after restart
41
42 #definitions
43
44
45 testname = "test_integration_restart"
46 verbose = False
47 check_timeout = 180
48
49 if os.name == "nt":
50   tmp = os.getenv ("TEMP")
51 else:
52   tmp = "/tmp"
53
54 def cleanup ():
55     shutil.rmtree (os.path.join (tmp, "c_bootstrap_server"), True)
56     shutil.rmtree (os.path.join (tmp, "c_no_nat_client"), True)
57
58
59 def success_restart_cont (check):
60         global success 
61         test.p ('Shutting down client & server')
62         server.stop ()
63         client.stop ()
64         success = True; 
65
66
67 def fail_restart_cont (check):    
68         global success 
69         success = False;
70         check.evaluate(True)   
71     
72
73 def success_connect_cont (check):
74         test.p ('Shutting down client & server for restart')
75         server.stop ()
76         client.stop ()
77         
78         time.sleep(5)
79         
80         test.p ('Restarting client & server')
81         server.start ()
82         client.start ()
83         
84         check = Check (test)
85         check.add (StatisticsCondition (client, 'transport', '# peers connected',1))
86         check.add (StatisticsCondition (client, 'core', '# neighbour entries allocated',1))  
87         check.add (StatisticsCondition (client, 'core', '# peers connected',1))
88         check.add (StatisticsCondition (client, 'topology', '# peers connected',1))
89         check.add (StatisticsCondition (client, 'fs', '# peers connected',1))
90         
91         check.add (StatisticsCondition (server, 'transport', '# peers connected',1))
92         check.add (StatisticsCondition (server, 'core', '# neighbour entries allocated',1))  
93         check.add (StatisticsCondition (server, 'core', '# peers connected',1))
94         check.add (StatisticsCondition (server, 'topology', '# peers connected',1))
95         check.add (StatisticsCondition (server, 'fs', '# peers connected',1))  
96         
97         check.run_blocking (check_timeout, success_restart_cont, fail_restart_cont)
98
99
100 def fail_connect_cont (check):    
101     global success 
102     success= False;
103     check.evaluate(True)
104
105
106 def check_connect ():
107         check = Check (test)
108         check.add (StatisticsCondition (client, 'transport', '# peers connected',1))
109         check.add (StatisticsCondition (client, 'core', '# neighbour entries allocated',1))  
110         check.add (StatisticsCondition (client, 'core', '# peers connected',1))
111         check.add (StatisticsCondition (client, 'topology', '# peers connected',1))
112         check.add (StatisticsCondition (client, 'fs', '# peers connected',1))
113         
114         check.add (StatisticsCondition (server, 'transport', '# peers connected',1))
115         check.add (StatisticsCondition (server, 'core', '# neighbour entries allocated',1))  
116         check.add (StatisticsCondition (server, 'core', '# peers connected',1))
117         check.add (StatisticsCondition (server, 'topology', '# peers connected',1))
118         check.add (StatisticsCondition (server, 'fs', '# peers connected',1))  
119         
120         check.run_blocking (check_timeout, success_connect_cont, fail_connect_cont)
121
122
123 # Test execution
124
125
126 def run ():
127         global success
128         global test
129         global server
130         global client
131         
132         success = False
133         
134         test = Test ('test_integration_disconnect', verbose)
135         
136         server = Peer(test, './confs/c_bootstrap_server.conf');
137         server.start();
138         
139         client = Peer(test, './confs/c_no_nat_client.conf');
140         client.start();
141         
142         
143         if ((client.started == True) and (server.started == True)):
144             test.p ('Peers started, running check')
145             check_connect ()
146                 
147         server.stop ()    
148         client.stop ()
149         
150         cleanup ()
151         
152         if (success == False):
153                 print ('Test failed')
154                 return True
155         else:
156                 return False
157
158         
159 try:
160     run ()
161 except (KeyboardInterrupt, SystemExit):    
162     print 'Test interrupted'
163     server.stop ()
164     client.stop ()
165     cleanup ()
166 if (success == False):
167         sys.exit(1)   
168 else:
169         sys.exit(0)    
170