if start fails, clean up and exit
[oweals/gnunet.git] / src / integration-tests / test_integration_disconnect.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, the server is shutdown
38 #
39 # Conditions for successful exit:
40 # Both peers have 0 connected peer in transport, core, topology, fs
41
42 #definitions
43
44 testname = "test_integration_disconnect"
45 verbose = True
46 check_timeout = 180
47
48 if os.name == "nt":
49   tmp = os.getenv ("TEMP")
50 else:
51   tmp = "/tmp"
52
53 def cleanup ():
54     shutil.rmtree (os.path.join (tmp, "c_bootstrap_server"), True)
55     shutil.rmtree (os.path.join (tmp, "c_no_nat_client"), True)
56
57
58 def success_disconnect_cont (check):
59     global success 
60     success = True;
61
62
63 def fail_disconnect_cont (check):    
64     global success 
65     success = False;
66     check.evaluate(True)   
67   
68
69 def check_disconnect ():
70   test.p ('Shutting down bootstrap server')
71   server.stop ()
72   check = Check (test)
73   check.add (StatisticsCondition (client, 'transport', '# peers connected',0))
74   check.add (StatisticsCondition (client, 'core', '# neighbour entries allocated',0))  
75   check.add (StatisticsCondition (client, 'core', '# peers connected',0))
76   check.add (StatisticsCondition (client, 'topology', '# peers connected',0))
77   check.add (StatisticsCondition (client, 'fs', '# peers connected',0))
78   check.run_blocking (check_timeout, success_disconnect_cont, fail_disconnect_cont)
79
80
81 def success_connect_cont (check):
82     check_disconnect ()
83
84
85 def fail_connect_cont (check):    
86     global success 
87     success= False;
88     check.evaluate(True)
89
90
91 def check_connect ():
92   check = Check (test)
93   check.add (StatisticsCondition (client, 'transport', '# peers connected',1))
94   check.add (StatisticsCondition (client, 'core', '# neighbour entries allocated',1))  
95   check.add (StatisticsCondition (client, 'core', '# peers connected',1))
96   check.add (StatisticsCondition (client, 'topology', '# peers connected',1))
97   check.add (StatisticsCondition (client, 'fs', '# peers connected',1))
98   
99   check.add (StatisticsCondition (server, 'transport', '# peers connected',1))
100   check.add (StatisticsCondition (server, 'core', '# neighbour entries allocated',1))  
101   check.add (StatisticsCondition (server, 'core', '# peers connected',1))
102   check.add (StatisticsCondition (server, 'topology', '# peers connected',1))
103   check.add (StatisticsCondition (server, 'fs', '# peers connected',1))  
104   
105   check.run_blocking (check_timeout, success_connect_cont, fail_connect_cont)
106
107
108 # Test execution
109
110
111 def run ():
112         global success
113         global test
114         global server
115         global client
116         
117         success = False
118         
119         test = Test ('test_integration_disconnect', verbose)
120         
121         server = Peer(test, './confs/c_bootstrap_server.conf');
122         server.start();
123         
124         client = Peer(test, './confs/c_no_nat_client.conf');
125         client.start();
126         
127         
128         if ((client.started == True) and (server.started == True)):
129             test.p ('Peers started, running check')
130             check_connect ()
131                 
132         server.stop ()    
133         client.stop ()
134         
135         cleanup ()
136         
137         if (success == False):
138                 print ('Test failed')
139                 return True
140         else:
141                 return False
142
143         
144 try:
145     run ()
146 except (KeyboardInterrupt, SystemExit):    
147     print 'Test interrupted'
148     server.stop ()
149     client.stop ()
150     cleanup ()
151 if (success == False):
152         sys.exit(1)   
153 else:
154         sys.exit(0)    
155