fixed cleanup
[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., 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 
37 #
38 # Conditions for successful exit:
39 # Both peers have 1 connected peer in transport, core, topology, fs
40
41 #
42 # This test tests if a fresh peer bootstraps from a hostlist server and then
43 # successfully connects to the server 
44 #
45 # Conditions for successful exit:
46 # Both peers have 1 connected peer in transport, core, topology, fs
47
48 #definitions
49
50 testname = "test_integration_bootstrap_and_connect"
51 verbose = True
52 check_timeout = 180
53
54 if os.name == "nt":
55   tmp = os.getenv ("TEMP")
56 else:
57   tmp = "/tmp"
58
59 def cleanup ():
60     retries = 10
61     path = os.path.join (tmp, "c_bootstrap_server")  
62     test.p ("Removing " + path)      
63     while ((os.path.exists(path)) and (retries > 0)):
64         shutil.rmtree ((path), False)
65         time.sleep (1)
66         retries -= 1
67     if (os.path.exists(path)):
68         test.p ("Failed to remove " + path) 
69     
70     
71     retries = 10
72     path = os.path.join (tmp, "c_no_nat_client")    
73     test.p ("Removing " + path)    
74     while ((os.path.exists(path)) and (retries > 0)):
75         shutil.rmtree ((path), False)
76         time.sleep (1)
77         retries -= 1
78     if (os.path.exists(path)):
79         test.p ("Failed to remove " + path)     
80                 
81 def success_cont (check):
82     global success
83     success = True;
84     
85 def fail_cont (check):    
86     global success 
87     success = False;
88     check.evaluate(True)
89
90 def check ():
91   check = Check (test)
92   check.add (StatisticsCondition (client, 'transport', '# peers connected',1))
93   check.add (StatisticsCondition (client, 'core', '# neighbour entries allocated',1))  
94   check.add (StatisticsCondition (client, 'core', '# peers connected',1))
95   check.add (StatisticsCondition (client, 'topology', '# peers connected',1))
96   check.add (StatisticsCondition (client, 'fs', '# peers connected',1))
97   
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_cont, fail_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         test = Test ('test_integration_bootstrap_and_connect.py', verbose)
119         
120         server = Peer(test, './confs/c_bootstrap_server.conf');
121         client = Peer(test, './confs/c_no_nat_client.conf');
122         
123         assert (True == server.start());
124         assert (True == client.start());
125         
126         if ((client.started == True) and (server.started == True)):
127                 test.p ('Peers started, running check')
128                 time.sleep(5)
129                 check ()
130         server.stop ()
131         client.stop ()
132         
133         cleanup ()
134         
135         if (success == False):
136                 print ('Test failed')
137                 return False 
138         else:
139                 return True
140
141 try:
142         run ()
143 except (KeyboardInterrupt, SystemExit):    
144         print 'Test interrupted'
145         server.stop ()
146         client.stop ()
147         cleanup ()
148 if (success == False):
149         sys.exit(1)   
150 else:
151         sys.exit(0)    
152