-
Notifications
You must be signed in to change notification settings - Fork 331
/
Copy pathcommon.ts
179 lines (141 loc) · 6.57 KB
/
common.ts
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
import type { BrowserContext, Page } from '@playwright/test';
import { expect } from '@playwright/test';
import type { Application } from '../../models/application';
import type { FakeUser } from '../../testUtils';
import { createTestUtils } from '../../testUtils';
const CLERK_DB_JWT_COOKIE_NAME = '__clerk_db_jwt';
const CLERK_SESSION_COOKIE_NAME = '__session';
type TestParams = {
app: Application;
page: Page;
context: BrowserContext;
fakeUser: FakeUser;
};
export const testSignIn = async ({ app, page, context, fakeUser }: TestParams) => {
const u = createTestUtils({ app, page, context });
// Begin in localhost
await u.page.goToAppHome();
await u.page.waitForClerkJsLoaded();
await u.po.expect.toBeSignedOut();
// Get the Initial DevBrowser JWT
const initialDbJwt = await context
.cookies(page.url())
.then(cookies => cookies.find(c => c.name === CLERK_DB_JWT_COOKIE_NAME)?.value);
// Navigate to the Account Portal
await u.page.getByRole('button', { name: /Sign in/i }).click();
await u.po.signIn.waitForMounted();
const accountPortalURL = page.url();
// Check that we are in Account Portal
expect(accountPortalURL).toContain('.accounts.dev');
// Check that the DevBrowser JWT between localhost and AP is the same
const accountPortalDbJwt = await context
.cookies(accountPortalURL)
.then(cookies => cookies.find(c => c.name === CLERK_DB_JWT_COOKIE_NAME)?.value);
expect(accountPortalDbJwt).toEqual(initialDbJwt);
// Sign in with email and password
await u.po.signIn.signInWithEmailAndInstantPassword({ email: fakeUser.email, password: fakeUser.password });
// Navigate back to localhost
await u.page.waitForAppUrl('/');
await u.po.expect.toBeSignedIn();
await u.po.userButton.waitForMounted();
// Get the new DevBrowser JWT that was set after signing in the Account Portal
const appDbJwtAfterSignIn = await context
.cookies(accountPortalURL)
.then(cookies => cookies.find(c => c.name === CLERK_DB_JWT_COOKIE_NAME)?.value);
// Get the new DevBrowser JWT
const newLocalhostDbJwt = await context
.cookies(page.url())
.then(cookies => cookies.find(c => c.name === CLERK_DB_JWT_COOKIE_NAME)?.value);
// Get the __session cookie
const __session = await context
.cookies(page.url())
.then(cookies => cookies.find(c => c.name === CLERK_SESSION_COOKIE_NAME)?.value);
// Check that the new localhost DevBrowser JWT is the same as the one set after signing in the Account Portal
// and the same as the initial DevBrowser JWT
expect(newLocalhostDbJwt).toEqual(appDbJwtAfterSignIn);
expect(newLocalhostDbJwt).toEqual(initialDbJwt);
// Check that the __session cookie is set
expect(!!__session).toBeTruthy();
expect(await u.po.userButton.waitForMounted()).not.toBeUndefined();
// cleanup the search params after consuming the dev browser jwt
const finalURL = new URL(u.page.url());
expect(finalURL.searchParams.size).toEqual(0);
};
export const testSignUp = async ({ app, page, context }: TestParams) => {
const u = createTestUtils({ app, page, context });
const tempUser = u.services.users.createFakeUser({ fictionalEmail: true });
// Begin in localhost
await u.page.goToAppHome();
await u.page.waitForClerkJsLoaded();
await u.po.expect.toBeSignedOut();
// Get the Initial DevBrowser JWT
const initialDbJwt = await context
.cookies(page.url())
.then(cookies => cookies.find(c => c.name === CLERK_DB_JWT_COOKIE_NAME)?.value);
// Navigate to the Account Portal
await u.page.getByRole('button', { name: /Sign up/i }).click();
await u.po.signUp.waitForMounted();
// Check that the DevBrowser JWT between localhost and AP is the same
const accountPortalURL = page.url();
// Check that we are in Account Portal
expect(accountPortalURL).toContain('.accounts.dev');
const accountPortalDbJwt = await context
.cookies(accountPortalURL)
.then(cookies => cookies.find(c => c.name === CLERK_DB_JWT_COOKIE_NAME)?.value);
expect(accountPortalDbJwt).toEqual(initialDbJwt);
// Sign up with email and password
await u.po.signUp.signUpWithEmailAndPassword({ email: tempUser.email, password: tempUser.password });
await u.po.signUp.enterOtpCode('424242');
// Navigate back to localhost
await u.page.waitForAppUrl('/');
await u.po.expect.toBeSignedIn();
await u.po.userButton.waitForMounted();
// Get the new DevBrowser JWT that was set after signing in the Account Portal
const appDbJwtAfterSignIn = await context
.cookies(accountPortalURL)
.then(cookies => cookies.find(c => c.name === CLERK_DB_JWT_COOKIE_NAME)?.value);
// Get the new DevBrowser JWT
const newLocalhostDbJwt = await context
.cookies(u.page.url())
.then(cookies => cookies.find(c => c.name === CLERK_DB_JWT_COOKIE_NAME)?.value);
// Get the __session cookie
const __session = await context
.cookies(u.page.url())
.then(cookies => cookies.find(c => c.name === CLERK_SESSION_COOKIE_NAME)?.value);
// Check that the new localhost DevBrowser JWT is the same as the one set after signing in the Account Portal
// and the same as the initial DevBrowser JWT
expect(newLocalhostDbJwt).toEqual(appDbJwtAfterSignIn);
expect(newLocalhostDbJwt).toEqual(initialDbJwt);
// Check that the __session cookie is set
expect(!!__session).toBeTruthy();
expect(await u.po.userButton.waitForMounted()).not.toBeUndefined();
// cleanup the search params after consuming the dev browser jwt
const finalURL = new URL(u.page.url());
expect(finalURL.searchParams.size).toEqual(0);
// cleanup
await tempUser.deleteIfExists();
};
export const testSSR = async ({ app, page, context, fakeUser }: TestParams) => {
const u = createTestUtils({ app, page, context });
// Begin in localhost
await u.page.goToAppHome();
await u.page.waitForClerkJsLoaded();
await u.po.expect.toBeSignedOut();
// Navigate to the Account Portal
await u.page.getByRole('button', { name: /Sign in/i }).click();
await u.po.signIn.waitForMounted();
// Sign in with email and password
await u.po.signIn.signInWithEmailAndInstantPassword({ email: fakeUser.email, password: fakeUser.password });
// Navigate back to localhost
const response = await page.waitForResponse(
response =>
response.url().includes('localhost') &&
response.status() === 200 &&
response.request().resourceType() === 'document',
);
// This text is included in the SSR response because it's wrapped inside the SignedIn component
expect(await response.text()).toContain('signed-in-state');
await u.po.expect.toBeSignedIn();
await u.po.userButton.waitForMounted();
expect(await u.po.userButton.waitForMounted()).not.toBeUndefined();
};