-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add E2E tests for silent authentication #5150
base: main
Are you sure you want to change the base?
Changes from all commits
f7163a8
8bc9e46
0e6d065
4ae7859
0243bbf
f3f533c
032032f
9efbaec
c1df6ca
431b289
44e5826
93efd14
58453fd
e62b3be
8b4f65d
e9fee2c
7f3feea
66644b6
9769e0a
0d3493d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,4 +71,37 @@ | |
expect(verificationCode).toBeDefined(); | ||
await this.enterVerificationCode(verificationCode as string); | ||
} | ||
|
||
async signInToFxA(email: string, password: string) { | ||
await this.page.goto(process.env.FXA_SETTINGS_URL as string); | ||
Check failure on line 76 in src/e2e/pages/authPage.ts GitHub Actions / e2e-tests-full[chromium] › auth.spec.ts:72:3 › local - Authentication flow verification @smoke › Verify successful silent authentication with existing user
|
||
await this.page.context().clearCookies(); | ||
await this.page | ||
.locator("//input[@type='password'] | //div/input[@type='email']") | ||
.waitFor({ state: "visible" }); | ||
Check failure on line 80 in src/e2e/pages/authPage.ts GitHub Actions / e2e-tests-full[firefox] › auth.spec.ts:72:3 › local - Authentication flow verification @smoke › Verify successful silent authentication with existing user
Check failure on line 80 in src/e2e/pages/authPage.ts GitHub Actions / e2e-tests-smoke[firefox] › auth.spec.ts:72:3 › local - Authentication flow verification @smoke › Verify successful silent authentication with existing user
|
||
const visible = await this.useDifferentEmailButton.isVisible(); | ||
if (visible) { | ||
await this.useDifferentEmailButton.click(); | ||
await this.page.waitForURL(/^(?!.*signin).*/); | ||
} | ||
|
||
// enter email | ||
await this.emailInputField.fill(email); | ||
await this.continueButton.click(); | ||
await this.page.waitForURL(/^(?!.*signin).*/); | ||
|
||
// enter password | ||
await this.passwordInputField.fill(password); | ||
await this.continue({ waitForURL: process.env.FXA_SETTINGS_URL }); | ||
} | ||
|
||
async initSilentAuth() { | ||
await this.page.setExtraHTTPHeaders({ | ||
"x-forced-feature-flags": "PromptNoneAuthFlow", | ||
}); | ||
await this.page.goto( | ||
`${process.env.E2E_TEST_BASE_URL as string}/?utm_source=moz-account&utm_campaign=settings-promo&utm_content=monitor-free`, | ||
); | ||
// FxA can take a while to load on stage: | ||
await this.page.waitForURL("**/authorization?**"); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
Check failure on line 1 in src/e2e/specs/auth.spec.ts GitHub Actions / e2e-tests-full[chromium] › auth.spec.ts:72:3 › local - Authentication flow verification @smoke › Verify successful silent authentication with existing user
Check failure on line 1 in src/e2e/specs/auth.spec.ts GitHub Actions / e2e-tests-full[firefox] › auth.spec.ts:72:3 › local - Authentication flow verification @smoke › Verify successful silent authentication with existing user
Check failure on line 1 in src/e2e/specs/auth.spec.ts GitHub Actions / e2e-tests-smoke[chromium] › auth.spec.ts:72:3 › local - Authentication flow verification @smoke › Verify successful silent authentication with existing user
Check failure on line 1 in src/e2e/specs/auth.spec.ts GitHub Actions / e2e-tests-smoke[firefox] › auth.spec.ts:72:3 › local - Authentication flow verification @smoke › Verify successful silent authentication with existing user
|
||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
|
||
|
@@ -45,7 +45,7 @@ | |
landingPage, | ||
dashboardPage, | ||
}, testInfo) => { | ||
// speed up test by ignore non necessary requests | ||
// speed up test by ignoring non-necessary requests | ||
await page.route(/(analytics)/, async (route) => { | ||
await route.abort(); | ||
}); | ||
|
@@ -57,7 +57,7 @@ | |
await authPage.signIn(process.env.E2E_TEST_ACCOUNT_EMAIL as string); | ||
|
||
// assert successful login | ||
await expect(dashboardPage.fixedTab).toBeVisible(); | ||
Check failure on line 60 in src/e2e/specs/auth.spec.ts GitHub Actions / e2e-tests-full[chromium] › auth.spec.ts:42:3 › local - Authentication flow verification @smoke › Verify sign in with existing user
Check failure on line 60 in src/e2e/specs/auth.spec.ts GitHub Actions / e2e-tests-full[chromium] › auth.spec.ts:42:3 › local - Authentication flow verification @smoke › Verify sign in with existing user
Check failure on line 60 in src/e2e/specs/auth.spec.ts GitHub Actions / e2e-tests-smoke[chromium] › auth.spec.ts:42:3 › local - Authentication flow verification @smoke › Verify sign in with existing user
Check failure on line 60 in src/e2e/specs/auth.spec.ts GitHub Actions / e2e-tests-smoke[chromium] › auth.spec.ts:42:3 › local - Authentication flow verification @smoke › Verify sign in with existing user
|
||
await expect(dashboardPage.actionNeededTab).toBeVisible(); | ||
|
||
await testInfo.attach( | ||
|
@@ -68,4 +68,62 @@ | |
}, | ||
); | ||
}); | ||
|
||
test("Verify successful silent authentication with existing user", async ({ | ||
page, | ||
authPage, | ||
}, testInfo) => { | ||
// speed up test by ignoring non-necessary requests | ||
await page.route(/(analytics)/, async (route) => { | ||
await route.abort(); | ||
}); | ||
|
||
// login to FxA | ||
await authPage.signInToFxA( | ||
process.env.E2E_TEST_ACCOUNT_EMAIL as string, | ||
process.env.E2E_TEST_ACCOUNT_PASSWORD as string, | ||
); | ||
|
||
// start authentication flow | ||
await authPage.initSilentAuth(); | ||
|
||
// assert successful login | ||
await page.waitForURL("**/user/dashboard/**"); | ||
Check failure on line 91 in src/e2e/specs/auth.spec.ts GitHub Actions / e2e-tests-smoke[chromium] › auth.spec.ts:72:3 › local - Authentication flow verification @smoke › Verify successful silent authentication with existing user
|
||
|
||
await testInfo.attach( | ||
`${process.env.E2E_TEST_ENV}-silent-authentication-monitor-dashboard.png`, | ||
{ | ||
body: await page.screenshot(), | ||
contentType: "image/png", | ||
}, | ||
); | ||
}); | ||
|
||
test("Verify failed silent authentication with existing user", async ({ | ||
page, | ||
authPage, | ||
landingPage, | ||
}, testInfo) => { | ||
// speed up test by ignoring non-necessary requests | ||
await page.route(/(analytics)/, async (route) => { | ||
await route.abort(); | ||
}); | ||
|
||
// start authentication flow | ||
await authPage.initSilentAuth(); | ||
|
||
// assert failed login | ||
await expect(landingPage.monitorLandingHeader).toBeVisible({ | ||
// The header can take a while to show in Playwright. | ||
timeout: 5000, | ||
}); | ||
|
||
await testInfo.attach( | ||
`${process.env.E2E_TEST_ENV}-silent-authentication-monitor-dashboard.png`, | ||
{ | ||
body: await page.screenshot(), | ||
contentType: "image/png", | ||
}, | ||
); | ||
}); | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not clear to me (because I'm not terribly familiar with our existing e2e tests) why this extra method is needed - don't we already have methods to sign in?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This method is for logging explicitly in to the Monitor Accounts application and not Monitor.