aboutsummaryrefslogtreecommitdiff
path: root/src/integration-tests/test_integration_clique.py.in
blob: 0b4a8550a17387e849e07b8932086f6592753754 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
#!@PYTHON@
#    This file is part of GNUnet.
#    (C) 2010 Christian Grothoff (and other contributing authors)
#
#    GNUnet is free software; you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published
#    by the Free Software Foundation; either version 2, or (at your
#    option) any later version.
#
#    GNUnet is distributed in the hope that it will be useful, but
#    WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
#    General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with GNUnet; see the file COPYING.  If not, write to the
#    Free Software Foundation, Inc., 59 Temple Place - Suite 330,
#    Boston, MA 02111-1307, USA.
#
# 
#
# This test starts 3 peers and expects bootstrap and a connected clique
#
# Conditions for successful exit:
# Both peers have 1 connected peer in transport, core, topology, fs 

import sys
import os
import subprocess
import re
import shutil
import time
import pexpect

#definitions

testname = "test_integration_clique"
verbose = False
gnunetarm = ""
gnunetstatistics = ""
success = False
timeout = 10

#test conditions


def vprintf (msg):
    if verbose == True:
        print msg

def setup ():
  srcdir = "../.."
  gnunet_pyexpect_dir = os.path.join (srcdir, "contrib")
  if gnunet_pyexpect_dir not in sys.path:
    sys.path.append (gnunet_pyexpect_dir)
  from gnunet_pyexpect import pexpect
  global gnunetarm    	
  global gnunetstatistics
  if os.name == 'posix':
    gnunetarm = 'gnunet-arm'
    gnunetstatistics = 'gnunet-statistics'
  elif os.name == 'nt':
    gnunetarm = 'gnunet-arm.exe'
    gnunetstatistics = 'gnunet-statistics.exe'    
  if os.name == "nt":
    shutil.rmtree (os.path.join (os.getenv ("TEMP"), testname), True)
  else:
    shutil.rmtree ("/tmp/" + testname, True)

def start ():
	vprintf ("Starting bootstrap server & client")
	try:
	    server = subprocess.Popen ([gnunetarm, '-sq', '-c', './confs/c_bootstrap_server.conf'])
	    server.communicate ()    
	except OSError:
	    print "Can not start bootstrap server, exiting..."
	    exit (1)
	try:
	    client = subprocess.Popen ([gnunetarm, '-sq', '-c', 'confs/c_no_nat_client.conf'])
	    client.communicate ()    
	except OSError:
	    print "Can not start bootstrap client, exiting..."
	    exit (1)
	try:
	    client = subprocess.Popen ([gnunetarm, '-sq', '-c', 'confs/c_no_nat_client_2.conf'])
	    client.communicate ()    
	except OSError:
	    print "Can not start bootstrap client 2, exiting..."
	    exit (1)	    	    	    
	vprintf ("Bootstrap server & client started")

def stop ():
	try:
	    client = subprocess.Popen ([gnunetarm, '-eq', '-c', 'confs/c_no_nat_client.conf'])
	    client.communicate ()    
	except OSError:
	    print "Can not stop bootstrap client 1, exiting..."
	    exit (1)	    
	vprintf ("Bootstrap client stopped")


def cleanup ():
	if os.name == "nt":
	    shutil.rmtree (os.path.join (os.getenv ("TEMP"), "gnunet-test-fs-py-ns"), True)
	    shutil.rmtree (os.path.join (os.getenv ("TEMP"), "c_no_nat_client"), True)
	    shutil.rmtree (os.path.join (os.getenv ("TEMP"), "c_no_nat_client_2"), True)
	else:
	    shutil.rmtree ("/tmp/c_bootstrap_server/", True)
	    shutil.rmtree ("/tmp/c_no_nat_client/", True)
	    shutil.rmtree ("/tmp/c_no_nat_client_2/", True)

def check_statistics (conf, subsystem, name, value):
    from gnunet_pyexpect import pexpect
    server = pexpect ()
    server.spawn (None, [gnunetstatistics, '-c', conf ,'-q','-n', name, '-s', subsystem ], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
    #server.expect ("stdout", re.compile (r""))
    test = server.read("stdout", 10240)
    if (test.find(str(value)) == -1): 
        return False
    else:
        return True 
    
    

def check_connect ():
  server_transport_connected = False
  server_topology_connected = False
  server_core_connected = False
  server_core_session_map = False
  server_fs_connected = False
  client_transport_connected = False
  client_topology_connected = False
  client_core_connected = False
  client_core_session_map = False
  client_fs_connected = False
  
  client2_transport_connected = False
  client2_topology_connected = False
  client2_core_connected = False
  client2_core_session_map = False
  client2_fs_connected = False
  
  connected = False
  count = 1
  while ((connected == False) and (count <= timeout)):
  	# Perform TRANSPORT   	
	if ((False == server_transport_connected) and (True == check_statistics ('./confs/c_bootstrap_server.conf', 'transport', '# peers connected',2))):
	  server_transport_connected = True
	  vprintf ('Server transport services is connected')
	  
	if ((False == client_transport_connected) and (True == check_statistics ('./confs/c_no_nat_client.conf', 'transport', '# peers connected',2))):
	  client_transport_connected = True
	  vprintf ('Client transport services is connected')
	  
	if ((False == client2_transport_connected) and (True == check_statistics ('./confs/c_no_nat_client_2.conf', 'transport', '# peers connected',2))):
	  client2_transport_connected = True
	  vprintf ('Client 2 transport services is connected')	  

	# Perform TRANSPORT
	if ((False == server_core_connected) and (True == check_statistics ('./confs/c_bootstrap_server.conf', 'core', '# neighbour entries allocated',2))):
	  server_core_connected = True
	  vprintf ('Server core services is connected')
	  
	if ((False == client_core_connected) and (True == check_statistics ('./confs/c_no_nat_client.conf', 'core', '# neighbour entries allocated',2))):
	  client_core_connected = True
	  vprintf ('Client core services is connected')

	if ((False == client2_core_connected) and (True == check_statistics ('./confs/c_no_nat_client_2.conf', 'core', '# neighbour entries allocated',2))):
	  client2_core_connected = True
	  vprintf ('Client2 core services is connected')	  	  
	  
	# Perform TRANSPORT
	if ((False == server_core_session_map) and (True == check_statistics ('./confs/c_bootstrap_server.conf', 'core', '# entries in session map',2))):
	  server_core_session_map = True
	  vprintf ('Server core services is connected')
	  
	if ((False == client_core_session_map) and (True == check_statistics ('./confs/c_no_nat_client.conf', 'core', '# entries in session map',2))):
	  client_core_session_map = True
	  vprintf ('Client core notifies about connected')

	if ((False == client2_core_session_map) and (True == check_statistics ('./confs/c_no_nat_client_2.conf', 'core', '# entries in session map',2))):
	  client2_core_session_map = True
	  vprintf ('Client2 core notifies about connected')	  

	# Perform TRANSPORT
	if ((False == server_topology_connected) and (True == check_statistics ('./confs/c_bootstrap_server.conf', 'topology', '# peers connected',2))):
	  server_topology_connected = True
	  vprintf ('Server topology services is connected')
	  
	if ((False == client_topology_connected) and (True == check_statistics ('./confs/c_no_nat_client.conf', 'topology', '# peers connected',2))):
	  client_topology_connected = True
	  vprintf ('Client topology services is connected')

	if ((False == client2_topology_connected) and (True == check_statistics ('./confs/c_no_nat_client_2.conf', 'topology', '# peers connected',2))):
	  client2_topology_connected = True
	  vprintf ('Client2 topology services is connected')	  
	  
	# Perform TRANSPORT	 
	if ((False == server_fs_connected) and (True == check_statistics ('./confs/c_bootstrap_server.conf', 'fs', '# peers connected',2))):
	  server_fs_connected = True
	  vprintf ('Server fs services is connected')

	if ((False == client_fs_connected) and (True == check_statistics ('./confs/c_no_nat_client.conf', 'fs', '# peers connected',2))):
	  client_fs_connected = True
	  vprintf ('Client fs services is connected')	  	  	 

	if ((False == client2_fs_connected) and (True == check_statistics ('./confs/c_no_nat_client_2.conf', 'fs', '# peers connected',2))):
	  client2_fs_connected = True
	  vprintf ('Client2 fs services is connected')	  	  	 
	    	    
	# Check if conditions fulfilled
	if ((True == client_transport_connected) and (True == client2_transport_connected) and (True == server_transport_connected) and 
	(True == client_topology_connected) and (True == client2_topology_connected) and (True == server_topology_connected) and 
	(True == client_core_connected) and (True == client2_core_connected) and (True == server_core_connected) and
	(True == client_core_session_map) and (True == client2_core_session_map) and (True == server_core_session_map) and
	(True == client_fs_connected) and (True == client2_fs_connected) and (True == server_fs_connected)):
		connected = True
		break 
	print '.',
	time.sleep(1)
	count += 1
  if (connected == False):
  		print ''
		if (server_transport_connected == False):
			print ('Server transport was NOT connected')
		if (server_topology_connected == False):
			print ('Server topology was NOT connected')
		if (server_core_connected == False):
			print ('Server core was NOT connected')
		if (server_core_session_map == False):
			print ('Server core sessions did NOT increase')	
					
		if (client_transport_connected == False):
			print ('Client transport was NOT connected')			
		if (client_topology_connected == False):
			print ('Client topology was NOT connected')
		if (client_core_connected == False):
			print ('Client core was NOT connected')
		if (client_core_session_map == False):
			print ('Client core sessions did NOT increase')
			
		if (client2_transport_connected == False):
			print ('Client2 transport was NOT connected')			
		if (client2_topology_connected == False):
			print ('Client2 topology was NOT connected')
		if (client2_core_connected == False):
			print ('Client2 core was NOT connected')
		if (client2_core_session_map == False):
			print ('Client2 core sessions did NOT increase')			
		return False
  else:
	return True

def check_disconnect_client ():
	vprintf ("Shutting down client 2")
	try:
	    server = subprocess.Popen ([gnunetarm, '-eq', '-c', './confs/c_no_nat_client_2.conf'])
	    server.communicate ()    
	except OSError:
	    print "Can not stop client 2, exiting..."
	    exit (1)
	    
	client_transport_disconnected = False
	client_topology_disconnected = False
	client_core_disconnected = False
	client_core_session_map = False
	client_fs_disconnected = False
	    
	disconnected = False
  	count = 1
  	while ((disconnected == False) and (count <= timeout)):   		  
		if ((False == client_transport_disconnected) and (True == check_statistics ('./confs/c_no_nat_client.conf', 'transport', '# peers connected',0))):
		  client_transport_disconnected = True
		  vprintf ('Client transport services is disconnected')
		  
		if ((False == client_core_disconnected) and (True == check_statistics ('./confs/c_no_nat_client.conf', 'core', '# neighbour entries allocated',0))):
		  client_core_disconnected = True
		  vprintf ('Client core services is disconnected')
		  
		if ((False == client_core_session_map) and (True == check_statistics ('./confs/c_no_nat_client.conf', 'core', '# entries in session map',0))):
		  client_core_session_map = True
		  vprintf ('Client core notifies about disconnected')
		  
		if ((False == client_topology_disconnected) and (True == check_statistics ('./confs/c_no_nat_client.conf', 'topology', '# peers connected',0))):
		  client_topology_disconnected = True
		  vprintf ('Client topology services is disconnected')
		  
		if ((False == client_fs_disconnected) and (True == check_statistics ('./confs/c_no_nat_client.conf', 'fs', '# peers connected',0))):
		  client_fs_disconnected = True
		  vprintf ('Client fs services is disconnected')
		    
		# Check if conditions fulfilled
		if ((True == client_transport_disconnected) and
		(True == client_topology_disconnected) and 
		(True == client_core_disconnected) and 
		(True == client_core_session_map) and 
		(True == client_fs_disconnected)):
			disconnected = True
			break 
		print '.',
		time.sleep(1)
		count += 1
	if (disconnected == False):
		print ''
		if (client_transport_disconnected == False):
			print ('Client transport was NOT disconnected')
		if (client_topology_disconnected == False):
			print ('Client topology was NOT disconnected')
		if (client_core_disconnected == False):
			print ('Client core was NOT disconnected')
		if (client_core_session_map == False):
			print ('Server core sessions did NOT increase')
		return False
	else:
		return True	    
		
def check_disconnect_server ():
	vprintf ("Shutting down bootstrap server")
	try:
	    server = subprocess.Popen ([gnunetarm, '-eq', '-c', './confs/c_bootstrap_server.conf'])
	    server.communicate ()    
	except OSError:
	    print "Can not stop bootstrap server, exiting..."
	    exit (1)
	    
	client_transport_disconnected = False
	client_topology_disconnected = False
	client_core_disconnected = False
	client_core_session_map = False
	client_fs_disconnected = False

	client2_transport_disconnected = False
	client2_topology_disconnected = False
	client2_core_disconnected = False
	client2_core_session_map = False
	client2_fs_disconnected = False
		    
	disconnected = False
  	count = 1
  	while ((disconnected == False) and (count <= timeout)):   		  
		if ((False == client_transport_disconnected) and (True == check_statistics ('./confs/c_no_nat_client.conf', 'transport', '# peers connected',1))):
		  client_transport_disconnected = True
		  vprintf ('Client transport services is disconnected')
		  
		if ((False == client_core_disconnected) and (True == check_statistics ('./confs/c_no_nat_client.conf', 'core', '# neighbour entries allocated',1))):
		  client_core_disconnected = True
		  vprintf ('Client core services is disconnected')
		  
		if ((False == client_core_session_map) and (True == check_statistics ('./confs/c_no_nat_client.conf', 'core', '# entries in session map',1))):
		  client_core_session_map = True
		  vprintf ('Client core notifies about disconnected')
		  
		if ((False == client_topology_disconnected) and (True == check_statistics ('./confs/c_no_nat_client.conf', 'topology', '# peers connected',1))):
		  client_topology_disconnected = True
		  vprintf ('Client topology services is disconnected')
		  
		if ((False == client_fs_disconnected) and (True == check_statistics ('./confs/c_no_nat_client.conf', 'fs', '# peers connected',1))):
		  client_fs_disconnected = True
		  vprintf ('Client fs services is disconnected')

		if ((False == client2_transport_disconnected) and (True == check_statistics ('./confs/c_no_nat_client_2.conf', 'transport', '# peers connected',1))):
		  client2_transport_disconnected = True
		  vprintf ('Client2 transport services is disconnected')
		  
		if ((False == client2_core_disconnected) and (True == check_statistics ('./confs/c_no_nat_client_2.conf', 'core', '# neighbour entries allocated',1))):
		  client2_core_disconnected = True
		  vprintf ('Client2 core services is disconnected')
		  
		if ((False == client2_core_session_map) and (True == check_statistics ('./confs/c_no_nat_client_2.conf', 'core', '# entries in session map',1))):
		  client2_core_session_map = True
		  vprintf ('Client2 core notifies about disconnected')
		  
		if ((False == client2_topology_disconnected) and (True == check_statistics ('./confs/c_no_nat_client_2.conf', 'topology', '# peers connected',1))):
		  client2_topology_disconnected = True
		  vprintf ('Client2 topology services is disconnected')
		  
		if ((False == client2_fs_disconnected) and (True == check_statistics ('./confs/c_no_nat_client_2.conf', 'fs', '# peers connected',1))):
		  client2_fs_disconnected = True
		  vprintf ('Client2 fs services is disconnected')
		    
		    
		# Check if conditions fulfilled
		if ((True == client_transport_disconnected) and
		(True == client_topology_disconnected) and 
		(True == client_core_disconnected) and 
		(True == client_core_session_map) and 
		(True == client_fs_disconnected) and
		(True == client2_transport_disconnected) and
		(True == client2_topology_disconnected) and 
		(True == client2_core_disconnected) and 
		(True == client2_core_session_map) and 
		(True == client2_fs_disconnected)):
			disconnected = True
			#break 
		print '.'
		time.sleep(1)
		count += 1
	if (disconnected == False):
		print ''
		if (client_transport_disconnected == False):
			print ('Client transport was NOT disconnected')
		if (client_topology_disconnected == False):
			print ('Client topology was NOT disconnected')
		if (client_core_disconnected == False):
			print ('Client core was NOT disconnected')
		if (client_core_session_map == False):
			print ('Client core sessions did NOT decrease')
		if (client2_transport_disconnected == False):
			print ('Client2 transport was NOT disconnected')
		if (client2_topology_disconnected == False):
			print ('Client2 topology was NOT disconnected')
		if (client2_core_disconnected == False):
			print ('Client2 core was NOT disconnected')
		if (client2_core_session_map == False):
			print ('Client2 core sessions did NOT decrease')			
		return False
	else:
		return True	    		

# 
# Test execution
# 

vprintf ("Running " + testname)
setup ()
start ()

ret = check_connect ()
if (ret == True):
	vprintf ('Peers connected')
	if (True == check_disconnect_server ()):
		if (True == check_disconnect_client ()):
			success = True

stop ()
cleanup ()

if (success == False):
	print ('Test failed')
	exit (1)
else:
	exit (0)