|
| 1 | +import { expect, test } from '@playwright/test'; |
| 2 | + |
| 3 | +import type { Application } from '../models/application'; |
| 4 | +import { appConfigs } from '../presets'; |
| 5 | +import type { FakeUser } from '../testUtils'; |
| 6 | +import { createTestUtils } from '../testUtils'; |
| 7 | + |
| 8 | +test.describe('Waitlist mode', () => { |
| 9 | + test.describe.configure({ mode: 'parallel' }); |
| 10 | + let app: Application; |
| 11 | + let fakeUser: FakeUser; |
| 12 | + |
| 13 | + test.beforeAll(async () => { |
| 14 | + app = await appConfigs.next.appRouter |
| 15 | + .clone() |
| 16 | + .addFile( |
| 17 | + 'src/app/provider.tsx', |
| 18 | + () => `'use client' |
| 19 | + import { ClerkProvider } from "@clerk/nextjs"; |
| 20 | + |
| 21 | + export function Provider({ children }: { children: any }) { |
| 22 | + return ( |
| 23 | + <ClerkProvider waitlistUrl='/waitlist'> |
| 24 | + {children} |
| 25 | + </ClerkProvider> |
| 26 | + ) |
| 27 | + }`, |
| 28 | + ) |
| 29 | + .addFile( |
| 30 | + 'src/app/layout.tsx', |
| 31 | + () => `import './globals.css'; |
| 32 | + import { Inter } from 'next/font/google'; |
| 33 | + import { Provider } from './provider'; |
| 34 | + |
| 35 | + const inter = Inter({ subsets: ['latin'] }); |
| 36 | + |
| 37 | + export const metadata = { |
| 38 | + title: 'Create Next App', |
| 39 | + description: 'Generated by create next app', |
| 40 | + }; |
| 41 | + |
| 42 | + export default function RootLayout({ children }: { children: React.ReactNode }) { |
| 43 | + return ( |
| 44 | + <Provider> |
| 45 | + <html lang='en'> |
| 46 | + <body className={inter.className}>{children}</body> |
| 47 | + </html> |
| 48 | + </Provider> |
| 49 | + ); |
| 50 | + }`, |
| 51 | + ) |
| 52 | + .addFile( |
| 53 | + 'src/app/hash/user/page.tsx', |
| 54 | + () => ` |
| 55 | + import { UserProfile, UserButton } from '@clerk/nextjs'; |
| 56 | + |
| 57 | + export default function Page() { |
| 58 | + return ( |
| 59 | + <div> |
| 60 | + <UserButton /> |
| 61 | + <UserProfile routing="hash" /> |
| 62 | + </div> |
| 63 | + ); |
| 64 | + }`, |
| 65 | + ) |
| 66 | + .addFile( |
| 67 | + 'src/app/waitlist/page.tsx', |
| 68 | + () => ` |
| 69 | + import { Waitlist } from '@clerk/nextjs'; |
| 70 | + |
| 71 | + export default function Page() { |
| 72 | + return ( |
| 73 | + <div> |
| 74 | + <Waitlist /> |
| 75 | + </div> |
| 76 | + ); |
| 77 | + }`, |
| 78 | + ) |
| 79 | + .commit(); |
| 80 | + await app.setup(); |
| 81 | + await app.withEnv(appConfigs.envs.withWaitlistdMode); |
| 82 | + await app.dev(); |
| 83 | + |
| 84 | + const m = createTestUtils({ app }); |
| 85 | + fakeUser = m.services.users.createFakeUser({ |
| 86 | + withUsername: true, |
| 87 | + fictionalEmail: true, |
| 88 | + withPhoneNumber: true, |
| 89 | + }); |
| 90 | + await m.services.users.createBapiUser({ |
| 91 | + ...fakeUser, |
| 92 | + username: undefined, |
| 93 | + phoneNumber: undefined, |
| 94 | + }); |
| 95 | + }); |
| 96 | + |
| 97 | + test.afterAll(async () => { |
| 98 | + await fakeUser.deleteIfExists(); |
| 99 | + await app.teardown(); |
| 100 | + }); |
| 101 | + |
| 102 | + test('Existing user signs in succesfull', async ({ page, context }) => { |
| 103 | + const u = createTestUtils({ app, page, context }); |
| 104 | + await u.po.signIn.goTo(); |
| 105 | + await u.po.signIn.waitForMounted(); |
| 106 | + await u.po.signIn.signInWithEmailAndInstantPassword({ email: fakeUser.email, password: fakeUser.password }); |
| 107 | + await u.po.expect.toBeSignedIn(); |
| 108 | + |
| 109 | + await u.po.userProfile.goTo(); |
| 110 | + await u.po.userProfile.waitForMounted(); |
| 111 | + }); |
| 112 | + |
| 113 | + test('Sign up page return restricted and click Back to sign in', async ({ page, context }) => { |
| 114 | + const u = createTestUtils({ app, page, context }); |
| 115 | + await u.po.signUp.goTo(); |
| 116 | + await u.po.signUp.waitForMounted(); |
| 117 | + |
| 118 | + await expect(u.page.getByText(/Access restricted/i).first()).toBeVisible(); |
| 119 | + const backToSignIn = u.page.getByRole('link', { name: /Sign in/i }); |
| 120 | + await backToSignIn.click(); |
| 121 | + |
| 122 | + await u.po.signIn.waitForMounted(); |
| 123 | + await u.page.waitForAppUrl('/sign-in'); |
| 124 | + }); |
| 125 | + |
| 126 | + test('Sign up page with invitation render correctly and sign up', async ({ page, context }) => { |
| 127 | + const u = createTestUtils({ app, page, context }); |
| 128 | + const invitedUser = u.services.users.createFakeUser(); |
| 129 | + |
| 130 | + const invitation = await u.services.invitations.createBapiInvitation(invitedUser.email); |
| 131 | + |
| 132 | + await u.page.goto(invitation.url); |
| 133 | + await u.po.signUp.waitForMounted(); |
| 134 | + await expect(u.page.getByText(/Create your account/i).first()).toBeVisible(); |
| 135 | + |
| 136 | + await u.po.signUp.signUp({ |
| 137 | + password: invitedUser.password, |
| 138 | + }); |
| 139 | + |
| 140 | + await u.po.expect.toBeSignedIn(); |
| 141 | + |
| 142 | + await invitedUser.deleteIfExists(); |
| 143 | + }); |
| 144 | + |
| 145 | + test('Navigate to waitlist page and join the waitlist', async ({ page, context }) => { |
| 146 | + const u = createTestUtils({ app, page, context }); |
| 147 | + await u.po.waitlist.goTo(); |
| 148 | + await u.po.waitlist.waitForMounted(); |
| 149 | + |
| 150 | + await expect(u.page.getByText(/Join the waitlist/i).first()).toBeVisible(); |
| 151 | + |
| 152 | + await u.po.waitlist.joinWaitlist({ email: fakeUser.email }); |
| 153 | + await expect(u.page.getByText(/Thanks for joining the waitlist!/i).first()).toBeVisible(); |
| 154 | + }); |
| 155 | + |
| 156 | + test('Navigate between sign-in and waitlist', async ({ page, context }) => { |
| 157 | + const u = createTestUtils({ app, page, context }); |
| 158 | + await u.po.signIn.goTo(); |
| 159 | + await u.po.signIn.waitForMounted(); |
| 160 | + |
| 161 | + const waitlistLink = u.page.getByRole('link', { name: /Join waitlist/i }); |
| 162 | + await expect(waitlistLink).toBeVisible(); |
| 163 | + await waitlistLink.click(); |
| 164 | + |
| 165 | + await u.po.waitlist.waitForMounted(); |
| 166 | + await u.page.waitForAppUrl('/waitlist'); |
| 167 | + |
| 168 | + const signInList = u.page.getByRole('link', { name: /Sign in/i }); |
| 169 | + await expect(signInList).toBeVisible(); |
| 170 | + await signInList.click(); |
| 171 | + |
| 172 | + await u.po.signIn.waitForMounted(); |
| 173 | + await u.page.waitForAppUrl('/sign-in'); |
| 174 | + }); |
| 175 | +}); |
0 commit comments