Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
55126dcabef3
Commit
48e25a01
authored
Aug 20, 2015
by
Douwe Maan
Browse files
Add stub_reply_by_email_setting helper.
parent
890dbdb03ba2
Changes
3
Hide whitespace changes
Inline
Side-by-side
spec/lib/gitlab/email/receiver_spec.rb
View file @
55126dca
...
...
@@ -2,8 +2,7 @@
describe
Gitlab
::
Email
::
Receiver
do
before
do
allow
(
Gitlab
.
config
.
reply_by_email
).
to
receive
(
:enabled
).
and_return
(
true
)
allow
(
Gitlab
.
config
.
reply_by_email
).
to
receive
(
:address
).
and_return
(
"reply+%{reply_key}@appmail.adventuretime.ooo"
)
stub_reply_by_email_setting
(
enabled:
true
,
address:
"reply+%{reply_key}@appmail.adventuretime.ooo"
)
end
let
(
:reply_key
)
{
"59d8df8370b7e95c5a49fbf86aeb2c93"
}
...
...
spec/lib/gitlab/reply_by_email_spec.rb
View file @
55126dca
...
...
@@ -4,12 +4,12 @@
describe
"self.enabled?"
do
context
"when reply by email is enabled"
do
before
do
allow
(
Gitlab
.
config
.
reply_by_email
).
to
receive
(
:enabled
).
and_return
(
true
)
stub_reply_by_email_setting
(
enabled:
true
)
end
context
"when the address is valid"
do
before
do
allow
(
Gitlab
.
config
.
reply_by_email
).
to
receive
(
:address
).
and_return
(
"replies+%{reply_key}@example.com"
)
stub_reply_by_email_setting
(
address:
"replies+%{reply_key}@example.com"
)
end
it
"returns true"
do
...
...
@@ -19,7 +19,7 @@
context
"when the address is invalid"
do
before
do
allow
(
Gitlab
.
config
.
reply_by_email
).
to
receive
(
:address
).
and_return
(
"replies@example.com"
)
stub_reply_by_email_setting
(
address:
"replies@example.com"
)
end
it
"returns false"
do
...
...
@@ -30,7 +30,7 @@
context
"when reply by email is disabled"
do
before
do
allow
(
Gitlab
.
config
.
reply_by_email
).
to
receive
(
:enabled
).
and_return
(
false
)
stub_reply_by_email_setting
(
enabled:
false
)
end
it
"returns false"
do
...
...
@@ -66,7 +66,7 @@
context
"self.reply_address"
do
before
do
allow
(
Gitlab
.
config
.
reply_by_email
).
to
receive
(
:address
).
and_return
(
"replies+%{reply_key}@example.com"
)
stub_reply_by_email_setting
(
address:
"replies+%{reply_key}@example.com"
)
end
it
"returns the address with an interpolated reply key"
do
...
...
@@ -76,7 +76,7 @@
context
"self.reply_key_from_address"
do
before
do
allow
(
Gitlab
.
config
.
reply_by_email
).
to
receive
(
:address
).
and_return
(
"replies+%{reply_key}@example.com"
)
stub_reply_by_email_setting
(
address:
"replies+%{reply_key}@example.com"
)
end
it
"returns reply key"
do
...
...
spec/support/stub_configuration.rb
View file @
55126dca
...
...
@@ -17,6 +17,10 @@ def stub_gravatar_setting(messages)
allow
(
Gitlab
.
config
.
gravatar
).
to
receive_messages
(
messages
)
end
def
stub_reply_by_email_setting
(
messages
)
allow
(
Gitlab
.
config
.
reply_by_email
).
to
receive_messages
(
messages
)
end
private
# Modifies stubbed messages to also stub possible predicate versions
...
...
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