615683581c233d94fca99e5498ca024efd7780aa
[tests.git] / system / LocalSubstrate.inria.py
1 #!/usr/bin/python3 -u
2 # -*- python3 -*-
3 # Thierry Parmentelat <thierry.parmentelat@inria.fr>
4 # Copyright (C) 2015 INRIA 
5 #
6 # this is only an example file
7 # the actual file is installed in your testmaster box as /root/LocalTestResources.py
8
9
10 if __name__ == '__main__':
11    import sys, os.path
12    sys.path.append(os.path.expanduser("~/git-tests/system"))
13
14 from Substrate import Substrate
15
16 # domain name .pl.sophia.inria.fr is implicit on our network
17 class OnelabSubstrate (Substrate):
18
19    def test_box_spec (self):
20       return 'testmaster'
21
22    # the experimental lxc-based build box
23    def build_lxc_boxes_spec (self):
24       return [ 'buzzcocks' ]
25
26    # the lxc-capable box for PLCs
27    def plc_lxc_boxes_spec (self):
28       # we now use the same box as for builds
29       return [ ('buzzcocks', 20), ]  
30
31    def qemu_boxes_spec (self):
32       # ditto, a single big box now is enough
33       return [ ('boxtops', 64), ]
34
35    
36    # may use vplc01 to 25 - out of the existing 30
37    # keep 5 upper addresses for more persistent instances
38    def vplc_ips (self):
39       return [  ( 'vplc{:02d}'.format(i),       # DNS name
40                   'unused')                     # MAC address 
41                 for i in range(1,26) ] 
42
43    # vnode01 to 20
44    # the nodes IP pool has a MAC address as user-data (3rd elt in tuple)
45    def vnode_ips (self):
46       return [ ( 'vnode{:02d}'.format(i),            # DNS name               
47                  '02:34:56:00:00:{:02d}'.format(i))  # MAC address
48                for i in range(1,21) ] 
49    
50    # local network settings
51    def domain (self):
52       return 'pl.sophia.inria.fr'
53
54    def network_settings (self):
55       return { 'interface_fields:gateway':      '138.96.112.250',
56                'route_fields:next_hop':         '138.96.112.250',
57                'interface_fields:network':      '138.96.112.0',
58                'interface_fields:broadcast':    '138.96.119.255',
59                'interface_fields:netmask':      '255.255.248.0',
60                'interface_fields:dns1':         '138.96.112.1',
61                'interface_fields:dns2':         '138.96.112.2',
62                'node_fields_nint:dns':          '138.96.112.1,138.96.112.2',
63                'ipaddress_fields:netmask':      '255.255.248.0',
64                }
65
66 # the hostname for the testmaster that orchestrates the whole business
67    def testmaster (self): 
68       return 'testmaster'
69
70 local_substrate = OnelabSubstrate ()
71
72 if __name__ == '__main__':
73    local_substrate.main()