mirror of
https://github.com/nasa/openmct.git
synced 2025-03-12 07:24:13 +00:00
Some checks failed
CodeQL / Analyze (push) Has been cancelled
* Ensure that the mode set when independent time conductor is enabled/disabled is propagated correctly. Also ensure that global time conductor changes are not picked up by the independent time conductor when the user has enabled it at least once before * Use structuredClone instead of deep copy * Add e2e test * Assert that you're in fixed mode after sync time conductor * Comment explaining new time context test * Change test to be a little less complicated * Fix linting errors
150 lines
5.9 KiB
JavaScript
150 lines
5.9 KiB
JavaScript
/*****************************************************************************
|
|
* Open MCT, Copyright (c) 2014-2024, United States Government
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
* Administration. All rights reserved.
|
|
*
|
|
* Open MCT is licensed under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
* Open MCT includes source code licensed under additional open source
|
|
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
* this source code distribution or the Licensing information page available
|
|
* at runtime from the About dialog for additional information.
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
* This test suite is dedicated to testing the rendering and interaction of plots.
|
|
*
|
|
*/
|
|
|
|
import {
|
|
createDomainObjectWithDefaults,
|
|
getCanvasPixels,
|
|
setEndOffset,
|
|
setRealTimeMode,
|
|
setStartOffset
|
|
} from '../../../../appActions.js';
|
|
import { expect, test } from '../../../../pluginFixtures.js';
|
|
|
|
test.describe('Plot Controls', () => {
|
|
let overlayPlot;
|
|
|
|
test.beforeEach(async ({ page }) => {
|
|
// Open a browser, navigate to the main page, and wait until all networkevents to resolve
|
|
await page.goto('./', { waitUntil: 'domcontentloaded' });
|
|
overlayPlot = await createDomainObjectWithDefaults(page, {
|
|
type: 'Overlay Plot'
|
|
});
|
|
|
|
// Create an overlay plot with a sine wave generator
|
|
await createDomainObjectWithDefaults(page, {
|
|
type: 'Sine Wave Generator',
|
|
parent: overlayPlot.uuid
|
|
});
|
|
await page.goto(`${overlayPlot.url}`);
|
|
});
|
|
|
|
test("Plots don't purge data when paused", async ({ page }) => {
|
|
// Set realtime mode with 2 second window
|
|
const startOffset = {
|
|
startMins: '00',
|
|
startSecs: '01'
|
|
};
|
|
|
|
const endOffset = {
|
|
endMins: '00',
|
|
endSecs: '01'
|
|
};
|
|
|
|
// Switch to real-time mode
|
|
await setRealTimeMode(page);
|
|
|
|
// Set start time offset
|
|
await setStartOffset(page, startOffset);
|
|
|
|
// Set end time offset
|
|
await setEndOffset(page, endOffset);
|
|
// Edit the overlay plot and turn off auto scale, setting the min and max to -1 and 1
|
|
// enter edit mode
|
|
await page.getByLabel('Edit Object').click();
|
|
|
|
await page.getByRole('tab', { name: 'Config' }).click();
|
|
|
|
// turn off autoscale
|
|
await page.getByRole('checkbox', { name: 'Auto scale' }).uncheck();
|
|
|
|
await page.getByLabel('Y Axis 1 Minimum value').fill('-1');
|
|
await page.getByLabel('Y Axis 1 Maximum value').fill('1');
|
|
|
|
// save
|
|
await page.getByRole('button', { name: 'Save' }).click();
|
|
await page.getByRole('listitem', { name: 'Save and Finish Editing' }).click();
|
|
// hover over plot for plot controls
|
|
await page.getByLabel('Plot Canvas').hover();
|
|
// click on pause control
|
|
await page.getByTitle('Pause incoming real-time data').click();
|
|
// expect plot to be paused
|
|
await expect(page.getByTitle('Resume displaying real-time data')).toBeVisible();
|
|
// Wait for 2 seconds to stabilize plot data - future timestamp
|
|
// eslint-disable-next-line
|
|
await page.waitForTimeout(2000);
|
|
// Capture the # of plot points
|
|
const plotPixels = await getCanvasPixels(page, 'canvas');
|
|
const plotPixelSizeAtPause = plotPixels.length;
|
|
// Wait 2 seconds
|
|
// eslint-disable-next-line
|
|
await page.waitForTimeout(2000);
|
|
// Capture the # of plot points
|
|
const plotPixelsAfterWait = await getCanvasPixels(page, 'canvas');
|
|
const plotPixelSizeAfterWait = plotPixelsAfterWait.length;
|
|
// Expect before and after plot points to match
|
|
await expect(plotPixelSizeAtPause).toEqual(plotPixelSizeAfterWait);
|
|
});
|
|
|
|
/*
|
|
Test to verify that switching a plot's time context from global to
|
|
its own independent time context and then back to global context works correctly.
|
|
|
|
After switching from fixed time mode (ITC) to real time mode (global context),
|
|
the pause control for the plot should be available, indicating that it is following the right context.
|
|
*/
|
|
test('Plots follow the right time context', async ({ page }) => {
|
|
// Set global time conductor to real-time mode
|
|
await setRealTimeMode(page);
|
|
|
|
// hover over plot for plot controls
|
|
await page.getByLabel('Plot Canvas').hover();
|
|
// Ensure pause control is visible since global time conductor is in Real time mode.
|
|
await expect(page.getByTitle('Pause incoming real-time data')).toBeVisible();
|
|
|
|
// Toggle independent time conductor ON
|
|
await page.getByLabel('Enable Independent Time Conductor').click();
|
|
|
|
// Bring up the independent time conductor popup and switch to fixed time mode
|
|
await page.getByLabel('Independent Time Conductor Settings').click();
|
|
await page.getByLabel('Independent Time Conductor Mode Menu').click();
|
|
await page.getByRole('menuitem', { name: /Fixed Timespan/ }).click();
|
|
|
|
// hover over plot for plot controls
|
|
await page.getByLabel('Plot Canvas').hover();
|
|
// Ensure pause control is no longer visible since the plot is following the independent time context
|
|
await expect(page.getByTitle('Pause incoming real-time data')).toBeHidden();
|
|
|
|
// Toggle independent time conductor OFF - Note that the global time conductor is still in Real time mode
|
|
await page.getByLabel('Disable Independent Time Conductor').click();
|
|
|
|
// hover over plot for plot controls
|
|
await page.getByLabel('Plot Canvas').hover();
|
|
// Ensure pause control is visible since the global time conductor is in real time mode
|
|
await expect(page.getByTitle('Pause incoming real-time data')).toBeVisible();
|
|
});
|
|
});
|