clique test
[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 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 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_disconnect_cont (check):
60         print 'Peers disconnected successfully'
61         global success 
62         success = True;
63
64
65 def fail_disconnect_cont (check):    
66         global success 
67         success = False;
68         print 'Peers failed to disconnect'
69         check.evaluate(True)   
70   
71 def check_disconnect ():
72   test.p ('Shutting down bootstrap server')
73   server.stop ()
74   check = Check (test)
75   check.add (StatisticsCondition (client, 'transport', '# peers connected',0))
76   check.add (StatisticsCondition (client, 'core', '# neighbour entries allocated',0))  
77   check.add (StatisticsCondition (client, 'core', '# peers connected',0))
78   check.add (StatisticsCondition (client, 'topology', '# peers connected',0))
79   check.add (StatisticsCondition (client, 'dht', '# peers connected',0))
80   check.add (StatisticsCondition (client, 'fs', '# peers connected',0))
81   check.run_blocking (check_timeout, success_disconnect_cont, fail_disconnect_cont)
82
83
84 def success_connect_cont (check):
85         print 'Peers connected successfully'
86         check_disconnect ()
87
88
89 def fail_connect_cont (check):    
90   global success 
91   success= False
92   print 'Peers failed to connected!'    
93   check.evaluate(True)
94
95
96 def check_connect ():
97   check = Check (test)
98   check.add (StatisticsCondition (client, 'transport', '# peers connected',1))
99   check.add (StatisticsCondition (client, 'core', '# neighbour entries allocated',1))  
100   check.add (StatisticsCondition (client, 'core', '# peers connected',1))
101   check.add (StatisticsCondition (client, 'topology', '# peers connected',1))
102   check.add (StatisticsCondition (client, 'dht', '# peers connected',1))
103   check.add (StatisticsCondition (client, 'fs', '# peers connected',1))
104   
105   check.add (StatisticsCondition (server, 'transport', '# peers connected',1))
106   check.add (StatisticsCondition (server, 'core', '# neighbour entries allocated',1))  
107   check.add (StatisticsCondition (server, 'core', '# peers connected',1))
108   check.add (StatisticsCondition (server, 'topology', '# peers connected',1))
109   check.add (StatisticsCondition (client, 'dht', '# peers connected',1))
110   check.add (StatisticsCondition (server, 'fs', '# peers connected',1))  
111   
112   check.run_blocking (check_timeout, success_connect_cont, fail_connect_cont)
113
114
115 # Test execution
116
117
118 def SigHandler(signum = None, frame = None):
119         global success  
120         global server
121         global client  
122         
123         print 'Test was aborted!'
124         if (None != server):
125                 server.stop ()
126         if (None != client):            
127                 client.stop ()
128         cleanup ()
129         sys.exit(success)
130
131 def run ():
132         global success
133         global test
134         global server
135         global client    
136         
137         server = None
138         client = None
139         success = False  
140         
141         for sig in [signal.SIGTERM, signal.SIGINT, signal.SIGHUP, signal.SIGQUIT]:
142                 signal.signal(sig, SigHandler)
143
144         test = Test ('test_integration_bootstrap_and_connect.py', verbose)
145         cleanup ()
146         
147         server = Peer(test, './confs/c_bootstrap_server.conf');
148         client = Peer(test, './confs/c_no_nat_client.conf');
149         
150         if (True != server.start()):
151                 print 'Failed to start server'
152                 if (None != server):
153                         server.stop ()
154                 cleanup ()
155                 sys.exit(success)
156         if (True != client.start()):
157                 print 'Failed to start client'
158                 if (None != server):
159                         server.stop ()
160                 if (None != client):            
161                         client.stop ()
162                 cleanup ()
163                 sys.exit(success)
164         
165         if ((client.started == True) and (server.started == True)):
166                 test.p ('Peers started, running check')
167                 time.sleep(5)
168                 check_connect ()
169         server.stop ()
170         client.stop ()
171         
172         cleanup ()
173         
174         if (success == False):
175                 print ('Test failed')
176                 return False 
177         else:
178                 return True
179
180 try:
181         run ()
182 except (KeyboardInterrupt, SystemExit):    
183         print 'Test interrupted'
184         server.stop ()
185         client.stop ()
186         cleanup ()
187 if (success == False):
188         sys.exit(1)   
189 else:
190         sys.exit(0)    
191      
192         
193      
194