]> git.ipfire.org Git - nitsi.git/blob - src/nitsi/test.py
Use one time to which all serial connection output is relativ
[nitsi.git] / src / nitsi / test.py
1 #!/usr/bin/python3
2
3
4 import libvirt
5
6 import os
7
8 import configparser
9
10 import time
11
12 from nitsi.virtual_environ import virtual_environ
13 from nitsi.recipe import recipe
14
15 import logging
16
17 logger = logging.getLogger("nitsi.test")
18
19 class test():
20 def __init__(self, path, log_path):
21 try:
22 self.path = os.path.abspath(path)
23 self.log = logger.getChild(os.path.basename(self.path))
24 except BaseException as e:
25 logger.error("Could not get absolute path")
26
27 self.log.debug("Path of this test is: {}".format(self.path))
28
29 self.log_path = log_path
30
31 self.settings_file = "{}/settings".format(self.path)
32 if not os.path.isfile(self.settings_file):
33 self.log.error("No such file: {}".format(self.settings_file))
34
35 self.recipe_file = "{}/recipe".format(self.path)
36 if not os.path.isfile(self.recipe_file):
37 self.log.error("No such file: {}".format(self.recipe_file))
38
39 def read_settings(self):
40 self.config = configparser.ConfigParser()
41 self.config.read(self.settings_file)
42 self.name = self.config["DEFAULT"]["Name"]
43 self.description = self.config["DEFAULT"]["Description"]
44 self.copy_to = self.config["DEFAULT"]["Copy_to"]
45 self.copy_from = self.config["DEFAULT"]["Copy_from"]
46 self.copy_from = self.copy_from.split(",")
47
48 tmp = []
49 for file in self.copy_from:
50 file = file.strip()
51 file = os.path.normpath(self.path + "/" + file)
52 tmp.append(file)
53
54 self.copy_from = tmp
55
56 self.virtual_environ_name = self.config["VIRTUAL_ENVIRONMENT"]["Name"]
57 self.virtual_environ_path = self.config["VIRTUAL_ENVIRONMENT"]["Path"]
58 self.virtual_environ_path = os.path.normpath(self.path + "/" + self.virtual_environ_path)
59
60 def virtual_environ_setup(self):
61 self.virtual_environ = virtual_environ(self.virtual_environ_path)
62
63 self.virtual_networks = self.virtual_environ.get_networks()
64
65 self.virtual_machines = self.virtual_environ.get_machines()
66
67 def virtual_environ_start(self):
68 for name in self.virtual_environ.network_names:
69 self.virtual_networks[name].define()
70 self.virtual_networks[name].start()
71
72 for name in self.virtual_environ.machine_names:
73 self.virtual_machines[name].define()
74 self.virtual_machines[name].create_snapshot()
75 self.virtual_machines[name].copy_in(self.copy_from, self.copy_to)
76 self.virtual_machines[name].start()
77
78 # Time to which all serial output log entries are relativ
79 log_start_time = time.time()
80
81 self.log.debug("Try to login on all machines")
82 for name in self.virtual_environ.machine_names:
83 self.log.debug("Try to login on {}".format(name))
84 self.virtual_machines[name].login("{}/test.log".format(self.log_path), log_start_time)
85
86 def load_recipe(self):
87 self.log.info("Going to load the recipe")
88 try:
89 self.recipe = recipe(self.recipe_file)
90 for line in self.recipe.recipe:
91 self.log.debug(line)
92
93 self.log.debug("This was the recipe")
94 except BaseException as e:
95 self.log.error("Failed to load recipe")
96 raise e
97
98 def run_recipe(self):
99 for line in self.recipe.recipe:
100 return_value = self.virtual_machines[line[0]].cmd(line[2])
101 self.log.debug("Return value is: {}".format(return_value))
102 if return_value != "0" and line[1] == "":
103 self.log.error("Failed to execute command '{}' on {}, return code: {}".format(line[2],line[0], return_value))
104 return False
105 elif return_value == "0" and line[1] == "!":
106 self.log.error("Succeded to execute command '{}' on {}, return code: {}".format(line[2],line[0],return_value))
107 return False
108 else:
109 self.log.debug("Command '{}' on {} returned with: {}".format(line[2],line[0],return_value))
110
111 def virtual_environ_stop(self):
112 for name in self.virtual_environ.machine_names:
113 self.virtual_machines[name].shutdown()
114 self.virtual_machines[name].revert_snapshot()
115 self.virtual_machines[name].undefine()
116
117 for name in self.virtual_environ.network_names:
118 self.virtual_networks[name].undefine()
119
120
121