Skip to content

Commit 2ee24cf

Browse files
Add attributes and events support to config (#339)
* added sdk and environment key * [MAINTENANCE] Remove Deprecated warnings during build - assertRaisesRegexp -> assertRaisesRegex - assertEquals -> assertEqual - isAlive() -> is_alive() - Check added to base.py to confirm attribute assertRaisesRegex for backwards compatibility to Python2.7 * [OASIS-7757] Fix spelling of environment to fix testcases from failing * [OASIS-7757] - Added additional test cases to test_optimizely and test_user_context. * [OASIS-7800] Updated optimizely_config with attributes and events * [OASIS-7757] - update copyright years and add more testcases for sdk_key and environment_key. Move decide tests to test_user_context from test_optimizely. * [OASIS-7800] Updated optimizely_config with attributes and events * Run autopep8 to fix formatting issues after rebase * [OASIS-7800] - Added test cases for attribute map and events map * Remove unused import from optimizely config * Corrected comment wording in get functions for events. Co-authored-by: ozayr-zaviar <[email protected]>
1 parent 9e9c4d0 commit 2ee24cf

File tree

2 files changed

+187
-2
lines changed

2 files changed

+187
-2
lines changed

optimizely/optimizely_config.py

+72-2
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,16 @@
1717

1818

1919
class OptimizelyConfig(object):
20-
def __init__(self, revision, experiments_map, features_map, datafile=None, sdk_key=None, environment_key=None):
20+
def __init__(self, revision, experiments_map, features_map, datafile=None,
21+
sdk_key=None, environment_key=None, attributes=None, events=None):
2122
self.revision = revision
2223
self.experiments_map = experiments_map
2324
self.features_map = features_map
2425
self._datafile = datafile
2526
self.sdk_key = sdk_key
2627
self.environment_key = environment_key
28+
self.attributes = attributes or []
29+
self.events = events or []
2730

2831
def get_datafile(self):
2932
""" Get the datafile associated with OptimizelyConfig.
@@ -49,6 +52,22 @@ def get_environment_key(self):
4952
"""
5053
return self.environment_key
5154

55+
def get_attributes(self):
56+
""" Get the attributes associated with OptimizelyConfig
57+
58+
returns:
59+
A list of attributes.
60+
"""
61+
return self.attributes
62+
63+
def get_events(self):
64+
""" Get the events associated with OptimizelyConfig
65+
66+
returns:
67+
A list of events.
68+
"""
69+
return self.events
70+
5271

5372
class OptimizelyExperiment(object):
5473
def __init__(self, id, key, variations_map):
@@ -81,6 +100,19 @@ def __init__(self, id, key, variable_type, value):
81100
self.value = value
82101

83102

103+
class OptimizelyAttribute(object):
104+
def __init__(self, id, key):
105+
self.id = id
106+
self.key = key
107+
108+
109+
class OptimizelyEvent(object):
110+
def __init__(self, id, key, experiment_ids):
111+
self.id = id
112+
self.key = key
113+
self.experiment_ids = experiment_ids
114+
115+
84116
class OptimizelyConfigService(object):
85117
""" Class encapsulating methods to be used in creating instance of OptimizelyConfig. """
86118

@@ -102,6 +134,8 @@ def __init__(self, project_config):
102134
self.revision = project_config.revision
103135
self.sdk_key = project_config.sdk_key
104136
self.environment_key = project_config.environment_key
137+
self.attributes = project_config.attributes
138+
self.events = project_config.events
105139

106140
self._create_lookup_maps()
107141

@@ -124,7 +158,9 @@ def get_config(self):
124158
features_map,
125159
self._datafile,
126160
self.sdk_key,
127-
self.environment_key)
161+
self.environment_key,
162+
self.attributes,
163+
self.events)
128164

129165
def _create_lookup_maps(self):
130166
""" Creates lookup maps to avoid redundant iteration of config objects. """
@@ -259,3 +295,37 @@ def _get_features_map(self, experiments_id_map):
259295
features_map[feature['key']] = optly_feature
260296

261297
return features_map
298+
299+
def get_attributes_map(self):
300+
""" Gets attributes map for the project config.
301+
302+
Returns:
303+
dict -- Attribute key, OptimizelyAttribute map
304+
"""
305+
306+
attributes_map = {}
307+
308+
for attribute in self.attributes:
309+
optly_attribute = OptimizelyAttribute(
310+
attribute['id'], attribute['key']
311+
)
312+
attributes_map[attribute['key']] = optly_attribute
313+
314+
return attributes_map
315+
316+
def get_events_map(self):
317+
""" Gets events map for the project config.
318+
319+
Returns:
320+
dict -- Event key, OptimizelyEvent map
321+
"""
322+
323+
events_map = {}
324+
325+
for event in self.events:
326+
optly_event = OptimizelyEvent(
327+
event['id'], event['key'], event.get('experimentIds', [])
328+
)
329+
events_map[event['key']] = optly_event
330+
331+
return events_map

tests/test_optimizely_config.py

+115
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ def setUp(self):
2828
self.expected_config = {
2929
'sdk_key': None,
3030
'environment_key': None,
31+
'attributes': [{'key': 'test_attribute', 'id': '111094'}],
32+
'events': [{'key': 'test_event', 'experimentIds': ['111127'], 'id': '111095'}],
3133
'experiments_map': {
3234
'test_experiment2': {
3335
'variations_map': {
@@ -790,3 +792,116 @@ def test__get_environment_key_invalid(self):
790792
invalid_value = 321
791793

792794
self.assertNotEqual(invalid_value, config.get_environment_key())
795+
796+
def test__get_attributes(self):
797+
""" Test that the get_attributes returns the expected value. """
798+
799+
config = optimizely_config.OptimizelyConfig(
800+
revision='101',
801+
experiments_map={},
802+
features_map={},
803+
attributes=[{
804+
'id': '123',
805+
'key': '123'
806+
},
807+
{
808+
'id': '234',
809+
'key': '234'
810+
}]
811+
)
812+
813+
expected_value = [{
814+
'id': '123',
815+
'key': '123'
816+
},
817+
{
818+
'id': '234',
819+
'key': '234'
820+
}]
821+
822+
self.assertEqual(expected_value, config.get_attributes())
823+
self.assertEqual(len(config.get_attributes()), 2)
824+
825+
def test__get_events(self):
826+
""" Test that the get_events returns the expected value. """
827+
828+
config = optimizely_config.OptimizelyConfig(
829+
revision='101',
830+
experiments_map={},
831+
features_map={},
832+
events=[{
833+
'id': '123',
834+
'key': '123',
835+
'experiment_ids': {
836+
'54321'
837+
}
838+
},
839+
{
840+
'id': '234',
841+
'key': '234',
842+
'experiment_ids': {
843+
'3211', '54365'
844+
}
845+
}]
846+
)
847+
848+
expected_value = [{
849+
'id': '123',
850+
'key': '123',
851+
'experiment_ids': {
852+
'54321'
853+
}
854+
},
855+
{
856+
'id': '234',
857+
'key': '234',
858+
'experiment_ids': {
859+
'3211',
860+
'54365'
861+
}
862+
}]
863+
864+
self.assertEqual(expected_value, config.get_events())
865+
self.assertEqual(len(config.get_events()), 2)
866+
867+
def test__get_attributes_map(self):
868+
""" Test to check get_attributes_map returns the correct value """
869+
870+
actual_attributes_map = self.opt_config_service.get_attributes_map()
871+
expected_attributes = self.expected_config['attributes']
872+
873+
expected_attributes_map = {}
874+
875+
for expected_attribute in expected_attributes:
876+
optly_attribute = optimizely_config.OptimizelyAttribute(
877+
expected_attribute['id'], expected_attribute['key']
878+
)
879+
expected_attributes_map[expected_attribute['key']] = optly_attribute
880+
881+
for attribute in actual_attributes_map.values():
882+
self.assertIsInstance(attribute, optimizely_config.OptimizelyAttribute)
883+
884+
self.assertEqual(len(expected_attributes), len(actual_attributes_map))
885+
self.assertEqual(self.to_dict(actual_attributes_map), self.to_dict(expected_attributes_map))
886+
887+
def test__get_events_map(self):
888+
""" Test to check that get_events_map returns the correct value """
889+
890+
actual_events_map = self.opt_config_service.get_events_map()
891+
expected_events = self.expected_config['events']
892+
893+
expected_events_map = {}
894+
895+
for expected_event in expected_events:
896+
optly_event = optimizely_config.OptimizelyEvent(
897+
expected_event['id'],
898+
expected_event['key'],
899+
expected_event['experimentIds']
900+
)
901+
expected_events_map[expected_event['key']] = optly_event
902+
903+
for event in actual_events_map.values():
904+
self.assertIsInstance(event, optimizely_config.OptimizelyEvent)
905+
906+
self.assertEqual(len(expected_events), len(actual_events_map))
907+
self.assertEqual(self.to_dict(actual_events_map), self.to_dict(expected_events_map))

0 commit comments

Comments
 (0)