Adding working UdpTunnel for Planetlab and Linux
[nepi.git] / test / lib / test_utils.py
1 #
2 #    NEPI, a framework to manage network experiments
3 #    Copyright (C) 2013 INRIA
4 #
5 #    This program is free software: you can redistribute it and/or modify
6 #    it under the terms of the GNU General Public License as published by
7 #    the Free Software Foundation, either version 3 of the License, or
8 #    (at your option) any later version.
9 #
10 #    This program is distributed in the hope that it will be useful,
11 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #    GNU General Public License for more details.
14 #
15 #    You should have received a copy of the GNU General Public License
16 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 #
18 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
19
20 from nepi.resources.linux.node import LinuxNode
21
22 import os
23
24 class DummyEC(object):
25     @property
26     def exp_id(self):
27         return "nepi-1"
28
29 def create_node(hostname, username):
30     ec = DummyEC()
31     node = LinuxNode(ec, 1)
32     node.set("hostname", hostname)
33     node.set("username", username)
34
35     # If we don't return the reference to the EC
36     # it will be released by the garbage collector since 
37     # the resources only save a weak refernce to it.
38     return node, ec
39
40 def skipIfNotAlive(func):
41     name = func.__name__
42     def wrapped(*args, **kwargs):
43         node, ec = create_node(args[1], args[2])
44
45         if not node.is_alive():
46             print "*** WARNING: Skipping test %s: Node %s is not alive\n" % (
47                 name, node.get("hostname"))
48             return
49
50         return func(*args, **kwargs)
51     
52     return wrapped
53
54 def skipIfAnyNotAlive(func):
55     name = func.__name__
56     def wrapped(*args, **kwargs):
57         argss = list(args)
58         argss.pop(0)
59         username = argss.pop(0)
60
61         for hostname in argss:
62             node, ec = create_node(hostname, username)
63
64             if not node.is_alive():
65                 print "*** WARNING: Skipping test %s: Node %s is not alive\n" % (
66                     name, node.get("hostname"))
67                 return
68
69         return func(*args, **kwargs)
70     
71     return wrapped
72
73 def skipInteractive(func):
74     name = func.__name__
75     def wrapped(*args, **kwargs):
76         mode = os.environ.get("NEPI_INTERACTIVE_TEST", False)
77         mode = mode and  mode.lower() in ['true', 'yes']
78         if not mode:
79             print "*** WARNING: Skipping test %s: Interactive mode off \n" % name
80             return
81
82         return func(*args, **kwargs)
83     
84     return wrapped
85
86