reduce loop counters to more practical levels
[oweals/gnunet.git] / src / integration-tests / test_integration_reconnect_nat.py.in
1 #!@PYTHON@
2 #    This file is part of GNUnet.
3 #    (C) 2010, 2018 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 sys
22 import os
23 import subprocess
24 import re
25 import shutil
26 import time
27 import signal
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, botth peers are shutdown and restarted
39 #
40 # Conditions for successful exit:
41 # Both peers have 1 connected peer in transport, core, topology, fs after restart
42
43 # definitions
44
45
46 testname = "test_integration_restart"
47 verbose = True
48 check_timeout = 180
49
50 if os.name == "nt":
51     tmp = os.getenv("TEMP")
52     signals = [signal.SIGTERM, signal.SIGINT]
53 else:
54     tmp = "/tmp"
55     signals = [signal.SIGTERM, signal.SIGINT, signal.SIGHUP, signal.SIGQUIT]
56
57
58 def cleanup_onerror(function, path, excinfo):
59     import stat
60     if not os.path.exists(path):
61         pass
62     elif not os.access(path, os.W_OK):
63         # Is the error an access error ?
64         os.chmod(path, stat.S_IWUSR)
65         function(path)
66     else:
67         raise
68
69
70 def cleanup():
71     retries = 10
72     path = os.path.join(tmp, "c_bootstrap_server")
73     test.p("Removing " + path)
74     while ((os.path.exists(path)) and (retries > 0)):
75         shutil.rmtree((path), False, cleanup_onerror)
76         time.sleep(1)
77         retries -= 1
78     if (os.path.exists(path)):
79         test.p("Failed to remove " + path)
80
81     retries = 10
82     path = os.path.join(tmp, "c_nat_client")
83     test.p("Removing " + path)
84     while((os.path.exists(path)) and(retries > 0)):
85         shutil.rmtree((path), False, cleanup_onerror)
86         time.sleep(1)
87         retries -= 1
88     if (os.path.exists(path)):
89         test.p("Failed to remove " + path)
90
91
92 def success_restart_cont(check):
93         global success
94         print('Peers connected successfully after restart')
95         server.stop()
96         client.stop()
97         success = True
98
99
100 def fail_restart_cont(check):
101         global success
102         success = False
103         print('Peers failed to connect after restart')
104         check.evaluate(True)
105
106
107 def success_connect_cont(check):
108     print('Peers connected successfully')
109     server.stop()
110     client.stop()
111
112     time.sleep(5)
113
114     test.p('Restarting client & server')
115     server.start()
116     client.start()
117
118     check = Check(test)
119     check.add(StatisticsCondition(client, 'transport', '# peers connected', 1))
120     check.add(StatisticsCondition(client, 'core', '# peers connected', 1))
121     check.add(StatisticsCondition(client, 'topology', '# peers connected', 1))
122     check.add(StatisticsCondition(client, 'fs', '# peers connected', 1))
123
124     check.add(StatisticsCondition(server, 'transport', '# peers connected', 1))
125     check.add(StatisticsCondition(server, 'core', '# peers connected', 1))
126     check.add(StatisticsCondition(server, 'topology', '# peers connected', 1))
127     check.add(StatisticsCondition(server, 'fs', '# peers connected', 1))
128
129     check.run_blocking(check_timeout, success_restart_cont, fail_restart_cont)
130
131
132 def fail_connect_cont(check):
133     global success
134     success = False
135     print('Peers failed to connect')
136     check.evaluate(True)
137
138
139 def check_connect():
140     check = Check(test)
141     check.add(StatisticsCondition(client, 'transport', '# peers connected', 1))
142     check.add(StatisticsCondition(client, 'core', '# peers connected', 1))
143     check.add(StatisticsCondition(client, 'topology', '# peers connected', 1))
144     check.add(StatisticsCondition(client, 'fs', '# peers connected', 1))
145
146     check.add(StatisticsCondition(server, 'transport', '# peers connected', 1))
147     check.add(StatisticsCondition(server, 'core', '# peers connected', 1))
148     check.add(StatisticsCondition(server, 'topology', '# peers connected', 1))
149     check.add(StatisticsCondition(server, 'fs', '# peers connected', 1))
150
151     check.run_blocking(check_timeout, success_connect_cont, fail_connect_cont)
152
153 #
154 # Test execution
155 #
156
157
158 def SigHandler(signum=None, frame=None):
159     global success
160     global server
161     global client
162
163     print('Test was aborted!')
164     if (None != server):
165         server.stop()
166     if (None != client):
167         client.stop()
168     cleanup()
169     sys.exit(success)
170
171
172 def run():
173     global success
174     global test
175     global server
176     global client
177
178     success = False
179     server = None
180     client = None
181
182     for sig in signals:
183         signal.signal(sig, SigHandler)
184
185     test = Test('test_integration_disconnect', verbose)
186     cleanup()
187     server = Peer(test, './confs/c_bootstrap_server.conf')
188     server.start()
189
190     client = Peer(test, './confs/c_nat_client.conf')
191     client.start()
192
193     if (True != server.start()):
194         print('Failed to start server')
195         if (None != server):
196             server.stop()
197         if (None != server):
198             client.stop()
199         cleanup()
200         sys.exit(success)
201
202     # Give the server time to start
203     time.sleep(5)
204
205     if (True != client.start()):
206         print('Failed to start client')
207         if (None != server):
208             server.stop()
209         if (None != server):
210             client.stop()
211         cleanup()
212         sys.exit(success)
213
214     check_connect()
215
216     server.stop()
217     client.stop()
218     cleanup()
219
220     if (success == False):
221         print('Test failed')
222         return True
223     else:
224         return False
225
226
227 try:
228     run()
229 except(KeyboardInterrupt, SystemExit):
230     print('Test interrupted')
231     server.stop()
232     client.stop()
233     cleanup()
234 if (success == False):
235     sys.exit(1)
236 else:
237     sys.exit(0)