Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wrong variation issue fix #346

Closed

Conversation

shujat333
Copy link

Wrong variation and rule

  • in case of getting wrong rule key we can send the experiment object instead of getting experiment through key and creating the correct experiment_ID_map which
  • because of wrong experiment_key_map the variation_id_map is also giving wrong results so making a correct Variation_experiment_id_map

The “why”, or other context.

Test plan
testing the data files on different scnerios

Issues

variation.variables, 'id', entities.Variation.VariableUsage
)


Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Too many blank lines between code, should be removed to follow lint.

Copy link
Contributor

@The-inside-man The-inside-man left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Few small changes please.

@@ -0,0 +1,67 @@
import json
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like this isnt used. Can be deleted.

from optimizely import optimizely, decision_service
from optimizely.optimizely_user_context import OptimizelyUserContext
from optimizely.user_profile import UserProfileService

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please cleanup imports as many are not used.

@@ -362,8 +391,8 @@ def get_variation_from_id(self, experiment_key, variation_id):
Object representing the variation.
"""

variation_map = self.variation_id_map.get(experiment_key)

#variation_map = self.variation_id_map.get(experiment_key)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove commented code


self.audience_id_map = self._deserialize_audience(self.audience_id_map)
for group in self.group_id_map.values():
experiments_in_group_key_map = self._generate_key_map(group.experiments, 'key', entities.Experiment)
for experiment in experiments_in_group_key_map.values():
experiment.__dict__.update({'groupId': group.id, 'groupPolicy': group.policy})
self.experiment_key_map.update(experiments_in_group_key_map)
experiments_in_group_id_map = self._generate_key_map(group.experiments, 'id', entities.Experiment)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To avoid confusion maybe we should rename this function or create a new one for ids.

@@ -68,6 +70,7 @@ def __init__(self, datafile, logger, error_handler):

# Utility maps for quick lookup
self.group_id_map = self._generate_key_map(self.groups, 'id', entities.Group)
self.experimentID_map = self._generate_key_map(self.mapexperiment, 'id', entities.Experiment)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We shouldn't mix camel cases with snake_case

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why experiment's can't be passed? what's the need of mapexperiment?

@keppel2 keppel2 self-requested a review July 9, 2021 16:25
rollout_rule = project_config.get_experiment_from_key(rollout.experiments[idx].get('key'))

rollout_rule = project_config.get_experiment_from_id(rollout.experiments[idx].get('id'))
# rollout_rule = optimizely.entities.Experiment(**rollout.experiments[idx])
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove commented code (minor).

@keppel2
Copy link

keppel2 commented Jul 9, 2021

Changes are fine as well.

@@ -56,6 +57,7 @@ def __init__(self, datafile, logger, error_handler):
self.environment_key = config.get('environmentKey', None)
self.groups = config.get('groups', [])
self.experiments = config.get('experiments', [])
self.mapexperiment = copy.deepcopy(self.experiments)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this doesn't look ok to me.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Found some other issues as well with test cases. working through now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants