File size: 4,360 Bytes
1e92f2d |
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 |
/**
* @group authentication
*/
import {
DataHelper,
LoginPage,
SecretsManager,
AppleLoginPage,
EmailClient,
} from '@automattic/calypso-e2e';
import { Page, Browser } from 'playwright';
declare const browser: Browser;
describe( DataHelper.createSuiteTitle( 'Authentication: Apple' ), function () {
const credentials = SecretsManager.secrets.testAccounts.appleLoginUser;
let page: Page;
let loginPage: LoginPage;
let appleLoginPage: AppleLoginPage;
let timestamp: Date;
describe( 'WordPress.com', function () {
beforeAll( async () => {
page = await browser.newPage();
} );
it( 'Navigate to Login page', async function () {
loginPage = new LoginPage( page );
await loginPage.visit();
} );
it( 'Click on Login with Apple button', async function () {
await Promise.all( [
page.waitForNavigation( { url: /.*appleid\.apple\.com\/auth.*/ } ),
loginPage.clickLoginWithApple(),
] );
} );
it( 'Enter Apple ID', async function () {
appleLoginPage = new AppleLoginPage( page );
await appleLoginPage.enterEmail( credentials.email as string );
await appleLoginPage.pressEnter();
} );
it( 'Enter password', async function () {
await appleLoginPage.enterPassword( credentials.password );
await appleLoginPage.pressEnter();
timestamp = new Date( Date.now() );
} );
it( 'Handle 2FA challenge', async function () {
const url = page.url();
// Handle potential 2FA challenge.
if ( url.includes( 'appleid.apple.com/auth/authorize' ) ) {
const emailClient = new EmailClient();
const message = await emailClient.getLastMatchingMessage( {
inboxId: SecretsManager.secrets.mailosaur.totpUserInboxId,
receivedAfter: timestamp,
subject: 'SMS',
body: 'Your Apple Account code is',
} );
const code = emailClient.get2FACodeFromMessage( message );
await appleLoginPage.enter2FACode( code );
await appleLoginPage.clickButtonWithExactText( 'Trust' );
}
} );
it( 'Confirm login with Apple ID', async function () {
await Promise.all( [
page.waitForNavigation( { url: /.*\/home\/.*/ } ),
appleLoginPage.clickButtonContainingText( 'Continue' ),
] );
} );
afterAll( async () => {
await page.close();
} );
} );
describe( 'WooCommerce', function () {
beforeAll( async () => {
page = await browser.newPage();
// Wait 30s to avoid OTP code reuse error.
await page.waitForTimeout( 30000 );
} );
it( 'Navigate to Login page', async function () {
loginPage = new LoginPage( page );
await loginPage.visit( {
path: SecretsManager.secrets.wooLoginPath,
} );
} );
it( 'Click on Login with Apple button', async function () {
await Promise.all( [
page.waitForURL( /.*appleid\.apple\.com\/auth.*/ ),
loginPage.clickLoginWithApple(),
] );
} );
it( 'Enter Apple ID', async function () {
appleLoginPage = new AppleLoginPage( page );
await appleLoginPage.enterEmail( credentials.email as string );
await appleLoginPage.pressEnter();
} );
it( 'Enter password', async function () {
await appleLoginPage.enterPassword( credentials.password );
await appleLoginPage.pressEnter();
timestamp = new Date( Date.now() );
} );
it( 'Handle 2FA challenge', async function () {
const url = page.url();
// Handle potential 2FA challenge.
if ( url.includes( 'appleid.apple.com/auth/authorize' ) ) {
const emailClient = new EmailClient();
const message = await emailClient.getLastMatchingMessage( {
inboxId: SecretsManager.secrets.mailosaur.totpUserInboxId,
receivedAfter: timestamp,
subject: 'SMS',
body: 'Your Apple Account code is',
} );
const code = emailClient.get2FACodeFromMessage( message );
await appleLoginPage.enter2FACode( code );
await appleLoginPage.clickButtonWithExactText( 'Trust' );
}
} );
it( 'Confirm login with Apple ID', async function () {
await appleLoginPage.clickButtonContainingText( 'Continue' );
} );
it( 'Authorize your WPCOM to sign into WooCommerce', async function () {
const approveButton = page.locator( 'button:text("Approve")' );
if ( ( await approveButton.count() ) > 0 ) {
await approveButton.click();
}
} );
it( 'Redirected to woo.com upon successful login', async function () {
await page.waitForURL( /.*woocommerce\.com*/ );
} );
} );
} );
|