mirror of
https://github.com/nasa/openmct.git
synced 2025-01-28 23:24:26 +00:00
Fixed prettier issues
This commit is contained in:
parent
4fff6b035b
commit
6f46b4d87e
@ -25,9 +25,8 @@ const config = {
|
|||||||
trace: 'on-first-retry',
|
trace: 'on-first-retry',
|
||||||
video: 'off',
|
video: 'off',
|
||||||
launchOptions: {
|
launchOptions: {
|
||||||
args: [
|
args: ['--js-flags=--expose-gc']
|
||||||
'--js-flags=--expose-gc'
|
}
|
||||||
]}
|
|
||||||
},
|
},
|
||||||
projects: [
|
projects: [
|
||||||
{
|
{
|
||||||
|
@ -22,13 +22,13 @@
|
|||||||
|
|
||||||
const { test, expect } = require('@playwright/test');
|
const { test, expect } = require('@playwright/test');
|
||||||
|
|
||||||
const filePath = "e2e/test-data/memory-leak-detection.json";
|
const filePath = 'e2e/test-data/memory-leak-detection.json';
|
||||||
/**
|
/**
|
||||||
* Executes tests to verify that views are not leaking memory on navigation away. This sort of
|
* Executes tests to verify that views are not leaking memory on navigation away. This sort of
|
||||||
* memory leak is generally caused by a failure to clean up registered listeners.
|
* memory leak is generally caused by a failure to clean up registered listeners.
|
||||||
*
|
*
|
||||||
* These tests are executed on a set of pre-built displays loaded from ../test-data/memory-leak-detection.json.
|
* These tests are executed on a set of pre-built displays loaded from ../test-data/memory-leak-detection.json.
|
||||||
*
|
*
|
||||||
* In order to modify the test data set:
|
* In order to modify the test data set:
|
||||||
* 1. Run Open MCT locally (npm start)
|
* 1. Run Open MCT locally (npm start)
|
||||||
* 2. Right click on a folder in the tree, and select "Import From JSON"
|
* 2. Right click on a folder in the tree, and select "Import From JSON"
|
||||||
@ -37,182 +37,215 @@ const filePath = "e2e/test-data/memory-leak-detection.json";
|
|||||||
* 5. Modify test objects as desired
|
* 5. Modify test objects as desired
|
||||||
* 6. Right click on the "Memory Leak Detection" folder, and select "Export to JSON"
|
* 6. Right click on the "Memory Leak Detection" folder, and select "Export to JSON"
|
||||||
* 7. Copy the exported file to ../test-data/memory-leak-detection.json
|
* 7. Copy the exported file to ../test-data/memory-leak-detection.json
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
test.describe.only("Navigation memory leak is not detected in", () => {
|
test.describe('Navigation memory leak is not detected in', () => {
|
||||||
test.beforeEach(async ({ page, browser }, testInfo) => {
|
test.beforeEach(async ({ page, browser }, testInfo) => {
|
||||||
// Go to baseURL
|
// Go to baseURL
|
||||||
await page.goto('./', { waitUntil: 'networkidle' });
|
await page.goto('./', { waitUntil: 'networkidle' });
|
||||||
|
|
||||||
// Click a:has-text("My Items")
|
// Click a:has-text("My Items")
|
||||||
await page.locator('a:has-text("My Items")').click({
|
await page.locator('a:has-text("My Items")').click({
|
||||||
button: 'right'
|
button: 'right'
|
||||||
});
|
});
|
||||||
|
|
||||||
// Click text=Import from JSON
|
// Click text=Import from JSON
|
||||||
await page.locator('text=Import from JSON').click();
|
await page.locator('text=Import from JSON').click();
|
||||||
|
|
||||||
// Upload memory-leak-detection.json
|
// Upload memory-leak-detection.json
|
||||||
await page.setInputFiles('#fileElem', filePath);
|
await page.setInputFiles('#fileElem', filePath);
|
||||||
|
|
||||||
// Click text=OK
|
// Click text=OK
|
||||||
await page.locator('text=OK').click();
|
await page.locator('text=OK').click();
|
||||||
|
|
||||||
await expect(
|
await expect(page.locator('a:has-text("Memory Leak Detection")')).toBeVisible();
|
||||||
page.locator('a:has-text("Memory Leak Detection")')
|
});
|
||||||
).toBeVisible();
|
|
||||||
|
test('plot view', async ({ page }) => {
|
||||||
|
const result = await navigateToObjectAndDetectMemoryLeak(page, 'overlay-plot-single-1hz-swg');
|
||||||
|
|
||||||
|
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
||||||
|
expect(result).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('stacked plot view', async ({ page }) => {
|
||||||
|
const result = await navigateToObjectAndDetectMemoryLeak(page, 'stacked-plot-single-1hz-swg');
|
||||||
|
|
||||||
|
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
||||||
|
expect(result).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('LAD table view', async ({ page }) => {
|
||||||
|
const result = await navigateToObjectAndDetectMemoryLeak(page, 'lad-table-single-1hz-swg');
|
||||||
|
|
||||||
|
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
||||||
|
expect(result).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('LAD table set', async ({ page }) => {
|
||||||
|
const result = await navigateToObjectAndDetectMemoryLeak(page, 'lad-table-set-single-1hz-swg');
|
||||||
|
|
||||||
|
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
||||||
|
expect(result).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('telemetry table view', async ({ page }) => {
|
||||||
|
const result = await navigateToObjectAndDetectMemoryLeak(
|
||||||
|
page,
|
||||||
|
'telemetry-table-single-1hz-swg'
|
||||||
|
);
|
||||||
|
|
||||||
|
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
||||||
|
expect(result).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('notebook view', async ({ page }) => {
|
||||||
|
const result = await navigateToObjectAndDetectMemoryLeak(
|
||||||
|
page,
|
||||||
|
'notebook-memory-leak-detection-test'
|
||||||
|
);
|
||||||
|
|
||||||
|
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
||||||
|
expect(result).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('display layout of a single SWG alphanumeric', async ({ page }) => {
|
||||||
|
const result = await navigateToObjectAndDetectMemoryLeak(page, 'display-layout-single-1hz-swg');
|
||||||
|
|
||||||
|
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
||||||
|
expect(result).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('display layout of a single SWG plot', async ({ page }) => {
|
||||||
|
const result = await navigateToObjectAndDetectMemoryLeak(
|
||||||
|
page,
|
||||||
|
'display-layout-single-overlay-plot'
|
||||||
|
);
|
||||||
|
|
||||||
|
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
||||||
|
expect(result).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test.skip('example imagery view', async ({ page }) => {
|
||||||
|
const result = await navigateToObjectAndDetectMemoryLeak(
|
||||||
|
page,
|
||||||
|
'example-imagery-memory-leak-test'
|
||||||
|
);
|
||||||
|
|
||||||
|
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
||||||
|
expect(result).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test.skip('display layout of example imagery views', async ({ page }) => {
|
||||||
|
const result = await navigateToObjectAndDetectMemoryLeak(
|
||||||
|
page,
|
||||||
|
'display-layout-images-memory-leak-test'
|
||||||
|
);
|
||||||
|
|
||||||
|
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
||||||
|
expect(result).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test.skip('display layout with plots of swgs, alphanumerics, and condition sets, ', async ({
|
||||||
|
page
|
||||||
|
}) => {
|
||||||
|
const result = await navigateToObjectAndDetectMemoryLeak(
|
||||||
|
page,
|
||||||
|
'display-layout-simple-telemetry'
|
||||||
|
);
|
||||||
|
|
||||||
|
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
||||||
|
expect(result).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test.skip('flexible layout with plots of swgs', async ({ page }) => {
|
||||||
|
const result = await navigateToObjectAndDetectMemoryLeak(
|
||||||
|
page,
|
||||||
|
'flexible-layout-plots-memory-leak-test'
|
||||||
|
);
|
||||||
|
|
||||||
|
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
||||||
|
expect(result).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test.skip('flexible layout of example imagery views', async ({ page }) => {
|
||||||
|
const result = await navigateToObjectAndDetectMemoryLeak(
|
||||||
|
page,
|
||||||
|
'flexible-layout-images-memory-leak-test'
|
||||||
|
);
|
||||||
|
|
||||||
|
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
||||||
|
expect(result).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test.skip('tabbed view of display layouts and time strips', async ({ page }) => {
|
||||||
|
const result = await navigateToObjectAndDetectMemoryLeak(
|
||||||
|
page,
|
||||||
|
'tab-view-simple-memory-leak-test'
|
||||||
|
);
|
||||||
|
|
||||||
|
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
||||||
|
expect(result).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test.skip('time strip view of telemetry', async ({ page }) => {
|
||||||
|
const result = await navigateToObjectAndDetectMemoryLeak(
|
||||||
|
page,
|
||||||
|
'time-strip-telemetry-memory-leak-test'
|
||||||
|
);
|
||||||
|
|
||||||
|
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
||||||
|
expect(result).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
async function navigateToObjectAndDetectMemoryLeak(page, objectName) {
|
||||||
|
await page.locator('[aria-label="OpenMCT Search"] input[type="search"]').click();
|
||||||
|
// Fill Search input
|
||||||
|
await page.locator('[aria-label="OpenMCT Search"] input[type="search"]').fill(objectName);
|
||||||
|
|
||||||
|
//Search Result Appears and is clicked
|
||||||
|
await Promise.all([
|
||||||
|
page.locator(`div.c-gsearch-result__title:has-text("${objectName}")`).first().click(),
|
||||||
|
page.waitForNavigation()
|
||||||
|
]);
|
||||||
|
|
||||||
|
// Register a finalization listener on the root node for the view. This tends to be the last thing to be
|
||||||
|
// garbage collected since it has either direct or indirect references to all resources used by the view. Therefore it's a pretty good proxy
|
||||||
|
// for detecting memory leaks.
|
||||||
|
await page.evaluate(() => {
|
||||||
|
window.gcPromise = new Promise((resolve) => {
|
||||||
|
// eslint-disable-next-line no-undef
|
||||||
|
window.fr = new FinalizationRegistry(resolve);
|
||||||
|
window.fr.register(
|
||||||
|
window.openmct.layout.$refs.browseObject.$refs.objectViewWrapper.firstChild.__vue__,
|
||||||
|
'navigatedObject',
|
||||||
|
window.openmct.layout.$refs.browseObject.$refs.objectViewWrapper.firstChild.__vue__
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('plot view', async ({ page }) => {
|
|
||||||
await navigateToObjectAndDetectMemoryLeak(page, "overlay-plot-single-1hz-swg");
|
|
||||||
|
|
||||||
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
|
||||||
expect(true)
|
|
||||||
});
|
});
|
||||||
|
|
||||||
test('stacked plot view', async ({ page }) => {
|
// Nav back to folder
|
||||||
await navigateToObjectAndDetectMemoryLeak(page, "stacked-plot-single-1hz-swg");
|
await page.goto('./#/browse/mine', { waitUntil: 'networkidle' });
|
||||||
|
await page.waitForNavigation();
|
||||||
|
|
||||||
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
// This next code block blocks until the finalization listener is called and the gcPromise resolved. This means that the root node for the view has been garbage collected.
|
||||||
expect(true)
|
// In the event that the root node is not garbage collected, the gcPromise will never resolve and the test will time out.
|
||||||
|
await page.evaluate(() => {
|
||||||
|
const gcPromise = window.gcPromise;
|
||||||
|
window.gcPromise = null;
|
||||||
|
|
||||||
|
// Manually invoke the garbage collector once all references are removed.
|
||||||
|
window.gc();
|
||||||
|
|
||||||
|
return gcPromise;
|
||||||
});
|
});
|
||||||
|
|
||||||
test('LAD table view', async ({ page }) => {
|
// Clean up the finalization registry since we don't need it any more.
|
||||||
await navigateToObjectAndDetectMemoryLeak(page, "lad-table-single-1hz-swg");
|
await page.evaluate(() => {
|
||||||
|
window.fr = null;
|
||||||
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
|
||||||
expect(true)
|
|
||||||
});
|
});
|
||||||
|
|
||||||
test('LAD table set', async ({ page }) => {
|
// If we get here without timing out, it means the garbage collection promise resolved and the test passed.
|
||||||
await navigateToObjectAndDetectMemoryLeak(page, "lad-table-set-single-1hz-swg");
|
return true;
|
||||||
|
}
|
||||||
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
});
|
||||||
expect(true)
|
|
||||||
});
|
|
||||||
|
|
||||||
test('telemetry table view', async ({ page }) => {
|
|
||||||
await navigateToObjectAndDetectMemoryLeak(page, "telemetry-table-single-1hz-swg");
|
|
||||||
|
|
||||||
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
|
||||||
expect(true)
|
|
||||||
});
|
|
||||||
|
|
||||||
test('notebook view', async ({ page }) => {
|
|
||||||
await navigateToObjectAndDetectMemoryLeak(page, "notebook-memory-leak-detection-test");
|
|
||||||
|
|
||||||
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
|
||||||
expect(true)
|
|
||||||
});
|
|
||||||
|
|
||||||
test('display layout of a single SWG alphanumeric', async ({ page }) => {
|
|
||||||
await navigateToObjectAndDetectMemoryLeak(page, "display-layout-single-1hz-swg");
|
|
||||||
|
|
||||||
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
|
||||||
expect(true)
|
|
||||||
});
|
|
||||||
|
|
||||||
test('display layout of a single SWG plot', async ({ page }) => {
|
|
||||||
await navigateToObjectAndDetectMemoryLeak(page, "display-layout-single-overlay-plot");
|
|
||||||
|
|
||||||
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
|
||||||
expect(true)
|
|
||||||
});
|
|
||||||
|
|
||||||
test.skip('example imagery view', async ({ page }) => {
|
|
||||||
await navigateToObjectAndDetectMemoryLeak(page, "example-imagery-memory-leak-test");
|
|
||||||
|
|
||||||
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
|
||||||
expect(true)
|
|
||||||
});
|
|
||||||
|
|
||||||
test.skip('display layout of example imagery views', async ({ page }) => {
|
|
||||||
await navigateToObjectAndDetectMemoryLeak(page, "display-layout-images-memory-leak-test");
|
|
||||||
|
|
||||||
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
|
||||||
expect(true)
|
|
||||||
});
|
|
||||||
|
|
||||||
test.skip('display layout with plots of swgs, alphanumerics, and condition sets, ', async ({ page }) => {
|
|
||||||
await navigateToObjectAndDetectMemoryLeak(page, "display-layout-simple-telemetry");
|
|
||||||
|
|
||||||
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
|
||||||
expect(true)
|
|
||||||
});
|
|
||||||
|
|
||||||
test.skip('flexible layout with plots of swgs', async ({ page }) => {
|
|
||||||
await navigateToObjectAndDetectMemoryLeak(page, "flexible-layout-plots-memory-leak-test");
|
|
||||||
|
|
||||||
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
|
||||||
expect(true)
|
|
||||||
});
|
|
||||||
|
|
||||||
test.skip('flexible layout of example imagery views', async ({ page }) => {
|
|
||||||
await navigateToObjectAndDetectMemoryLeak(page, "flexible-layout-images-memory-leak-test");
|
|
||||||
|
|
||||||
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
|
||||||
expect(true)
|
|
||||||
});
|
|
||||||
|
|
||||||
test.skip('tabbed view of display layouts and time strips', async ({ page }) => {
|
|
||||||
await navigateToObjectAndDetectMemoryLeak(page, "tab-view-simple-memory-leak-test");
|
|
||||||
|
|
||||||
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
|
||||||
expect(true)
|
|
||||||
});
|
|
||||||
|
|
||||||
test.skip('time strip view of telemetry', async ({ page }) => {
|
|
||||||
await navigateToObjectAndDetectMemoryLeak(page, "time-strip-telemetry-memory-leak-test");
|
|
||||||
|
|
||||||
// If we got here without timing out, then the root view object was garbage collected and no memory leak was detected.
|
|
||||||
expect(true)
|
|
||||||
});
|
|
||||||
|
|
||||||
async function navigateToObjectAndDetectMemoryLeak(page, objectName) {
|
|
||||||
await page.locator('[aria-label="OpenMCT Search"] input[type="search"]').click();
|
|
||||||
// Fill Search input
|
|
||||||
await page
|
|
||||||
.locator('[aria-label="OpenMCT Search"] input[type="search"]')
|
|
||||||
.fill(objectName);
|
|
||||||
|
|
||||||
//Search Result Appears and is clicked
|
|
||||||
await Promise.all([
|
|
||||||
page.locator(`div.c-gsearch-result__title:has-text("${objectName}")`).first().click(),
|
|
||||||
page.waitForNavigation()
|
|
||||||
]);
|
|
||||||
|
|
||||||
// Register a finalization listener on the root node for the view. This tends to be the last thing to be
|
|
||||||
// garbage collected since it has either direct or indirect references to all resources used by the view. Therefore it's a pretty good proxy
|
|
||||||
// for detecting memory leaks.
|
|
||||||
await page.evaluate(() => {
|
|
||||||
window.gcPromise = new Promise((resolve) => {
|
|
||||||
window.fr = new FinalizationRegistry(resolve);
|
|
||||||
window.fr.register(window.openmct.layout.$refs.browseObject.$refs.objectViewWrapper.firstChild.__vue__, 'navigatedObject', window.openmct.layout.$refs.browseObject.$refs.objectViewWrapper.firstChild.__vue__);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
// Nav back to folder
|
|
||||||
await page.goto("./#/browse/mine", { waitUntil: "networkidle" });
|
|
||||||
await page.waitForNavigation();
|
|
||||||
|
|
||||||
// This next code block blocks until the finalization listener is called and the gcPromise resolved. This means that the root node for the view has been garbage collected.
|
|
||||||
// In the event that the root node is not garbage collected, the gcPromise will never resolve and the test will time out.
|
|
||||||
await page.evaluate(() => {
|
|
||||||
const gcPromise = window.gcPromise;
|
|
||||||
window.gcPromise = null;
|
|
||||||
|
|
||||||
// Manually invoke the garbage collector once all references are removed.
|
|
||||||
window.gc();
|
|
||||||
|
|
||||||
return gcPromise;
|
|
||||||
});
|
|
||||||
|
|
||||||
// Clean up the finalization registry since we don't need it any more.
|
|
||||||
await page.evaluate(() => {
|
|
||||||
window.fr = null;
|
|
||||||
});
|
|
||||||
|
|
||||||
// If we get here without timing out, it means the garbage collection promise resolved and the test passed.
|
|
||||||
expect(true);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user