X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=test%2Fresources%2Flinux%2Fccn%2Fccnpeek.py;h=35a98cc14ef6ded7648d9e7b2b8fa8eb4c3e6ce3;hb=e55924b6886bd7382a28e1ae235c4810f852e163;hp=ec6f4f849b66a45c6c6b4eaf3aa75651acc9726f;hpb=ea9bd019c72d8ffc67143b9905186b1313fac85c;p=nepi.git diff --git a/test/resources/linux/ccn/ccnpeek.py b/test/resources/linux/ccn/ccnpeek.py old mode 100644 new mode 100755 index ec6f4f84..35a98cc1 --- a/test/resources/linux/ccn/ccnpeek.py +++ b/test/resources/linux/ccn/ccnpeek.py @@ -4,9 +4,8 @@ # 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. +# it under the terms of the GNU General Public License version 2 as +# published by the Free Software Foundation; # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -40,21 +39,21 @@ class LinuxCCNPeekTestCase(unittest.TestCase): def test_ccnpeek(self): ec = ExperimentController(exp_id = "test-linux-ccnpeek") - node = ec.register_resource("LinuxNode") + node = ec.register_resource("linux::Node") ec.set(node, "hostname", self.fedora_host) ec.set(node, "username", self.fedora_user) ec.set(node, "identity", self.fedora_identity) #ec.set(node, "cleanProcesses", True) - #ec.set(node, "cleanHome", True) + #ec.set(node, "cleanExperiment", True) - ccnd = ec.register_resource("LinuxCCND") + ccnd = ec.register_resource("linux::CCND") ec.register_connection(ccnd, node) - peek = ec.register_resource("LinuxCCNPeek") + peek = ec.register_resource("linux::CCNPeek") ec.set(peek, "contentName", "ccnx:/chunk0") ec.register_connection(peek, ccnd) - poke = ec.register_resource("LinuxCCNPoke") + poke = ec.register_resource("linux::CCNPoke") ec.set(poke, "contentName", "ccnx:/chunk0") ec.set(poke, "content", "DATA") ec.register_connection(poke, ccnd)