109fbb669c7fb6afb7ce8a3dc86b1c47ddaaaf98
[nepi.git] / test / resources / linux / tap.py
1 #!/usr/bin/env python
2 #
3 #    NEPI, a framework to manage network experiments
4 #    Copyright (C) 2013 INRIA
5 #
6 #    This program is free software: you can redistribute it and/or modify
7 #    it under the terms of the GNU General Public License as published by
8 #    the Free Software Foundation, either version 3 of the License, or
9 #    (at your option) any later version.
10 #
11 #    This program is distributed in the hope that it will be useful,
12 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #    GNU General Public License for more details.
15 #
16 #    You should have received a copy of the GNU General Public License
17 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 #
19 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
20
21 from nepi.execution.ec import ExperimentController 
22
23 from test_utils import skipIfNotAlive
24
25 import os
26 import time
27 import unittest
28
29 class LinuxTapTestCase(unittest.TestCase):
30     def setUp(self):
31         self.host = "roseval.pl.sophia.inria.fr"
32         self.user = "inria_nepi"
33         self.identity = "%s/.ssh/id_rsa_planetlab" % (os.environ['HOME'])
34         self.netblock = "192.168.1"
35
36     @skipIfNotAlive
37     def t_tap_create(self, host, user, identity):
38
39         ec = ExperimentController(exp_id = "test-tap-create")
40         
41         node = ec.register_resource("linux::Node")
42         ec.set(node, "hostname", host)
43         ec.set(node, "username", user)
44         ec.set(node, "identity", identity)
45         ec.set(node, "cleanExperiment", True)
46         ec.set(node, "cleanProcesses", True)
47
48         tap = ec.register_resource("linux::Tap")
49         ec.set(tap, "endpoint_ip", "%s.1" % self.netblock)
50         ec.set(tap, "endpoint_prefix", 24)
51         ec.register_connection(tap, node)
52
53         app = ec.register_resource("linux::Application")
54         cmd = "ping -c3 %s.1" % self.netblock
55         ec.set(app, "command", cmd)
56         ec.register_connection(app, node)
57
58         ec.deploy()
59
60         ec.wait_finished(app)
61
62         ping = ec.trace(app, 'stdout')
63         expected = """3 packets transmitted, 3 received, 0% packet loss"""
64         self.assertTrue(ping.find(expected) > -1)
65         
66         if_name = ec.get(tap, "deviceName")
67         self.assertTrue(if_name.startswith("tap"))
68
69         ec.shutdown()
70
71     def test_tap_create(self):
72         self.t_tap_create(self.host, self.user, self.identity)
73
74 if __name__ == '__main__':
75     unittest.main()
76