X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=test%2Flib%2Ftest_utils.py;h=c6a08d3950deb83b0a204444d22ac5ee50d75e2e;hb=039fbd9629d7570d4c175a5448d24badcd0f3aba;hp=bc3892174b8c3c40019de8aabfbd026ac61a4954;hpb=e55924b6886bd7382a28e1ae235c4810f852e163;p=nepi.git diff --git a/test/lib/test_utils.py b/test/lib/test_utils.py index bc389217..c6a08d39 100644 --- a/test/lib/test_utils.py +++ b/test/lib/test_utils.py @@ -16,6 +16,8 @@ # # Author: Alina Quereilhac +from __future__ import print_function + from nepi.resources.linux.node import LinuxNode import os @@ -60,8 +62,8 @@ def skipIfNotAlive(func): node, ec = create_node(hostname, username, identity) if not node.is_alive(): - print "*** WARNING: Skipping test %s: Node %s is not alive\n" % ( - name, node.get("hostname")) + print("*** WARNING: Skipping test %s: Node %s is not alive\n" % ( + name, node.get("hostname"))) return return func(*args, **kwargs) @@ -80,8 +82,8 @@ def skipIfAnyNotAlive(func): node, ec = create_node(hostname, username) if not node.is_alive(): - print "*** WARNING: Skipping test %s: Node %s is not alive\n" % ( - name, node.get("hostname")) + print("*** WARNING: Skipping test %s: Node %s is not alive\n" % ( + name, node.get("hostname"))) return return func(*args, **kwargs) @@ -101,8 +103,8 @@ def skipIfAnyNotAliveWithIdentity(func): node, ec = create_node(hostname, username, identity) if not node.is_alive(): - print "*** WARNING: Skipping test %s: Node %s is not alive\n" % ( - name, node.get("hostname")) + print("*** WARNING: Skipping test %s: Node %s is not alive\n" % ( + name, node.get("hostname"))) return return func(*args, **kwargs) @@ -116,7 +118,7 @@ def skipInteractive(func): mode = os.environ.get("NEPI_INTERACTIVE_TEST", False) mode = mode and mode.lower() in ['true', 'yes'] if not mode: - print "*** WARNING: Skipping test %s: Interactive mode off \n" % name + print("*** WARNING: Skipping test %s: Interactive mode off \n" % name) return return func(*args, **kwargs) @@ -129,7 +131,7 @@ def skipIfNotPLCredentials(func): pl_user = os.environ.get("PL_USER") pl_pass = os.environ.get("PL_PASS") if not (pl_user and pl_pass): - print "*** WARNING: Skipping test %s: Planetlab user, password and slicename not defined\n" % name + print("*** WARNING: Skipping test %s: Planetlab user, password and slicename not defined\n" % name) return return func(*args, **kwargs) @@ -140,7 +142,7 @@ def skipIfNotPythonVersion(func): name = func.__name__ def wrapped(*args, **kwargs): if sys.version_info < 2.7: - print "*** WARNING: Skipping test %s: total_seconds() method doesn't exist\n" % name + print("*** WARNING: Skipping test %s: total_seconds() method doesn't exist\n" % name) return return func(*args, **kwargs) @@ -154,7 +156,7 @@ def skipIfNotSfaCredentials(func): sfa_pk = os.environ.get("SFA_PK") if not (sfa_user and os.path.exists(os.path.expanduser(sfa_pk))): - print "*** WARNING: Skipping test %s: SFA path to private key doesn't exist\n" % name + print("*** WARNING: Skipping test %s: SFA path to private key doesn't exist\n" % name) return return func(*args, **kwargs) @@ -168,7 +170,7 @@ def skipIfNotSfi(func): from sfa.client.sfi import Sfi from sfa.util.xrn import hrn_to_urn except ImportError: - print "*** WARNING: Skipping test %s: sfi-client or sfi-common not installed\n" % name + print("*** WARNING: Skipping test %s: sfi-client or sfi-common not installed\n" % name) return return func(*args, **kwargs)