mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 05:37:53 +00:00
5b4ee1949f
* fix: resize conductor properly * refactor: more computed properties, unregister listener * fix: beforeUnmounted hook * test(visual): add time conductor visual test for fixed mode * fix: initialize to `null` * feat: extend the base `screenshot` function to mask elements which will always create variance in an Open MCT screenshot * docs: add types for fixtures * fix: remove unneeded await * chore: add sinon timers types package back * docs: remove unused docs * doc: remove unused docs * test: add visual realtime url, update imports * feat: provide wrapped page.screenshot fixture that applies defaults * test: add basic timeConductor snapshot tests * chore: update eslint config * lint: remove unused disable directives * test: remove redundant navigation * fix: remove listeners * fix: maybe stabilize unit tests * docs: remove * fix: provide sourcemaps in unit tests * test: add regression snapshot test for time conductor axis * lint: remove unused imports * feat(e2e): add fixture to manually tick the clock and use it * test: reactivate test now that we don't use deploysentinel :( * test: update snapshots * test: add test for clockOptions and tick fixtures * test: add afterEach stub and fixme * test: try and stabilize fault management flake * lint: defy the word gods * chore: ignore `*-darwin.png` screenshots * chore: remove darwin screenshot binaries * docs: markdownlint * docs: remove MacOS specific instructions from snapshot testing * fix: remove a11y
80 lines
3.2 KiB
JavaScript
80 lines
3.2 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 our use of the playwright framework as it
|
|
relates to how we've extended it (i.e. ./e2e/baseFixtures.js) and assumptions made in our dev environment
|
|
(`npm start` and ./e2e/webpack-dev-middleware.js)
|
|
*/
|
|
|
|
import { expect, test } from '../../baseFixtures.js';
|
|
import { MISSION_TIME } from '../../constants.js';
|
|
|
|
test.describe('baseFixtures tests', () => {
|
|
//Skip this test for now https://github.com/nasa/openmct/issues/6785
|
|
test('Verify that tests fail if console.error is thrown', async ({ page }) => {
|
|
test.fail();
|
|
//Go to baseURL
|
|
await page.goto('./', { waitUntil: 'domcontentloaded' });
|
|
|
|
//Verify that ../fixtures.js detects console log errors
|
|
await Promise.all([
|
|
page.evaluate(() => console.error('This should result in a failure')),
|
|
page.waitForEvent('console') // always wait for the event to happen while triggering it!
|
|
]);
|
|
});
|
|
test('Verify that tests pass if console.warn is thrown', async ({ page }) => {
|
|
//Go to baseURL
|
|
await page.goto('./', { waitUntil: 'domcontentloaded' });
|
|
|
|
//Verify that ../fixtures.js detects console log errors
|
|
await Promise.all([
|
|
page.evaluate(() => console.warn('This should result in a pass')),
|
|
page.waitForEvent('console') // always wait for the event to happen while triggering it!
|
|
]);
|
|
});
|
|
});
|
|
|
|
test.describe('baseFixtures tests @clock', () => {
|
|
test.use({
|
|
clockOptions: {
|
|
now: MISSION_TIME,
|
|
shouldAdvanceTime: false
|
|
}
|
|
});
|
|
|
|
test.beforeEach(async ({ page }) => {
|
|
await page.goto('./', { waitUntil: 'domcontentloaded' });
|
|
});
|
|
|
|
test('Can use clockOptions and tick fixtures to control the clock', async ({ page, tick }) => {
|
|
let time = await page.evaluate(() => new Date().getTime());
|
|
expect(time).toBe(MISSION_TIME);
|
|
await tick(1000);
|
|
time = await page.evaluate(() => new Date().getTime());
|
|
expect(time).toBe(MISSION_TIME + 1000 * 1);
|
|
await tick(1000);
|
|
time = await page.evaluate(() => new Date().getTime());
|
|
expect(time).toBe(MISSION_TIME + 1000 * 2);
|
|
});
|
|
});
|