mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
* library dialog * integrate with demo shell * update resources * fix license * auto focus for the first input * update e2e tests * try close the dialog between tests * fix afterEach * Revert "try close the dialog between tests" This reverts commit 63464f2b03c226c606d09b18c7d2782e3bb52c0a. * update code due to css lint issues * csslint settings for vs code * missing import lint fix remove not used import convert errorPage js to ts convert tasklistpage js to ts fix redirection creation folder in root fix lint issue fix e2e * e2e fix * fix PS tests * navigation import * fix tests tooltip convert paginapage to ts * fix lint * fix lock files e2e filterspage to ts * fix lint * fix cs cre git dept 3 and not 50 as default in travis * quiet log git download * add some delay and change the delete lock * fix node entry * convert searchDialog to typescript parallel protractor * disable browser execute * restote test * change search tests * move search in a separate e2e folder * experiment fix e2e * change util presence change protractor conf * fix unshare test * improve query viewerPage using css over xpath * waitForAngularEnabled before browser redirect * convert util to ts and more * convert other files to ts * convert to ts other files * trigger build * function fixes use arrow function * process service fixes * lint fix review timeout default * fix failing tests * restore timeout * share dialog fix * remove * use configuration admin * fix APS 2 login sso
200 lines
8.5 KiB
TypeScript
200 lines
8.5 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2016 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 { SettingsPage } from '../pages/adf/settingsPage';
|
|
import { LoginPage } from '../pages/adf/loginPage';
|
|
import { UserInfoDialog } from '../pages/adf/dialog/userInfoDialog';
|
|
import { NavigationBarPage } from '../pages/adf/navigationBarPage';
|
|
|
|
import { AcsUserModel } from '../models/ACS/acsUserModel';
|
|
import { FileModel } from '../models/ACS/fileModel';
|
|
|
|
import PeopleAPI = require('../restAPI/ACS/PeopleAPI');
|
|
|
|
import TestConfig = require('../test.config');
|
|
import resources = require('../util/resources');
|
|
|
|
import AlfrescoApi = require('alfresco-js-api-node');
|
|
import { UsersActions } from '../actions/users.actions';
|
|
import { browser } from 'protractor';
|
|
|
|
describe('User Info component', () => {
|
|
|
|
let settingsPage = new SettingsPage();
|
|
let loginPage = new LoginPage();
|
|
let navigationBarPage = new NavigationBarPage();
|
|
let userInfoDialog = new UserInfoDialog();
|
|
let processUserModel, contentUserModel;
|
|
let acsAvatarFileModel = new FileModel({
|
|
'name': resources.Files.PROFILE_IMAGES.ECM.file_name,
|
|
'location': resources.Files.PROFILE_IMAGES.ECM.file_location
|
|
});
|
|
let apsAvatarFileModel = new FileModel({
|
|
'name': resources.Files.PROFILE_IMAGES.BPM.file_name,
|
|
'location': resources.Files.PROFILE_IMAGES.BPM.file_location
|
|
});
|
|
|
|
beforeAll(async (done) => {
|
|
let users = new UsersActions();
|
|
|
|
this.alfrescoJsApi = new AlfrescoApi({
|
|
provider: 'ALL',
|
|
hostEcm: TestConfig.adf.url,
|
|
hostBpm: TestConfig.adf.url
|
|
});
|
|
|
|
await this.alfrescoJsApi.login(TestConfig.adf.adminEmail, TestConfig.adf.adminPassword);
|
|
|
|
processUserModel = await users.createTenantAndUser(this.alfrescoJsApi);
|
|
|
|
contentUserModel = new AcsUserModel({
|
|
'id': processUserModel.email,
|
|
'password': processUserModel.password,
|
|
'firstName': processUserModel.firstName,
|
|
'lastName': processUserModel.lastName,
|
|
'email': processUserModel.email
|
|
});
|
|
|
|
await this.alfrescoJsApi.core.peopleApi.addPerson(contentUserModel);
|
|
|
|
done();
|
|
});
|
|
|
|
it('[C260111] Should display UserInfo when Process Services and Content Services are enabled', () => {
|
|
loginPage.goToLoginPage();
|
|
settingsPage.setProviderEcmBpm();
|
|
loginPage.login(contentUserModel.id, contentUserModel.password);
|
|
navigationBarPage.clickUserProfile();
|
|
|
|
expect(userInfoDialog.getContentHeaderTitle()).toEqual(contentUserModel.firstName + ' ' + contentUserModel.lastName);
|
|
expect(userInfoDialog.getContentTitle()).toEqual(contentUserModel.firstName + ' ' + contentUserModel.lastName);
|
|
expect(userInfoDialog.getContentEmail()).toEqual(contentUserModel.email);
|
|
expect(userInfoDialog.getContentJobTitle()).toEqual(contentUserModel.jobTitle);
|
|
|
|
userInfoDialog.checkInitialImage();
|
|
userInfoDialog.APSProfileImageNotDisplayed();
|
|
userInfoDialog.ACSProfileImageNotDisplayed();
|
|
userInfoDialog.clickOnContentServicesTab();
|
|
|
|
expect(userInfoDialog.getContentHeaderTitle()).toEqual(contentUserModel.firstName + ' ' + contentUserModel.lastName);
|
|
expect(userInfoDialog.getContentTitle()).toEqual(contentUserModel.firstName + ' ' + contentUserModel.lastName);
|
|
expect(userInfoDialog.getContentEmail()).toEqual(contentUserModel.email);
|
|
expect(userInfoDialog.getContentJobTitle()).toEqual(contentUserModel.jobTitle);
|
|
|
|
userInfoDialog.checkInitialImage();
|
|
userInfoDialog.APSProfileImageNotDisplayed();
|
|
userInfoDialog.ACSProfileImageNotDisplayed();
|
|
userInfoDialog.clickOnProcessServicesTab();
|
|
|
|
expect(userInfoDialog.getProcessHeaderTitle()).toEqual(processUserModel.firstName + ' ' + processUserModel.lastName);
|
|
expect(userInfoDialog.getProcessTitle()).toEqual(processUserModel.firstName + ' ' + processUserModel.lastName);
|
|
expect(userInfoDialog.getProcessEmail()).toEqual(processUserModel.email);
|
|
|
|
userInfoDialog.checkInitialImage();
|
|
userInfoDialog.APSProfileImageNotDisplayed();
|
|
userInfoDialog.ACSProfileImageNotDisplayed();
|
|
userInfoDialog.closeUserProfile();
|
|
});
|
|
|
|
it('[C260113] Should display UserInfo when Content Services is enabled and Process Services is disabled', () => {
|
|
loginPage.goToLoginPage();
|
|
settingsPage.setProviderEcm();
|
|
loginPage.login(contentUserModel.id, contentUserModel.password);
|
|
|
|
navigationBarPage.clickUserProfile();
|
|
userInfoDialog.dialogIsDisplayed();
|
|
|
|
expect(userInfoDialog.getContentHeaderTitle()).toEqual(contentUserModel.firstName + ' ' + contentUserModel.lastName);
|
|
expect(userInfoDialog.getContentTitle()).toEqual(contentUserModel.firstName + ' ' + contentUserModel.lastName);
|
|
expect(userInfoDialog.getContentEmail()).toEqual(contentUserModel.email);
|
|
expect(userInfoDialog.getContentJobTitle()).toEqual(contentUserModel.jobTitle);
|
|
|
|
userInfoDialog.checkInitialImage();
|
|
userInfoDialog.APSProfileImageNotDisplayed();
|
|
userInfoDialog.ACSProfileImageNotDisplayed();
|
|
userInfoDialog.closeUserProfile();
|
|
});
|
|
|
|
it('[C260115] Should display UserInfo when Process Services is enabled and Content Services is disabled', () => {
|
|
loginPage.goToLoginPage();
|
|
settingsPage.setProviderBpm();
|
|
loginPage.login(processUserModel.email, processUserModel.password);
|
|
|
|
navigationBarPage.clickUserProfile();
|
|
|
|
userInfoDialog.dialogIsDisplayed();
|
|
|
|
expect(userInfoDialog.getProcessHeaderTitle()).toEqual(processUserModel.firstName + ' ' + processUserModel.lastName);
|
|
expect(userInfoDialog.getProcessTitle()).toEqual(processUserModel.firstName + ' ' + processUserModel.lastName);
|
|
expect(userInfoDialog.getProcessEmail()).toEqual(processUserModel.email);
|
|
|
|
userInfoDialog.checkInitialImage();
|
|
userInfoDialog.APSProfileImageNotDisplayed();
|
|
userInfoDialog.ACSProfileImageNotDisplayed();
|
|
userInfoDialog.closeUserProfile();
|
|
});
|
|
|
|
it('[C260117] Should display UserInfo with profile image uploaded in ACS', async(done) => {
|
|
browser.controlFlow().execute(async() => {
|
|
await PeopleAPI.updateAvatarViaAPI(contentUserModel, acsAvatarFileModel, '-me-');
|
|
await PeopleAPI.getAvatarViaAPI(4, contentUserModel, '-me-', function (result) {});
|
|
});
|
|
|
|
loginPage.goToLoginPage();
|
|
settingsPage.setProviderEcm();
|
|
loginPage.login(contentUserModel.id, contentUserModel.password);
|
|
navigationBarPage.clickUserProfile();
|
|
|
|
userInfoDialog.checkACSProfileImage();
|
|
userInfoDialog.APSProfileImageNotDisplayed();
|
|
userInfoDialog.closeUserProfile();
|
|
|
|
done();
|
|
});
|
|
|
|
it('[C260118] Should display UserInfo with profile image uploaded in APS', async () => {
|
|
let users = new UsersActions();
|
|
await this.alfrescoJsApi.login(contentUserModel.email, contentUserModel.password);
|
|
await users.changeProfilePictureAps(this.alfrescoJsApi, apsAvatarFileModel.getLocation());
|
|
|
|
loginPage.goToLoginPage();
|
|
settingsPage.setProviderBpm();
|
|
loginPage.login(processUserModel.email, processUserModel.password);
|
|
navigationBarPage.clickUserProfile();
|
|
|
|
userInfoDialog.checkAPSProfileImage();
|
|
userInfoDialog.ACSProfileImageNotDisplayed();
|
|
userInfoDialog.initialImageNotDisplayed();
|
|
userInfoDialog.closeUserProfile();
|
|
});
|
|
|
|
it('[C260120] Should not display profile image in UserInfo when deleted in ACS', () => {
|
|
PeopleAPI.deleteAvatarViaAPI(contentUserModel, '-me-');
|
|
|
|
loginPage.goToLoginPage();
|
|
|
|
settingsPage.setProviderEcm();
|
|
loginPage.login(contentUserModel.id, contentUserModel.password);
|
|
navigationBarPage.clickUserProfile();
|
|
|
|
userInfoDialog.checkInitialImage();
|
|
userInfoDialog.APSProfileImageNotDisplayed();
|
|
userInfoDialog.ACSProfileImageNotDisplayed();
|
|
userInfoDialog.closeUserProfile();
|
|
});
|
|
});
|