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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kazuhiko Shiozaki
gitlab-ce
Commits
c0033e96
Commit
c0033e96
authored
Feb 12, 2016
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move profile notifications specs to separate file
parent
055ec4dc
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
107 additions
and
98 deletions
+107
-98
spec/mailers/emails/profile_spec.rb
spec/mailers/emails/profile_spec.rb
+107
-0
spec/mailers/notify_spec.rb
spec/mailers/notify_spec.rb
+0
-98
No files found.
spec/mailers/emails/profile_spec.rb
0 → 100644
View file @
c0033e96
require
'spec_helper'
require
'email_spec'
require
'mailers/shared/notify'
describe
Notify
do
include
EmailSpec
::
Matchers
include_context
'gitlab email notification'
describe
'profile notifications'
do
describe
'for new users, the email'
do
let
(
:example_site_path
)
{
root_path
}
let
(
:new_user
)
{
create
(
:user
,
email:
new_user_address
,
created_by_id:
1
)
}
let
(
:token
)
{
'kETLwRaayvigPq_x3SNM'
}
subject
{
Notify
.
new_user_email
(
new_user
.
id
,
token
)
}
it_behaves_like
'an email sent from GitLab'
it_behaves_like
'a new user email'
it_behaves_like
'it should not have Gmail Actions links'
it_behaves_like
'a user cannot unsubscribe through footer link'
it
'contains the password text'
do
is_expected
.
to
have_body_text
/Click here to set your password/
end
it
'includes a link for user to set password'
do
params
=
"reset_password_token=
#{
token
}
"
is_expected
.
to
have_body_text
(
%r{http://localhost(:
\d
+)?/users/password/edit
\?
#{
params
}
}
)
end
it
'explains the reset link expiration'
do
is_expected
.
to
have_body_text
(
/This link is valid for \d+ (hours?|days?)/
)
is_expected
.
to
have_body_text
(
new_user_password_url
)
is_expected
.
to
have_body_text
(
/\?user_email=.*%40.*/
)
end
end
describe
'for users that signed up, the email'
do
let
(
:example_site_path
)
{
root_path
}
let
(
:new_user
)
{
create
(
:user
,
email:
new_user_address
,
password:
"securePassword"
)
}
subject
{
Notify
.
new_user_email
(
new_user
.
id
)
}
it_behaves_like
'an email sent from GitLab'
it_behaves_like
'a new user email'
it_behaves_like
'it should not have Gmail Actions links'
it_behaves_like
'a user cannot unsubscribe through footer link'
it
'should not contain the new user\'s password'
do
is_expected
.
not_to
have_body_text
/password/
end
end
describe
'user added ssh key'
do
let
(
:key
)
{
create
(
:personal_key
)
}
subject
{
Notify
.
new_ssh_key_email
(
key
.
id
)
}
it_behaves_like
'an email sent from GitLab'
it_behaves_like
'it should not have Gmail Actions links'
it_behaves_like
'a user cannot unsubscribe through footer link'
it
'is sent to the new user'
do
is_expected
.
to
deliver_to
key
.
user
.
email
end
it
'has the correct subject'
do
is_expected
.
to
have_subject
/^SSH key was added to your account$/i
end
it
'contains the new ssh key title'
do
is_expected
.
to
have_body_text
/
#{
key
.
title
}
/
end
it
'includes a link to ssh keys page'
do
is_expected
.
to
have_body_text
/
#{
profile_keys_path
}
/
end
end
describe
'user added email'
do
let
(
:email
)
{
create
(
:email
)
}
subject
{
Notify
.
new_email_email
(
email
.
id
)
}
it_behaves_like
'it should not have Gmail Actions links'
it_behaves_like
'a user cannot unsubscribe through footer link'
it
'is sent to the new user'
do
is_expected
.
to
deliver_to
email
.
user
.
email
end
it
'has the correct subject'
do
is_expected
.
to
have_subject
/^Email was added to your account$/i
end
it
'contains the new email address'
do
is_expected
.
to
have_body_text
/
#{
email
.
email
}
/
end
it
'includes a link to emails page'
do
is_expected
.
to
have_body_text
/
#{
profile_emails_path
}
/
end
end
end
end
spec/mailers/notify_spec.rb
View file @
c0033e96
...
...
@@ -9,104 +9,6 @@ describe Notify do
include_context
'gitlab email notification'
describe
'for new users, the email'
do
let
(
:example_site_path
)
{
root_path
}
let
(
:new_user
)
{
create
(
:user
,
email:
new_user_address
,
created_by_id:
1
)
}
token
=
'kETLwRaayvigPq_x3SNM'
subject
{
Notify
.
new_user_email
(
new_user
.
id
,
token
)
}
it_behaves_like
'an email sent from GitLab'
it_behaves_like
'a new user email'
it_behaves_like
'it should not have Gmail Actions links'
it_behaves_like
'a user cannot unsubscribe through footer link'
it
'contains the password text'
do
is_expected
.
to
have_body_text
/Click here to set your password/
end
it
'includes a link for user to set password'
do
params
=
"reset_password_token=
#{
token
}
"
is_expected
.
to
have_body_text
(
%r{http://localhost(:
\d
+)?/users/password/edit
\?
#{
params
}
}
)
end
it
'explains the reset link expiration'
do
is_expected
.
to
have_body_text
(
/This link is valid for \d+ (hours?|days?)/
)
is_expected
.
to
have_body_text
(
new_user_password_url
)
is_expected
.
to
have_body_text
(
/\?user_email=.*%40.*/
)
end
end
describe
'for users that signed up, the email'
do
let
(
:example_site_path
)
{
root_path
}
let
(
:new_user
)
{
create
(
:user
,
email:
new_user_address
,
password:
"securePassword"
)
}
subject
{
Notify
.
new_user_email
(
new_user
.
id
)
}
it_behaves_like
'an email sent from GitLab'
it_behaves_like
'a new user email'
it_behaves_like
'it should not have Gmail Actions links'
it_behaves_like
'a user cannot unsubscribe through footer link'
it
'should not contain the new user\'s password'
do
is_expected
.
not_to
have_body_text
/password/
end
end
describe
'user added ssh key'
do
let
(
:key
)
{
create
(
:personal_key
)
}
subject
{
Notify
.
new_ssh_key_email
(
key
.
id
)
}
it_behaves_like
'an email sent from GitLab'
it_behaves_like
'it should not have Gmail Actions links'
it_behaves_like
'a user cannot unsubscribe through footer link'
it
'is sent to the new user'
do
is_expected
.
to
deliver_to
key
.
user
.
email
end
it
'has the correct subject'
do
is_expected
.
to
have_subject
/^SSH key was added to your account$/i
end
it
'contains the new ssh key title'
do
is_expected
.
to
have_body_text
/
#{
key
.
title
}
/
end
it
'includes a link to ssh keys page'
do
is_expected
.
to
have_body_text
/
#{
profile_keys_path
}
/
end
end
describe
'user added email'
do
let
(
:email
)
{
create
(
:email
)
}
subject
{
Notify
.
new_email_email
(
email
.
id
)
}
it_behaves_like
'it should not have Gmail Actions links'
it_behaves_like
'a user cannot unsubscribe through footer link'
it
'is sent to the new user'
do
is_expected
.
to
deliver_to
email
.
user
.
email
end
it
'has the correct subject'
do
is_expected
.
to
have_subject
/^Email was added to your account$/i
end
it
'contains the new email address'
do
is_expected
.
to
have_body_text
/
#{
email
.
email
}
/
end
it
'includes a link to emails page'
do
is_expected
.
to
have_body_text
/
#{
profile_emails_path
}
/
end
end
context
'for a project'
do
describe
'items that are assignable, the email'
do
let
(
:current_user
)
{
create
(
:user
,
email:
"current@email.com"
)
}
...
...
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