-
Notifications
You must be signed in to change notification settings - Fork 327
/
Copy pathrestricted-mode.test.ts
131 lines (110 loc) · 3.6 KB
/
restricted-mode.test.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
import { expect, test } from '@playwright/test';
import type { Application } from '../models/application';
import { appConfigs } from '../presets';
import type { FakeUser } from '../testUtils';
import { createTestUtils } from '../testUtils';
test.describe('Sign-up restricted mode', () => {
test.describe.configure({ mode: 'serial' });
let app: Application;
let fakeUser: FakeUser;
test.beforeAll(async () => {
app = await appConfigs.next.appRouter
.clone()
.addFile(
'src/app/provider.tsx',
() => `'use client'
import { ClerkProvider } from "@clerk/nextjs";
export function Provider({ children }: { children: any }) {
return (
<ClerkProvider>
{children}
</ClerkProvider>
)
}`,
)
.addFile(
'src/app/layout.tsx',
() => `import './globals.css';
import { Inter } from 'next/font/google';
import { Provider } from './provider';
const inter = Inter({ subsets: ['latin'] });
export const metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<Provider>
<html lang='en'>
<body className={inter.className}>{children}</body>
</html>
</Provider>
);
}`,
)
.addFile(
'src/app/hash/user/page.tsx',
() => `
import { UserProfile, UserButton } from '@clerk/nextjs';
export default function Page() {
return (
<div>
<UserButton />
<UserProfile routing="hash" />
</div>
);
}`,
)
.commit();
await app.setup();
await app.withEnv(appConfigs.envs.withRestrictedMode);
await app.dev();
const m = createTestUtils({ app });
fakeUser = m.services.users.createFakeUser({
withUsername: true,
fictionalEmail: true,
withPhoneNumber: true,
});
await m.services.users.createBapiUser({
...fakeUser,
username: undefined,
phoneNumber: undefined,
});
});
test.afterAll(async () => {
await fakeUser.deleteIfExists();
await app.teardown();
});
test('Existing user signs in succesfull', async ({ page, context }) => {
const u = createTestUtils({ app, page, context });
await u.po.signIn.goTo();
await u.po.signIn.waitForMounted();
await u.po.signIn.signInWithEmailAndInstantPassword({ email: fakeUser.email, password: fakeUser.password });
await u.po.expect.toBeSignedIn();
await u.po.userProfile.goTo();
await u.po.userProfile.waitForMounted();
});
test('Sign up page return restricted and click Back to sign in', async ({ page, context }) => {
const u = createTestUtils({ app, page, context });
await u.po.signUp.goTo();
await u.po.signUp.waitForMounted();
await expect(u.page.getByText(/Access restricted/i).first()).toBeVisible();
const backToSignIn = u.page.getByRole('link', { name: /Sign in/i });
await backToSignIn.click();
await u.po.signUp.waitForMounted();
await u.page.waitForAppUrl('/sign-up');
});
test('Sign up page with invitation render correctly and sign up', async ({ page, context }) => {
const u = createTestUtils({ app, page, context });
const invitedUser = u.services.users.createFakeUser();
const invitation = await u.services.invitations.createBapiInvitation(invitedUser.email);
await u.page.goto(invitation.url);
await u.po.signUp.waitForMounted();
await expect(u.page.getByText(/Create your account/i).first()).toBeVisible();
await u.po.signUp.signUp({
password: invitedUser.password,
});
await u.po.expect.toBeSignedIn();
await invitedUser.deleteIfExists();
});
});