Changing ResourceManager naming for platform::ResourceName
[nepi.git] / examples / omf / testing / nepi_omf6_plexus_hostname.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             Julien Tribino <julien.tribino@inria.fr>
20
21
22 """
23
24 #!/usr/bin/env python
25 from nepi.execution.resource import ResourceFactory, ResourceAction, ResourceState
26 from nepi.execution.ec import ExperimentController
27
28 # Create the EC
29 ec = ExperimentController()
30
31 # Create and Configure the Nodes
32
33 node1 = ec.register_resource("omf::Node")
34 ec.set(node1, 'hostname', 'wlab12')
35 ec.set(node1, 'xmppServer', "xmpp-plexus.onelab.eu")
36 ec.set(node1, 'xmppUser', "nepi")
37 ec.set(node1, 'xmppPort', "5222")
38 ec.set(node1, 'xmppPassword', "1234")
39
40 # Create and Configure the Application
41 app1 = ec.register_resource("omf::Application")
42 ec.set(app1, 'command', '/bin/hostname -f')
43 ec.set(app1, 'env', "")
44
45 app2 = ec.register_resource("omf::Application")
46 ec.set(app2, 'command', '/bin/date')
47 ec.set(app2, 'env', "")
48
49 app3 = ec.register_resource("omf::Application")
50 ec.set(app3, 'command', '/bin/hostname -f')
51 ec.set(app3, 'env', "")
52
53 # Connection
54 ec.register_connection(app1, node1)
55 ec.register_connection(app2, node1)
56 ec.register_connection(app3, node1)
57
58 ec.register_condition([app2,app3], ResourceAction.START, app1, ResourceState.STARTED , "3s")
59 ec.register_condition([app1,app2,app3], ResourceAction.STOP, app2, ResourceState.STARTED , "5s")
60
61
62 # Deploy
63 ec.deploy()
64
65 ec.wait_finished([app1,app2,app3])
66
67 # Stop Experiment
68 ec.shutdown()
69