File size: 1,861 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 |
/**
* @group jetpack-wpcom-integration
* @group calypso-pr
*/
import {
DataHelper,
TestAccount,
envVariables,
getTestAccountByFeature,
envToFeatureKey,
SiteSettingsPage,
} from '@automattic/calypso-e2e';
import { Page, Browser } from 'playwright';
import { skipDescribeIf } from '../../jest-helpers';
declare const browser: Browser;
/**
* Checks the phpMyAdmin page opens with the proper bearer token.
*
* See: https://github.com/Automattic/wp-calypso/issues/82850.
*
* Keywords: Settings, Jetpack, Hosting Configuration, phpMyAdmin
*/
skipDescribeIf( ! envVariables.TEST_ON_ATOMIC )(
DataHelper.createSuiteTitle( 'Settings: Access phpMyAdmin' ),
function () {
const accountName = getTestAccountByFeature( envToFeatureKey( envVariables ) );
let page: Page;
let popupPage: Page;
let testAccount: TestAccount;
let siteSettingsPage: SiteSettingsPage;
beforeAll( async function () {
page = await browser.newPage();
testAccount = new TestAccount( accountName );
await testAccount.authenticate( page );
} );
it( 'Navigate to Settings > Hosting Configuration', async function () {
siteSettingsPage = new SiteSettingsPage( page );
await siteSettingsPage.visit( testAccount.getSiteURL( { protocol: false } ), 'database' );
} );
it( 'Open phpMyAdmin', async function () {
const waitForPopup = page.waitForEvent( 'popup' );
await siteSettingsPage.clickButton( 'Open phpMyAdmin' );
popupPage = await waitForPopup;
} );
it( 'phpMyAdmin page URL contains token', async function () {
const url = popupPage.url();
expect( url ).toMatch( /token=([A-Za-z0-9-_]*\.[A-Za-z0-9-_]*\.[A-Za-z0-9-_]*$)/ );
} );
it( 'Land in phpMyAdmin', async function () {
await popupPage.waitForURL( /_pma/ );
await popupPage.getByRole( 'link', { name: 'phpMyAdmin', exact: true } ).waitFor();
} );
}
);
|