Adding LinuxNPing RM
[nepi.git] / test / resources / linux / nping.py
diff --git a/test/resources/linux/nping.py b/test/resources/linux/nping.py
new file mode 100644 (file)
index 0000000..19c4ef4
--- /dev/null
@@ -0,0 +1,74 @@
+#!/usr/bin/env python
+#
+#    NEPI, a framework to manage network experiments
+#    Copyright (C) 2013 INRIA
+#
+#    This program is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU General Public License as published by
+#    the Free Software Foundation, either version 3 of the License, or
+#    (at your option) any later version.
+#
+#    This program is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#    GNU General Public License for more details.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+# Author: Alina Quereilhac <alina.quereilhac@inria.fr>
+
+from nepi.execution.ec import ExperimentController 
+from test_utils import skipIfNotAlive, skipInteractive
+
+import os
+import time
+import tempfile
+import unittest
+
+class LinuxNPingTestCase(unittest.TestCase):
+    def setUp(self):
+        self.fedora_host = "nepi2.pl.sophia.inria.fr"
+        self.fedora_user = "inria_nepi"
+
+        self.ubuntu_host = "roseval.pl.sophia.inria.fr"
+        self.ubuntu_user = "alina"
+        
+        self.target = "nepi5.pl.sophia.inria.fr"
+
+    @skipIfNotAlive
+    def t_nping(self, host, user):
+
+        ec = ExperimentController(exp_id = "test-nping")
+        
+        node = ec.register_resource("LinuxNode")
+        ec.set(node, "hostname", host)
+        ec.set(node, "username", user)
+        ec.set(node, "cleanHome", True)
+        ec.set(node, "cleanProcesses", True)
+
+        app = ec.register_resource("LinuxNPing")
+        ec.set(app, "c", 1)
+        ec.set(app, "tcp", True)
+        ec.set(app, "p", 80)
+        ec.set(app, "target", self.target)
+        ec.register_connection(app, node)
+
+        ec.deploy()
+
+        ec.wait_finished(app)
+
+        stdout = ec.trace(app, "stdout")
+        self.assertTrue(stdout.find("1 IP address pinged in") > -1)
+
+        ec.shutdown()
+
+    def test_nping_fedora(self):
+        self.t_nping(self.fedora_host, self.fedora_user)
+
+    def test_nping_ubuntu(self):
+        self.t_nping(self.ubuntu_host, self.ubuntu_user)
+
+if __name__ == '__main__':
+    unittest.main()
+