-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathpowercycle_config.py
58 lines (41 loc) · 1.97 KB
/
powercycle_config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
"""Powercycle tasks config."""
import yaml
from buildscripts.resmokelib.powercycle import powercycle, powercycle_constants
POWERCYCLE_TASKS_CONFIG = "buildscripts/resmokeconfig/powercycle/powercycle_tasks.yml"
class PowercycleTaskConfig:
"""Class represents single task in powercycle tasks config."""
def __init__(self, task_yaml):
"""Initialize."""
self.name = task_yaml.get("name", "")
self.crash_method = task_yaml.get("crash_method", powercycle_constants.DEFAULT_CRASH_METHOD)
self.test_loops = task_yaml.get("test_loops", powercycle_constants.DEFAULT_TEST_LOOPS)
self.seed_doc_num = task_yaml.get("seed_doc_num", powercycle_constants.DEFAULT_SEED_DOC_NUM)
self.write_concern = task_yaml.get("write_concern", "{}")
self.read_concern_level = task_yaml.get("read_concern_level", None)
self.fcv = task_yaml.get("fcv", None)
self.repl_set = task_yaml.get("repl_set", None)
self.mongod_options = task_yaml.get(
"mongod_options", powercycle_constants.DEFAULT_MONGOD_OPTIONS
)
def __str__(self):
"""Return as dict."""
return self.__dict__.__str__()
def get_task_config(task_name, is_remote):
"""Return powercycle task config."""
if is_remote:
config_location = powercycle.abs_path(
f"{powercycle_constants.REMOTE_DIR}/{POWERCYCLE_TASKS_CONFIG}"
)
else:
config_location = powercycle.abs_path(POWERCYCLE_TASKS_CONFIG)
with open(config_location) as file_handle:
raw_yaml = yaml.safe_load(file_handle)
tasks_raw_yaml = raw_yaml.get("tasks", [])
for single_task_yaml in tasks_raw_yaml:
if single_task_yaml["name"] == task_name:
return PowercycleTaskConfig(single_task_yaml)
raise Exception(
f"Task with name '{task_name}' is not found"
f" in powercycle tasks configuration file '{POWERCYCLE_TASKS_CONFIG}'."
f" Please add a task there with the appropriate name."
)