merging configs
[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     shutil.rmtree (os.path.join (tmp, "c_bootstrap_server"), True)
61     shutil.rmtree (os.path.join (tmp, "c_no_nat_client"), True)
62
63 def success_cont (check):
64     global success
65     success = True;
66     
67 def fail_cont (check):    
68     global success 
69     success = False;
70     check.evaluate(True)
71
72 def check ():
73   check = Check (test)
74   check.add (StatisticsCondition (client, 'transport', '# peers connected',1))
75   check.add (StatisticsCondition (client, 'core', '# neighbour entries allocated',1))  
76   check.add (StatisticsCondition (client, 'core', '# peers connected',1))
77   check.add (StatisticsCondition (client, 'topology', '# peers connected',1))
78   check.add (StatisticsCondition (client, 'fs', '# peers connected',1))
79   
80
81   check.add (StatisticsCondition (server, 'transport', '# peers connected',1))
82   check.add (StatisticsCondition (server, 'core', '# neighbour entries allocated',1))  
83   check.add (StatisticsCondition (server, 'core', '# peers connected',1))
84   check.add (StatisticsCondition (server, 'topology', '# peers connected',1))
85   check.add (StatisticsCondition (server, 'fs', '# peers connected',1))  
86   
87   check.run_blocking (check_timeout, success_cont, fail_cont)
88
89
90 # Test execution
91
92
93 def run ():
94         global success
95         global test
96         global server
97         global client    
98         
99         success = False  
100         test = Test ('test_integration_bootstrap_and_connect.py', verbose)
101         
102         server = Peer(test, './confs/c_bootstrap_server.conf');
103         client = Peer(test, './confs/c_no_nat_client.conf');
104         
105         assert (True == server.start());
106         assert (True == client.start());
107         
108         if ((client.started == True) and (server.started == True)):
109                 test.p ('Peers started, running check')
110                 time.sleep(5)
111                 check ()
112         server.stop ()
113         client.stop ()
114         
115         cleanup ()
116         
117         if (success == False):
118                 print ('Test failed')
119                 return False 
120         else:
121                 return True
122
123 try:
124         run ()
125 except (KeyboardInterrupt, SystemExit):    
126         print 'Test interrupted'
127         server.stop ()
128         client.stop ()
129         cleanup ()
130 if (success == False):
131         sys.exit(1)   
132 else:
133         sys.exit(0)    
134