-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathresend_confirmation_spec.rb
More file actions
86 lines (74 loc) · 3.03 KB
/
resend_confirmation_spec.rb
File metadata and controls
86 lines (74 loc) · 3.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
require 'rails_helper'
RSpec.describe 'Resend confirmation' do
include_context 'with graphql query request'
let!(:user) { create(:user, confirmed_at: nil, email: 'mwallace@wallaceinc.com') }
let(:email) { user.email }
let(:id) { user.id }
let(:redirect) { Faker::Internet.url }
let(:query) do
<<-GRAPHQL
mutation {
userResendConfirmation(
email:"#{email}",
redirectUrl:"#{redirect}"
) {
message
}
}
GRAPHQL
end
context 'when params are correct' do
it 'sends an email to the user with confirmation url and returns a success message' do
expect { post_request }.to change(ActionMailer::Base.deliveries, :count).by(1)
expect(json_response[:data][:userResendConfirmation]).to include(
message: 'You will receive an email with instructions for how to confirm your email address in a few minutes.'
)
email = Nokogiri::HTML(ActionMailer::Base.deliveries.last.body.encoded)
link = email.css('a').first
confirm_link_msg_text = email.css('p')[1].inner_html
confirm_account_link_text = link.inner_html
expect(confirm_link_msg_text).to eq('You can confirm your account email through the link below:')
expect(confirm_account_link_text).to eq('Confirm my account')
# TODO: Move to feature spec
expect do
get link['href']
user.reload
end.to change(user, :confirmed_at).from(NilClass).to(ActiveSupport::TimeWithZone)
end
context 'when email address uses different casing' do
let(:email) { 'mWallace@wallaceinc.com' }
it 'honors devise configuration for case insensitive fields' do
expect { post_request }.to change(ActionMailer::Base.deliveries, :count).by(1)
expect(json_response[:data][:userResendConfirmation]).to include(
message: 'You will receive an email with instructions for how to confirm your email address in a few minutes.'
)
end
end
context 'when the user has already been confirmed' do
before { user.confirm }
it 'does *NOT* send an email and raises an error' do
expect { post_request }.to not_change(ActionMailer::Base.deliveries, :count)
expect(json_response[:data][:userResendConfirmation]).to be_nil
expect(json_response[:errors]).to contain_exactly(
hash_including(
message: 'Email was already confirmed, please try signing in',
extensions: { code: 'USER_ERROR' }
)
)
end
end
end
context "when the email isn't in the system" do
let(:email) { 'nothere@gmail.com' }
it 'does *NOT* send an email and raises an error' do
expect { post_request }.to not_change(ActionMailer::Base.deliveries, :count)
expect(json_response[:data][:userResendConfirmation]).to be_nil
expect(json_response[:errors]).to contain_exactly(
hash_including(
message: "Unable to find user with email '#{email}'.",
extensions: { code: 'USER_ERROR' }
)
)
end
end
end