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
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
3b1c7025
Commit
3b1c7025
authored
Oct 18, 2015
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix spec.
parent
9f6dc2a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
53 additions
and
33 deletions
+53
-33
spec/controllers/abuse_reports_controller_spec.rb
spec/controllers/abuse_reports_controller_spec.rb
+53
-33
No files found.
spec/controllers/abuse_reports_controller_spec.rb
View file @
3b1c7025
...
...
@@ -9,45 +9,65 @@ describe AbuseReportsController do
sign_in
(
reporter
)
end
describe
"with admin notification_email set"
do
let
(
:admin_email
)
{
"admin@example.com"
}
before
(
:example
)
{
allow
(
current_application_settings
).
to
receive
(
:admin_notification_email
).
and_return
(
admin_email
)
}
it
"sends a notification email"
do
post
(
:create
,
abuse_report:
{
user_id:
user
.
id
,
message:
message
}
)
expect
(
response
).
to
have_http_status
(
:redirect
)
expect
(
flash
[
:notice
]).
to
start_with
(
"Thank you for your report"
)
email
=
ActionMailer
::
Base
.
deliveries
.
last
expect
(
email
).
to
be_present
expect
(
email
.
subject
).
to
eq
(
"[Gitlab] Abuse report filed for `
#{
user
.
username
}
`"
)
expect
(
email
.
to
).
to
eq
([
admin_email
])
expect
(
email
.
body
).
to
include
(
message
)
end
end
describe
"POST create"
do
context
"with admin notification email set"
do
let
(
:admin_email
)
{
"admin@example.com"
}
describe
"without admin notification email set"
do
before
(
:example
)
{
allow
(
current_application_settings
).
to
receive
(
:admin_notification_email
).
and_return
(
nil
)
}
before
(
:each
)
do
stub_application_setting
(
admin_notification_email:
admin_email
)
end
it
"does not send a notification email"
do
expect
do
post
(
:create
,
it
"sends a notification email"
do
post
:create
,
abuse_report:
{
user_id:
user
.
id
,
message:
message
}
)
end
.
to_not
change
{
ActionMailer
::
Base
.
deliveries
}
expect
(
response
).
to
have_http_status
(
:redirect
)
expect
(
flash
[
:notice
]).
to
start_with
(
"Thank you for your report"
)
email
=
ActionMailer
::
Base
.
deliveries
.
last
expect
(
email
.
to
).
to
eq
([
admin_email
])
expect
(
email
.
subject
).
to
include
(
user
.
username
)
expect
(
email
.
text_part
.
body
).
to
include
(
message
)
end
it
"saves the abuse report"
do
expect
{
post
:create
,
abuse_report:
{
user_id:
user
.
id
,
message:
message
}
}.
to
change
{
AbuseReport
.
count
}.
by
(
1
)
end
end
context
"without admin notification email set"
do
before
(
:each
)
do
stub_application_setting
(
admin_notification_email:
nil
)
end
it
"does not send a notification email"
do
expect
{
post
:create
,
abuse_report:
{
user_id:
user
.
id
,
message:
message
}
}.
not_to
change
{
ActionMailer
::
Base
.
deliveries
.
count
}
end
it
"saves the abuse report"
do
expect
{
post
:create
,
abuse_report:
{
user_id:
user
.
id
,
message:
message
}
}.
to
change
{
AbuseReport
.
count
}.
by
(
1
)
end
end
end
end
\ No newline at end of file
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