Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
2459382f
Commit
2459382f
authored
4 years ago
by
Adam Butterworth
Browse files
Options
Downloads
Patches
Plain Diff
Update is_experiment_on and add ExperimentWaffleFlag override test
parent
f5f6fc49
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lms/djangoapps/experiments/flags.py
+12
-9
12 additions, 9 deletions
lms/djangoapps/experiments/flags.py
lms/djangoapps/experiments/tests/test_flags.py
+14
-1
14 additions, 1 deletion
lms/djangoapps/experiments/tests/test_flags.py
with
26 additions
and
10 deletions
lms/djangoapps/experiments/flags.py
+
12
−
9
View file @
2459382f
...
...
@@ -170,16 +170,19 @@ class ExperimentWaffleFlag(CourseWaffleFlag):
return
self
.
is_enabled
()
def
is_experiment_on
(
self
,
course_key
=
None
):
return
super
().
is_enabled
(
course_key
)
# If no course_key is supplied check the global flag irrespective of courses
if
course_key
is
None
:
return
super
().
is_enabled_without_course_context
()
return
super
().
is_enabled
(
course_key
=
course_key
)
@contextmanager
def
override
(
self
,
active
=
True
,
bucket
=
1
):
# pylint: disable=arguments-differ
from
mock
import
patch
if
not
active
:
bucket
=
0
with
patch
.
object
(
self
,
'
get_bucket
'
,
return_value
=
bucket
):
# TODO We can move this import to the top of the file once this code is
# not all contained within the __init__ module.
from
openedx.core.djangoapps.waffle_utils.testutils
import
override_waffle_flag
with
override_waffle_flag
(
self
,
active
):
# Let CourseWaffleFlag override the base waffle flag value
with
super
().
override
(
active
=
active
):
# Now override the experiment bucket value
from
mock
import
patch
if
not
active
:
bucket
=
0
with
patch
.
object
(
self
,
'
get_bucket
'
,
return_value
=
bucket
):
yield
This diff is collapsed.
Click to expand it.
lms/djangoapps/experiments/tests/test_flags.py
+
14
−
1
View file @
2459382f
...
...
@@ -105,7 +105,8 @@ class ExperimentWaffleFlagTests(SharedModuleStoreTestCase):
def
test_bucket_override
(
self
,
active
,
expected_bucket
):
bucket_flag
=
CourseWaffleFlag
(
'
experiments
'
,
'
test.0
'
)
with
bucket_flag
.
override
(
active
=
active
):
self
.
assertEqual
(
self
.
get_bucket
(),
expected_bucket
)
self
.
assertEqual
(
self
.
flag
.
get_bucket
(),
expected_bucket
)
self
.
assertEqual
(
self
.
flag
.
is_experiment_on
(),
active
)
def
test_tracking
(
self
):
# Run twice, with same request
...
...
@@ -143,3 +144,15 @@ class ExperimentWaffleFlagTests(SharedModuleStoreTestCase):
self
.
assertEqual
(
self
.
flag
.
is_enabled_without_course_context
(),
False
)
self
.
assertEqual
(
self
.
flag
.
is_enabled
(
self
.
key
),
False
)
self
.
assertEqual
(
self
.
flag
.
is_enabled
(),
False
)
@ddt.data
(
(
True
,
1
,
1
),
(
True
,
0
,
0
),
(
False
,
1
,
0
),
# bucket is always 0 if the experiment is off
(
False
,
0
,
0
),
)
@ddt.unpack
def
test_override_method
(
self
,
active
,
bucket_override
,
expected_bucket
):
with
self
.
flag
.
override
(
active
=
active
,
bucket
=
bucket_override
):
self
.
assertEqual
(
self
.
flag
.
get_bucket
(),
expected_bucket
)
self
.
assertEqual
(
self
.
flag
.
is_experiment_on
(),
active
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment