mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
* fix sso, change timeout, parallel * cange travis * move name apps in resources file * resources fix * resources fix * add sleep before search group * add possibility to extend duration of snack-bar message from configuration * fix unit test * fix unit test * remove timeout * change timeout * decrease message time * add lint main branch travis * reduce timeout * add new check application presence * change permission script fix search selector * fix travis conf * check app environment and upload the app if abbsent * fix cloud test * remove duplicate * restore ps test * restore resources file * fix e2e test * process with variables missing * test new conf travis * fix lint * fix spellcheck * remove duplicate module * fix ps module * fix travis conf * change check activiti env * add concept of processes in resources
175 lines
10 KiB
TypeScript
175 lines
10 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2019 Alfresco Software, Ltd.
|
|
*
|
|
* 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 TestConfig = require('../test.config');
|
|
|
|
import { SettingsPage } from '@alfresco/adf-testing';
|
|
import { NavigationBarPage } from '../pages/adf/navigationBarPage';
|
|
import { PeopleGroupCloudComponentPage } from '../pages/adf/demo-shell/process-services/peopleGroupCloudComponentPage';
|
|
import { GroupCloudComponentPage, PeopleCloudComponentPage } from '@alfresco/adf-testing';
|
|
import { browser } from 'protractor';
|
|
import { LoginSSOPage, IdentityService, GroupIdentityService, RolesService, ApiService } from '@alfresco/adf-testing';
|
|
import CONSTANTS = require('../util/constants');
|
|
import resources = require('../util/resources');
|
|
|
|
describe('People Groups Cloud Component', () => {
|
|
|
|
describe('People Groups Cloud Component', () => {
|
|
const settingsPage = new SettingsPage();
|
|
const loginSSOPage = new LoginSSOPage();
|
|
const navigationBarPage = new NavigationBarPage();
|
|
const peopleGroupCloudComponentPage = new PeopleGroupCloudComponentPage();
|
|
const peopleCloudComponent = new PeopleCloudComponentPage();
|
|
const groupCloudComponentPage = new GroupCloudComponentPage();
|
|
let identityService: IdentityService;
|
|
let groupIdentityService: GroupIdentityService;
|
|
let rolesService: RolesService;
|
|
|
|
let apsUser;
|
|
let activitiUser;
|
|
let noRoleUser;
|
|
let groupAps;
|
|
let groupActiviti;
|
|
let groupNoRole;
|
|
let apsUserRoleId;
|
|
let activitiUserRoleId;
|
|
let apsAdminRoleId;
|
|
let activitiAdminRoleId;
|
|
let clientActivitiAdminRoleId, clientActivitiUserRoleId;
|
|
let users = [];
|
|
let groups = [];
|
|
let clientId;
|
|
|
|
beforeAll(async (done) => {
|
|
|
|
const apiService = new ApiService('activiti', TestConfig.adf.hostBPM, TestConfig.adf.hostSso, 'BPM');
|
|
await apiService.login(TestConfig.adf.adminEmail, TestConfig.adf.adminPassword);
|
|
identityService = new IdentityService(apiService);
|
|
rolesService = new RolesService(apiService);
|
|
groupIdentityService = new GroupIdentityService(apiService);
|
|
clientId = await groupIdentityService.getClientIdByApplicationName(resources.ACTIVITI7_APPS.SIMPLE_APP.name);
|
|
groupActiviti = await groupIdentityService.createIdentityGroup();
|
|
clientActivitiAdminRoleId = await rolesService.getClientRoleIdByRoleName(groupActiviti.id, clientId, CONSTANTS.ROLES.ACTIVITI_ADMIN);
|
|
clientActivitiUserRoleId = await rolesService.getClientRoleIdByRoleName(groupActiviti.id, clientId, CONSTANTS.ROLES.ACTIVITI_USER);
|
|
|
|
apsUser = await identityService.createIdentityUser();
|
|
apsUserRoleId = await rolesService.getRoleIdByRoleName(CONSTANTS.ROLES.APS_USER);
|
|
await identityService.assignRole(apsUser.idIdentityService, apsUserRoleId, CONSTANTS.ROLES.APS_USER);
|
|
activitiUser = await identityService.createIdentityUser();
|
|
activitiUserRoleId = await rolesService.getRoleIdByRoleName(CONSTANTS.ROLES.ACTIVITI_USER);
|
|
await identityService.assignRole(activitiUser.idIdentityService, activitiUserRoleId, CONSTANTS.ROLES.ACTIVITI_USER);
|
|
noRoleUser = await identityService.createIdentityUser();
|
|
await identityService.deleteClientRole(noRoleUser.idIdentityService, clientId, clientActivitiAdminRoleId, CONSTANTS.ROLES.ACTIVITI_ADMIN);
|
|
await identityService.deleteClientRole(noRoleUser.idIdentityService, clientId, clientActivitiUserRoleId, CONSTANTS.ROLES.ACTIVITI_USER);
|
|
|
|
groupAps = await groupIdentityService.createIdentityGroup();
|
|
apsAdminRoleId = await rolesService.getRoleIdByRoleName(CONSTANTS.ROLES.APS_ADMIN);
|
|
await groupIdentityService.assignRole(groupAps.id, apsAdminRoleId, CONSTANTS.ROLES.APS_ADMIN);
|
|
activitiAdminRoleId = await rolesService.getRoleIdByRoleName(CONSTANTS.ROLES.ACTIVITI_ADMIN);
|
|
await groupIdentityService.assignRole(groupActiviti.id, activitiAdminRoleId, CONSTANTS.ROLES.ACTIVITI_ADMIN);
|
|
groupNoRole = await groupIdentityService.createIdentityGroup();
|
|
|
|
await groupIdentityService.addClientRole(groupAps.id, clientId, clientActivitiAdminRoleId, CONSTANTS.ROLES.ACTIVITI_ADMIN );
|
|
await groupIdentityService.addClientRole(groupActiviti.id, clientId, clientActivitiAdminRoleId, CONSTANTS.ROLES.ACTIVITI_ADMIN );
|
|
users = [`${apsUser.idIdentityService}`, `${activitiUser.idIdentityService}`, `${noRoleUser.idIdentityService}`];
|
|
groups = [`${groupAps.id}`, `${groupActiviti.id}`, `${groupNoRole.id}`];
|
|
settingsPage.setProviderBpmSso(TestConfig.adf.hostBPM, TestConfig.adf.hostSso, TestConfig.adf.hostIdentity, false);
|
|
loginSSOPage.clickOnSSOButton();
|
|
loginSSOPage.loginSSOIdentityService(TestConfig.adf.adminEmail, TestConfig.adf.adminPassword);
|
|
navigationBarPage.navigateToPeopleGroupCloudPage();
|
|
done();
|
|
});
|
|
|
|
afterAll(async () => {
|
|
for (let i = 0; i < users.length; i++) {
|
|
await identityService.deleteIdentityUser(users[i]);
|
|
}
|
|
for (let i = 0; i < groups.length; i++) {
|
|
await groupIdentityService.deleteIdentityGroup(groups[i]);
|
|
}
|
|
});
|
|
|
|
beforeEach(() => {
|
|
peopleGroupCloudComponentPage.checkGroupsCloudComponentTitleIsDisplayed();
|
|
peopleGroupCloudComponentPage.checkPeopleCloudComponentTitleIsDisplayed();
|
|
});
|
|
|
|
afterEach(() => {
|
|
browser.refresh();
|
|
});
|
|
|
|
it('[C305041] Should filter the People Single Selection with the Application name filter', () => {
|
|
peopleGroupCloudComponentPage.checkPeopleCloudSingleSelectionIsSelected();
|
|
peopleGroupCloudComponentPage.clickPeopleFilerByApp();
|
|
peopleGroupCloudComponentPage.enterPeopleAppName(resources.ACTIVITI7_APPS.SIMPLE_APP.name);
|
|
peopleCloudComponent.searchAssignee(`${activitiUser.firstName}`);
|
|
peopleCloudComponent.checkUserIsDisplayed(`${activitiUser.firstName}` + ' ' + `${activitiUser.lastName}`);
|
|
peopleCloudComponent.selectAssigneeFromList(`${activitiUser.firstName}` + ' ' + `${activitiUser.lastName}`);
|
|
browser.sleep(100);
|
|
expect(peopleCloudComponent.getAssigneeFieldContent()).toBe(`${activitiUser.firstName}` + ' ' + `${activitiUser.lastName}`);
|
|
});
|
|
|
|
it('[C305041] Should filter the People Multiple Selection with the Application name filter', () => {
|
|
peopleGroupCloudComponentPage.clickPeopleCloudMultipleSelection();
|
|
peopleGroupCloudComponentPage.clickPeopleFilerByApp();
|
|
peopleGroupCloudComponentPage.enterPeopleAppName(resources.ACTIVITI7_APPS.SIMPLE_APP.name);
|
|
peopleCloudComponent.searchAssignee(`${apsUser.firstName}`);
|
|
peopleCloudComponent.checkUserIsDisplayed(`${apsUser.firstName}` + ' ' + `${apsUser.lastName}`);
|
|
peopleCloudComponent.selectAssigneeFromList(`${apsUser.firstName}` + ' ' + `${apsUser.lastName}`);
|
|
peopleCloudComponent.checkSelectedPeople(`${apsUser.firstName}` + ' ' + `${apsUser.lastName}`);
|
|
|
|
peopleCloudComponent.searchAssigneeToExisting(`${activitiUser.firstName}`);
|
|
peopleCloudComponent.checkUserIsDisplayed(`${activitiUser.firstName}` + ' ' + `${activitiUser.lastName}`);
|
|
peopleCloudComponent.selectAssigneeFromList(`${activitiUser.firstName}` + ' ' + `${activitiUser.lastName}`);
|
|
peopleCloudComponent.checkSelectedPeople(`${activitiUser.firstName}` + ' ' + `${activitiUser.lastName}`);
|
|
|
|
peopleCloudComponent.searchAssigneeToExisting(`${noRoleUser.firstName}`);
|
|
peopleCloudComponent.checkUserIsNotDisplayed(`${noRoleUser.firstName}` + ' ' + `${noRoleUser.lastName}`);
|
|
});
|
|
|
|
it('[C305041] Should filter the Groups Single Selection with the Application name filter', () => {
|
|
peopleGroupCloudComponentPage.clickGroupCloudSingleSelection();
|
|
peopleGroupCloudComponentPage.clickGroupFilerByApp();
|
|
peopleGroupCloudComponentPage.enterGroupAppName(resources.ACTIVITI7_APPS.SIMPLE_APP.name);
|
|
groupCloudComponentPage.searchGroups(`${groupActiviti.name}`);
|
|
groupCloudComponentPage.checkGroupIsDisplayed(`${groupActiviti.name}`);
|
|
groupCloudComponentPage.selectGroupFromList(`${groupActiviti.name}`);
|
|
expect(groupCloudComponentPage.getGroupsFieldContent()).toBe(`${groupActiviti.name}`);
|
|
});
|
|
|
|
it('[C305041] Should filter the Groups Multiple Selection with the Application name filter', () => {
|
|
peopleGroupCloudComponentPage.clickGroupCloudMultipleSelection();
|
|
peopleGroupCloudComponentPage.clickGroupFilerByApp();
|
|
peopleGroupCloudComponentPage.enterGroupAppName(resources.ACTIVITI7_APPS.SIMPLE_APP.name);
|
|
groupCloudComponentPage.searchGroups(`${groupAps.name}`);
|
|
groupCloudComponentPage.checkGroupIsDisplayed(`${groupAps.name}`);
|
|
groupCloudComponentPage.selectGroupFromList(`${groupAps.name}`);
|
|
groupCloudComponentPage.checkSelectedGroup(`${groupAps.name}`);
|
|
|
|
groupCloudComponentPage.searchGroupsToExisting(`${groupActiviti.name}`);
|
|
groupCloudComponentPage.checkGroupIsDisplayed(`${groupActiviti.name}`);
|
|
groupCloudComponentPage.selectGroupFromList(`${groupActiviti.name}`);
|
|
groupCloudComponentPage.checkSelectedGroup(`${groupActiviti.name}`);
|
|
|
|
groupCloudComponentPage.searchGroupsToExisting(`${groupNoRole.name}`);
|
|
groupCloudComponentPage.checkGroupIsNotDisplayed(`${groupNoRole.name}`);
|
|
});
|
|
|
|
});
|
|
|
|
});
|