forked from callmesora/llmops-python-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_configs.py
76 lines (61 loc) · 1.47 KB
/
test_configs.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# %% IMPORTS
import os
import omegaconf as oc
from llmops_project.io import configs
# %% PARSERS
def test_parse_file(tmp_path: str) -> None:
# given
text = """
a: 1
b: True
c: [3, 4]
"""
path = os.path.join(tmp_path, "config.yml")
with open(path, "w", encoding="utf-8") as writer:
writer.write(text)
# when
config = configs.parse_file(path)
# then
assert config == {
"a": 1,
"b": True,
"c": [3, 4],
}, "File config should be parsed correctly!"
def test_parse_string() -> None:
# given
text = """{"a": 1, "b": 2, "data": [3, 4]}"""
# when
config = configs.parse_string(text)
# then
assert config == {
"a": 1,
"b": 2,
"data": [3, 4],
}, "String config should be parsed correctly!"
# %% MERGERS
def test_merge_configs() -> None:
# given
confs = [oc.OmegaConf.create({"x": i, i: i}) for i in range(3)]
# when
config = configs.merge_configs(confs)
# then
assert config == {
0: 0,
1: 1,
2: 2,
"x": 2,
}, "Configs should be merged correctly!"
# %% CONVERTERS
def test_to_object() -> None:
# given
values = {
"a": 1,
"b": True,
"c": [3, 4],
}
config = oc.OmegaConf.create(values)
# when
object_ = configs.to_object(config)
# then
assert object_ == values, "Object should be the same!"
assert isinstance(object_, dict), "Object should be a dict!"