* rrdom: add a diff function for properties * implement diffChildren function and unit tests * finish basic functions of diff algorithm * fix several bugs in the diff algorithm * replace the virtual parent optimization in applyMutation() * fix: moveAndHover after the diff algorithm is executed * replace virtual style map with rrdom cssom version has to be above 0.5.0 to pass virtual style tests * fix: failed virtual style tests in replayer.test.ts * fix: failed polyfill tests caused by nodejs compatibility of different versions * fix: svg viewBox attribute doesn't work Cause the attribute viewBox is case sensitive, set value for viewbox doesn't work * feat: replace treeIndex optimization with rrdom * fix bug of diffProps and disable smooth scrolling animation in fast-forward mode * feat: add iframe support * fix: @rollup/plugin-typescript build errors in rrweb-player Error: @rollup/plugin-typescript TS1371: This import is never used as a value and must use 'import type' because the 'importsNotUsedAsValues' is set to 'error' * fix: bug when fast-forward input events and add test for it * add test for fast-forward scroll events * fix: custom style rules don't get inserted into some iframe elements * code style tweak * fix: enable to diff iframe elements * fix the jest error "Unexpected token 'export'" * try to fix build error of rrweb-player * correct the attributes definition in rrdom * fix: custom style rules are not inserted in some iframes * add support for shadow dom * add support for MediaInteraction * add canvas support * fix unit test error in rrdom * add support for Text, Comment * try to refactor RRDom * refactor RRDom to reduce duplicate code * rename document-browser to virtual-dom * increase the test coverage for document.ts and add ownerDocument for it * Merge branch 'master' into virtual-dom * add more test for virtual-dom.ts * use cssstyle in document-nodejs * fix: bundle error * improve document-nodejs * enable to diff scroll positions of an element * rename rrdom to virtualDom for more readability and make the tree public * revert unknown change * improve the css style parser for comments * improve code style * update typings * add handling for the case where legacy_missingNodeRetryMap is not empty * only import types from rrweb into rrdom * Apply suggestions from code review Co-authored-by: Justin Halsall <Juice10@users.noreply.github.com> * Apply suggestions from code review * fix building error in rrweb * add a method setDefaultSN to set a default value for a RRNode's __sn * fix rrweb test error and bump up other packages * add support for custom property of css styles * add a switch for virtual-dom optimization * Apply suggestions from code review 1. add an enum type for NodeType 2. rename nodeType from rrweb-snapshot to RRNodeType 3. rename notSerializedId to unserializedId 4. add comments for some confusing variables * adapt changes of #865 to virtual-dom and improve the test case for more coverage * apply review suggestions https://github.com/rrweb-io/rrweb/pull/853#pullrequestreview-922474953 * tweak the diff algorithm * add description of the flag useVirtualDom and remove outdated logConfig * Remove console.log * Contain changes to document * Upgrade rollup to 2.70.2 * Revert "Upgrade rollup to 2.70.2" This reverts commit b1be81a2a76565935c9dc391f31beb7f64d25956. * Fix type checking rrdom * Fix typing error while bundling * Fix tslib error on build Rollup would output the following error: `semantic error TS2343: This syntax requires an imported helper named '__spreadArray' which does not exist in 'tslib'. Consider upgrading your version of 'tslib'.` * Increase memory limit for rollup * Use esbuild for bundling Speeds up bundling significantly * Avoid circular dependencies and import un-bundled rrdom * Fix imports * Revert back to pre-esbuild This reverts the following commits: b7b3c8dbaa551a0129da1477136b1baaad28e6e1 72e23b8e27f9030d911358d3a17fe5ad1b3b5d4f 85d600a20c56cfa764cf1f858932ba14e67b1d23 61e1a5d323212ca8fbe0569e0b3062ddd53fc612 * Set node to lts (12 is no longer supported) * Speed up bundling and use less memory This fixes the out of memory errors happening while bundling * remove __sn from rrdom * fix typo * test: add a test case for StyleSheet mutation exceptions while fast-forwarding * rename Array.prototype.slice.call() to Array.from() * improve test cases * fix: PR #887 in 'virtual-dom' branch * apply justin's suggestion on 'Array.from' refactor related commit 0f6729d27a323260b36fbe79485a86715c0bc98a * improve import code structure Co-authored-by: Yun Feng <yun.feng@anu.edu.au>
654 lines
21 KiB
TypeScript
654 lines
21 KiB
TypeScript
import * as fs from 'fs';
|
|
import * as path from 'path';
|
|
import type * as http from 'http';
|
|
import type * as puppeteer from 'puppeteer';
|
|
import {
|
|
assertSnapshot,
|
|
startServer,
|
|
getServerURL,
|
|
launchPuppeteer,
|
|
waitForRAF,
|
|
replaceLast,
|
|
} from './utils';
|
|
import { recordOptions, eventWithTime, EventType } from '../src/types';
|
|
import { visitSnapshot, NodeType } from 'rrweb-snapshot';
|
|
|
|
interface ISuite {
|
|
server: http.Server;
|
|
serverURL: string;
|
|
code: string;
|
|
browser: puppeteer.Browser;
|
|
}
|
|
|
|
interface IMimeType {
|
|
[key: string]: string;
|
|
}
|
|
|
|
describe('record integration tests', function (this: ISuite) {
|
|
jest.setTimeout(10_000);
|
|
|
|
const getHtml = (
|
|
fileName: string,
|
|
options: recordOptions<eventWithTime> = {},
|
|
): string => {
|
|
const filePath = path.resolve(__dirname, `./html/${fileName}`);
|
|
const html = fs.readFileSync(filePath, 'utf8');
|
|
return replaceLast(
|
|
html,
|
|
'</body>',
|
|
`
|
|
<script>
|
|
${code}
|
|
window.Date.now = () => new Date(Date.UTC(2018, 10, 15, 8)).valueOf();
|
|
window.snapshots = [];
|
|
rrweb.record({
|
|
emit: event => {
|
|
window.snapshots.push(event);
|
|
},
|
|
maskTextSelector: ${JSON.stringify(options.maskTextSelector)},
|
|
maskAllInputs: ${options.maskAllInputs},
|
|
maskInputOptions: ${JSON.stringify(options.maskAllInputs)},
|
|
userTriggeredOnInput: ${options.userTriggeredOnInput},
|
|
maskTextFn: ${options.maskTextFn},
|
|
recordCanvas: ${options.recordCanvas},
|
|
plugins: ${options.plugins}
|
|
});
|
|
</script>
|
|
</body>
|
|
`,
|
|
);
|
|
};
|
|
|
|
let server: ISuite['server'];
|
|
let serverURL: string;
|
|
let code: ISuite['code'];
|
|
let browser: ISuite['browser'];
|
|
|
|
beforeAll(async () => {
|
|
server = await startServer();
|
|
serverURL = getServerURL(server);
|
|
browser = await launchPuppeteer();
|
|
|
|
const bundlePath = path.resolve(__dirname, '../dist/rrweb.min.js');
|
|
const pluginsCode = [
|
|
path.resolve(__dirname, '../dist/plugins/console-record.min.js'),
|
|
]
|
|
.map((path) => fs.readFileSync(path, 'utf8'))
|
|
.join();
|
|
code = fs.readFileSync(bundlePath, 'utf8') + pluginsCode;
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await browser.close();
|
|
server.close();
|
|
});
|
|
|
|
it('can record form interactions', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(getHtml.call(this, 'form.html'));
|
|
|
|
await page.type('input[type="text"]', 'test');
|
|
await page.click('input[type="radio"]');
|
|
await page.click('input[type="checkbox"]');
|
|
await page.type('textarea', 'textarea test');
|
|
await page.select('select', '1');
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('can record childList mutations', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(getHtml.call(this, 'mutation-observer.html'));
|
|
|
|
await page.evaluate(() => {
|
|
const li = document.createElement('li');
|
|
const ul = document.querySelector('ul') as HTMLUListElement;
|
|
ul.appendChild(li);
|
|
document.body.removeChild(ul);
|
|
const p = document.querySelector('p') as HTMLParagraphElement;
|
|
p.appendChild(document.createElement('span'));
|
|
});
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('can record character data muatations', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(getHtml.call(this, 'mutation-observer.html'));
|
|
|
|
await page.evaluate(() => {
|
|
const li = document.createElement('li');
|
|
const ul = document.querySelector('ul') as HTMLUListElement;
|
|
ul.appendChild(li);
|
|
li.innerText = 'new list item';
|
|
li.innerText = 'new list item edit';
|
|
document.body.removeChild(ul);
|
|
const p = document.querySelector('p') as HTMLParagraphElement;
|
|
p.innerText = 'mutated';
|
|
});
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('can record attribute mutation', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(getHtml.call(this, 'mutation-observer.html'));
|
|
|
|
await page.evaluate(() => {
|
|
const li = document.createElement('li');
|
|
const ul = document.querySelector('ul') as HTMLUListElement;
|
|
ul.appendChild(li);
|
|
li.setAttribute('foo', 'bar');
|
|
document.body.removeChild(ul);
|
|
document.body.setAttribute('test', 'true');
|
|
});
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('can record node mutations', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(getHtml.call(this, 'select2.html'), {
|
|
waitUntil: 'networkidle0',
|
|
});
|
|
|
|
// toggle the select box
|
|
await page.click('.select2-container', { clickCount: 2, delay: 100 });
|
|
// test storage of !important style
|
|
await page.evaluate(
|
|
'document.getElementById("select2-drop").setAttribute("style", document.getElementById("select2-drop").style.cssText + "color:black !important")',
|
|
);
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('can freeze mutations', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(
|
|
getHtml.call(this, 'mutation-observer.html', { recordCanvas: true }),
|
|
);
|
|
|
|
await page.evaluate(() => {
|
|
const li = document.createElement('li');
|
|
const ul = document.querySelector('ul') as HTMLUListElement;
|
|
ul.appendChild(li);
|
|
li.setAttribute('foo', 'bar');
|
|
document.body.setAttribute('test', 'true');
|
|
});
|
|
await page.evaluate('rrweb.freezePage()');
|
|
await page.evaluate(() => {
|
|
document.body.setAttribute('test', 'bad');
|
|
const canvas = document.querySelector('canvas') as HTMLCanvasElement;
|
|
const gl = canvas.getContext('webgl') as WebGLRenderingContext;
|
|
gl.getExtension('bad');
|
|
const ul = document.querySelector('ul') as HTMLUListElement;
|
|
const li = document.createElement('li');
|
|
li.setAttribute('bad-attr', 'bad');
|
|
li.innerText = 'bad text';
|
|
ul.appendChild(li);
|
|
document.body.removeChild(ul);
|
|
});
|
|
|
|
await waitForRAF(page);
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('should not record input events on ignored elements', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(getHtml.call(this, 'ignore.html'));
|
|
|
|
await page.type('.rr-ignore', 'secret');
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('should not record input values if maskAllInputs is enabled', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(
|
|
getHtml.call(this, 'form.html', { maskAllInputs: true }),
|
|
);
|
|
|
|
await page.type('input[type="text"]', 'test');
|
|
await page.click('input[type="radio"]');
|
|
await page.click('input[type="checkbox"]');
|
|
await page.type('input[type="password"]', 'password');
|
|
await page.type('textarea', 'textarea test');
|
|
await page.select('select', '1');
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('can use maskInputOptions to configure which type of inputs should be masked', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(
|
|
getHtml.call(this, 'form.html', {
|
|
maskInputOptions: {
|
|
text: false,
|
|
textarea: false,
|
|
password: true,
|
|
},
|
|
}),
|
|
);
|
|
|
|
await page.type('input[type="text"]', 'test');
|
|
await page.click('input[type="radio"]');
|
|
await page.click('input[type="checkbox"]');
|
|
await page.type('textarea', 'textarea test');
|
|
await page.type('input[type="password"]', 'password');
|
|
await page.select('select', '1');
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('should mask value attribute with maskInputOptions', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(
|
|
getHtml.call(this, 'password.html', {
|
|
maskInputOptions: {
|
|
password: true,
|
|
},
|
|
}),
|
|
);
|
|
|
|
await page.type('input[type="password"]', 'secr3t');
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('should record input userTriggered values if userTriggeredOnInput is enabled', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(
|
|
getHtml.call(this, 'form.html', { userTriggeredOnInput: true }),
|
|
);
|
|
|
|
await page.type('input[type="text"]', 'test');
|
|
await page.click('input[type="radio"]');
|
|
await page.click('input[type="checkbox"]');
|
|
await page.type('input[type="password"]', 'password');
|
|
await page.type('textarea', 'textarea test');
|
|
await page.select('select', '1');
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('should not record blocked elements and its child nodes', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(getHtml.call(this, 'block.html'));
|
|
|
|
await page.type('input', 'should not be record');
|
|
await page.evaluate(`document.getElementById('text').innerText = '1'`);
|
|
await page.click('#text');
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('should not record blocked elements dynamically added', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(getHtml.call(this, 'block.html'));
|
|
|
|
await page.evaluate(() => {
|
|
const el = document.createElement('button');
|
|
el.className = 'rr-block';
|
|
el.style.width = '100px';
|
|
el.style.height = '100px';
|
|
el.innerText = 'Should not be recorded';
|
|
|
|
const nextElement = document.querySelector('.rr-block')!;
|
|
nextElement.parentNode!.insertBefore(el, nextElement);
|
|
});
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('mutations should work when blocked class is unblocked', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about: blank');
|
|
await page.setContent(getHtml.call(this, 'blocked-unblocked.html'));
|
|
|
|
const elements1 = await page.$x('/html/body/div[1]/button');
|
|
await elements1[0].click();
|
|
|
|
const elements2 = await page.$x('/html/body/div[2]/button');
|
|
await elements2[0].click();
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('should record DOM node movement 1', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(getHtml.call(this, 'move-node.html'));
|
|
|
|
await page.evaluate(() => {
|
|
const div = document.querySelector('div')!;
|
|
const p = document.querySelector('p')!;
|
|
const span = document.querySelector('span')!;
|
|
document.body.removeChild(span);
|
|
p.appendChild(span);
|
|
p.removeChild(span);
|
|
div.appendChild(span);
|
|
});
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('should record DOM node movement 2', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(getHtml.call(this, 'move-node.html'));
|
|
|
|
await page.evaluate(() => {
|
|
const div = document.createElement('div');
|
|
const span = document.querySelector('span')!;
|
|
document.body.appendChild(div);
|
|
div.appendChild(span);
|
|
});
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('should record dynamic CSS changes', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(getHtml.call(this, 'react-styled-components.html'));
|
|
await page.click('.toggle');
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('should record canvas mutations', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(
|
|
getHtml.call(this, 'canvas.html', {
|
|
recordCanvas: true,
|
|
}),
|
|
);
|
|
await waitForRAF(page);
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
for (const event of snapshots) {
|
|
if (event.type === EventType.FullSnapshot) {
|
|
visitSnapshot(event.data.node, (n) => {
|
|
if (n.type === NodeType.Element && n.attributes.rr_dataURL) {
|
|
n.attributes.rr_dataURL = `LOOKS LIKE WE COULD NOT GET STABLE BASE64 FROM SAME IMAGE.`;
|
|
}
|
|
});
|
|
}
|
|
}
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('should record webgl canvas mutations', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(
|
|
getHtml.call(this, 'canvas-webgl.html', {
|
|
recordCanvas: true,
|
|
}),
|
|
);
|
|
await page.waitForTimeout(50);
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('will serialize node before record', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(getHtml.call(this, 'mutation-observer.html'));
|
|
|
|
await page.evaluate(() => {
|
|
const ul = document.querySelector('ul') as HTMLUListElement;
|
|
let count = 3;
|
|
while (count > 0) {
|
|
count--;
|
|
const li = document.createElement('li');
|
|
ul.appendChild(li);
|
|
}
|
|
});
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('will defer missing next node mutation', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(getHtml.call(this, 'shuffle.html'));
|
|
|
|
const text = await page.evaluate(() => {
|
|
const els = Array.prototype.slice.call(document.querySelectorAll('li'));
|
|
const parent = document.querySelector('ul')!;
|
|
parent.removeChild(els[3]);
|
|
parent.removeChild(els[2]);
|
|
parent.removeChild(els[1]);
|
|
parent.removeChild(els[0]);
|
|
parent.insertBefore(els[3], els[4]);
|
|
parent.insertBefore(els[2], els[4]);
|
|
parent.insertBefore(els[1], els[4]);
|
|
parent.insertBefore(els[0], els[4]);
|
|
return parent.innerText;
|
|
});
|
|
|
|
expect(text).toEqual('4\n3\n2\n1\n5');
|
|
});
|
|
|
|
it('should record console messages', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(
|
|
getHtml.call(this, 'log.html', {
|
|
plugins: '[rrwebConsoleRecord.getRecordConsolePlugin()]',
|
|
}),
|
|
);
|
|
|
|
await page.evaluate(() => {
|
|
console.assert(0 === 0, 'assert');
|
|
console.count('count');
|
|
console.countReset('count');
|
|
console.debug('debug');
|
|
console.dir('dir');
|
|
console.dirxml('dirxml');
|
|
console.group();
|
|
console.groupCollapsed();
|
|
console.info('info');
|
|
console.log('log');
|
|
console.table('table');
|
|
console.time();
|
|
console.timeEnd();
|
|
console.timeLog();
|
|
console.trace('trace');
|
|
console.warn('warn');
|
|
console.clear();
|
|
console.log(new TypeError('a message'));
|
|
const iframe = document.createElement('iframe');
|
|
document.body.appendChild(iframe);
|
|
});
|
|
|
|
await page.frames()[1].evaluate(() => {
|
|
console.log('from iframe');
|
|
});
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('should nest record iframe', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto(`${serverURL}/html`);
|
|
await page.setContent(getHtml.call(this, 'main.html'));
|
|
|
|
await page.waitForSelector('#two');
|
|
const frameIdTwo = await page.frames()[2];
|
|
await frameIdTwo.waitForSelector('#four');
|
|
const frameIdFour = frameIdTwo.childFrames()[1];
|
|
await frameIdFour.waitForSelector('#five');
|
|
|
|
await page.waitForTimeout(50);
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('should record shadow DOM', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(getHtml.call(this, 'shadow-dom.html'));
|
|
|
|
await page.evaluate(() => {
|
|
const sleep = (ms: number) =>
|
|
new Promise((resolve) => setTimeout(resolve, ms));
|
|
|
|
const el = document.querySelector('.my-element') as HTMLDivElement;
|
|
const shadowRoot = el.shadowRoot as ShadowRoot;
|
|
shadowRoot.appendChild(document.createElement('p'));
|
|
sleep(1)
|
|
.then(() => {
|
|
shadowRoot.lastChild!.appendChild(document.createElement('p'));
|
|
return sleep(1);
|
|
})
|
|
.then(() => {
|
|
const firstP = shadowRoot.querySelector('p') as HTMLParagraphElement;
|
|
shadowRoot.removeChild(firstP);
|
|
return sleep(1);
|
|
})
|
|
.then(() => {
|
|
(shadowRoot.lastChild!.childNodes[0] as HTMLElement).innerText = 'hi';
|
|
return sleep(1);
|
|
})
|
|
.then(() => {
|
|
(shadowRoot.lastChild!.childNodes[0] as HTMLElement).innerText =
|
|
'123';
|
|
const nestedShadowElement = shadowRoot.lastChild!
|
|
.childNodes[0] as HTMLElement;
|
|
nestedShadowElement.attachShadow({
|
|
mode: 'open',
|
|
});
|
|
nestedShadowElement.shadowRoot!.appendChild(
|
|
document.createElement('span'),
|
|
);
|
|
(nestedShadowElement.shadowRoot!.lastChild as HTMLElement).innerText =
|
|
'nested shadow dom';
|
|
});
|
|
});
|
|
await page.waitForTimeout(50);
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('should record nested iframes and shadow doms', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(getHtml.call(this, 'frame2.html'));
|
|
|
|
await page.evaluate(() => {
|
|
const sleep = (ms: number) =>
|
|
new Promise((resolve) => setTimeout(resolve, ms));
|
|
let iframe: HTMLIFrameElement;
|
|
sleep(10)
|
|
.then(() => {
|
|
// get contentDocument of iframe five
|
|
const contentDocument1 = document.querySelector('iframe')!
|
|
.contentDocument!;
|
|
// create shadow dom #1
|
|
contentDocument1.body.attachShadow({ mode: 'open' });
|
|
contentDocument1.body.shadowRoot!.appendChild(
|
|
document.createElement('div'),
|
|
);
|
|
const div = contentDocument1.body.shadowRoot!.childNodes[0];
|
|
iframe = contentDocument1.createElement('iframe');
|
|
// append an iframe to shadow dom #1
|
|
div.appendChild(iframe);
|
|
return sleep(10);
|
|
})
|
|
.then(() => {
|
|
const contentDocument2 = iframe.contentDocument!;
|
|
// create shadow dom #2 in the iframe
|
|
contentDocument2.body.attachShadow({ mode: 'open' });
|
|
contentDocument2.body.shadowRoot!.appendChild(
|
|
document.createElement('span'),
|
|
);
|
|
});
|
|
});
|
|
await page.waitForTimeout(50);
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('should mask texts', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(
|
|
getHtml.call(this, 'mask-text.html', {
|
|
maskTextSelector: '[data-masking="true"]',
|
|
}),
|
|
);
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('should mask texts using maskTextFn', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(
|
|
getHtml.call(this, 'mask-text.html', {
|
|
maskTextSelector: '[data-masking="true"]',
|
|
maskTextFn: (t: string) => t.replace(/[a-z]/g, '*'),
|
|
}),
|
|
);
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
|
|
it('can mask character data mutations', async () => {
|
|
const page: puppeteer.Page = await browser.newPage();
|
|
await page.goto('about:blank');
|
|
await page.setContent(getHtml.call(this, 'mutation-observer.html'));
|
|
|
|
await page.evaluate(() => {
|
|
const li = document.createElement('li');
|
|
const ul = document.querySelector('ul') as HTMLUListElement;
|
|
const p = document.querySelector('p') as HTMLParagraphElement;
|
|
[li, p].forEach((element) => {
|
|
element.className = 'rr-mask';
|
|
});
|
|
ul.appendChild(li);
|
|
li.innerText = 'new list item';
|
|
p.innerText = 'mutated';
|
|
});
|
|
|
|
const snapshots = await page.evaluate('window.snapshots');
|
|
assertSnapshot(snapshots);
|
|
});
|
|
});
|