2023-03-16 17:34:31 +00:00
|
|
|
/*****************************************************************************
|
2024-01-09 21:31:51 +00:00
|
|
|
* Open MCT, Copyright (c) 2014-2024, United States Government
|
2023-03-16 17:34:31 +00:00
|
|
|
* 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.
|
|
|
|
*****************************************************************************/
|
2024-01-02 15:24:22 +00:00
|
|
|
import fs from 'fs';
|
|
|
|
|
|
|
|
import { getPreciseDuration } from '../../../../src/utils/duration.js';
|
|
|
|
import { createDomainObjectWithDefaults, createPlanFromJSON } from '../../../appActions.js';
|
|
|
|
import {
|
2023-03-16 17:34:31 +00:00
|
|
|
assertPlanActivities,
|
|
|
|
setBoundsToSpanAllActivities
|
2024-01-02 15:24:22 +00:00
|
|
|
} from '../../../helper/planningUtils.js';
|
|
|
|
import { expect, test } from '../../../pluginFixtures.js';
|
|
|
|
|
|
|
|
const testPlan1 = JSON.parse(
|
|
|
|
fs.readFileSync(
|
|
|
|
new URL('../../../test-data/examplePlans/ExamplePlan_Small1.json', import.meta.url)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
const testPlan2 = JSON.parse(
|
|
|
|
fs.readFileSync(
|
|
|
|
new URL('../../../test-data/examplePlans/ExamplePlan_Small2.json', import.meta.url)
|
|
|
|
)
|
|
|
|
);
|
2023-03-16 17:34:31 +00:00
|
|
|
|
|
|
|
test.describe('Gantt Chart', () => {
|
|
|
|
let ganttChart;
|
2023-05-05 23:48:34 +00:00
|
|
|
let plan;
|
2023-03-16 17:34:31 +00:00
|
|
|
test.beforeEach(async ({ page }) => {
|
2023-04-18 22:32:29 +00:00
|
|
|
await page.goto('./', { waitUntil: 'domcontentloaded' });
|
2023-03-16 17:34:31 +00:00
|
|
|
ganttChart = await createDomainObjectWithDefaults(page, {
|
|
|
|
type: 'Gantt Chart'
|
|
|
|
});
|
2023-05-05 23:48:34 +00:00
|
|
|
plan = await createPlanFromJSON(page, {
|
2023-03-16 17:34:31 +00:00
|
|
|
json: testPlan1,
|
|
|
|
parent: ganttChart.uuid
|
2023-05-18 21:54:46 +00:00
|
|
|
});
|
|
|
|
});
|
2023-03-16 17:34:31 +00:00
|
|
|
|
|
|
|
test('Displays all plan events', async ({ page }) => {
|
|
|
|
await page.goto(ganttChart.url);
|
|
|
|
|
|
|
|
await assertPlanActivities(page, testPlan1, ganttChart.url);
|
2023-05-18 21:54:46 +00:00
|
|
|
});
|
2023-03-16 17:34:31 +00:00
|
|
|
test('Replaces a plan with a new plan', async ({ page }) => {
|
|
|
|
await assertPlanActivities(page, testPlan1, ganttChart.url);
|
|
|
|
await createPlanFromJSON(page, {
|
|
|
|
json: testPlan2,
|
|
|
|
parent: ganttChart.uuid
|
|
|
|
});
|
|
|
|
const replaceModal = page
|
|
|
|
.getByRole('dialog')
|
|
|
|
.filter({ hasText: 'This action will replace the current Plan. Do you want to continue?' });
|
|
|
|
await expect(replaceModal).toBeVisible();
|
|
|
|
await page.getByRole('button', { name: 'OK' }).click();
|
|
|
|
|
|
|
|
await assertPlanActivities(page, testPlan2, ganttChart.url);
|
|
|
|
});
|
|
|
|
test('Can select a single activity and display its details in the inspector', async ({
|
|
|
|
page
|
|
|
|
}) => {
|
|
|
|
test.slow();
|
|
|
|
await page.goto(ganttChart.url);
|
|
|
|
|
|
|
|
await setBoundsToSpanAllActivities(page, testPlan1, ganttChart.url);
|
|
|
|
|
|
|
|
const activities = Object.values(testPlan1).flat();
|
|
|
|
const activity = activities[0];
|
|
|
|
await page
|
|
|
|
.locator('g')
|
|
|
|
.filter({ hasText: new RegExp(activity.name) })
|
|
|
|
.click();
|
2023-09-11 23:33:46 +00:00
|
|
|
await page.getByRole('tab', { name: 'Activity' }).click();
|
2023-03-16 17:34:31 +00:00
|
|
|
|
|
|
|
const startDateTime = await page
|
|
|
|
.locator(
|
|
|
|
'.c-inspect-properties__label:has-text("Start DateTime")+.c-inspect-properties__value'
|
2023-05-18 21:54:46 +00:00
|
|
|
)
|
2023-03-16 17:34:31 +00:00
|
|
|
.innerText();
|
|
|
|
const endDateTime = await page
|
|
|
|
.locator('.c-inspect-properties__label:has-text("End DateTime")+.c-inspect-properties__value')
|
|
|
|
.innerText();
|
|
|
|
const duration = await page
|
|
|
|
.locator('.c-inspect-properties__label:has-text("duration")+.c-inspect-properties__value')
|
|
|
|
.innerText();
|
|
|
|
|
|
|
|
const expectedStartDate = new Date(activity.start).toISOString();
|
|
|
|
const actualStartDate = new Date(startDateTime).toISOString();
|
|
|
|
const expectedEndDate = new Date(activity.end).toISOString();
|
|
|
|
const actualEndDate = new Date(endDateTime).toISOString();
|
|
|
|
const expectedDuration = getPreciseDuration(activity.end - activity.start);
|
|
|
|
const actualDuration = duration;
|
|
|
|
|
|
|
|
expect(expectedStartDate).toEqual(actualStartDate);
|
|
|
|
expect(expectedEndDate).toEqual(actualEndDate);
|
|
|
|
expect(expectedDuration).toEqual(actualDuration);
|
2023-05-18 21:54:46 +00:00
|
|
|
});
|
2023-05-05 23:48:34 +00:00
|
|
|
test("Displays a Plan's draft status", async ({ page }) => {
|
|
|
|
test.info().annotations.push({
|
|
|
|
type: 'issue',
|
|
|
|
description: 'https://github.com/nasa/openmct/issues/6641'
|
2023-03-16 17:34:31 +00:00
|
|
|
});
|
2023-05-05 23:48:34 +00:00
|
|
|
|
|
|
|
// Mark the Plan's status as draft in the OpenMCT API
|
|
|
|
await page.evaluate(async (planObject) => {
|
|
|
|
await window.openmct.status.set(planObject.uuid, 'draft');
|
|
|
|
}, plan);
|
|
|
|
|
|
|
|
// Navigate to the Gantt Chart
|
|
|
|
await page.goto(ganttChart.url);
|
|
|
|
|
|
|
|
// Assert that the Plan's status is displayed as draft
|
|
|
|
expect(await page.locator('.u-contents.c-swimlane.is-status--draft').count()).toBe(
|
|
|
|
Object.keys(testPlan1).length
|
|
|
|
);
|
|
|
|
});
|
2023-03-16 17:34:31 +00:00
|
|
|
});
|