mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
* upgrade to HttpClient * upgrade to Renderer2 * upgrade Document reference * remove useless test with deprecated ReflectiveInjector * upgrade to latest typescript * upgrade libs * upgrade package scripts * remove rxjs blacklists and duplicate rules * add rxjs compat to help with migration * fix breaking changes * fix breaking changes in material * fix breaking changes (material 6) * upgrade rxjs, ngx-translate and flex layout * update unit tests * restore providers * upgrade deprecated Observable.error * rebase fix first configuration problems * fix style issues commented * fix core build * fix lib template errors * move lib test execution in angular.json * ignore * karma conf files * fix import statement test * single run option * update packages reporter * restore report * increase timeout * improve karma conf test configuration * fix test issues about lint * fix test analytics * fix process service test * content service fix test * fix logout directive test * fix core test * fix build * update node-sass to latest * update angular cli dependencies * improve build script create directorites and move files only if previous command succeded * upgrade individual libs to 6.0 * remove old webpack files * revert sass change * fix type issues fix style issues * fix tslint demo shell issue * fix peerdependencies * fix test e2e BC * package upate * fix style import issue * extract-text-webpack-plugin beta * fix test dist build command * remove alpha js-api * fix tslint issue add banner tslint rule * upload service fix * change BC script * fix test dist script * increase demo shell timeout test * verbose copy * path absolute * fix script bc * fix copy part * fix path warning fix monaco editor * remove duplicate header * remove unused import * fix align and check ago tests * add missing import * fix notification button selector * [ANGULAR6] fixed core tests * fix CS test * fix cs test step 2 * increase travis_wait for dist * fix attachment PS * fix checklist test * use pdf min
188 lines
8.6 KiB
TypeScript
188 lines
8.6 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 { protractor } from 'protractor';
|
|
|
|
import AdfSettingsPage = require('../pages/adf/settingsPage');
|
|
import LoginPage = require('../pages/adf/loginPage');
|
|
import UserInfoDialog = require('../pages/adf/dialog/userInfoDialog');
|
|
import NavigationBarPage = require('../pages/adf/navigationBarPage');
|
|
|
|
import AcsUserModel = require('../models/ACS/acsUserModel');
|
|
import FileModel = require('../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';
|
|
|
|
describe('User Info component', () => {
|
|
|
|
let adfSettingsPage = new AdfSettingsPage();
|
|
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('1. Enable Process Services and Content Services ', () => {
|
|
loginPage.goToLoginPage();
|
|
adfSettingsPage.setProviderEcmBpm();
|
|
loginPage.login(contentUserModel.id, contentUserModel.password);
|
|
navigationBarPage.clickUserProfile();
|
|
userInfoDialog.dialogIsDisplayed().contentServicesTabIsDisplayed().processServicesTabIsDisplayed();
|
|
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().processServicesTabIsDisplayed();
|
|
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('2. Enable Content Services and disable Process Services ', () => {
|
|
loginPage.goToLoginPage();
|
|
adfSettingsPage.setProviderEcm();
|
|
loginPage.login(contentUserModel.id, contentUserModel.password);
|
|
|
|
navigationBarPage.clickUserProfile();
|
|
userInfoDialog.dialogIsDisplayed().contentServicesTabIsNotDisplayed().processServicesTabIsNotDisplayed();
|
|
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('3. Enable Process Services and disable Content Services ', () => {
|
|
loginPage.goToLoginPage();
|
|
adfSettingsPage.setProviderBpm();
|
|
loginPage.login(processUserModel.email, processUserModel.password);
|
|
|
|
navigationBarPage.clickUserProfile();
|
|
|
|
userInfoDialog.dialogIsDisplayed().contentServicesTabIsNotDisplayed().processServicesTabIsNotDisplayed();
|
|
|
|
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('4. Enable Process Services and Content Services ', async(done) => {
|
|
browser.controlFlow().execute(async() => {
|
|
await PeopleAPI.updateAvatarViaAPI(contentUserModel, acsAvatarFileModel, '-me-');
|
|
await PeopleAPI.getAvatarViaAPI(4, contentUserModel, '-me-', function (result) {});
|
|
});
|
|
|
|
loginPage.goToLoginPage();
|
|
adfSettingsPage.setProviderEcm();
|
|
loginPage.login(contentUserModel.id, contentUserModel.password);
|
|
navigationBarPage.clickUserProfile();
|
|
userInfoDialog.checkACSProfileImage();
|
|
userInfoDialog.APSProfileImageNotDisplayed();
|
|
userInfoDialog.closeUserProfile();
|
|
done();
|
|
});
|
|
|
|
it('5. The profile picture is changed from APS', async () => {
|
|
let users = new UsersActions();
|
|
await this.alfrescoJsApi.login(contentUserModel.email, contentUserModel.password);
|
|
await users.changeProfilePictureAps(this.alfrescoJsApi, apsAvatarFileModel.getLocation());
|
|
|
|
loginPage.goToLoginPage();
|
|
adfSettingsPage.setProviderBpm();
|
|
loginPage.login(processUserModel.email, processUserModel.password);
|
|
navigationBarPage.clickUserProfile();
|
|
userInfoDialog.checkAPSProfileImage();
|
|
userInfoDialog.ACSProfileImageNotDisplayed();
|
|
userInfoDialog.initialImageNotDisplayed();
|
|
userInfoDialog.closeUserProfile();
|
|
});
|
|
|
|
it('6. Delete the profile picture from ACS', () => {
|
|
PeopleAPI.deleteAvatarViaAPI(contentUserModel, '-me-');
|
|
loginPage.goToLoginPage();
|
|
adfSettingsPage.setProviderEcm();
|
|
loginPage.login(contentUserModel.id, contentUserModel.password);
|
|
navigationBarPage.clickUserProfile();
|
|
userInfoDialog.checkInitialImage();
|
|
userInfoDialog.APSProfileImageNotDisplayed();
|
|
userInfoDialog.ACSProfileImageNotDisplayed();
|
|
userInfoDialog.closeUserProfile();
|
|
});
|
|
});
|