|
| 1 | +import { expect, test } from '@playwright/test'; |
| 2 | + |
| 3 | +import { appConfigs } from '../presets'; |
| 4 | +import { createTestUtils, type FakeUser, testAgainstRunningApps } from '../testUtils'; |
| 5 | + |
| 6 | +testAgainstRunningApps({ withEnv: [appConfigs.envs.withSignInOrUpFlow] })('sign-in-or-up flow @nextjs', ({ app }) => { |
| 7 | + test.describe.configure({ mode: 'serial' }); |
| 8 | + |
| 9 | + test.afterAll(async () => { |
| 10 | + await app.teardown(); |
| 11 | + }); |
| 12 | + |
| 13 | + test.describe('sign-in', () => { |
| 14 | + let fakeUser: FakeUser; |
| 15 | + |
| 16 | + test.beforeAll(async () => { |
| 17 | + const u = createTestUtils({ app }); |
| 18 | + fakeUser = u.services.users.createFakeUser({ |
| 19 | + withPhoneNumber: true, |
| 20 | + withUsername: true, |
| 21 | + }); |
| 22 | + await u.services.users.createBapiUser(fakeUser); |
| 23 | + }); |
| 24 | + |
| 25 | + test.afterAll(async () => { |
| 26 | + await fakeUser.deleteIfExists(); |
| 27 | + }); |
| 28 | + |
| 29 | + test('flows are combined', async ({ page, context }) => { |
| 30 | + const u = createTestUtils({ app, page, context }); |
| 31 | + await u.po.signIn.goTo(); |
| 32 | + |
| 33 | + await expect(u.page.getByText(`Don’t have an account?`)).toBeHidden(); |
| 34 | + }); |
| 35 | + |
| 36 | + test('sign in with email and password', async ({ page, context }) => { |
| 37 | + const u = createTestUtils({ app, page, context }); |
| 38 | + await u.po.signIn.goTo(); |
| 39 | + await u.po.signIn.setIdentifier(fakeUser.email); |
| 40 | + await u.po.signIn.continue(); |
| 41 | + await u.po.signIn.setPassword(fakeUser.password); |
| 42 | + await u.po.signIn.continue(); |
| 43 | + await u.po.expect.toBeSignedIn(); |
| 44 | + }); |
| 45 | + |
| 46 | + test('sign in with email and instant password', async ({ page, context }) => { |
| 47 | + const u = createTestUtils({ app, page, context }); |
| 48 | + await u.po.signIn.goTo(); |
| 49 | + await u.po.signIn.signInWithEmailAndInstantPassword({ email: fakeUser.email, password: fakeUser.password }); |
| 50 | + await u.po.expect.toBeSignedIn(); |
| 51 | + }); |
| 52 | + |
| 53 | + test('sign in with email code', async ({ page, context }) => { |
| 54 | + const u = createTestUtils({ app, page, context }); |
| 55 | + await u.po.signIn.goTo(); |
| 56 | + await u.po.signIn.getIdentifierInput().fill(fakeUser.email); |
| 57 | + await u.po.signIn.continue(); |
| 58 | + await u.po.signIn.getUseAnotherMethodLink().click(); |
| 59 | + await u.po.signIn.getAltMethodsEmailCodeButton().click(); |
| 60 | + await u.po.signIn.enterTestOtpCode(); |
| 61 | + await u.po.expect.toBeSignedIn(); |
| 62 | + }); |
| 63 | + |
| 64 | + test('sign in with phone number and password', async ({ page, context }) => { |
| 65 | + const u = createTestUtils({ app, page, context }); |
| 66 | + await u.po.signIn.goTo(); |
| 67 | + await u.po.signIn.usePhoneNumberIdentifier().click(); |
| 68 | + await u.po.signIn.getIdentifierInput().fill(fakeUser.phoneNumber); |
| 69 | + await u.po.signIn.setPassword(fakeUser.password); |
| 70 | + await u.po.signIn.continue(); |
| 71 | + await u.po.expect.toBeSignedIn(); |
| 72 | + }); |
| 73 | + |
| 74 | + test('sign in only with phone number', async ({ page, context }) => { |
| 75 | + const u = createTestUtils({ app, page, context }); |
| 76 | + const fakeUserWithoutPassword = u.services.users.createFakeUser({ |
| 77 | + fictionalEmail: true, |
| 78 | + withPassword: false, |
| 79 | + withPhoneNumber: true, |
| 80 | + }); |
| 81 | + await u.services.users.createBapiUser(fakeUserWithoutPassword); |
| 82 | + await u.po.signIn.goTo(); |
| 83 | + await u.po.signIn.usePhoneNumberIdentifier().click(); |
| 84 | + await u.po.signIn.getIdentifierInput().fill(fakeUserWithoutPassword.phoneNumber); |
| 85 | + await u.po.signIn.continue(); |
| 86 | + await u.po.signIn.enterTestOtpCode(); |
| 87 | + await u.po.expect.toBeSignedIn(); |
| 88 | + |
| 89 | + await fakeUserWithoutPassword.deleteIfExists(); |
| 90 | + }); |
| 91 | + |
| 92 | + test('sign in with username and password', async ({ page, context }) => { |
| 93 | + const u = createTestUtils({ app, page, context }); |
| 94 | + await u.po.signIn.goTo(); |
| 95 | + await u.po.signIn.getIdentifierInput().fill(fakeUser.username); |
| 96 | + await u.po.signIn.setPassword(fakeUser.password); |
| 97 | + await u.po.signIn.continue(); |
| 98 | + await u.po.expect.toBeSignedIn(); |
| 99 | + }); |
| 100 | + |
| 101 | + test('can reset password', async ({ page, context }) => { |
| 102 | + const u = createTestUtils({ app, page, context }); |
| 103 | + const fakeUserWithPasword = u.services.users.createFakeUser({ |
| 104 | + fictionalEmail: true, |
| 105 | + withPassword: true, |
| 106 | + }); |
| 107 | + await u.services.users.createBapiUser(fakeUserWithPasword); |
| 108 | + |
| 109 | + await u.po.signIn.goTo(); |
| 110 | + await u.po.signIn.getIdentifierInput().fill(fakeUserWithPasword.email); |
| 111 | + await u.po.signIn.continue(); |
| 112 | + await u.po.signIn.getForgotPassword().click(); |
| 113 | + await u.po.signIn.getResetPassword().click(); |
| 114 | + await u.po.signIn.enterTestOtpCode(); |
| 115 | + await u.po.signIn.setPassword(`${fakeUserWithPasword.password}_reset`); |
| 116 | + await u.po.signIn.setPasswordConfirmation(`${fakeUserWithPasword.password}_reset`); |
| 117 | + await u.po.signIn.getResetPassword().click(); |
| 118 | + await u.po.expect.toBeSignedIn(); |
| 119 | + |
| 120 | + await fakeUserWithPasword.deleteIfExists(); |
| 121 | + }); |
| 122 | + |
| 123 | + test('cannot sign in with wrong password', async ({ page, context }) => { |
| 124 | + const u = createTestUtils({ app, page, context }); |
| 125 | + |
| 126 | + await u.po.signIn.goTo(); |
| 127 | + await u.po.signIn.getIdentifierInput().fill(fakeUser.email); |
| 128 | + await u.po.signIn.continue(); |
| 129 | + await u.po.signIn.setPassword('wrong-password'); |
| 130 | + await u.po.signIn.continue(); |
| 131 | + await expect(u.page.getByText(/password you entered is incorrect/i)).toBeVisible(); |
| 132 | + |
| 133 | + await u.po.expect.toBeSignedOut(); |
| 134 | + }); |
| 135 | + |
| 136 | + test('cannot sign in with wrong password but can sign in with email', async ({ page, context }) => { |
| 137 | + const u = createTestUtils({ app, page, context }); |
| 138 | + |
| 139 | + await u.po.signIn.goTo(); |
| 140 | + await u.po.signIn.getIdentifierInput().fill(fakeUser.email); |
| 141 | + await u.po.signIn.continue(); |
| 142 | + await u.po.signIn.setPassword('wrong-password'); |
| 143 | + await u.po.signIn.continue(); |
| 144 | + |
| 145 | + await expect(u.page.getByText(/password you entered is incorrect/i)).toBeVisible(); |
| 146 | + |
| 147 | + await u.po.signIn.getUseAnotherMethodLink().click(); |
| 148 | + await u.po.signIn.getAltMethodsEmailCodeButton().click(); |
| 149 | + await u.po.signIn.enterTestOtpCode(); |
| 150 | + |
| 151 | + await u.po.expect.toBeSignedIn(); |
| 152 | + }); |
| 153 | + |
| 154 | + test('access protected page', async ({ page, context }) => { |
| 155 | + const u = createTestUtils({ app, page, context }); |
| 156 | + await u.po.signIn.goTo(); |
| 157 | + await u.po.signIn.signInWithEmailAndInstantPassword({ email: fakeUser.email, password: fakeUser.password }); |
| 158 | + await u.po.expect.toBeSignedIn(); |
| 159 | + |
| 160 | + expect(await u.page.locator("data-test-id='protected-api-response'").count()).toEqual(0); |
| 161 | + await u.page.goToRelative('/protected'); |
| 162 | + await u.page.isVisible("data-test-id='protected-api-response'"); |
| 163 | + }); |
| 164 | + |
| 165 | + test('sign up with email and password', async ({ page, context }) => { |
| 166 | + const u = createTestUtils({ app, page, context }); |
| 167 | + const fakeUser = u.services.users.createFakeUser({ |
| 168 | + fictionalEmail: true, |
| 169 | + withPassword: true, |
| 170 | + }); |
| 171 | + |
| 172 | + // Go to sign in page |
| 173 | + await u.po.signIn.goTo(); |
| 174 | + |
| 175 | + // Fill in sign in form |
| 176 | + await u.po.signIn.setIdentifier(fakeUser.email); |
| 177 | + await u.po.signIn.continue(); |
| 178 | + await u.page.waitForAppUrl('/sign-in/create'); |
| 179 | + |
| 180 | + const prefilledEmail = await u.po.signUp.getEmailAddressInput().inputValue(); |
| 181 | + expect(prefilledEmail).toBe(fakeUser.email); |
| 182 | + |
| 183 | + await u.po.signUp.setPassword(fakeUser.password); |
| 184 | + await u.po.signUp.continue(); |
| 185 | + |
| 186 | + // Verify email |
| 187 | + await u.po.signUp.enterTestOtpCode(); |
| 188 | + |
| 189 | + // Check if user is signed in |
| 190 | + await u.po.expect.toBeSignedIn(); |
| 191 | + |
| 192 | + await fakeUser.deleteIfExists(); |
| 193 | + }); |
| 194 | + }); |
| 195 | + |
| 196 | + test.describe('sign-up', () => { |
| 197 | + test('sign up with username, email, and password', async ({ page, context }) => { |
| 198 | + const u = createTestUtils({ app, page, context }); |
| 199 | + const fakeUser = u.services.users.createFakeUser({ |
| 200 | + fictionalEmail: true, |
| 201 | + withPassword: true, |
| 202 | + withUsername: true, |
| 203 | + }); |
| 204 | + |
| 205 | + await u.po.signIn.goTo(); |
| 206 | + await u.po.signIn.setIdentifier(fakeUser.username); |
| 207 | + await u.po.signIn.continue(); |
| 208 | + await u.page.waitForAppUrl('/sign-in/create'); |
| 209 | + |
| 210 | + const prefilledUsername = await u.po.signUp.getUsernameInput().inputValue(); |
| 211 | + expect(prefilledUsername).toBe(fakeUser.username); |
| 212 | + |
| 213 | + await u.po.signUp.setEmailAddress(fakeUser.email); |
| 214 | + await u.po.signUp.setPassword(fakeUser.password); |
| 215 | + await u.po.signUp.continue(); |
| 216 | + |
| 217 | + await u.po.signUp.enterTestOtpCode(); |
| 218 | + |
| 219 | + await u.po.expect.toBeSignedIn(); |
| 220 | + |
| 221 | + await fakeUser.deleteIfExists(); |
| 222 | + }); |
| 223 | + |
| 224 | + test('sign up, sign out and sign in again', async ({ page, context }) => { |
| 225 | + const u = createTestUtils({ app, page, context }); |
| 226 | + const fakeUser = u.services.users.createFakeUser({ |
| 227 | + fictionalEmail: true, |
| 228 | + withPassword: true, |
| 229 | + withUsername: true, |
| 230 | + }); |
| 231 | + |
| 232 | + // Go to sign in page |
| 233 | + await u.po.signIn.goTo(); |
| 234 | + |
| 235 | + // Fill in sign in form |
| 236 | + await u.po.signIn.setIdentifier(fakeUser.email); |
| 237 | + await u.po.signIn.continue(); |
| 238 | + await u.page.waitForAppUrl('/sign-in/create'); |
| 239 | + |
| 240 | + const prefilledEmail = await u.po.signUp.getEmailAddressInput().inputValue(); |
| 241 | + expect(prefilledEmail).toBe(fakeUser.email); |
| 242 | + |
| 243 | + await u.po.signUp.setPassword(fakeUser.password); |
| 244 | + await u.po.signUp.continue(); |
| 245 | + |
| 246 | + // Verify email |
| 247 | + await u.po.signUp.enterTestOtpCode(); |
| 248 | + |
| 249 | + // Check if user is signed in |
| 250 | + await u.po.expect.toBeSignedIn(); |
| 251 | + |
| 252 | + // Toggle user button |
| 253 | + await u.po.userButton.toggleTrigger(); |
| 254 | + await u.po.userButton.waitForPopover(); |
| 255 | + |
| 256 | + // Click sign out |
| 257 | + await u.po.userButton.triggerSignOut(); |
| 258 | + |
| 259 | + // Check if user is signed out |
| 260 | + await u.po.expect.toBeSignedOut(); |
| 261 | + |
| 262 | + // Go to sign in page |
| 263 | + await u.po.signIn.goTo(); |
| 264 | + |
| 265 | + // Fill in sign in form |
| 266 | + await u.po.signIn.signInWithEmailAndInstantPassword({ |
| 267 | + email: fakeUser.email, |
| 268 | + password: fakeUser.password, |
| 269 | + }); |
| 270 | + |
| 271 | + // Check if user is signed in |
| 272 | + await u.po.expect.toBeSignedIn(); |
| 273 | + |
| 274 | + await fakeUser.deleteIfExists(); |
| 275 | + }); |
| 276 | + |
| 277 | + test('sign in with ticket renders sign up', async ({ page, context }) => { |
| 278 | + const u = createTestUtils({ app, page, context }); |
| 279 | + await u.po.signIn.goTo({ |
| 280 | + searchParams: new URLSearchParams({ __clerk_ticket: '123', __clerk_status: 'sign_up' }), |
| 281 | + }); |
| 282 | + await u.page.waitForAppUrl('/sign-in/create?__clerk_ticket=123'); |
| 283 | + await expect(u.page.getByText(/Create your account/i)).toBeVisible(); |
| 284 | + }); |
| 285 | + }); |
| 286 | +}); |
0 commit comments