-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathregister_spec.rb
More file actions
166 lines (143 loc) · 4.81 KB
/
register_spec.rb
File metadata and controls
166 lines (143 loc) · 4.81 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe 'Registration process' do
include_context 'with graphql query request'
let(:name) { Faker::Name.name }
let(:password) { Faker::Internet.password }
let(:email) { Faker::Internet.email }
let(:redirect) { 'https://google.com' }
context 'when using the user model' do
let(:query) do
<<-GRAPHQL
mutation {
userRegister(
email: "#{email}"
name: "#{name}"
password: "#{password}"
passwordConfirmation: "#{password}"
confirmUrl: "#{redirect}"
) {
credentials { accessToken }
user {
email
name
}
}
}
GRAPHQL
end
context 'when redirect_url is not whitelisted' do
let(:redirect) { 'https://not-safe.com' }
it 'returns a not whitelisted redirect url error' do
expect { post_request }.to(
not_change(User, :count)
.and(not_change(ActionMailer::Base.deliveries, :count))
)
expect(json_response[:errors]).to containing_exactly(
hash_including(
message: "Redirect to '#{redirect}' not allowed.",
extensions: { code: 'USER_ERROR' }
)
)
end
end
context 'when params are correct' do
it 'creates a new resource that requires confirmation' do
expect { post_request }.to(
change(User, :count).by(1)
.and(change(ActionMailer::Base.deliveries, :count).by(1))
)
user = User.last
expect(user).not_to be_active_for_authentication
expect(user.confirmed_at).to be_nil
expect(user).to be_valid_password(password)
expect(json_response[:data][:userRegister]).to include(
credentials: nil,
user: {
email: email,
name: name
}
)
email = Nokogiri::HTML(ActionMailer::Base.deliveries.last.body.encoded)
confirm_link = email.css('a').first['href']
confirm_token = confirm_link.match(/\?confirmationToken\=(?<token>.+)\z/)[:token]
expect(User.confirm_by_token(confirm_token)).to eq(user)
end
context 'when email address uses different casing' do
let(:email) { 'miaWallace@wallaceinc.com' }
it 'honors devise configuration for case insensitive fields' do
expect { post_request }.to change(ActionMailer::Base.deliveries, :count).by(1)
expect(User.last.email).to eq('miawallace@wallaceinc.com')
expect(json_response[:data][:userRegister]).to include(user: { email: 'miawallace@wallaceinc.com', name: name })
end
end
end
context 'when required params are missing' do
let(:email) { '' }
it 'does *NOT* create resource a resource nor send an email' do
expect { post_request }.to(
not_change(User, :count)
.and(not_change(ActionMailer::Base.deliveries, :count))
)
expect(json_response[:data][:userRegister]).to be_nil
expect(json_response[:errors]).to containing_exactly(
hash_including(
message: "User couldn't be registered",
extensions: { code: 'USER_ERROR', detailed_errors: ["Email can't be blank"] }
)
)
end
end
end
context 'when using the admin model' do
let(:query) do
<<-GRAPHQL
mutation {
adminRegister(
email: "#{email}"
password: "#{password}"
passwordConfirmation: "#{password}"
) {
authenticatable {
email
}
}
}
GRAPHQL
end
before { post_request }
it 'skips the register mutation' do
expect(json_response[:errors]).to contain_exactly(
hash_including(message: a_string_including("Field 'adminRegister' doesn't exist on type 'Mutation'"))
)
end
end
context 'when using the guest model' do
let(:query) do
<<-GRAPHQL
mutation {
guestRegister(
email: "#{email}"
password: "#{password}"
passwordConfirmation: "#{password}"
) {
credentials { accessToken client uid }
authenticatable {
email
}
}
}
GRAPHQL
end
it 'returns credentials as no confirmation is required' do
expect { post_request }.to change(Guest, :count).from(0).to(1)
expect(json_response[:data][:guestRegister]).to include(
authenticatable: { email: email },
credentials: hash_including(
uid: email,
client: Guest.last.tokens.keys.first
)
)
end
end
end