File size: 3,833 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 |
import {
BlockFlow,
EditorPage,
EditorContext,
PublishedPostContext,
TestAccount,
envVariables,
getTestAccountByFeature,
envToFeatureKey,
DataHelper,
} from '@automattic/calypso-e2e';
import { Page, Browser } from 'playwright';
declare const browser: Browser;
/**
* Creates a suite of block smoke tests for a set of block flows.
*
* @param specName The parent name of the spec to use in the top-level describe. E.g. "CoBlocks"
* @param blockFlows A list of block flows to put under test.
*/
export function createBlockTests( specName: string, blockFlows: BlockFlow[] ): void {
describe( DataHelper.createSuiteTitle( specName ), function () {
const features = envToFeatureKey( envVariables );
// @todo Does it make sense to create a `simpleSitePersonalPlanUserEdge` with GB edge?
// for now, it will pick up the default `gutenbergAtomicSiteEdgeUser` if edge is set.
const accountName = getTestAccountByFeature( features, [
{
gutenberg: 'stable',
siteType: 'simple',
accountName: 'simpleSitePersonalPlanUser',
},
] );
let page: Page;
let editorPage: EditorPage;
let editorContext: EditorContext;
let publishedPostContext: PublishedPostContext;
beforeAll( async () => {
page = await browser.newPage();
editorPage = new EditorPage( page );
const testAccount = new TestAccount( accountName );
await testAccount.authenticate( page );
} );
it( 'Go to the new post page', async () => {
await editorPage.visit( 'post' );
} );
it( 'Enter post title', async () => {
await editorPage.enterTitle( `${ specName } - ${ DataHelper.getDateString( 'ISO-8601' ) }` );
} );
describe( 'Add and configure blocks in the editor', function () {
const used = new Set();
for ( const blockFlow of blockFlows ) {
const prefix = blockFlow.blockTestName ?? blockFlow.blockSidebarName;
if ( used.has( prefix ) ) {
throw new Error(
`Test name prefix "${ prefix }" is used by multiple BlockFlows! Set \`blockTestName\` to disambiguate.`
);
}
used.add( prefix );
it( `${ prefix }: Add the block from the sidebar`, async function () {
const blockHandle = await editorPage.addBlockFromSidebar(
blockFlow.blockSidebarName,
blockFlow.blockEditorSelector,
{
noSearch: blockFlow.noSearch === false ? false : true,
blockFallBackName: blockFlow.blockTestFallBackName,
blockInsertedPopupConfirmButtonSelector:
blockFlow.blockInsertedPopupConfirmButtonSelector,
}
);
const id = await blockHandle.getAttribute( 'id' );
const editorCanvas = await editorPage.getEditorCanvas();
const addedBlockLocator = editorCanvas.locator( `#${ id }` );
editorContext = {
page,
editorPage,
addedBlockLocator,
};
} );
it( `${ prefix }: Configure the block`, async function () {
if ( blockFlow.configure ) {
await blockFlow.configure( editorContext );
}
} );
it( `${ prefix }: There are no block warnings or errors in the editor`, async function () {
expect( await editorPage.editorHasBlockWarnings() ).toBe( false );
} );
}
} );
describe( 'Publishing the post', function () {
it( 'Publish and visit post', async function () {
await editorPage.publish( { visit: true, timeout: 15 * 1000 } );
publishedPostContext = {
browser: browser,
page: page,
};
} );
} );
describe( 'Validating blocks in published post.', function () {
for ( const blockFlow of blockFlows ) {
const prefix = blockFlow.blockTestName ?? blockFlow.blockSidebarName;
it( `${ prefix }: Expected content is in published post`, async function () {
if ( blockFlow.validateAfterPublish ) {
await blockFlow.validateAfterPublish( publishedPostContext );
}
} );
}
} );
} );
}
|