Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Mastodon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Mastodon
Commits
8b1bfaed
Unverified
Commit
8b1bfaed
authored
1 year ago
by
Matt Jankowski
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Add specs for admin/webhooks CRUD actions (#25133)
parent
665bb237
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
spec/controllers/admin/webhooks_controller_spec.rb
+78
-0
78 additions, 0 deletions
spec/controllers/admin/webhooks_controller_spec.rb
with
78 additions
and
0 deletions
spec/controllers/admin/webhooks_controller_spec.rb
+
78
−
0
View file @
8b1bfaed
...
@@ -18,4 +18,82 @@ describe Admin::WebhooksController do
...
@@ -18,4 +18,82 @@ describe Admin::WebhooksController do
expect
(
response
).
to
have_http_status
(
:success
)
expect
(
response
).
to
have_http_status
(
:success
)
end
end
end
end
describe
'GET #new'
do
it
'returns http success and renders view'
do
get
:new
expect
(
response
).
to
have_http_status
(
:success
)
expect
(
response
).
to
render_template
(
:new
)
end
end
describe
'POST #create'
do
it
'creates a new webhook record with valid data'
do
expect
do
post
:create
,
params:
{
webhook:
{
url:
'https://example.com/hook'
,
events:
[
'account.approved'
]
}
}
end
.
to
change
(
Webhook
,
:count
).
by
(
1
)
expect
(
response
).
to
be_redirect
end
it
'does not create a new webhook record with invalid data'
do
expect
do
post
:create
,
params:
{
webhook:
{
url:
'https://example.com/hook'
,
events:
[]
}
}
end
.
to_not
change
(
Webhook
,
:count
)
expect
(
response
).
to
have_http_status
(
:success
)
expect
(
response
).
to
render_template
(
:new
)
end
end
context
'with an existing record'
do
let!
(
:webhook
)
{
Fabricate
:webhook
}
describe
'GET #show'
do
it
'returns http success and renders view'
do
get
:show
,
params:
{
id:
webhook
.
id
}
expect
(
response
).
to
have_http_status
(
:success
)
expect
(
response
).
to
render_template
(
:show
)
end
end
describe
'GET #edit'
do
it
'returns http success and renders view'
do
get
:edit
,
params:
{
id:
webhook
.
id
}
expect
(
response
).
to
have_http_status
(
:success
)
expect
(
response
).
to
render_template
(
:edit
)
end
end
describe
'PUT #update'
do
it
'updates the record with valid data'
do
put
:update
,
params:
{
id:
webhook
.
id
,
webhook:
{
url:
'https://example.com/new/location'
}
}
expect
(
webhook
.
reload
.
url
).
to
match
(
%r{new/location}
)
expect
(
response
).
to
redirect_to
(
admin_webhook_path
(
webhook
))
end
it
'does not update the record with invalid data'
do
expect
do
put
:update
,
params:
{
id:
webhook
.
id
,
webhook:
{
url:
''
}
}
end
.
to_not
change
(
webhook
,
:url
)
expect
(
response
).
to
have_http_status
(
:success
)
expect
(
response
).
to
render_template
(
:show
)
end
end
describe
'DELETE #destroy'
do
it
'destroys the record'
do
expect
do
delete
:destroy
,
params:
{
id:
webhook
.
id
}
end
.
to
change
(
Webhook
,
:count
).
by
(
-
1
)
expect
(
response
).
to
redirect_to
(
admin_webhooks_path
)
end
end
end
end
end
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