1 # Copyright (c) 2011, 2012 Nicira, Inc.
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at:
7 # http://www.apache.org/licenses/LICENSE-2.0
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
21 class Session(object):
23 self.xenapi = XenAPI()
26 class Failure(Exception):
32 self.network = Network()
37 def login_with_password(self, unused_username, unused_password):
41 class RecordRef(object):
42 def __init__(self, attrs):
47 def __init__(self, records):
48 self.records = records
51 return [RecordRef(rec) for rec in self.records]
53 def get_all_records_where(self, condition):
54 k, v = re.match(r'field "([^"]*)"="([^"]*)"$', condition).groups()
57 # I'm sure that the keys used in the dictionary below are wrong
58 # but I can't find any documentation on get_all_records_where
59 # and this satisfies the current test case.
61 for rec in self.records:
67 def get_by_uuid(self, uuid):
68 recs = [rec for rec in self.records if rec["uuid"] == uuid]
70 raise Failure("No record with UUID %s" % uuid)
71 return RecordRef(recs[0])
73 def get_record(self, record_ref):
74 return record_ref.attrs
78 __records = ({"uuid": "9b66c68b-a74e-4d34-89a5-20a8ab352d1e",
81 {"vswitch-controller-fail-mode": "secure",
82 "nicira-bridge-id": "custom bridge ID"}},
83 {"uuid": "e1c9019d-375b-45ac-a441-0255dd2247de",
86 {"vswitch-disable-in-band": "true"}})
89 Table.__init__(self, Network.__records)
93 __records = ({"uuid": "7a793edf-e5f4-4994-a0f9-cee784c0cda3",
95 {"vswitch-controller-fail-mode": "secure"}},)
98 Table.__init__(self, Pool.__records)
101 __records = ({"uuid": "6ab1b260-398e-49ba-827b-c7696108964c",
103 {"nicira-iface-id": "custom iface ID"}},)
106 Table.__init__(self, VIF.__records)
109 __records = ({"uuid": "fcb8a3f6-dc04-41d2-8b8a-55afd2b755b8",
111 {"nicira-vm-id": "custom vm ID"}},)
114 Table.__init__(self, VM.__records)