mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* MNT-24354 update license header [ci:force] * MNT-24354 fix lint [ci:force] * MNT-24354 [ci:force] * MNT-24354 update license header in process-services [ci:force] --------- Co-authored-by: DaryaBalvanovich <darya.balvanovich1@hyland.com>
153 lines
7.2 KiB
TypeScript
153 lines
7.2 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
import { browser } from 'protractor';
|
|
import { ModelsActions, createApiService, ApplicationsUtil, LoginPage, UsersActions } from '@alfresco/adf-testing';
|
|
import { ProcessServicesPage } from '../pages/process-services.page';
|
|
import { NavigationBarPage } from '../../core/pages/navigation-bar.page';
|
|
import CONSTANTS = require('../../util/constants');
|
|
import { AppDefinitionRepresentation, AppDefinitionsApi } from '@alfresco/js-api';
|
|
|
|
describe('Modify applications', () => {
|
|
const app = browser.params.resources.Files.APP_WITH_PROCESSES;
|
|
const appToBeDeleted = browser.params.resources.Files.SIMPLE_APP_WITH_USER_FORM;
|
|
const replacingApp = browser.params.resources.Files.WIDGETS_SMOKE_TEST;
|
|
|
|
const loginPage = new LoginPage();
|
|
const navigationBarPage = new NavigationBarPage();
|
|
const processServicesPage = new ProcessServicesPage();
|
|
|
|
const apiService = createApiService();
|
|
const modelActions = new ModelsActions(apiService);
|
|
const apps = new ApplicationsUtil(apiService);
|
|
const usersActions = new UsersActions(apiService);
|
|
const applicationService = new ApplicationsUtil(apiService);
|
|
const appsApi = new AppDefinitionsApi(apiService.getInstance());
|
|
|
|
let firstApp: AppDefinitionRepresentation;
|
|
let appVersionToBeDeleted: AppDefinitionRepresentation;
|
|
|
|
beforeAll(async () => {
|
|
await apiService.loginWithProfile('admin');
|
|
|
|
const user = await usersActions.createUser();
|
|
|
|
await apiService.login(user.username, user.password);
|
|
|
|
firstApp = await applicationService.importPublishDeployApp(app.file_path);
|
|
appVersionToBeDeleted = await applicationService.importPublishDeployApp(appToBeDeleted.file_path);
|
|
|
|
await loginPage.login(user.username, user.password);
|
|
});
|
|
|
|
beforeEach(async () => {
|
|
await navigationBarPage.navigateToProcessServicesPage();
|
|
await processServicesPage.checkApsContainer();
|
|
});
|
|
|
|
it('[C260198] Should the app be displayed on dashboard when is deployed on APS', async () => {
|
|
expect(await processServicesPage.getAppIconType(app.title)).toEqual(CONSTANTS.APP_ICON.UNIT);
|
|
expect(await processServicesPage.getBackgroundColor(app.title)).toEqual(CONSTANTS.APP_COLOR.BLUE);
|
|
expect(await processServicesPage.getDescription(app.title)).toEqual(app.description);
|
|
});
|
|
|
|
it('[C260213] Should a new version of the app be displayed on dashboard when is replaced by importing another app in APS', async () => {
|
|
expect(await processServicesPage.getAppIconType(app.title)).toEqual(CONSTANTS.APP_ICON.UNIT);
|
|
expect(await processServicesPage.getBackgroundColor(app.title)).toEqual(CONSTANTS.APP_COLOR.BLUE);
|
|
expect(await processServicesPage.getDescription(app.title)).toEqual(app.description);
|
|
|
|
await apps.importNewVersionAppDefinitionPublishDeployApp(replacingApp.file_location, firstApp.id);
|
|
|
|
await navigationBarPage.clickHomeButton();
|
|
await navigationBarPage.navigateToProcessServicesPage();
|
|
|
|
await processServicesPage.checkApsContainer();
|
|
|
|
expect(await processServicesPage.getAppIconType(app.title)).toEqual(CONSTANTS.APP_ICON.FAVORITE);
|
|
expect(await processServicesPage.getBackgroundColor(app.title)).toEqual(CONSTANTS.APP_COLOR.GREY);
|
|
expect(await processServicesPage.getDescription(app.title)).toEqual(app.description);
|
|
});
|
|
|
|
it('[C260220] Should the app not be displayed on dashboard after it was deleted in APS', async () => {
|
|
await processServicesPage.checkAppIsDisplayed(app.title);
|
|
|
|
await modelActions.deleteEntireModel(firstApp.id);
|
|
await navigationBarPage.clickHomeButton();
|
|
await navigationBarPage.navigateToProcessServicesPage();
|
|
|
|
await processServicesPage.checkApsContainer();
|
|
await processServicesPage.checkAppIsNotDisplayed(app.title);
|
|
});
|
|
|
|
it('[C260215] Should the penultimate version of an app be displayed on dashboard when the last version is deleted in APS', async () => {
|
|
await processServicesPage.checkAppIsDisplayed(appToBeDeleted.title);
|
|
expect(await processServicesPage.getBackgroundColor(appToBeDeleted.title)).toEqual(CONSTANTS.APP_COLOR.ORANGE);
|
|
|
|
await apps.importNewVersionAppDefinitionPublishDeployApp(replacingApp.file_location, appVersionToBeDeleted.id);
|
|
|
|
await navigationBarPage.clickHomeButton();
|
|
await navigationBarPage.navigateToProcessServicesPage();
|
|
|
|
await processServicesPage.getBackgroundColor(appToBeDeleted.title);
|
|
|
|
expect(await processServicesPage.getBackgroundColor(appToBeDeleted.title)).toEqual(CONSTANTS.APP_COLOR.GREY);
|
|
|
|
await modelActions.deleteModel(appVersionToBeDeleted.id);
|
|
await modelActions.deleteModel(appVersionToBeDeleted.id);
|
|
await apps.publishDeployApp(appVersionToBeDeleted.id);
|
|
|
|
await navigationBarPage.clickHomeButton();
|
|
await navigationBarPage.navigateToProcessServicesPage();
|
|
|
|
await processServicesPage.checkApsContainer();
|
|
await processServicesPage.checkAppIsDisplayed(appToBeDeleted.title);
|
|
expect(await processServicesPage.getBackgroundColor(appToBeDeleted.title)).toEqual(CONSTANTS.APP_COLOR.ORANGE);
|
|
});
|
|
|
|
it('[C260207] Should the app be updated when is edited in APS', async () => {
|
|
const newDescription = 'new description';
|
|
|
|
expect(await processServicesPage.getAppIconType(appToBeDeleted.title)).toEqual(CONSTANTS.APP_ICON.USER);
|
|
expect(await processServicesPage.getBackgroundColor(appToBeDeleted.title)).toEqual(CONSTANTS.APP_COLOR.ORANGE);
|
|
expect(await processServicesPage.getDescription(appToBeDeleted.title)).toEqual(appToBeDeleted.description);
|
|
|
|
const appDefinition = {
|
|
appDefinition: {
|
|
id: appVersionToBeDeleted.id,
|
|
name: appToBeDeleted.title,
|
|
description: newDescription,
|
|
definition: {
|
|
models: [firstApp['definition'].models[0]],
|
|
theme: 'theme-4',
|
|
icon: 'glyphicon-user'
|
|
}
|
|
},
|
|
publish: true,
|
|
force: true
|
|
};
|
|
|
|
await appsApi.updateAppDefinition(appVersionToBeDeleted.id, appDefinition);
|
|
|
|
await navigationBarPage.clickHomeButton();
|
|
await navigationBarPage.navigateToProcessServicesPage();
|
|
|
|
expect(await processServicesPage.getDescription(appToBeDeleted.title)).toEqual(newDescription);
|
|
expect(await processServicesPage.getBackgroundColor(appToBeDeleted.title)).toEqual(CONSTANTS.APP_COLOR.RED);
|
|
expect(await processServicesPage.getAppIconType(appToBeDeleted.title)).toEqual(CONSTANTS.APP_ICON.USER);
|
|
});
|
|
});
|