2020-10-27 12:24:53 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
2022-02-21 11:01:56 +00:00
|
|
|
import config from 'config';
|
2021-07-26 14:05:09 +00:00
|
|
|
import {
|
2022-03-02 14:49:00 +00:00
|
|
|
activateTheme,
|
2022-02-21 10:01:42 +00:00
|
|
|
disableSiteEditorWelcomeGuide,
|
2021-07-26 14:05:09 +00:00
|
|
|
openGlobalBlockInserter,
|
2022-03-02 14:49:00 +00:00
|
|
|
switchUserToAdmin,
|
2022-02-21 10:01:42 +00:00
|
|
|
visitAdminPage,
|
2022-04-01 09:23:48 +00:00
|
|
|
pressKeyWithModifier,
|
|
|
|
searchForBlock as searchForFSEBlock,
|
2021-07-26 14:05:09 +00:00
|
|
|
} from '@wordpress/e2e-test-utils';
|
2022-03-23 13:18:00 +00:00
|
|
|
import { addQueryArgs } from '@wordpress/url';
|
2021-10-18 06:48:03 +00:00
|
|
|
import { WP_ADMIN_DASHBOARD } from '@woocommerce/e2e-utils';
|
2021-07-26 14:05:09 +00:00
|
|
|
|
2022-02-21 10:01:42 +00:00
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
2022-03-02 14:49:00 +00:00
|
|
|
import { elementExists, getElementData, getTextContent } from './page-utils';
|
2022-02-21 10:01:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef {import('@types/puppeteer').ElementHandle} ElementHandle
|
|
|
|
* @typedef {import('@wordpress/blocks').Block} WPBlock
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef {{ addedBy: string, hasActions: boolean, templateTitle: string }} TemplateTableItem
|
|
|
|
*/
|
|
|
|
|
2022-02-21 11:01:56 +00:00
|
|
|
export const BASE_URL = config.get( 'url' );
|
2022-03-23 13:18:00 +00:00
|
|
|
export const GUTENBERG_EDITOR_CONTEXT =
|
|
|
|
process.env.GUTENBERG_EDITOR_CONTEXT || 'core';
|
2022-02-21 10:01:42 +00:00
|
|
|
export const DEFAULT_TIMEOUT = 30000;
|
|
|
|
|
|
|
|
const SELECTORS = {
|
|
|
|
canvas: 'iframe[name="editor-canvas"]',
|
|
|
|
inserter: {
|
|
|
|
search:
|
|
|
|
'.components-search-control__input,.block-editor-inserter__search input,.block-editor-inserter__search-input,input.block-editor-inserter__search',
|
|
|
|
},
|
|
|
|
templatesListTable: {
|
|
|
|
actionsContainer: '.edit-site-list-table__actions',
|
|
|
|
cells: '.edit-site-list-table-column',
|
|
|
|
headings: 'thead th.edit-site-list-table-column',
|
|
|
|
root: '.edit-site-list-table',
|
|
|
|
rows: '.edit-site-list-table-row',
|
2022-03-28 12:32:15 +00:00
|
|
|
templateActions: '.edit-site-list-table button[aria-label="Actions"]',
|
2022-02-21 10:01:42 +00:00
|
|
|
templateTitle: '[data-wp-component="Heading"]',
|
|
|
|
},
|
2022-03-02 14:49:00 +00:00
|
|
|
themesPage: {
|
|
|
|
currentTheme: '.theme.active',
|
|
|
|
},
|
2022-02-21 10:01:42 +00:00
|
|
|
toolbar: {
|
|
|
|
confirmSave: '.editor-entities-saved-states__save-button',
|
|
|
|
saveButton: '.edit-site-save-button__button',
|
|
|
|
savePrompt: '.entities-saved-states__text-prompt',
|
|
|
|
},
|
|
|
|
};
|
2021-07-26 14:05:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Search for block in the global inserter.
|
|
|
|
*
|
|
|
|
* @see https://github.com/WordPress/gutenberg/blob/2356b2d3165acd0af980d52bc93fb1e42748bb25/packages/e2e-test-utils/src/inserter.js#L95
|
|
|
|
*
|
|
|
|
* @param {string} searchTerm The text to search the inserter for.
|
|
|
|
*/
|
2021-10-18 06:48:03 +00:00
|
|
|
export async function searchForBlock( searchTerm ) {
|
2022-02-21 10:01:42 +00:00
|
|
|
await page.waitForSelector( SELECTORS.inserter.search );
|
|
|
|
await page.focus( SELECTORS.inserter.search );
|
2021-07-26 14:05:09 +00:00
|
|
|
await pressKeyWithModifier( 'primary', 'a' );
|
|
|
|
await page.keyboard.type( searchTerm );
|
|
|
|
}
|
2020-10-27 12:24:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Opens the inserter, searches for the given term, then selects the first
|
|
|
|
* result that appears.
|
|
|
|
*
|
|
|
|
* @param {string} searchTerm The text to search the inserter for.
|
|
|
|
*/
|
|
|
|
export async function insertBlockDontWaitForInsertClose( searchTerm ) {
|
2021-10-18 06:48:03 +00:00
|
|
|
await openGlobalBlockInserter();
|
2020-10-27 12:24:53 +00:00
|
|
|
await searchForBlock( searchTerm );
|
|
|
|
const insertButton = (
|
2021-10-18 06:48:03 +00:00
|
|
|
await page.$x( `//button//span[text()='${ searchTerm }']` )
|
2020-10-27 12:24:53 +00:00
|
|
|
)[ 0 ];
|
|
|
|
await insertButton.click();
|
|
|
|
}
|
|
|
|
|
|
|
|
export const closeInserter = async () => {
|
2021-04-16 10:48:27 +00:00
|
|
|
if (
|
|
|
|
await page.evaluate( () => {
|
|
|
|
return !! document.querySelector(
|
|
|
|
'.edit-post-header [aria-label="Add block"]'
|
|
|
|
);
|
|
|
|
} )
|
|
|
|
) {
|
|
|
|
await page.click( '.edit-post-header [aria-label="Add block"]' );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
await page.click(
|
|
|
|
'.edit-post-header [aria-label="Toggle block inserter"]'
|
|
|
|
);
|
2020-10-27 12:24:53 +00:00
|
|
|
};
|
2021-10-18 06:48:03 +00:00
|
|
|
|
|
|
|
const WP_ADMIN_WIDGETS_EDITOR = WP_ADMIN_DASHBOARD + 'widgets.php';
|
|
|
|
|
|
|
|
export const openWidgetEditor = async () => {
|
|
|
|
await page.goto( WP_ADMIN_WIDGETS_EDITOR, {
|
|
|
|
waitUntil: 'networkidle0',
|
|
|
|
} );
|
|
|
|
};
|
|
|
|
|
|
|
|
export const closeModalIfExists = async () => {
|
|
|
|
if (
|
|
|
|
await page.evaluate( () => {
|
|
|
|
return !! document.querySelector( '.components-modal__header' );
|
|
|
|
} )
|
|
|
|
) {
|
|
|
|
await page.click(
|
|
|
|
'.components-modal__header [aria-label="Close dialog"]'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export const openWidgetsEditorBlockInserter = async () => {
|
|
|
|
await page.click(
|
|
|
|
'.edit-widgets-header [aria-label="Add block"],.edit-widgets-header [aria-label="Toggle block inserter"]'
|
|
|
|
);
|
|
|
|
};
|
2022-02-07 10:29:22 +00:00
|
|
|
|
|
|
|
export const isBlockInsertedInWidgetsArea = async ( blockName ) => {
|
|
|
|
const widgetAreaSelector = '.wp-block-widget-area';
|
|
|
|
|
|
|
|
const widgetsArea = await page.$$( widgetAreaSelector );
|
|
|
|
|
|
|
|
return widgetsArea.some(
|
|
|
|
async ( widgetArea ) =>
|
|
|
|
( await widgetArea.$$( `[data-block-title="${ blockName }"]` )
|
|
|
|
.length ) > 0
|
|
|
|
);
|
|
|
|
};
|
2022-03-08 14:50:16 +00:00
|
|
|
|
2022-02-21 10:01:42 +00:00
|
|
|
/**
|
2022-03-28 12:32:15 +00:00
|
|
|
* Visits site editor dependening on used WordPress version and how Gutenberg is installed.
|
2022-02-21 10:01:42 +00:00
|
|
|
*
|
2022-03-23 13:18:00 +00:00
|
|
|
* 1. `themes.php?page=gutenberg-edit-site` this is a legacy editor access used for WP <=5.8.
|
|
|
|
* 2. `site-editor.php` is the new way of accessing the editor in WP >=5.9+.
|
2022-02-21 10:01:42 +00:00
|
|
|
*
|
|
|
|
* @param {'core' | 'gutenberg'} [editorContext='core'] Whether to go to the Gutenberg URL or the Core one.
|
2022-03-28 12:32:15 +00:00
|
|
|
* @param {Object} params Query parameters to add to the URL.
|
|
|
|
* @param {string} [params.postId] ID of the template if we want to access template editor.
|
|
|
|
* @param {'wp_template' | 'wp_template_part'} [params.postType='wp_template'] Type of template.
|
2022-02-21 10:01:42 +00:00
|
|
|
*/
|
2022-04-01 09:23:48 +00:00
|
|
|
export async function goToSiteEditor( editorContext = 'core', params ) {
|
2022-03-23 13:18:00 +00:00
|
|
|
// There is a bug in Gutenberg/WPCore now that makes it impossible to rely on site-editor.php on setups
|
|
|
|
// with locally installed Gutenberg. Details in https://github.com/WordPress/gutenberg/issues/39639.
|
|
|
|
// TODO: Update to always use site-editor.php once WordPress 6.0 is released and fix is verified.
|
2022-03-28 12:32:15 +00:00
|
|
|
// Remove usage of goToSiteEditor and GUTENBERG_EDITOR_CONTEXT from from here and from workflows.
|
|
|
|
let editorPath;
|
|
|
|
const queryParams = { ...params };
|
2022-02-21 10:01:42 +00:00
|
|
|
|
2022-03-23 13:18:00 +00:00
|
|
|
if ( editorContext === 'gutenberg' ) {
|
|
|
|
editorPath = 'themes.php';
|
2022-03-28 12:32:15 +00:00
|
|
|
queryParams.page = 'gutenberg-edit-site';
|
|
|
|
} else {
|
|
|
|
editorPath = 'site-editor.php';
|
2022-02-21 10:01:42 +00:00
|
|
|
}
|
2022-03-23 13:18:00 +00:00
|
|
|
|
2022-03-28 12:32:15 +00:00
|
|
|
return await visitAdminPage( editorPath, addQueryArgs( '', queryParams ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Visits the Site Editor template edit view.
|
|
|
|
*
|
|
|
|
* @param {Object} params
|
|
|
|
* @param {string} params.postId ID of the template if we want to access template editor.
|
|
|
|
* @param {'core' | 'gutenberg'} [params.editorContext='core'] Whether to go to the Gutenberg URL or the Core one.
|
|
|
|
* @param {'wp_template' | 'wp_template_part'} [params.postType='wp_template'] Type of template.
|
|
|
|
*/
|
|
|
|
export async function goToTemplateEditor( {
|
|
|
|
postId,
|
|
|
|
postType = 'wp_template',
|
|
|
|
editorContext = GUTENBERG_EDITOR_CONTEXT,
|
|
|
|
} = {} ) {
|
|
|
|
await goToSiteEditor( editorContext, {
|
|
|
|
postType,
|
|
|
|
postId,
|
|
|
|
} );
|
|
|
|
|
2022-03-23 13:18:00 +00:00
|
|
|
await disableSiteEditorWelcomeGuide();
|
2022-03-28 12:32:15 +00:00
|
|
|
await waitForCanvas();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Visits the Site Editor templates list view.
|
|
|
|
*
|
|
|
|
* @param {Object} params
|
|
|
|
* @param {'core' | 'gutenberg'} [params.editorContext='core'] Whether to go to the Gutenberg URL or the Core one.
|
|
|
|
* @param {'wp_template' | 'wp_template_part'} [params.postType='wp_template'] Type of template.
|
|
|
|
* @param {'list' | 'actions'} [params.waitFor='false'] Wait for list or for actions to be present - tempalte actions can take a moment to load, we can wait for them to be present if needed.
|
|
|
|
*/
|
|
|
|
export async function goToTemplatesList( {
|
|
|
|
postType = 'wp_template',
|
|
|
|
editorContext = GUTENBERG_EDITOR_CONTEXT,
|
|
|
|
waitFor = 'list',
|
|
|
|
} = {} ) {
|
|
|
|
await goToSiteEditor( editorContext, { postType } );
|
|
|
|
|
|
|
|
if ( waitFor === 'actions' ) {
|
|
|
|
await page.waitForSelector(
|
|
|
|
SELECTORS.templatesListTable.templateActions
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
await page.waitForSelector( SELECTORS.templatesListTable.root );
|
|
|
|
}
|
2022-02-21 10:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Waits for the Gutenberg canvas to be available
|
|
|
|
*
|
|
|
|
* @param {number} [timeout=DEFAULT_TIMEOUT] The amount of ms to wait for the element
|
|
|
|
*
|
|
|
|
* @return {Promise<?ElementHandle>} The canvas element handle
|
|
|
|
*/
|
|
|
|
export function waitForCanvas( timeout = DEFAULT_TIMEOUT ) {
|
|
|
|
return page.waitForSelector( SELECTORS.canvas, { timeout } );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Saves a template
|
|
|
|
*/
|
|
|
|
export async function saveTemplate() {
|
|
|
|
const { confirmSave, saveButton, savePrompt } = SELECTORS.toolbar;
|
|
|
|
|
|
|
|
await page.click( saveButton );
|
|
|
|
await page.waitForSelector( savePrompt );
|
|
|
|
await page.click( confirmSave );
|
|
|
|
await page.waitForSelector( `${ saveButton }[aria-disabled="true"]` );
|
2022-03-23 13:18:00 +00:00
|
|
|
await page.waitForResponse( ( res ) => {
|
|
|
|
// Will match both templates and template_parts endpoints.
|
|
|
|
return res.url().includes( '/wp/v2/template' );
|
|
|
|
} );
|
2022-02-21 10:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets all available templates from the template list table UI
|
|
|
|
*
|
|
|
|
* @return {Promise<TemplateTableItem[]>} A promise of an array of informations about the templates extracted from the UI
|
|
|
|
*/
|
|
|
|
export async function getAllTemplates() {
|
|
|
|
const { templatesListTable } = SELECTORS;
|
|
|
|
|
2022-03-28 12:32:15 +00:00
|
|
|
const table = await page.waitForSelector( templatesListTable.root );
|
2022-02-21 10:01:42 +00:00
|
|
|
|
|
|
|
if ( ! table ) throw new Error( 'Templates table not found' );
|
|
|
|
|
|
|
|
const rows = await table.$$( templatesListTable.rows );
|
|
|
|
|
|
|
|
return Promise.all(
|
|
|
|
rows.map( async ( row ) => ( {
|
|
|
|
addedBy: (
|
|
|
|
await getTextContent( templatesListTable.cells, row )
|
|
|
|
)[ 1 ],
|
|
|
|
hasActions: await elementExists(
|
|
|
|
templatesListTable.actionsContainer,
|
|
|
|
row
|
|
|
|
),
|
|
|
|
templateTitle: (
|
|
|
|
await getTextContent( templatesListTable.templateTitle, row )
|
|
|
|
)[ 0 ],
|
|
|
|
} ) )
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets all the blocks that fulfill a given predicate
|
|
|
|
*
|
|
|
|
* @param {( block: WPBlock ) => boolean} predicate The function invoked per iteration
|
|
|
|
* @return {Promise< Partial< WPBlock >[] >} The blocks which have been found
|
|
|
|
*/
|
|
|
|
export async function filterCurrentBlocks( predicate ) {
|
|
|
|
/**
|
|
|
|
* @type {WPBlock[]}
|
|
|
|
*/
|
|
|
|
const blocks = await page.evaluate( () => {
|
|
|
|
/**
|
|
|
|
* Gets all serializeable data from a block
|
|
|
|
*
|
|
|
|
* @param {WPBlock} block A Gutenberg Block
|
|
|
|
* @return {Partial<WPBlock>} A block with unserializeable values turned to `null`
|
|
|
|
*/
|
|
|
|
function getSerializeableBlockData( block ) {
|
|
|
|
return JSON.parse( JSON.stringify( block ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
const blockEditorStore = window.wp.data.select( 'core/block-editor' );
|
|
|
|
/**
|
|
|
|
* @type {string[]}
|
|
|
|
*/
|
|
|
|
const allClientIds = blockEditorStore.getClientIdsWithDescendants();
|
|
|
|
|
|
|
|
return allClientIds.map( ( id ) =>
|
|
|
|
getSerializeableBlockData( blockEditorStore.getBlock( id ) )
|
|
|
|
);
|
|
|
|
} );
|
|
|
|
|
|
|
|
return blocks.filter( predicate );
|
|
|
|
}
|
2022-03-02 14:49:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets up a suite to use a theme without side-effects
|
|
|
|
*
|
|
|
|
* *Note:* this “hook” is supposed to be used within `describe` calls to
|
|
|
|
* make it easier to set theme dependencies for tests without messing
|
|
|
|
* the environment of any other test and to explicitly declare a
|
|
|
|
* dependency.
|
|
|
|
*
|
|
|
|
* @param {string} themeSlug The theme the test suite should use
|
|
|
|
*/
|
|
|
|
export function useTheme( themeSlug ) {
|
|
|
|
let previousTheme;
|
|
|
|
|
|
|
|
beforeAll( async () => {
|
|
|
|
await switchUserToAdmin();
|
|
|
|
await visitAdminPage( 'themes.php' );
|
|
|
|
|
|
|
|
previousTheme = await getElementData(
|
|
|
|
SELECTORS.themesPage.currentTheme,
|
|
|
|
'slug'
|
|
|
|
);
|
|
|
|
|
|
|
|
await activateTheme( themeSlug );
|
|
|
|
} );
|
|
|
|
|
|
|
|
afterAll( async () => {
|
|
|
|
await activateTheme( previousTheme );
|
|
|
|
} );
|
|
|
|
}
|
2022-04-01 09:23:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a block to Full Site Editing.
|
|
|
|
*
|
|
|
|
* *Note:* insertBlock function gets focused on the canvas, this could prevent some dialogs from being displayed. e.g. compatibility notice.
|
|
|
|
*
|
|
|
|
* @param {string} blockName Block name.
|
|
|
|
*/
|
|
|
|
export const addBlockToFSEArea = async ( blockName ) => {
|
|
|
|
await searchForFSEBlock( blockName );
|
|
|
|
const insertButton = await page.waitForXPath(
|
|
|
|
`//button//span[contains(text(), '${ blockName }')]`
|
|
|
|
);
|
|
|
|
await insertButton.click();
|
|
|
|
};
|