check_SCRIPTS = \
test_integration_bootstrap_and_connect.py \
test_integration_disconnect.py \
+ test_integration_restart.py \
test_integration_clique.py
endif
test_integration_disconnect.py: test_integration_disconnect.py.in Makefile
$(do_subst) < $(srcdir)/test_integration_disconnect.py.in > test_integration_disconnect.py
chmod +x test_integration_disconnect.py
+
+test_integration_restart.py: test_integration_restart.py.in Makefile
+ $(do_subst) < $(srcdir)/test_integration_restart.py.in > test_integration_restart.py
+ chmod +x test_integration_restart.py
test_integration_clique.py: test_integration_clique.py.in Makefile
$(do_subst) < $(srcdir)/test_integration_clique.py.in > test_integration_clique.py
EXTRA_DIST = \
gnunet_testing.py.in \
test_integration_bootstrap_and_connect.py.in \
- test_integration_disconnect.py.in \
+ test_integration_disconnect.py.in \
+ test_integration_restart.py.in \
test_integration_clique.py.in
CLEANFILES = \
def fail_cont (check):
global success
- success= False;
+ success = False;
check.eval(True)
def check ():
- global test
- global server
- global client
- global success
check = Check (test)
check.add (StatisticsCondition (client, 'transport', '# peers connected',1))
check.add (StatisticsCondition (client, 'core', '# neighbour entries allocated',1))
#
def run ():
- global test
- global server
- global client
- global success
-
- success = False
- test = Test ('test_integration_bootstrap_and_connect.py', verbose)
-
- server = Peer(test, './confs/c_bootstrap_server.conf');
- client = Peer(test, './confs/c_no_nat_client.conf');
-
- server.start();
- client.start();
-
- if ((client.started == True) and (server.started == True)):
- test.p ('Peers started, running check')
- time.sleep(5)
- check ()
-
- print 'stop in run'
- server.stop ()
- client.stop ()
-
- cleanup ()
-
- if (success == False):
- print ('Test failed')
- return False
- else:
- return True
+ global success
+ global test
+ global server
+ global client
+
+ success = False
+ test = Test ('test_integration_bootstrap_and_connect.py', verbose)
+
+ server = Peer(test, './confs/c_bootstrap_server.conf');
+ client = Peer(test, './confs/c_no_nat_client.conf');
+
+ server.start();
+ client.start();
+
+ if ((client.started == True) and (server.started == True)):
+ test.p ('Peers started, running check')
+ time.sleep(5)
+ check ()
+ server.stop ()
+ client.stop ()
+
+ cleanup ()
+
+ if (success == False):
+ print ('Test failed')
+ return False
+ else:
+ return True
try:
run ()
server.stop ()
client.stop ()
cleanup ()
-sys.exit(success)
+if (success == False):
+ sys.exit(1)
+else:
+ sys.exit(0)
\ No newline at end of file