]> git.ipfire.org Git - nitsi.git/blame - test.py
Move the virtual_environ class into an own file
[nitsi.git] / test.py
CommitLineData
5e7f6db7
JS
1#!/usr/bin/python3
2
5e7f6db7
JS
3
4import libvirt
5
5e7f6db7
JS
6import os
7
8import configparser
9
14cd493f
JS
10from disk import disk
11
5e7f6db7
JS
12class log():
13 def __init__(self, log_level):
14 self.log_level = log_level
15
16 def debug(self, string):
17 if self.log_level >= 4:
18 print("DEBUG: {}".format(string))
19
20 def error(self, string):
21 print("ERROR: {}".format(string))
22
23class libvirt_con():
24 def __init__(self, uri):
25 self.log = log(4)
26 self.uri = uri
27 self.connection = None
28
29 def get_domain_from_name(self, name):
30 dom = self.con.lookupByName(name)
31
32 if dom == None:
33 raise BaseException
34 return dom
35
36 @property
37 def con(self):
38 if self.connection == None:
39 try:
40 self.connection = libvirt.open(self.uri)
41 except BaseException as error:
42 self.log.error("Could not connect to: {}".format(self.uri))
43
44 self.log.debug("Connected to: {}".format(self.uri))
45 return self.connection
46
47 return self.connection
48
49
5e7f6db7 50
5e7f6db7
JS
51# A class which define and undefine a virtual network based on an xml file
52class network():
48d5fb0a 53 def __init__(self, network_xml_file):
5e7f6db7 54 self.log = log(4)
48d5fb0a
JS
55 self.con = libvirt_con("qemu:///system")
56 try:
57 with open(network_xml_file) as fobj:
58 self.network_xml = fobj.read()
59 except FileNotFoundError as error:
60 self.log.error("No such file: {}".format(vm_xml_file))
61
62 def define(self):
63 self.network = self.con.con.networkDefineXML(self.network_xml)
64
65 if network == None:
66 self.log.error("Failed to define virtual network")
67
68 def start(self):
69 self.network.create()
70
71 def undefine(self):
72 self.network.destroy()
73
74
5e7f6db7 75
41ab240e
JS
76class RecipeExeption(Exception):
77 pass
78
79
80
5e7f6db7
JS
81# Should read the test, check if the syntax are valid
82# and return tuples with the ( host, command ) structure
83class recipe():
4505a887 84 def __init__(self, path, circle=[]):
5e7f6db7
JS
85 self.log = log(4)
86 self.recipe_file = path
4505a887
JS
87 self.path = os.path.dirname(self.recipe_file)
88 self.log.debug("Path of recipe is: {}".format(self.recipe_file))
41ab240e 89 self._recipe = None
2f35f899
JS
90 self._machines = None
91
92 self.in_recursion = True
93 if len(circle) == 0:
94 self.in_recursion = False
95
4505a887
JS
96 self.circle = circle
97 self.log.debug(circle)
98 self.log.debug(self.circle)
41ab240e 99
5e7f6db7
JS
100 if not os.path.isfile(self.recipe_file):
101 self.log.error("No such file: {}".format(self.recipe_file))
102
103 try:
104 with open(self.recipe_file) as fobj:
105 self.raw_recipe = fobj.readlines()
106 except FileNotFoundError as error:
107 self.log.error("No such file: {}".format(vm_xml_file))
108
41ab240e
JS
109 @property
110 def recipe(self):
111 if not self._recipe:
112 self.parse()
113
114 return self._recipe
115
2f35f899
JS
116 @property
117 def machines(self):
118 if not self._machines:
119 self._machines = []
120 for line in self._recipe:
121 if line[0] != "all" and line[0] not in self._machines:
122 self._machines.append(line[0])
123
124 return self._machines
125
41ab240e
JS
126 def parse(self):
127 self._recipe = []
128 i = 1
5e7f6db7 129 for line in self.raw_recipe:
41ab240e
JS
130 raw_line = line.split(":")
131 if len(raw_line) < 2:
132 self.log.error("Error parsing the recipe in line {}".format(i))
133 raise RecipeExeption
07bf49a3 134 cmd = raw_line[1].strip()
41ab240e
JS
135 raw_line = raw_line[0].strip().split(" ")
136 if len(raw_line) == 0:
137 self.log.error("Failed to parse the recipe in line {}".format(i))
138 raise RecipeExeption
07bf49a3
JS
139
140 if raw_line[0].strip() == "":
41ab240e
JS
141 self.log.error("Failed to parse the recipe in line {}".format(i))
142 raise RecipeExeption
07bf49a3
JS
143
144 machine = raw_line[0].strip()
145
146 if len(raw_line) == 2:
147 extra = raw_line[1].strip()
148 else:
149 extra = ""
150
151 # We could get a machine here or a include statement
152 if machine == "include":
153 path = cmd.strip()
154 path = os.path.normpath(self.path + "/" + path)
155 path = path + "/recipe"
156 if path in self.circle:
157 self.log.error("Detect import loop!")
158 raise RecipeExeption
159 self.circle.append(path)
160 recipe_to_include = recipe(path, circle=self.circle)
161
162 if machine == "include":
4505a887
JS
163 self._recipe.extend(recipe_to_include.recipe)
164 else:
67c8eded
JS
165 # Support also something like 'alice,bob: echo'
166 machines = machine.split(",")
167 for machine in machines:
168 self._recipe.append((machine.strip(), extra.strip(), cmd.strip()))
41ab240e 169 i = i + 1
5e7f6db7 170
2f35f899
JS
171 if not self.in_recursion:
172 tmp_recipe = []
173 for line in self._recipe:
174 if line[0] != "all":
175 tmp_recipe.append(line)
176 else:
177 for machine in self.machines:
178 tmp_recipe.append((machine.strip(), line[1], line[2]))
179
180 self._recipe = tmp_recipe
181
182
5e7f6db7 183
5e7f6db7
JS
184class test():
185 def __init__(self, path):
186 self.log = log(4)
187 try:
188 self.path = os.path.abspath(path)
189 except BaseException as e:
190 self.log.error("Could not get absolute path")
191
192 self.log.debug(self.path)
193
194 self.settings_file = "{}/settings".format(self.path)
195 if not os.path.isfile(self.settings_file):
196 self.log.error("No such file: {}".format(self.settings_file))
197
198 self.recipe_file = "{}/recipe".format(self.path)
199 if not os.path.isfile(self.recipe_file):
200 self.log.error("No such file: {}".format(self.recipe_file))
201
202 def read_settings(self):
203 self.config = configparser.ConfigParser()
204 self.config.read(self.settings_file)
205 self.name = self.config["DEFAULT"]["Name"]
206 self.description = self.config["DEFAULT"]["Description"]
14cd493f
JS
207 self.copy_to = self.config["DEFAULT"]["Copy_to"]
208 self.copy_from = self.config["DEFAULT"]["Copy_from"]
209 self.copy_from = self.copy_from.split(",")
210
211 tmp = []
212 for file in self.copy_from:
213 file = file.strip()
214 file = os.path.normpath(self.path + "/" + file)
215 tmp.append(file)
216
217 self.copy_from = tmp
5e7f6db7
JS
218
219 self.virtual_environ_name = self.config["VIRTUAL_ENVIRONMENT"]["Name"]
220 self.virtual_environ_path = self.config["VIRTUAL_ENVIRONMENT"]["Path"]
221 self.virtual_environ_path = os.path.normpath(self.path + "/" + self.virtual_environ_path)
222
223 def virtual_environ_setup(self):
224 self.virtual_environ = virtual_environ(self.virtual_environ_path)
225
226 self.virtual_networks = self.virtual_environ.get_networks()
227
228 self.virtual_machines = self.virtual_environ.get_machines()
229
230 def virtual_environ_start(self):
3fa89b7c
JS
231 for name in self.virtual_environ.network_names:
232 self.virtual_networks[name].define()
233 self.virtual_networks[name].start()
5e7f6db7 234
3fa89b7c
JS
235 for name in self.virtual_environ.machine_names:
236 self.virtual_machines[name].define()
237 self.virtual_machines[name].create_snapshot()
14cd493f 238 self.virtual_machines[name].copy_in(self.copy_from, self.copy_to)
3fa89b7c 239 self.virtual_machines[name].start()
5e7f6db7 240
3fa89b7c
JS
241 self.log.debug("Try to login on all machines")
242 for name in self.virtual_environ.machine_names:
243 self.virtual_machines[name].login()
5e7f6db7 244
3fa89b7c
JS
245 def load_recipe(self):
246 try:
247 self.recipe = recipe(self.recipe_file)
248 except BaseException:
249 self.log.error("Failed to load recipe")
250 exit(1)
251
252 def run_recipe(self):
253 for line in self.recipe.recipe:
254 return_value = self.virtual_machines[line[0]].cmd(line[2])
bce7d520
JS
255 self.log.debug("Return value is: {}".format(return_value))
256 if return_value != "0" and line[1] == "":
257 self.log.error("Failed to execute command '{}' on {}, return code: {}".format(line[2],line[0], return_value))
3fa89b7c 258 return False
bce7d520
JS
259 elif return_value == "0" and line[1] == "!":
260 self.log.error("Succeded to execute command '{}' on {}, return code: {}".format(line[2],line[0],return_value))
3fa89b7c 261 return False
bce7d520
JS
262 else:
263 self.log.debug("Command '{}' on {} returned with: {}".format(line[2],line[0],return_value))
3fa89b7c
JS
264
265 def virtual_environ_stop(self):
266 for name in self.virtual_environ.machine_names:
267 self.virtual_machines[name].shutdown()
268 self.virtual_machines[name].revert_snapshot()
269 self.virtual_machines[name].undefine()
270
271 for name in self.virtual_environ.network_names:
272 self.virtual_networks[name].undefine()
5e7f6db7
JS
273
274
5e7f6db7
JS
275if __name__ == "__main__":
276 import argparse
277
278 parser = argparse.ArgumentParser()
279
280 parser.add_argument("-d", "--directory", dest="dir")
281
282 args = parser.parse_args()
283
5e7f6db7
JS
284 currenttest = test(args.dir)
285 currenttest.read_settings()
10f65154
JS
286 currenttest.virtual_environ_setup()
287 currenttest.load_recipe()
0a4b6cfb
JS
288 try:
289 currenttest.virtual_environ_start()
290 currenttest.run_recipe()
291 except BaseException as e:
292 print(e)
293 finally:
294 currenttest.virtual_environ_stop()
295