use -Wl on -no-undefined as it is a linker option:
[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   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', '# neighbour entries allocated',0))  
90   check.add (StatisticsCondition (client, 'core', '# peers connected',0))
91   check.add (StatisticsCondition (client, 'topology', '# peers connected',0))
92   check.add (StatisticsCondition (client, 'dht', '# peers connected',0))
93   check.add (StatisticsCondition (client, 'fs', '# peers connected',0))
94   check.run_blocking (check_timeout, success_disconnect_cont, fail_disconnect_cont)
95
96
97 def success_connect_cont (check):
98         print 'Peers connected successfully'
99         check_disconnect ()
100
101
102 def fail_connect_cont (check):    
103   global success 
104   success= False
105   print 'Peers failed to connected!'    
106   check.evaluate(True)
107
108
109 def check_connect ():
110   check = Check (test)
111   check.add (StatisticsCondition (client, 'transport', '# peers connected',1))
112   check.add (StatisticsCondition (client, 'core', '# neighbour entries allocated',1))  
113   check.add (StatisticsCondition (client, 'core', '# peers connected',1))
114   check.add (StatisticsCondition (client, 'topology', '# peers connected',1))
115   check.add (StatisticsCondition (client, 'dht', '# peers connected',1))
116   check.add (StatisticsCondition (client, 'fs', '# peers connected',1))
117   
118   check.add (StatisticsCondition (server, 'transport', '# peers connected',1))
119   check.add (StatisticsCondition (server, 'core', '# neighbour entries allocated',1))  
120   check.add (StatisticsCondition (server, 'core', '# peers connected',1))
121   check.add (StatisticsCondition (server, 'topology', '# peers connected',1))
122   check.add (StatisticsCondition (server, 'dht', '# peers connected',1))
123   check.add (StatisticsCondition (server, 'fs', '# peers connected',1))  
124   
125   check.run_blocking (check_timeout, success_connect_cont, fail_connect_cont)
126
127
128 # Test execution
129
130
131 def SigHandler(signum = None, frame = None):
132         global success  
133         global server
134         global client  
135         
136         print 'Test was aborted!'
137         if (None != server):
138                 server.stop ()
139         if (None != client):            
140                 client.stop ()
141         cleanup ()
142         sys.exit(success)
143
144 def run ():
145         global success
146         global test
147         global server
148         global client    
149         
150         server = None
151         client = None
152         success = False  
153         
154         for sig in signals:
155                 signal.signal(sig, SigHandler)
156
157         test = Test ('test_integration_bootstrap_and_connect.py', verbose)
158         cleanup ()
159         
160         server = Peer(test, './confs/c_bootstrap_server.conf');
161         client = Peer(test, './confs/c_no_nat_client.conf');
162         
163         if (True != server.start()):
164                 print 'Failed to start server'
165                 if (None != server):
166                         server.stop ()
167                 cleanup ()
168                 sys.exit(success)
169                 
170         # Give the server time to start
171         time.sleep(5)           
172                 
173         if (True != client.start()):
174                 print 'Failed to start client'
175                 if (None != server):
176                         server.stop ()
177                 if (None != client):            
178                         client.stop ()
179                 cleanup ()
180                 sys.exit(success)
181         
182         if ((client.started == True) and (server.started == True)):
183                 test.p ('Peers started, running check')
184                 time.sleep(5)
185                 check_connect ()
186         server.stop ()
187         client.stop ()
188         
189         cleanup ()
190         
191         if (success == False):
192                 print ('Test failed')
193                 return False 
194         else:
195                 return True
196
197 try:
198         run ()
199 except (KeyboardInterrupt, SystemExit):    
200         print 'Test interrupted'
201         server.stop ()
202         client.stop ()
203         cleanup ()
204 if (success == False):
205         sys.exit(1)   
206 else:
207         sys.exit(0)    
208      
209         
210      
211