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