fix include
[oweals/gnunet.git] / src / integration-tests / test_integration_bootstrap_and_connect.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., 51 Franklin Street, Fifth Floor,
18 #    Boston, MA 02110-1301, USA.
19 #
20
21 import signal
22 import sys
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 
38 #
39 # Conditions for successful exit:
40 # Both peers have 1 connected peer in transport, core, topology, fs
41
42 #
43 # This test tests if a fresh peer bootstraps from a hostlist server and then
44 # successfully connects to the server 
45 #
46 # Conditions for successful exit:
47 # Both peers have 1 connected peer in transport, core, topology, fs
48
49 #definitions
50
51 testname = "test_integration_bootstrap_and_connect"
52 verbose = False
53 check_timeout = 180
54
55 if os.name == "nt":
56   tmp = os.getenv ("TEMP")
57   signals = [signal.SIGTERM, signal.SIGINT]
58 else:
59   tmp = "/tmp"
60   signals = [signal.SIGTERM, signal.SIGINT, signal.SIGHUP, signal.SIGQUIT]
61
62 def cleanup_onerror (function, path, excinfo):
63   import stat
64   if not os.path.exists (path):
65     pass
66   elif not os.access(path, os.W_OK):
67     # Is the error an access error ?
68     os.chmod (path, stat.S_IWUSR)
69     function (path)
70   else:
71     raise
72
73 def cleanup ():
74     retries = 10
75     path = os.path.join (tmp, "c_bootstrap_server")  
76     test.p ("Removing " + path)      
77     while ((os.path.exists(path)) and (retries > 0)):
78         shutil.rmtree ((path), False, cleanup_onerror)
79         time.sleep (1)
80         retries -= 1
81     if (os.path.exists(path)):
82         test.p ("Failed to remove " + path) 
83     
84     
85     retries = 10
86     path = os.path.join (tmp, "c_no_nat_client")    
87     test.p ("Removing " + path)    
88     while ((os.path.exists(path)) and (retries > 0)):
89         shutil.rmtree ((path), False, cleanup_onerror)
90         time.sleep (1)
91         retries -= 1
92     if (os.path.exists(path)):
93         test.p ("Failed to remove " + path)     
94                 
95 def success_cont (check):
96     global success
97     success = True;
98     print 'Peers connected successfully'
99     
100 def fail_cont (check):    
101     global success 
102     success = False;
103     print 'Peers did not connect'
104     check.evaluate(True)
105
106 def check ():
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, 'dht', '# peers connected',1))  
113   check.add (StatisticsCondition (client, 'fs', '# peers connected',1))
114   
115   check.add (StatisticsCondition (server, 'transport', '# peers connected',1))
116   check.add (StatisticsCondition (server, 'core', '# neighbour entries allocated',1))  
117   check.add (StatisticsCondition (server, 'core', '# peers connected',1))
118   check.add (StatisticsCondition (server, 'topology', '# peers connected',1))
119   check.add (StatisticsCondition (server, 'dht', '# peers connected',1))  
120   check.add (StatisticsCondition (server, 'fs', '# peers connected',1))  
121   
122   check.run_blocking (check_timeout, success_cont, fail_cont)
123
124
125 # Test execution
126
127
128 def SigHandler(signum = None, frame = None):
129         global success  
130         global server
131         global client  
132         
133         print 'Test was aborted!'
134         if (None != server):
135                 server.stop ()
136         if (None != client):            
137                 client.stop ()
138         cleanup ()
139         sys.exit(success)
140
141 def run ():
142         global success
143         global test
144         global server
145         global client    
146         
147         server = None
148         client = None
149         success = False  
150         
151         for sig in signals:
152                 signal.signal(sig, SigHandler)
153
154         test = Test ('test_integration_bootstrap_and_connect.py', verbose)
155         cleanup ()
156         
157         server = Peer(test, './confs/c_bootstrap_server.conf');
158         client = Peer(test, './confs/c_no_nat_client.conf');
159         
160         if (True != server.start()):
161                 print 'Failed to start server'
162                 if (None != server):
163                         server.stop ()
164                 if (None != server):            
165                         client.stop ()
166                 cleanup ()
167                 sys.exit(success)
168                 
169         # Give the server time to start
170         time.sleep(5)
171         
172         if (True != client.start()):
173                 print 'Failed to start client'
174                 if (None != server):
175                         server.stop ()
176                 if (None != server):            
177                         client.stop ()
178                 cleanup ()
179                 sys.exit(success)
180         
181         if ((client.started == True) and (server.started == True)):
182                 test.p ('Peers started, running check')
183                 time.sleep(5)
184                 check ()
185         server.stop ()
186         client.stop ()
187         
188         cleanup ()
189         
190         if (success == False):
191                 print ('Test failed')
192                 return False 
193         else:
194                 return True
195
196 try:
197         run ()
198 except (KeyboardInterrupt, SystemExit):    
199         print 'Test interrupted'
200         server.stop ()
201         client.stop ()
202         cleanup ()
203 if (success == False):
204         sys.exit(1)   
205 else:
206         sys.exit(0)    
207