-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest_context.py
More file actions
227 lines (196 loc) · 7.82 KB
/
test_context.py
File metadata and controls
227 lines (196 loc) · 7.82 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
from prefab_cloud_python.context import (
Context,
NamedContext,
InvalidContextFormatException,
)
import pytest
import re
from prefab_pb2 import (
Context as ProtoContext,
ContextSet as ProtoContextSet,
ConfigValue,
StringList,
)
EXAMPLE_PROPERTIES = {
"user": {"key": "some-user-key", "name": "Ted"},
"team": {"key": "abc", "plan": "pro"},
}
@pytest.fixture(autouse=True)
def setup():
Context.set_current(None)
yield
class TestContext:
def test_init_with_empty_context(self, setup):
context = Context({})
assert not context.contexts
def test_init_with_named_context(self, setup):
named_context = NamedContext("test", {"foo": "bar"})
context = Context(named_context)
assert len(context.contexts) == 1
assert context.contexts["test"] == named_context
def test_init_with_dict(self, setup):
context = Context({"test": {"foo": "bar"}})
assert len(context.contexts) == 1
assert context.contexts["test"].get("foo") == "bar"
def test_init_with_multiple_dicts(self, setup):
context = Context({"test": {"foo": "bar"}, "other": {"foo": "baz"}})
assert len(context.contexts) == 2
assert context.contexts["test"].get("foo") == "bar"
assert context.contexts["other"].get("foo") == "baz"
def test_init_with_non_hash_values(self, setup, capsys):
context = Context({"name": "michael"})
assert len(context.contexts) == 1
assert context.contexts[""].get("name") == "michael"
captured = capsys.readouterr()
assert re.compile(
"Prefab contexts should be a dict with a key of the context name and a value of a dict of the context"
).match(captured.out)
def test_init_with_invalid_argument(self, setup):
with pytest.raises(InvalidContextFormatException) as exception:
Context([])
assert "Expected a NamedConstant or dict" in str(exception)
def test_current(self, setup):
context = Context.get_current()
assert isinstance(context, Context)
assert not context.contexts
def test_current_set(self, setup):
context = Context(EXAMPLE_PROPERTIES)
Context.set_current(context)
assert isinstance(Context.get_current(), Context)
assert Context.get_current().contexts["user"].get("key") == "some-user-key"
def test_merge_with_current(self, setup):
context = Context(EXAMPLE_PROPERTIES)
Context.set_current(context)
assert Context.get_current().contexts["user"].get("key") == "some-user-key"
new_context = Context.merge_with_current(
{
"user": {"key": "brand-new", "other": "different"},
"address": {"city": "New York"},
}
)
assert new_context.to_dict() == {
"user": {"key": "brand-new", "other": "different"},
"team": {"key": "abc", "plan": "pro"},
"address": {"city": "New York"},
}
assert Context.get_current().contexts["user"].to_dict() == {
"key": "some-user-key",
"name": "Ted",
}
def test_merge_dicts(self, setup):
context = Context(EXAMPLE_PROPERTIES)
assert context.to_dict() == EXAMPLE_PROPERTIES
context.merge_context_dict(
{
"user": {"key": "brand-new", "other": "different"},
"address": {"city": "New York"},
}
)
assert context.to_dict() == {
"user": {"key": "brand-new", "other": "different"},
"team": {"key": "abc", "plan": "pro"},
"address": {"city": "New York"},
}
def test_with_context(self, setup):
assert not Context.get_current().contexts
context = Context(EXAMPLE_PROPERTIES)
with Context.scope(context):
assert Context.get_current().contexts["user"].get("key") == "some-user-key"
assert not Context.get_current().contexts
def test_nested_with_context(self, setup):
assert not Context.get_current().contexts
context = Context(EXAMPLE_PROPERTIES)
with Context.scope(context):
with Context.scope({"user": {"key": "michael"}}):
assert Context.get_current().contexts["user"].get("key") == "michael"
assert not Context.get_current().contexts
def test_setting(self, setup):
context = Context()
context.set("user", {"key": "value"})
context["other"] = {"key": "different", "something": "other"}
assert context["other.key"] == "different"
assert context["user.key"] == "value"
def test_getting(self, setup):
context = Context(EXAMPLE_PROPERTIES)
assert context.get("user.key") == "some-user-key"
assert context["user.key"] == "some-user-key"
assert context.get("team.plan") == "pro"
assert context["team.plan"] == "pro"
def test_merge(self, setup):
context = Context(EXAMPLE_PROPERTIES)
context.merge("other", {"key": "different"})
assert context["user.key"] == "some-user-key"
assert context["other.key"] == "different"
def test_clear(self, setup):
context = Context(EXAMPLE_PROPERTIES)
context.clear()
assert not context.to_dict()
def test_named_context_to_proto(self):
proto_context = NamedContext(
"the-name",
{"a": 10, "b": 1.1, "c": "hello world", "d": ["hello", "world"], "e": True},
).to_proto()
expected_proto_context = ProtoContext(
type="the-name",
values={
"a": ConfigValue(int=10),
"b": ConfigValue(double=1.1),
"c": ConfigValue(string="hello world"),
"d": ConfigValue(string_list=StringList(values=["hello", "world"])),
"e": ConfigValue(bool=True),
},
)
assert proto_context == expected_proto_context
def test_named_context_to_proto_with_config_values(self):
proto_context = NamedContext(
"the-name",
{
"a": ConfigValue(int=10),
"b": ConfigValue(double=1.1),
"c": "hello world",
"d": ["hello", "world"],
"e": True,
},
).to_proto()
expected_proto_context = ProtoContext(
type="the-name",
values={
"a": ConfigValue(int=10),
"b": ConfigValue(double=1.1),
"c": ConfigValue(string="hello world"),
"d": ConfigValue(string_list=StringList(values=["hello", "world"])),
"e": ConfigValue(bool=True),
},
)
assert proto_context == expected_proto_context
def test_context_to_proto(self):
proto_context_set = Context(
{
"the-name": {
"a": 10,
"b": 1.1,
"c": "hello world",
"d": ["hello", "world"],
"e": True,
},
"another": {"foo": "bar"},
}
).to_proto()
expected_proto_context_set = ProtoContextSet(
contexts=[
ProtoContext(
type="the-name",
values={
"a": ConfigValue(int=10),
"b": ConfigValue(double=1.1),
"c": ConfigValue(string="hello world"),
"d": ConfigValue(
string_list=StringList(values=["hello", "world"])
),
"e": ConfigValue(bool=True),
},
),
ProtoContext(type="another", values={"foo": ConfigValue(string="bar")}),
]
)
assert proto_context_set == expected_proto_context_set