Added PlanetlabTAP & PlanetlabTUN
[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
21 from nepi.resources.linux.node import LinuxNode
22
23 import os
24
25 class DummyEC(object):
26     @property
27     def exp_id(self):
28         return "nepi-1"
29
30 def create_node(hostname, username):
31     ec = DummyEC()
32     node = LinuxNode(ec, 1)
33     node.set("hostname", hostname)
34     node.set("username", username)
35
36     # If we don't return the reference to the EC
37     # it will be released by the garbage collector since 
38     # the resources only save a weak refernce to it.
39     return node, ec
40
41 def skipIfNotAlive(func):
42     name = func.__name__
43     def wrapped(*args, **kwargs):
44         node, ec = create_node(args[1], args[2])
45
46         if not node.is_alive():
47             print "*** WARNING: Skipping test %s: Node %s is not alive\n" % (
48                 name, node.get("hostname"))
49             return
50
51         return func(*args, **kwargs)
52     
53     return wrapped
54
55 def skipInteractive(func):
56     name = func.__name__
57     def wrapped(*args, **kwargs):
58         mode = os.environ.get("NEPI_INTERACTIVE_TEST", False)
59         mode = mode and  mode.lower() in ['true', 'yes']
60         if not mode:
61             print "*** WARNING: Skipping test %s: Interactive mode off \n" % name
62             return
63
64         return func(*args, **kwargs)
65     
66     return wrapped
67
68