-
Notifications
You must be signed in to change notification settings - Fork 452
Expand file tree
/
Copy pathSignInFactorOneTransfer.test.tsx
More file actions
130 lines (111 loc) · 5.3 KB
/
SignInFactorOneTransfer.test.tsx
File metadata and controls
130 lines (111 loc) · 5.3 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
import { ClerkAPIResponseError } from '@clerk/shared/error';
import type { SignInResource } from '@clerk/shared/types';
import { waitFor } from '@testing-library/react';
import { describe, expect, it } from 'vitest';
import { bindCreateFixtures } from '@/test/create-fixtures';
import { render, screen } from '@/test/utils';
import { SignInFactorOne } from '../SignInFactorOne';
const { createFixtures } = bindCreateFixtures('SignIn');
describe('SignInFactorOne sign-up-if-missing transfer', () => {
it('triggers sign-up transfer when attemptFirstFactor fails with transferable status', async () => {
const { wrapper, fixtures, props } = await createFixtures(f => {
f.withEmailAddress();
f.withPreferredSignInStrategy({ strategy: 'otp' });
f.withEnumerationProtection();
f.startSignInWithEmailAddress({ supportEmailCode: true, supportPassword: false });
});
props.setProps({ withSignUp: true });
fixtures.signIn.prepareFirstFactor.mockReturnValueOnce(Promise.resolve({} as SignInResource));
fixtures.signIn.attemptFirstFactor.mockImplementationOnce(() => {
// Simulate SDK updating the resource before throwing (backend returns 404 with transferable in meta.client)
fixtures.signIn.firstFactorVerification = { status: 'transferable' } as any;
return Promise.reject(
new ClerkAPIResponseError('Error', {
data: [{ code: 'form_identifier_not_found', long_message: '', message: '' }],
status: 404,
}),
);
});
fixtures.signUp.create.mockResolvedValueOnce({ status: 'complete', createdSessionId: 'sess_123' } as any);
const { userEvent } = render(<SignInFactorOne />, { wrapper });
await userEvent.type(screen.getByLabelText(/Enter verification code/i), '123456');
await waitFor(() => {
expect(fixtures.signUp.create).toHaveBeenCalledWith(
expect.objectContaining({
transfer: true,
}),
);
});
});
it('navigates to create/continue when transfer results in missing_requirements', async () => {
const { wrapper, fixtures, props } = await createFixtures(f => {
f.withEmailAddress();
f.withPreferredSignInStrategy({ strategy: 'otp' });
f.withEnumerationProtection();
f.startSignInWithEmailAddress({ supportEmailCode: true, supportPassword: false });
});
props.setProps({ withSignUp: true });
fixtures.signIn.prepareFirstFactor.mockReturnValueOnce(Promise.resolve({} as SignInResource));
fixtures.signIn.attemptFirstFactor.mockImplementationOnce(() => {
fixtures.signIn.firstFactorVerification = { status: 'transferable' } as any;
return Promise.reject(
new ClerkAPIResponseError('Error', {
data: [{ code: 'form_identifier_not_found', long_message: '', message: '' }],
status: 404,
}),
);
});
fixtures.signUp.create.mockResolvedValueOnce({ status: 'missing_requirements' } as any);
const { userEvent } = render(<SignInFactorOne />, { wrapper });
await userEvent.type(screen.getByLabelText(/Enter verification code/i), '123456');
await waitFor(() => {
expect(fixtures.router.navigate).toHaveBeenCalledWith('../create/continue');
});
});
it('does not trigger transfer when enumeration protection is disabled', async () => {
const { wrapper, fixtures, props } = await createFixtures(f => {
f.withEmailAddress();
f.withPreferredSignInStrategy({ strategy: 'otp' });
f.startSignInWithEmailAddress({ supportEmailCode: true, supportPassword: false });
});
props.setProps({ withSignUp: true });
fixtures.signIn.prepareFirstFactor.mockReturnValueOnce(Promise.resolve({} as SignInResource));
fixtures.signIn.attemptFirstFactor.mockImplementationOnce(() => {
fixtures.signIn.firstFactorVerification = { status: 'transferable' } as any;
return Promise.reject(
new ClerkAPIResponseError('Error', {
data: [{ code: 'form_identifier_not_found', long_message: '', message: '' }],
status: 404,
}),
);
});
const { userEvent } = render(<SignInFactorOne />, { wrapper });
await userEvent.type(screen.getByLabelText(/Enter verification code/i), '123456');
await waitFor(() => {
expect(fixtures.signUp.create).not.toHaveBeenCalled();
});
});
it('does not trigger transfer when not in combined flow', async () => {
const { wrapper, fixtures } = await createFixtures(f => {
f.withEmailAddress();
f.withPreferredSignInStrategy({ strategy: 'otp' });
f.withEnumerationProtection();
f.startSignInWithEmailAddress({ supportEmailCode: true, supportPassword: false });
});
fixtures.signIn.prepareFirstFactor.mockReturnValueOnce(Promise.resolve({} as SignInResource));
fixtures.signIn.attemptFirstFactor.mockImplementationOnce(() => {
fixtures.signIn.firstFactorVerification = { status: 'transferable' } as any;
return Promise.reject(
new ClerkAPIResponseError('Error', {
data: [{ code: 'form_identifier_not_found', long_message: '', message: '' }],
status: 404,
}),
);
});
const { userEvent } = render(<SignInFactorOne />, { wrapper });
await userEvent.type(screen.getByLabelText(/Enter verification code/i), '123456');
await waitFor(() => {
expect(fixtures.signUp.create).not.toHaveBeenCalled();
});
});
});