File size: 11,135 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 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 |
/**
* @group editor-tracking
*/
import {
DataHelper,
EditorPage,
envVariables,
getTestAccountByFeature,
envToFeatureKey,
TestAccount,
EditorTracksEventManager,
SiteType,
FullSiteEditorPage,
TemplatePartBlock,
OpenInlineInserter,
HeaderBlock,
} from '@automattic/calypso-e2e';
import { Browser, Page } from 'playwright';
import type { TracksEventProperties } from '@automattic/calypso-e2e';
declare const browser: Browser;
describe(
DataHelper.createSuiteTitle( 'Editor tracking: "wpcom_block_inserted" event variations' ),
function () {
const features = envToFeatureKey( envVariables );
describe( 'In the post editor', function () {
const accountName = getTestAccountByFeature( features );
let page: Page;
let editorPage: EditorPage;
let editorTracksEventManager: EditorTracksEventManager;
beforeAll( async () => {
page = await browser.newPage();
const testAccount = new TestAccount( accountName );
await testAccount.authenticate( page );
editorTracksEventManager = new EditorTracksEventManager( page );
editorPage = new EditorPage( page );
} );
it( 'Start a new post', async function () {
await editorPage.visit( 'post' );
await editorPage.waitUntilLoaded();
// We'll be exiting without saving.
editorPage.allowLeavingWithoutSaving();
} );
describe( 'Basic insertion and shared properties', function () {
it( 'Insert a Heading block from the sidebar', async function () {
await editorPage.addBlockFromSidebar( 'Heading', '[aria-label="Block: Heading"]' );
} );
it( '"wpcom_block_inserted" event fires with expected block-related properties', async function () {
const eventDidFire = await editorTracksEventManager.didEventFire(
'wpcom_block_inserted',
{
matchingProperties: {
block_name: 'core/heading',
blocks_replaced: false,
insert_method: 'header-inserter',
inner_block: false,
},
}
);
expect( eventDidFire ).toBe( true );
} );
describe( 'Validating properties shared among events', function () {
// We're taking a different approach here and first finding the event, then checking properties one-by-one.
// This is done for two reasons:
// 1. We are validating a lot of shared, required properties. Granular failing is helpful.
// 2. For stability, some of these properties (e.g. blog_id) are best done with "soft" assertions.
// Our current list doesn't include GB english, which is on some of our test sites.
// Adding that here so we don't accidentally expand our i18n tests.
const expectedLocales = new Set( [ ...DataHelper.getMag16Locales(), 'en-gb' ] );
const numericRegex = /^\d+$/;
let tracksEventProperties: TracksEventProperties;
beforeAll( async function () {
[ , tracksEventProperties ] =
await editorTracksEventManager.getMostRecentMatchingEvent( 'wpcom_block_inserted' );
} );
it( '"editor_type" is "post"', async function () {
expect( tracksEventProperties.editor_type ).toBe( 'post' );
} );
it( '"post_type" is "post"', async function () {
expect( tracksEventProperties.post_type ).toBe( 'post' );
} );
it( '"blog_id" is a numeric value', async function () {
expect( numericRegex.test( tracksEventProperties.blog_id.toString() ) ).toBe( true );
} );
it( '"site_type" matches the current site type', async function () {
const expectedSiteType: SiteType = envVariables.TEST_ON_ATOMIC ? 'atomic' : 'simple';
expect( tracksEventProperties.site_type ).toBe( expectedSiteType );
} );
it( '"user_locale" is a valid locale', async function () {
expect( expectedLocales.has( tracksEventProperties.user_locale.toString() ) ).toBe(
true
);
} );
it( '"blog_tz" is a numeric value', async function () {
expect( numericRegex.test( tracksEventProperties.blog_tz.toString() ) ).toBe( true );
} );
it( '"user_lang" is a valid locale', async function () {
expect( expectedLocales.has( tracksEventProperties.user_lang.toString() ) ).toBe(
true
);
} );
it( '"blog_lang" is a valid locale', async function () {
expect( expectedLocales.has( tracksEventProperties.blog_lang.toString() ) ).toBe(
true
);
} );
} );
} );
it( 'Close the page', async function () {
await page.close();
} );
} );
describe( 'In the page editor', function () {
const accountName = getTestAccountByFeature( features );
let page: Page;
let editorPage: EditorPage;
let editorTracksEventManager: EditorTracksEventManager;
beforeAll( async () => {
page = await browser.newPage();
const testAccount = new TestAccount( accountName );
await testAccount.authenticate( page );
editorTracksEventManager = new EditorTracksEventManager( page );
editorPage = new EditorPage( page );
} );
it( 'Start a new page', async function () {
await editorPage.visit( 'page' );
await editorPage.waitUntilLoaded();
// We'll be leaving without saving here too.
editorPage.allowLeavingWithoutSaving();
} );
it( 'Clear the current Tracks events for a clean slate', async function () {
await editorTracksEventManager.clearEvents();
} );
describe( 'From adding a page template', function () {
it( 'Add a page template', async function () {
const editorParent = await editorPage.getEditorParent();
const inserterSelector = await editorParent.getByRole( 'listbox', { name: 'All' } );
const modalSelector = await editorParent.getByRole( 'listbox', {
name: 'Block patterns',
} );
const firstPattern = await inserterSelector
.or( modalSelector )
.getByRole( 'option' )
.first();
const pageTemplateToSelect = ( await firstPattern.getAttribute( 'aria-label' ) ) ?? '';
await editorPage.selectTemplate( pageTemplateToSelect, { timeout: 15 * 1000 } );
} );
it( '"wpcom_block_inserted" event fires with "from_template_selector" set to true', async function () {
const eventDidFire = await editorTracksEventManager.didEventFire(
'wpcom_block_inserted',
{
matchingProperties: { from_template_selector: true },
}
);
expect( eventDidFire ).toBe( true );
} );
} );
it( 'Close the page', async function () {
await page.close();
} );
} );
describe( 'In the site editor', function () {
const accountName = getTestAccountByFeature( { ...features, variant: 'siteEditor' } );
let testAccount: TestAccount;
let templatePartName: string;
let page: Page;
let fullSiteEditorPage: FullSiteEditorPage;
let editorTracksEventManager: EditorTracksEventManager;
let templatePartBlock: TemplatePartBlock;
let headerBlock: TemplatePartBlock;
beforeAll( async () => {
page = await browser.newPage();
testAccount = new TestAccount( accountName );
await testAccount.authenticate( page );
editorTracksEventManager = new EditorTracksEventManager( page );
fullSiteEditorPage = new FullSiteEditorPage( page );
} );
afterAll( async () => {
// Always try to delete the created template part.
if ( templatePartName ) {
await fullSiteEditorPage.deleteTemplateParts( [ templatePartName ] );
}
} );
it( 'Visit the site editor', async function () {
await fullSiteEditorPage.visit( testAccount.getSiteURL( { protocol: true } ) );
await fullSiteEditorPage.prepareForInteraction( { leaveWithoutSaving: true } );
} );
it( 'Close the navigation sidebar', async function () {
await fullSiteEditorPage.closeNavSidebar();
} );
// A lot of block insertions sometimes happen on load
it( 'Clear the event stack for a starting clean slate', async function () {
await editorTracksEventManager.clearEvents();
} );
describe( 'Adding blocks to templates and template parts', function () {
it( 'Add a Template Part block', async function () {
const block = await fullSiteEditorPage.addBlockFromSidebar(
TemplatePartBlock.blockName,
TemplatePartBlock.blockEditorSelector
);
templatePartBlock = new TemplatePartBlock( page, block );
} );
it( '"wpcom_block_inserted" event fires with "entity_context" === "template"', async function () {
const eventDidFire = await editorTracksEventManager.didEventFire(
'wpcom_block_inserted',
{
matchingProperties: {
block_name: 'core/template-part',
entity_context: 'template',
},
}
);
expect( eventDidFire ).toBe( true );
} );
it( 'Create a new Template Part', async function () {
templatePartName = `TP-${ DataHelper.getTimestamp() }-${ DataHelper.getRandomInteger(
0,
100
) }`;
await templatePartBlock.clickStartBlank();
await fullSiteEditorPage.nameAndFinalizeTemplatePart( templatePartName );
} );
it( 'Add a Page List block to the template part', async function () {
const openInlineInserter: OpenInlineInserter = async () => {
await templatePartBlock.clickAddBlockButton();
};
await fullSiteEditorPage.addBlockInline(
'Page List',
'[aria-label="Block: Page List"]',
openInlineInserter
);
} );
it( '"wpcom_block_inserted" event fires with correct "entity_context" and "template_part_id"', async function () {
const eventDidFire = await editorTracksEventManager.didEventFire(
'wpcom_block_inserted',
{
matchingProperties: {
block_name: 'core/page-list',
entity_context: 'core/template-part',
template_part_id: `pub/twentytwentytwo//${ templatePartName.toLowerCase() }`,
},
}
);
expect( eventDidFire ).toBe( true );
} );
} );
describe.skip( 'Adding blocks from existing template parts', function () {
it( 'Add a Header block', async function () {
const block = await fullSiteEditorPage.addBlockFromSidebar(
HeaderBlock.blockName,
HeaderBlock.blockEditorSelector
);
headerBlock = new HeaderBlock( page, block );
} );
it( 'Clear the event stack again for clean slate', async function () {
await editorTracksEventManager.clearEvents();
} );
it( 'Choose an existing theme template part (header-centered)', async function () {
await headerBlock.clickChoose();
await fullSiteEditorPage.selectExistingTemplatePartFromModal( 'header-centered' );
} );
// The wp_block_inserted event does fire here because the
// header block selected above includes a core/page-list
// block, which triggers wpcom_block_inserted. This is
// arguably a reasonable outcome. We need to decide whether
// to adjust the test to match the tracking behavior or adjust
// the underlyting tracking behavior.
it( '"wpcom_block_instered" event does NOT fire', async function () {
const eventDidFire =
await editorTracksEventManager.didEventFire( 'wpcom_block_inserted' );
expect( eventDidFire ).toBe( false );
} );
} );
} );
}
);
|