-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathtest_event_context_formatter.py
117 lines (107 loc) · 3.64 KB
/
test_event_context_formatter.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
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
from ldclient.context import Context
from ldclient.impl.events.event_context_formatter import EventContextFormatter
def test_simple_context():
f = EventContextFormatter(False, [])
c = Context.create('a')
assert f.format_context(c) == {'kind': 'user', 'key': 'a'}
def test_context_with_more_attributes():
f = EventContextFormatter(False, [])
c = Context.builder('a').name('b').anonymous(True).set('c', True).set('d', 2).build()
assert f.format_context(c) == {
'kind': 'user',
'key': 'a',
'name': 'b',
'anonymous': True,
'c': True,
'd': 2
}
def test_context_can_redact_anonymous_attributes():
f = EventContextFormatter(False, [])
c = Context.builder('a').name('b').anonymous(True).set('c', True).set('d', 2).build()
assert f.format_context_redact_anonymous(c) == {
'kind': 'user',
'key': 'a',
'anonymous': True,
'_meta': {
'redactedAttributes': ['name', 'c', 'd']
}
}
def test_multi_kind_context_can_redact_anonymous_attributes():
f = EventContextFormatter(False, [])
user = Context.builder('user-key').name('b').anonymous(True).set('c', True).set('d', 2).build()
org = Context.builder('org-key').kind('org').name('b').set('c', True).set('d', 2).build()
multi = Context.create_multi(user, org)
assert f.format_context_redact_anonymous(multi) == {
'kind': 'multi',
'user': {
'key': 'user-key',
'anonymous': True,
'_meta': {
'redactedAttributes': ['name', 'c', 'd']
}
},
'org': {
'key': 'org-key',
'name': 'b',
'c': True,
'd': 2
}
}
def test_multi_context():
f = EventContextFormatter(False, [])
c = Context.create_multi(
Context.create('a'),
Context.builder('b').kind('c').name('d').build()
)
assert f.format_context(c) == {
'kind': 'multi',
'user': {
'key': 'a'
},
'c': {
'key': 'b',
'name': 'd'
}
}
def test_all_private():
f = EventContextFormatter(True, [])
c = Context.builder('a').name('b').anonymous(True).set('c', True).set('d', 2).build()
assert f.format_context(c) == {
'kind': 'user',
'key': 'a',
'anonymous': True,
'_meta': {'redactedAttributes': ['name', 'c', 'd']}
}
def test_some_private_global():
f = EventContextFormatter(False, ['name', 'd'])
c = Context.builder('a').name('b').anonymous(True).set('c', True).set('d', 2).build()
assert f.format_context(c) == {
'kind': 'user',
'key': 'a',
'anonymous': True,
'c': True,
'_meta': {'redactedAttributes': ['name', 'd']}
}
def test_some_private_per_context():
f = EventContextFormatter(False, ['name'])
c = Context.builder('a').name('b').anonymous(True).set('c', True).set('d', 2).private('d').build()
assert f.format_context(c) == {
'kind': 'user',
'key': 'a',
'anonymous': True,
'c': True,
'_meta': {'redactedAttributes': ['name', 'd']}
}
def test_private_property_in_object():
f = EventContextFormatter(False, ['/b/prop1', '/c/prop2/sub1'])
c = Context.builder('a') \
.set('b', {'prop1': True, 'prop2': 3}) \
.set('c', {'prop1': {'sub1': True}, 'prop2': {'sub1': 4, 'sub2': 5}}) \
.build()
assert f.format_context(c) == {
'kind': 'user',
'key': 'a',
'b': {'prop2': 3},
'c': {'prop1': {'sub1': True}, 'prop2': {'sub2': 5}},
'_meta': {'redactedAttributes': ['/b/prop1', '/c/prop2/sub1']}
}