]> git.ipfire.org Git - nitsi.git/blame - src/nitsi/test.py
Fix return codes once again
[nitsi.git] / src / nitsi / test.py
CommitLineData
5e7f6db7
JS
1#!/usr/bin/python3
2
6632e137 3import configparser
5e7f6db7 4import libvirt
6632e137 5import logging
5e7f6db7 6import os
6c352a80
JS
7import time
8
6632e137
JS
9from .recipe import recipe
10from .virtual_environ import virtual_environ
5e7f6db7 11
1ed8ca9f 12logger = logging.getLogger("nitsi.test")
5e7f6db7 13
61b44c10
JS
14
15class TestException(Exception):
16 def __init__(self, message):
17 self.message = message
18
5e7f6db7 19class test():
d7036f7b 20 def __init__(self, path, log_path):
5e7f6db7
JS
21 try:
22 self.path = os.path.abspath(path)
1ed8ca9f 23 self.log = logger.getChild(os.path.basename(self.path))
5e7f6db7 24 except BaseException as e:
1ed8ca9f 25 logger.error("Could not get absolute path")
5e7f6db7 26
2fa4467d 27 self.log.debug("Path of this test is: {}".format(self.path))
5e7f6db7 28
b4936764
JS
29 self.log_path = log_path
30
5e7f6db7
JS
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"]
14cd493f
JS
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
5e7f6db7
JS
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):
3fa89b7c
JS
68 for name in self.virtual_environ.network_names:
69 self.virtual_networks[name].define()
70 self.virtual_networks[name].start()
5e7f6db7 71
3fa89b7c
JS
72 for name in self.virtual_environ.machine_names:
73 self.virtual_machines[name].define()
74 self.virtual_machines[name].create_snapshot()
14cd493f 75 self.virtual_machines[name].copy_in(self.copy_from, self.copy_to)
3fa89b7c 76 self.virtual_machines[name].start()
5e7f6db7 77
6c352a80
JS
78 # Time to which all serial output log entries are relativ
79 log_start_time = time.time()
80
fc35cba1
JS
81 # Number of chars of the longest machine name
82 longest_machine_name = self.virtual_environ.longest_machine_name
83
3fa89b7c
JS
84 self.log.debug("Try to login on all machines")
85 for name in self.virtual_environ.machine_names:
1ed8ca9f 86 self.log.debug("Try to login on {}".format(name))
fc35cba1
JS
87 self.virtual_machines[name].login("{}/test.log".format(self.log_path),
88 log_start_time=log_start_time,
89 longest_machine_name=longest_machine_name)
5e7f6db7 90
3fa89b7c 91 def load_recipe(self):
2fa4467d 92 self.log.info("Going to load the recipe")
3fa89b7c
JS
93 try:
94 self.recipe = recipe(self.recipe_file)
4bc54b45
JS
95 for line in self.recipe.recipe:
96 self.log.debug(line)
2fa4467d
JS
97
98 self.log.debug("This was the recipe")
4bc54b45 99 except BaseException as e:
3fa89b7c 100 self.log.error("Failed to load recipe")
4bc54b45 101 raise e
3fa89b7c
JS
102
103 def run_recipe(self):
104 for line in self.recipe.recipe:
105 return_value = self.virtual_machines[line[0]].cmd(line[2])
bce7d520
JS
106 self.log.debug("Return value is: {}".format(return_value))
107 if return_value != "0" and line[1] == "":
61b44c10 108 raise TestException("Failed to execute command '{}' on {}, return code: {}".format(line[2],line[0], return_value))
bce7d520 109 elif return_value == "0" and line[1] == "!":
61b44c10 110 raise TestException("Succeded to execute command '{}' on {}, return code: {}".format(line[2],line[0],return_value))
bce7d520
JS
111 else:
112 self.log.debug("Command '{}' on {} returned with: {}".format(line[2],line[0],return_value))
3fa89b7c
JS
113
114 def virtual_environ_stop(self):
115 for name in self.virtual_environ.machine_names:
116 self.virtual_machines[name].shutdown()
117 self.virtual_machines[name].revert_snapshot()
118 self.virtual_machines[name].undefine()
119
120 for name in self.virtual_environ.network_names:
121 self.virtual_networks[name].undefine()