Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
f2698879
Commit
f2698879
authored
Apr 15, 2020
by
Jason Goodman
Committed by
Nathan Friend
Apr 15, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Map feature flag userWithId strategy parameters between BE and FE
Add feature specs for new version feature flags
parent
d4066b09
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
181 additions
and
85 deletions
+181
-85
ee/app/assets/javascripts/feature_flags/components/new_environments_dropdown.vue
...ts/feature_flags/components/new_environments_dropdown.vue
+1
-1
ee/app/assets/javascripts/feature_flags/store/modules/helpers.js
...assets/javascripts/feature_flags/store/modules/helpers.js
+16
-2
ee/spec/features/projects/feature_flags/user_creates_feature_flag_spec.rb
.../projects/feature_flags/user_creates_feature_flag_spec.rb
+115
-82
ee/spec/frontend/feature_flags/store/helpers_spec.js
ee/spec/frontend/feature_flags/store/helpers_spec.js
+36
-0
ee/spec/support/helpers/feature_flag_helpers.rb
ee/spec/support/helpers/feature_flag_helpers.rb
+13
-0
No files found.
ee/app/assets/javascripts/feature_flags/components/new_environments_dropdown.vue
View file @
f2698879
...
@@ -69,7 +69,7 @@ export default {
...
@@ -69,7 +69,7 @@ export default {
};
};
</
script
>
</
script
>
<
template
>
<
template
>
<gl-new-dropdown>
<gl-new-dropdown
class=
"js-new-environments-dropdown"
>
<template
#button-content
>
<template
#button-content
>
<span
class=
"d-md-none mr-1"
>
<span
class=
"d-md-none mr-1"
>
{{
$options
.
translations
.
addEnvironmentsLabel
}}
{{
$options
.
translations
.
addEnvironmentsLabel
}}
...
...
ee/app/assets/javascripts/feature_flags/store/modules/helpers.js
View file @
f2698879
...
@@ -161,16 +161,30 @@ const mapStrategyScopesToView = scopes =>
...
@@ -161,16 +161,30 @@ const mapStrategyScopesToView = scopes =>
environmentScope
:
s
.
environment_scope
,
environmentScope
:
s
.
environment_scope
,
}));
}));
const
mapStrategiesParametersToViewModel
=
params
=>
{
if
(
params
.
userIds
)
{
return
{
...
params
,
userIds
:
params
.
userIds
.
split
(
'
,
'
).
join
(
'
,
'
)
};
}
return
params
;
};
export
const
mapStrategiesToViewModel
=
strategiesFromRails
=>
export
const
mapStrategiesToViewModel
=
strategiesFromRails
=>
(
strategiesFromRails
||
[]).
map
(
s
=>
({
(
strategiesFromRails
||
[]).
map
(
s
=>
({
id
:
s
.
id
,
id
:
s
.
id
,
name
:
s
.
name
,
name
:
s
.
name
,
parameters
:
s
.
parameters
,
parameters
:
mapStrategiesParametersToViewModel
(
s
.
parameters
)
,
// eslint-disable-next-line no-underscore-dangle
// eslint-disable-next-line no-underscore-dangle
shouldBeDestroyed
:
Boolean
(
s
.
_destroy
),
shouldBeDestroyed
:
Boolean
(
s
.
_destroy
),
scopes
:
mapStrategyScopesToView
(
s
.
scopes
),
scopes
:
mapStrategyScopesToView
(
s
.
scopes
),
}));
}));
const
mapStrategiesParametersToRails
=
params
=>
{
if
(
params
.
userIds
)
{
return
{
...
params
,
userIds
:
params
.
userIds
.
split
(
'
,
'
).
join
(
'
,
'
)
};
}
return
params
;
};
export
const
mapStrategiesToRails
=
params
=>
({
export
const
mapStrategiesToRails
=
params
=>
({
operations_feature_flag
:
{
operations_feature_flag
:
{
name
:
params
.
name
,
name
:
params
.
name
,
...
@@ -179,7 +193,7 @@ export const mapStrategiesToRails = params => ({
...
@@ -179,7 +193,7 @@ export const mapStrategiesToRails = params => ({
strategies_attributes
:
(
params
.
strategies
||
[]).
map
(
s
=>
({
strategies_attributes
:
(
params
.
strategies
||
[]).
map
(
s
=>
({
id
:
s
.
id
,
id
:
s
.
id
,
name
:
s
.
name
,
name
:
s
.
name
,
parameters
:
s
.
parameters
,
parameters
:
mapStrategiesParametersToRails
(
s
.
parameters
)
,
_destroy
:
s
.
shouldBeDestroyed
,
_destroy
:
s
.
shouldBeDestroyed
,
scopes_attributes
:
mapStrategyScopesToRails
(
s
.
scopes
||
[]),
scopes_attributes
:
mapStrategyScopesToRails
(
s
.
scopes
||
[]),
})),
})),
...
...
ee/spec/features/projects/feature_flags/user_creates_feature_flag_spec.rb
View file @
f2698879
...
@@ -12,10 +12,30 @@ describe 'User creates feature flag', :js do
...
@@ -12,10 +12,30 @@ describe 'User creates feature flag', :js do
project
.
add_developer
(
user
)
project
.
add_developer
(
user
)
stub_licensed_features
(
feature_flags:
true
)
stub_licensed_features
(
feature_flags:
true
)
stub_feature_flags
(
feature_flag_permissions:
false
)
stub_feature_flags
(
feature_flag_permissions:
false
)
stub_feature_flags
(
feature_flags_new_version:
false
)
sign_in
(
user
)
sign_in
(
user
)
end
end
it
'user creates a flag enabled for user ids'
do
visit
(
new_project_feature_flag_path
(
project
))
set_feature_flag_info
(
'test_feature'
,
'Test feature'
)
within_strategy_row
(
1
)
do
select
'User IDs'
,
from:
'Type'
fill_in
'User IDs'
,
with:
'user1, user2'
environment_plus_button
.
click
environment_search_input
.
set
(
'production'
)
environment_search_results
.
first
.
click
end
click_button
'Create feature flag'
expect_user_to_see_feature_flags_index_page
expect
(
page
).
to
have_text
(
'test_feature'
)
end
context
'with new version flags disabled'
do
before
do
stub_feature_flags
(
feature_flags_new_version:
false
)
end
context
'when creates without changing scopes'
do
context
'when creates without changing scopes'
do
before
do
before
do
visit
(
new_project_feature_flag_path
(
project
))
visit
(
new_project_feature_flag_path
(
project
))
...
@@ -133,6 +153,7 @@ describe 'User creates feature flag', :js do
...
@@ -133,6 +153,7 @@ describe 'User creates feature flag', :js do
end
end
end
end
end
end
end
private
private
...
@@ -140,4 +161,16 @@ describe 'User creates feature flag', :js do
...
@@ -140,4 +161,16 @@ describe 'User creates feature flag', :js do
fill_in
'Name'
,
with:
name
fill_in
'Name'
,
with:
name
fill_in
'Description'
,
with:
description
fill_in
'Description'
,
with:
description
end
end
def
environment_plus_button
find
(
'.js-new-environments-dropdown'
)
end
def
environment_search_input
find
(
'.js-new-environments-dropdown input'
)
end
def
environment_search_results
all
(
'.js-new-environments-dropdown button.dropdown-item'
)
end
end
end
ee/spec/frontend/feature_flags/store/helpers_spec.js
View file @
f2698879
...
@@ -378,7 +378,23 @@ describe('feature flags helpers spec', () => {
...
@@ -378,7 +378,23 @@ describe('feature flags helpers spec', () => {
},
},
]);
]);
});
});
it
(
'
inserts spaces between user ids
'
,
()
=>
{
const
strategy
=
_
.
first
(
mapStrategiesToViewModel
([
{
id
:
'
1
'
,
name
:
'
userWithId
'
,
parameters
:
{
userIds
:
'
user1,user2,user3
'
},
scopes
:
[],
},
]),
);
expect
(
strategy
.
parameters
).
toEqual
({
userIds
:
'
user1, user2, user3
'
});
});
});
});
describe
(
'
mapStrategiesToRails
'
,
()
=>
{
describe
(
'
mapStrategiesToRails
'
,
()
=>
{
it
(
'
should map rails casing to view model casing
'
,
()
=>
{
it
(
'
should map rails casing to view model casing
'
,
()
=>
{
expect
(
expect
(
...
@@ -425,6 +441,7 @@ describe('feature flags helpers spec', () => {
...
@@ -425,6 +441,7 @@ describe('feature flags helpers spec', () => {
},
},
});
});
});
});
it
(
'
should insert a default * scope if there are none
'
,
()
=>
{
it
(
'
should insert a default * scope if there are none
'
,
()
=>
{
expect
(
expect
(
mapStrategiesToRails
({
mapStrategiesToRails
({
...
@@ -460,5 +477,24 @@ describe('feature flags helpers spec', () => {
...
@@ -460,5 +477,24 @@ describe('feature flags helpers spec', () => {
},
},
});
});
});
});
it
(
'
removes white space between user ids
'
,
()
=>
{
const
result
=
mapStrategiesToRails
({
name
:
'
test
'
,
version
:
NEW_VERSION_FLAG
,
strategies
:
[
{
id
:
'
1
'
,
name
:
'
userWithId
'
,
parameters
:
{
userIds
:
'
user1, user2, user3
'
},
scopes
:
[],
},
],
});
const
strategyAttrs
=
_
.
first
(
result
.
operations_feature_flag
.
strategies_attributes
);
expect
(
strategyAttrs
.
parameters
).
toEqual
({
userIds
:
'
user1,user2,user3
'
});
});
});
});
});
});
ee/spec/support/helpers/feature_flag_helpers.rb
View file @
f2698879
...
@@ -32,6 +32,12 @@ module FeatureFlagHelpers
...
@@ -32,6 +32,12 @@ module FeatureFlagHelpers
end
end
end
end
def
within_strategy_row
(
index
)
within
".feature-flags-form > fieldset > div:nth-child(
#{
index
+
3
}
)"
do
yield
end
end
def
within_environment_spec
def
within_environment_spec
within
'.table-section:nth-child(1)'
do
within
'.table-section:nth-child(1)'
do
yield
yield
...
@@ -49,4 +55,11 @@ module FeatureFlagHelpers
...
@@ -49,4 +55,11 @@ module FeatureFlagHelpers
yield
yield
end
end
end
end
def
expect_user_to_see_feature_flags_index_page
expect
(
page
).
to
have_css
(
'h3.page-title'
,
text:
'Feature Flags'
)
expect
(
page
).
to
have_text
(
'All'
)
expect
(
page
).
to
have_text
(
'Enabled'
)
expect
(
page
).
to
have_text
(
'Disabled'
)
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment