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
c52e2fc1
Commit
c52e2fc1
authored
Dec 03, 2021
by
Peter Hegman
Committed by
Sanad Liaquat
Dec 03, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updates admin deploy keys feature specs after refactoring to Vue
parent
1e87fad1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
79 additions
and
55 deletions
+79
-55
spec/features/admin/admin_deploy_keys_spec.rb
spec/features/admin/admin_deploy_keys_spec.rb
+79
-55
No files found.
spec/features/admin/admin_deploy_keys_spec.rb
View file @
c52e2fc1
...
...
@@ -3,17 +3,19 @@
require
'spec_helper'
RSpec
.
describe
'admin deploy keys'
do
include
Spec
::
Support
::
Helpers
::
ModalHelpers
let_it_be
(
:admin
)
{
create
(
:admin
)
}
let!
(
:deploy_key
)
{
create
(
:deploy_key
,
public:
true
)
}
let!
(
:another_deploy_key
)
{
create
(
:another_deploy_key
,
public:
true
)
}
before
do
stub_feature_flags
(
admin_deploy_keys_vue:
false
)
sign_in
(
admin
)
gitlab_enable_admin_mode_sign_in
(
admin
)
end
shared_examples
'renders deploy keys correctly'
do
it
'show all public deploy keys'
do
visit
admin_deploy_keys_path
...
...
@@ -57,7 +59,9 @@ RSpec.describe 'admin deploy keys' do
describe
'update an existing deploy key'
do
before
do
visit
admin_deploy_keys_path
find
(
'tr'
,
text:
deploy_key
.
title
).
click_link
(
'Edit'
)
page
.
within
(
'tr'
,
text:
deploy_key
.
title
)
do
click_link
(
_
(
'Edit deploy key'
))
end
end
it
'updates an existing deploy key'
do
...
...
@@ -71,6 +75,10 @@ RSpec.describe 'admin deploy keys' do
end
end
end
end
context
'when `admin_deploy_keys_vue` feature flag is enabled'
,
:js
do
it_behaves_like
'renders deploy keys correctly'
describe
'remove an existing deploy key'
do
before
do
...
...
@@ -78,7 +86,11 @@ RSpec.describe 'admin deploy keys' do
end
it
'removes an existing deploy key'
do
find
(
'tr'
,
text:
deploy_key
.
title
).
click_link
(
'Remove'
)
accept_gl_confirm
(
'Are you sure you want to delete this deploy key?'
,
button_text:
'Delete'
)
do
page
.
within
(
'tr'
,
text:
deploy_key
.
title
)
do
click_button
_
(
'Delete deploy key'
)
end
end
expect
(
current_path
).
to
eq
admin_deploy_keys_path
page
.
within
(
find
(
'[data-testid="deploy-keys-list"]'
,
match: :first
))
do
...
...
@@ -86,18 +98,30 @@ RSpec.describe 'admin deploy keys' do
end
end
end
end
context
'when `admin_deploy_keys_vue` feature flag is
enabled'
,
:js
do
context
'when `admin_deploy_keys_vue` feature flag is
disabled'
do
before
do
stub_feature_flags
(
admin_deploy_keys_vue:
true
)
stub_feature_flags
(
admin_deploy_keys_vue:
false
)
end
it_behaves_like
'renders deploy keys correctly'
describe
'remove an existing deploy key'
do
before
do
visit
admin_deploy_keys_path
end
it
'renders the Vue app'
,
:aggregate_failures
do
expect
(
page
).
to
have_content
(
'Public deploy keys'
)
expect
(
page
).
to
have_selector
(
'[data-testid="deploy-keys-list"]'
)
expect
(
page
).
to
have_link
(
'New deploy key'
,
href:
new_admin_deploy_key_path
)
it
'removes an existing deploy key'
do
page
.
within
(
'tr'
,
text:
deploy_key
.
title
)
do
click_link
_
(
'Remove deploy key'
)
end
expect
(
current_path
).
to
eq
admin_deploy_keys_path
page
.
within
(
find
(
'[data-testid="deploy-keys-list"]'
,
match: :first
))
do
expect
(
page
).
not_to
have_content
(
deploy_key
.
title
)
end
end
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