c5b393e146e4f80cf9663579f53db51d89449ae2
[nepi.git] / examples / planetlab / ping_sfa.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: Lucia Guevgeozian <lucia.guevgeozian_odizzio@inria.fr>
20
21 from nepi.execution.ec import ExperimentController
22 import os
23
24 # Create the EC
25 exp_id = "sfa_test"
26 ec = ExperimentController(exp_id)
27
28 username = os.environ.get('SFA_SLICE')
29 sfauser = os.environ.get('SFA_USER')
30 sfaPrivateKey = os.environ.get('SFA_PK')
31
32 # server
33 node1 = ec.register_resource("PlanetlabSfaNode")
34 ec.set(node1, "hostname", 'planetlab-4.imperial.ac.uk')
35 ec.set(node1, "username", username)
36 ec.set(node1, "sfauser", sfauser)
37 ec.set(node1, "sfaPrivateKey", sfaPrivateKey)
38 ec.set(node1, "cleanHome", True)
39 ec.set(node1, "cleanProcesses", True)
40
41 app1 = ec.register_resource("LinuxApplication")
42 command = "ping -c5 google.com" 
43 ec.set(app1, "command", command)
44 ec.register_connection(app1, node1)
45
46 # Deploy
47 ec.deploy()
48
49 ec.wait_finished([app1])
50
51 ec.shutdown()
52
53 # End