class Test:
def __init__(self, testname, verbose):
+ self.peers = list()
self.verbose = verbose;
self.name = testname;
srcdir = "../.."
shutil.rmtree (os.path.join (os.getenv ("TEMP"), testname), True)
else:
shutil.rmtree ("/tmp/" + testname, True)
+ def add_peer (peer):
+ self.conditions.append(condition)
def p (self, msg):
if (self.verbose == True):
print msg
def __del__(self):
if (self.started == True):
print 'ERROR! Peer using cfg ' + self.cfg + ' was not stopped'
- self.started == False
- if (False == self.stop ()):
+ if (ret == self.stop ()):
print 'ERROR! Peer using cfg ' + self.cfg + ' could not be stopped'
+ self.started == False
+ return ret
+ else:
+ return False
def start (self):
self.test.p ("Starting peer using cfg " + self.cfg)
try:
from gnunet_testing import *
+#
+# This test tests if a fresh peer bootstraps from a hostlist server and then
+# successfully connects to the server
+#
+# Conditions for successful exit:
+# Both peers have 1 connected peer in transport, core, topology, fs
+
#
# This test tests if a fresh peer bootstraps from a hostlist server and then
# successfully connects to the server
#definitions
testname = "test_integration_bootstrap_and_connect"
-verbose = False
-timeout = 100
+verbose = True
+check_timeout = 30
def cleanup ():
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))
check.add (StatisticsCondition (server, 'topology', '# peers connected',1))
check.add (StatisticsCondition (server, 'fs', '# peers connected',1))
- check.run_blocking (10, success_cont, fail_cont)
+ check.run_blocking (check_timeout, success_cont, fail_cont)
#
# Test execution
#
-success = False
-
-test = Test ('test_integration_bootstrap_and_connect.py', verbose)
-server = Peer(test, './confs/c_bootstrap_server.conf');
-server.start();
-
-client = Peer(test, './confs/c_no_nat_client.conf');
-client.start();
-
-if ((client.started == True) and (server.started == True)):
- test.p ('Peers started, running check')
- check ()
-
-server.stop ()
-client.stop ()
+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');
-cleanup ()
+ 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
-if (success == False):
- print ('Test failed')
- exit (1)
-else:
- exit (0)
+try:
+ run ()
+except (KeyboardInterrupt, SystemExit):
+ print 'Test interrupted'
+ server.stop ()
+ client.stop ()
+ cleanup ()
+sys.exit(success)
+
\ No newline at end of file
#
# Test execution
#
-
-success = False
-
-test = Test ('test_integration_disconnect', verbose)
-
-server = Peer(test, './confs/c_bootstrap_server.conf');
-server.start();
-
-client = Peer(test, './confs/c_no_nat_client.conf');
-client.start();
-
-client2 = Peer(test, './confs/c_no_nat_client_2.conf');
-client2.start();
-
-if ((client.started == True) and (client2.started == True) and (server.started == True)):
- test.p ('Peers started, running check')
- check_connect ()
+def run ():
+ global test
+ global server
+ global client
+ global success
-server.stop ()
-client.stop ()
-client2.stop ()
+ success = False
+
+ test = Test ('test_integration_disconnect', verbose)
+
+ server = Peer(test, './confs/c_bootstrap_server.conf');
+ server.start();
+
+ client = Peer(test, './confs/c_no_nat_client.conf');
+ client.start();
+
+ client2 = Peer(test, './confs/c_no_nat_client_2.conf');
+ client2.start();
+
+ if ((client.started == True) and (client2.started == True) and (server.started == True)):
+ test.p ('Peers started, running check')
+ check_connect ()
+
+ server.stop ()
+ client.stop ()
+ client2.stop ()
+
+ cleanup ()
+
+ if (success == False):
+ print ('Test failed')
+ return False
+ else:
+ return True
-cleanup ()
-
-if (success == False):
- print ('Test failed')
- exit (1)
-else:
- exit (0)
+
+try:
+ run ()
+except (KeyboardInterrupt, SystemExit):
+ print 'Test interrupted'
+ server.stop ()
+ client.stop ()
+ client2.stop ()
+ cleanup ()
+sys.exit(success)
+
#definitions
testname = "test_integration_disconnect"
-verbose = False
+verbose = True
check_timeout = 30
#
# Test execution
#
-success = False
-
-test = Test ('test_integration_disconnect', verbose)
-
-server = Peer(test, './confs/c_bootstrap_server.conf');
-server.start();
-
-client = Peer(test, './confs/c_no_nat_client.conf');
-client.start();
-
-
-if ((client.started == True) and (server.started == True)):
- test.p ('Peers started, running check')
- check_connect ()
+def run ():
+ global test
+ global server
+ global client
+ global success
-server.stop ()
-client.stop ()
-
-cleanup ()
+ success = False
+
+ test = Test ('test_integration_disconnect', verbose)
+
+ server = Peer(test, './confs/c_bootstrap_server.conf');
+ server.start();
+
+ client = Peer(test, './confs/c_no_nat_client.conf');
+ client.start();
+
+
+ if ((client.started == True) and (server.started == True)):
+ test.p ('Peers started, running check')
+ check_connect ()
+
+ server.stop ()
+ client.stop ()
+
+ cleanup ()
+
+ if (success == False):
+ print ('Test failed')
+ return True
+ else:
+ return False
-if (success == False):
- print ('Test failed')
- exit (1)
-else:
- exit (0)
+
+try:
+ run ()
+except (KeyboardInterrupt, SystemExit):
+ print 'Test interrupted'
+ server.stop ()
+ client.stop ()
+ cleanup ()
+sys.exit(success)
+
\ No newline at end of file