mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 06:27:48 +00:00
70 lines
2.9 KiB
JavaScript
70 lines
2.9 KiB
JavaScript
|
/*****************************************************************************
|
||
|
* Open MCT, Copyright (c) 2014-2022, 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.
|
||
|
*****************************************************************************/
|
||
|
|
||
|
const { test, expect } = require('@playwright/test');
|
||
|
|
||
|
test.describe('Time counductor operations', () => {
|
||
|
test('validate start time does not exceeds end time', async ({ page }) => {
|
||
|
//Go to baseURL
|
||
|
await page.goto('/', { waitUntil: 'networkidle' });
|
||
|
const year = new Date().getFullYear();
|
||
|
|
||
|
let startDate = 'xxxx-01-01 01:00:00.000Z';
|
||
|
startDate = year + startDate.substring(4);
|
||
|
|
||
|
let endDate = 'xxxx-01-01 02:00:00.000Z';
|
||
|
endDate = year + endDate.substring(4);
|
||
|
|
||
|
const startTimeLocator = page.locator('input[type="text"]').first();
|
||
|
const endTimeLocator = page.locator('input[type="text"]').nth(1);
|
||
|
|
||
|
// Click start time
|
||
|
await startTimeLocator.click();
|
||
|
|
||
|
// Click end time
|
||
|
await endTimeLocator.click();
|
||
|
|
||
|
await endTimeLocator.fill(endDate.toString());
|
||
|
await startTimeLocator.fill(startDate.toString());
|
||
|
|
||
|
// invalid start date
|
||
|
startDate = (year + 1) + startDate.substring(4);
|
||
|
await startTimeLocator.fill(startDate.toString());
|
||
|
await endTimeLocator.click();
|
||
|
|
||
|
const startDateValidityStatus = await startTimeLocator.evaluate((element) => element.checkValidity());
|
||
|
expect(startDateValidityStatus).not.toBeTruthy();
|
||
|
|
||
|
// fix to valid start date
|
||
|
startDate = (year - 1) + startDate.substring(4);
|
||
|
await startTimeLocator.fill(startDate.toString());
|
||
|
|
||
|
// invalid end date
|
||
|
endDate = (year - 2) + endDate.substring(4);
|
||
|
await endTimeLocator.fill(endDate.toString());
|
||
|
await startTimeLocator.click();
|
||
|
|
||
|
const endDateValidityStatus = await endTimeLocator.evaluate((element) => element.checkValidity());
|
||
|
expect(endDateValidityStatus).not.toBeTruthy();
|
||
|
});
|
||
|
});
|