aboutsummaryrefslogtreecommitdiff
path: root/examples/example.py
blob: ad4116ee0ab0c9ee28eb856aed2240d1d3264345 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python

# An example script using rhumba.py

from rhumba.model import *

# import testbed plugins
import rhumba.testbeds.emulab as emulab
import rhumba.testbeds.jfed as jfed
import rhumba.testbeds.faketestbed as fake

# import prototype plugins
import rhumba.prototypes.ouroboros as our
import rhumba.prototypes.rlite as rl
import rhumba.prototypes.irati as irati

n1 = NormalDIF("n1", policies = {"rmt.pff": "lfa",
                                 "security-manager": "passwd"})

e1 = ShimEthDIF("e1")

a = Node("a",
         difs = [n1, e1],
         dif_registrations = {n1 : [e1]},
         registrations = {"a.crap" : [n1]},
         bindings = {"a.crap" : "/usr/bin/crap"})

b = Node("b",
         difs = [e1, n1],
         dif_registrations = {n1 : [e1]})

#tb = jfed.jFedTestbed(exp_name = "letest",
 #                     username = "sander",
  #                    cert_file = "cert.pem",
   #                   jfed_jar = "jfed_cli/experimenter-cli.jar")
tb = fake.FakeTestbed(exp_name = "x", username = "yy")

exp = irati.IRATIExperiment(tb, nodes = [a, b])

print(exp)

exp.run()