-
Notifications
You must be signed in to change notification settings - Fork 71
/
sign_up_test.rb
309 lines (267 loc) · 12.4 KB
/
sign_up_test.rb
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
# frozen_string_literal: true
require 'application_system_test_case'
class SignUpTest < ApplicationSystemTestCase
setup do
@bot_token = Discord::Server.authorize_token
Discord::Server.authorize_token = nil
end
teardown do
Discord::Server.authorize_token = @bot_token
end
test 'sign up' do
visit '/users/new'
within 'form[name=user]' do
fill_in 'user[login_name]', with: 'foo'
fill_in 'user[email]', with: 'test@example.com'
fill_in 'user[name]', with: 'テスト 太郎'
fill_in 'user[name_kana]', with: 'テスト タロウ'
fill_in 'user[description]', with: 'テスト太郎です。'
fill_in 'user[password]', with: 'testtest'
fill_in 'user[password_confirmation]', with: 'testtest'
fill_in 'user[after_graduation_hope]', with: '起業したいです'
select '学生', from: 'user[job]'
find('label', text: 'Mac(Intel チップ)').click
select '未経験', from: 'user[experience]'
find('label', text: 'アンチハラスメントポリシーに同意').click
find('label', text: '利用規約に同意').click
end
fill_stripe_element('4242 4242 4242 4242', '12 / 50', '111')
VCR.use_cassette 'sign_up/valid-card', record: :once, match_requests_on: %i[method uri] do
click_button '参加する'
assert_text 'サインアップメールをお送りしました。メールからサインアップを完了させてください。'
end
end
test 'sign up with expired card' do
visit '/users/new'
within 'form[name=user]' do
fill_in 'user[login_name]', with: 'foo'
fill_in 'user[email]', with: 'jiro@example.com'
fill_in 'user[name]', with: 'テスト 次郎'
fill_in 'user[name_kana]', with: 'テスト ジロウ'
fill_in 'user[description]', with: 'テスト次郎です。'
fill_in 'user[password]', with: 'testtest'
fill_in 'user[password_confirmation]', with: 'testtest'
select '学生', from: 'user[job]'
find('label', text: 'Mac(Intel チップ)').click
select '未経験', from: 'user[experience]'
find('label', text: 'アンチハラスメントポリシーに同意').click
find('label', text: '利用規約に同意').click
end
fill_stripe_element('4000 0000 0000 0069', '12 / 50', '111')
VCR.use_cassette 'sign_up/expired-card', vcr_options do
click_button '参加する'
assert_text 'クレジットカードが有効期限切れです。'
end
end
test 'sign up with incorrect cvc card' do
visit '/users/new'
within 'form[name=user]' do
fill_in 'user[login_name]', with: 'foo'
fill_in 'user[email]', with: 'saburo@example.com'
fill_in 'user[name]', with: 'テスト 三郎'
fill_in 'user[name_kana]', with: 'テスト サブロウ'
fill_in 'user[description]', with: 'テスト三郎です。'
fill_in 'user[password]', with: 'testtest'
fill_in 'user[password_confirmation]', with: 'testtest'
select '学生', from: 'user[job]'
find('label', text: 'Mac(Intel チップ)').click
select '未経験', from: 'user[experience]'
find('label', text: 'アンチハラスメントポリシーに同意').click
find('label', text: '利用規約に同意').click
end
fill_stripe_element('4000 0000 0000 0127', '12 / 50', '111')
VCR.use_cassette 'sign_up/incorrect-cvc-card', vcr_options do
click_button '参加する'
assert_text 'クレジットカードセキュリティコードが正しくありません。'
end
end
test 'sign up with declined card' do
visit '/users/new'
within 'form[name=user]' do
fill_in 'user[login_name]', with: 'foo'
fill_in 'user[email]', with: 'hanako@example.com'
fill_in 'user[name]', with: 'テスト 花子'
fill_in 'user[name_kana]', with: 'テスト ハナコ'
fill_in 'user[description]', with: 'テスト花子です。'
fill_in 'user[password]', with: 'testtest'
fill_in 'user[password_confirmation]', with: 'testtest'
select '学生', from: 'user[job]'
find('label', text: 'Mac(Intel チップ)').click
select '未経験', from: 'user[experience]'
find('label', text: 'アンチハラスメントポリシーに同意').click
find('label', text: '利用規約に同意').click
end
fill_stripe_element('4000 0000 0000 0002', '12 / 50', '111')
VCR.use_cassette 'sign_up/declined-card', vcr_options do
click_button '参加する'
assert_text 'クレジットカードへの請求が拒否されました。'
end
end
test 'sign up as adviser' do
visit '/users/new?role=adviser'
email = 'haruko@example.com'
within 'form[name=user]' do
fill_in 'user[login_name]', with: 'foo'
fill_in 'user[email]', with: email
fill_in 'user[name]', with: 'テスト 春子'
fill_in 'user[name_kana]', with: 'テスト ハルコ'
fill_in 'user[description]', with: 'テスト春子です。'
fill_in 'user[password]', with: 'testtest'
fill_in 'user[password_confirmation]', with: 'testtest'
find('label', text: 'アンチハラスメントポリシーに同意').click
find('label', text: '利用規約に同意').click
end
click_button 'アドバイザー登録'
assert_text 'サインアップメールをお送りしました。メールからサインアップを完了させてください。'
assert User.find_by(email:).adviser?
end
test 'sign up as trainee' do
visit '/users/new?role=trainee'
email = 'natsumi@example.com'
within 'form[name=user]' do
fill_in 'user[login_name]', with: 'foo'
fill_in 'user[email]', with: email
fill_in 'user[name]', with: 'テスト 夏美'
fill_in 'user[name_kana]', with: 'テスト ナツミ'
fill_in 'user[description]', with: 'テスト夏美です。'
fill_in 'user[password]', with: 'testtest'
fill_in 'user[password_confirmation]', with: 'testtest'
select '学生', from: 'user[job]'
find('label', text: 'Mac(Intel チップ)').click
select '未経験', from: 'user[experience]'
first('.choices__inner').click
find('.choices__list--dropdown').click
find('.choices__list').click
find('#choices--js-choices-single-select-item-choice-2').click
find('label', text: 'アンチハラスメントポリシーに同意').click
find('label', text: '利用規約に同意').click
end
click_button '参加する'
assert_text 'サインアップメールをお送りしました。メールからサインアップを完了させてください。'
assert User.find_by(email:).trainee?
end
test 'form item about job seek is only displayed to students' do
visit '/users/new'
assert has_field? 'user[job_seeker]', visible: :all
visit '/users/new?role=adviser'
assert has_no_field? 'user[job_seeker]', visible: :all
visit '/users/new?role=trainee'
assert has_no_field? 'user[job_seeker]', visible: :all
end
test 'sign up with reserved login name' do
visit '/users/new'
within 'form[name=user]' do
fill_in 'user[login_name]', with: 'mentor'
fill_in 'user[email]', with: 'akiko@example.com'
fill_in 'user[name]', with: 'テスト 秋子'
fill_in 'user[name_kana]', with: 'テスト アキコ'
fill_in 'user[description]', with: 'テスト秋子です。'
fill_in 'user[password]', with: 'testtest'
fill_in 'user[password_confirmation]', with: 'testtest'
select '学生', from: 'user[job]'
find('label', text: 'Mac(Intel チップ)').click
select '未経験', from: 'user[experience]'
find('label', text: 'アンチハラスメントポリシーに同意').click
find('label', text: '利用規約に同意').click
end
fill_stripe_element('4242 4242 4242 4242', '12 / 50', '111')
VCR.use_cassette 'sign_up/valid-card', record: :once do
click_button '参加する'
assert_text 'に使用できない文字列が含まれています'
end
end
test 'sign up as adviser with company_id' do
visit "/users/new?role=adviser&company_id=#{companies(:company2).id}"
email = 'fuyuko@example.com'
within 'form[name=user]' do
fill_in 'user[login_name]', with: 'foo'
fill_in 'user[email]', with: email
fill_in 'user[name]', with: 'テスト ふゆこ'
fill_in 'user[name_kana]', with: 'テスト フユコ'
fill_in 'user[description]', with: 'テストふゆこです。'
fill_in 'user[password]', with: 'testtest'
fill_in 'user[password_confirmation]', with: 'testtest'
find('label', text: 'アンチハラスメントポリシーに同意').click
find('label', text: '利用規約に同意').click
end
click_button 'アドバイザー登録'
assert_text 'サインアップメールをお送りしました。メールからサインアップを完了させてください。'
assert_equal User.find_by(email:).company_id, companies(:company2).id
end
test 'sign up as trainee with course_id' do
course = courses(:course2)
visit "/users/new?role=trainee&course_id=#{course.id}"
email = 'fuyuko@example.com'
within 'form[name=user]' do
fill_in 'user[login_name]', with: 'foo'
fill_in 'user[email]', with: email
fill_in 'user[name]', with: 'テスト ふゆこ'
fill_in 'user[name_kana]', with: 'テスト フユコ'
fill_in 'user[description]', with: 'テストふゆこです。'
fill_in 'user[password]', with: 'testtest'
fill_in 'user[password_confirmation]', with: 'testtest'
select '学生', from: 'user[job]'
find('label', text: 'Mac(Intel チップ)').click
select '未経験', from: 'user[experience]'
first('.choices__inner').click
find('.choices__list--dropdown').click
find('.choices__list').click
find('#choices--js-choices-single-select-item-choice-2').click
find('label', text: 'アンチハラスメントポリシーに同意').click
find('label', text: '利用規約に同意').click
end
click_button '参加する'
assert_equal User.find_by(email:).course_id, course.id
end
test 'sign up with empty description ' do
visit '/users/new'
within 'form[name=user]' do
fill_in 'user[login_name]', with: 'foo'
fill_in 'user[email]', with: 'siro@example.com'
fill_in 'user[name]', with: 'テスト 四郎'
fill_in 'user[name_kana]', with: 'テスト シロウ'
fill_in 'user[password]', with: 'testtest'
fill_in 'user[password_confirmation]', with: 'testtest'
select '学生', from: 'user[job]'
find('label', text: 'Mac(Intel チップ)').click
select '未経験', from: 'user[experience]'
find('label', text: 'アンチハラスメントポリシーに同意').click
find('label', text: '利用規約に同意').click
end
fill_stripe_element('5555 5555 5555 4444', '12 / 50', '111')
VCR.use_cassette 'sign_up/valid-card', record: :once do
click_button '参加する'
assert_text '自己紹介を入力してください'
end
end
test 'sign up with tag' do
email = 'taguo@example.com'
tag = 'タグ夫'
visit '/users/new'
within 'form[name=user]' do
fill_in 'user[login_name]', with: 'taguo'
fill_in 'user[email]', with: email
fill_in 'user[name]', with: 'テスト タグ夫'
fill_in 'user[name_kana]', with: 'テスト タグオ'
fill_in 'user[description]', with: 'タグ登録確認用'
fill_in 'user[password]', with: 'testtest'
fill_in 'user[password_confirmation]', with: 'testtest'
select '学生', from: 'user[job]'
find('label', text: 'Mac(Intel チップ)').click
select '未経験', from: 'user[experience]'
find('label', text: 'アンチハラスメントポリシーに同意').click
find('label', text: '利用規約に同意').click
tag_input = find('.tagify__input')
tag_input.set tag
tag_input.native.send_keys :return
end
fill_stripe_element('5555 5555 5555 4444', '12 / 50', '111')
VCR.use_cassette 'sign_up/tag', record: :once, match_requests_on: %i[method uri] do
click_button '参加する'
assert_text 'サインアップメールをお送りしました。メールからサインアップを完了させてください。'
user = User.find_by(email:)
visit_with_auth user_path(user), 'taguo'
assert_text 'タグ夫'
end
end
end