-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathab_tests_spec.rb
354 lines (292 loc) · 9.03 KB
/
ab_tests_spec.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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
require 'rails_helper'
RSpec.describe AbTests do
describe '#all' do
it 'returns all registered A/B tests' do
expect(AbTests.all.values).to all(be_kind_of(AbTest))
end
end
shared_examples 'an A/B test that uses document_capture_session_uuid as a discriminator' do
subject(:bucket) do
AbTests.all[ab_test].bucket(
request: nil,
service_provider: nil,
session:,
user:,
user_session:,
)
end
let(:session) { {} }
let(:user) { nil }
let(:user_session) { {} }
context 'when A/B test is enabled' do
before do
enable_ab_test.call
reload_ab_tests
end
context 'and user is logged in' do
let(:user) { build(:user) }
context 'and document_capture_session_uuid present' do
let(:session) { { document_capture_session_uuid: 'a-random-uuid' } }
it 'returns a bucket' do
expect(bucket).not_to be_nil
end
end
context 'and document_capture_session_uuid not present' do
it 'does not return a bucket' do
expect(bucket).to be_nil
end
end
context 'and the user has a document_capture_session_uuid in their IdV session' do
let(:user_session) do
{
idv: {
document_capture_session_uuid: 'a-random-uuid',
},
}
end
it 'returns a bucket' do
expect(bucket).not_to be_nil
end
end
context 'and the user does not have an Idv::Session' do
let(:user_session) do
{}
end
it 'does not return a bucket' do
expect(bucket).to be_nil
end
it 'does not write :idv key in user_session' do
expect { bucket }.not_to change { user_session }
end
end
end
context 'when user is not logged in' do
context 'and document_capture_session_uuid present' do
let(:session) do
{ document_capture_session_uuid: 'a-random-uuid' }
end
it 'returns a bucket' do
expect(bucket).not_to be_nil
end
end
context 'and document_capture_session_uuid not present' do
it 'does not return a bucket' do
expect(bucket).to be_nil
end
end
end
end
context 'when A/B test is disabled and it would otherwise assign a bucket' do
let(:user) { build(:user) }
let(:user_session) do
{
idv: {
document_capture_session_uuid: 'a-random-uuid',
},
}
end
before do
disable_ab_test.call
reload_ab_tests
end
it 'does not assign a bucket' do
expect(bucket).to be_nil
end
end
end
describe 'DOC_AUTH_VENDOR' do
let(:ab_test) { :DOC_AUTH_VENDOR }
let(:enable_ab_test) do
-> {
allow(IdentityConfig.store).to receive(:doc_auth_vendor_default)
.and_return('vendor_a')
allow(IdentityConfig.store).to receive(:doc_auth_vendor_switching_enabled)
.and_return(true)
allow(IdentityConfig.store).to receive(:doc_auth_vendor_socure_percent)
.and_return(50)
allow(IdentityConfig.store).to receive(:doc_auth_vendor_lexis_nexis_percent)
.and_return(30)
}
end
let(:disable_ab_test) do
-> {
allow(IdentityConfig.store).to receive(:doc_auth_vendor_switching_enabled)
.and_return(false)
}
end
it_behaves_like 'an A/B test that uses document_capture_session_uuid as a discriminator'
end
describe 'ACUANT_SDK' do
let(:ab_test) { :ACUANT_SDK }
let(:disable_ab_test) do
-> {
allow(IdentityConfig.store).to receive(:idv_acuant_sdk_upgrade_a_b_testing_enabled)
.and_return(false)
}
end
let(:enable_ab_test) do
-> {
allow(IdentityConfig.store).to receive(:idv_acuant_sdk_upgrade_a_b_testing_enabled)
.and_return(true)
allow(IdentityConfig.store).to receive(:idv_acuant_sdk_upgrade_a_b_testing_percent)
.and_return(50)
}
end
it_behaves_like 'an A/B test that uses document_capture_session_uuid as a discriminator'
end
describe 'RECAPTCHA_SIGN_IN' do
let(:user) { nil }
let(:user_session) { {} }
subject(:bucket) do
AbTests::RECAPTCHA_SIGN_IN.bucket(
request: nil,
service_provider: nil,
session: nil,
user:,
user_session:,
)
end
context 'when A/B test is disabled' do
before do
allow(IdentityConfig.store).to receive(:sign_in_recaptcha_percent_tested).and_return(0)
reload_ab_tests
end
context 'when it would otherwise assign a bucket' do
let(:user) { build(:user) }
it 'does not return a bucket' do
expect(bucket).to be_nil
end
end
end
context 'when A/B test is enabled' do
before do
allow(IdentityConfig.store).to receive(:sign_in_recaptcha_percent_tested).and_return(100)
reload_ab_tests
end
context 'with no associated user' do
let(:user) { nil }
it 'returns a bucket' do
expect(bucket).not_to be_nil
end
end
context 'with an associated user' do
let(:user) { build(:user) }
it 'returns a bucket' do
expect(bucket).not_to be_nil
end
context 'with user session indicating recaptcha was not performed at sign-in' do
let(:user_session) { { captcha_validation_performed_at_sign_in: false } }
it 'does not return a bucket' do
expect(bucket).to be_nil
end
end
end
end
end
describe 'RECOMMEND_WEBAUTHN_PLATFORM_FOR_SMS_USER' do
let(:user) { create(:user) }
subject(:bucket) do
AbTests::RECOMMEND_WEBAUTHN_PLATFORM_FOR_SMS_USER.bucket(
request: nil,
service_provider: nil,
session: nil,
user:,
user_session: nil,
)
end
before do
allow(IdentityConfig.store).to receive(
:recommend_webauthn_platform_for_sms_ab_test_account_creation_percent,
).and_return(recommend_webauthn_platform_for_sms_ab_test_account_creation_percent)
allow(IdentityConfig.store).to receive(
:recommend_webauthn_platform_for_sms_ab_test_authentication_percent,
).and_return(recommend_webauthn_platform_for_sms_ab_test_authentication_percent)
reload_ab_tests
end
context 'when A/B test is disabled' do
let(:recommend_webauthn_platform_for_sms_ab_test_account_creation_percent) { 0 }
let(:recommend_webauthn_platform_for_sms_ab_test_authentication_percent) { 0 }
it 'does not return a bucket' do
expect(bucket).to be_nil
end
end
context 'when A/B test is enabled' do
let(:recommend_webauthn_platform_for_sms_ab_test_account_creation_percent) { 1 }
let(:recommend_webauthn_platform_for_sms_ab_test_authentication_percent) { 1 }
it 'returns a bucket' do
expect(bucket).not_to be_nil
end
end
end
describe 'SOCURE_IDV_SHADOW_MODE_FOR_NON_DOCV_USERS' do
let(:user) { create(:user) }
subject(:bucket) do
AbTests::SOCURE_IDV_SHADOW_MODE_FOR_NON_DOCV_USERS.bucket(
request: nil,
service_provider: nil,
session: nil,
user:,
user_session: nil,
)
end
before do
allow(IdentityConfig.store).to receive(
:socure_idplus_shadow_mode_percent,
).and_return(0)
reload_ab_tests
end
context 'when the A/B test is disabled' do
it 'does not return a bucket' do
expect(bucket).to be_nil
end
end
context 'when the A/B test is enabled' do
before do
allow(IdentityConfig.store).to receive(
:socure_idplus_shadow_mode_percent,
).and_return(100)
reload_ab_tests
end
it 'returns a bucket' do
expect(bucket).to eq :socure_shadow_mode_for_non_docv_users
end
end
end
describe 'DESKTOP_FT_UNLOCK_SETUP' do
let(:user) { nil }
let(:user_session) { {} }
subject(:bucket) do
AbTests::DESKTOP_FT_UNLOCK_SETUP.bucket(
request: nil,
service_provider: nil,
session: nil,
user:,
user_session:,
)
end
context 'when A/B test is disabled' do
before do
allow(IdentityConfig.store).to receive(:desktop_ft_unlock_setup_option_percent_tested)
.and_return(0)
reload_ab_tests
end
context 'when it would otherwise assign a bucket' do
let(:user) { build(:user) }
it 'does not return a bucket' do
expect(bucket).to be_nil
end
end
end
context 'when A/B test is enabled' do
before do
allow(IdentityConfig.store).to receive(:desktop_ft_unlock_setup_option_percent_tested)
.and_return(100)
reload_ab_tests
end
let(:user) { build(:user) }
it 'returns a bucket' do
expect(bucket).not_to be_nil
end
end
end
end