mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[ADF-3823] Add tests for create site dialog (#4090)
* [ADF-3823] Create Library component tests * [ADF-3823] Create Library component tests * [ADF-3823] Fixing lint errors. * [ADF-3823] Added automation id for Create Library btn * [ADF-3823] Updated tests and added check for white spaces only. * [ADF-3823] Updated tests & rebased
This commit is contained in:
committed by
Eugenio Romano
parent
c7c4dcb659
commit
5b2887fea1
264
e2e/content-services/directives/create-library-directive.e2e.ts
Normal file
264
e2e/content-services/directives/create-library-directive.e2e.ts
Normal file
@@ -0,0 +1,264 @@
|
||||
/*!
|
||||
* @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 { LoginPage } from '../../pages/adf/loginPage';
|
||||
import { ContentServicesPage } from '../../pages/adf/contentServicesPage';
|
||||
import { CreateLibraryDialog } from '../../pages/adf/dialog/createLibraryDialog';
|
||||
import { CustomSources } from '../../pages/adf/demo-shell/customSourcesPage';
|
||||
|
||||
import { AcsUserModel } from '../../models/ACS/acsUserModel';
|
||||
import TestConfig = require('../../test.config');
|
||||
import AlfrescoApi = require('alfresco-js-api-node');
|
||||
import { browser, Key } from 'protractor';
|
||||
import { Util } from '../../util/util';
|
||||
|
||||
describe('Create library directive', function () {
|
||||
|
||||
let loginPage = new LoginPage();
|
||||
let contentServicesPage = new ContentServicesPage();
|
||||
let createLibraryDialog = new CreateLibraryDialog();
|
||||
let customSourcesPage = new CustomSources();
|
||||
|
||||
let visibility = {
|
||||
public: 'Public',
|
||||
private: 'Private',
|
||||
moderated: 'Moderated'
|
||||
};
|
||||
|
||||
let createSite;
|
||||
|
||||
let acsUser = new AcsUserModel();
|
||||
|
||||
beforeAll(async (done) => {
|
||||
this.alfrescoJsApi = new AlfrescoApi({
|
||||
provider: 'ECM',
|
||||
hostEcm: TestConfig.adf.url
|
||||
});
|
||||
|
||||
await this.alfrescoJsApi.login(TestConfig.adf.adminEmail, TestConfig.adf.adminPassword);
|
||||
|
||||
await this.alfrescoJsApi.core.peopleApi.addPerson(acsUser);
|
||||
|
||||
loginPage.loginToContentServicesUsingUserModel(acsUser);
|
||||
|
||||
createSite = await this.alfrescoJsApi.core.sitesApi.createSite({
|
||||
'title': Util.generateRandomString(20).toLowerCase(),
|
||||
'visibility': 'PUBLIC'
|
||||
});
|
||||
|
||||
done();
|
||||
});
|
||||
|
||||
beforeEach( (done) => {
|
||||
contentServicesPage.goToDocumentList();
|
||||
contentServicesPage.openCreateLibraryDialog();
|
||||
done();
|
||||
});
|
||||
|
||||
afterEach(async (done) => {
|
||||
await browser.actions().sendKeys(Key.ESCAPE).perform();
|
||||
done();
|
||||
});
|
||||
|
||||
it('[C290158] Should display the Create Library defaults', () => {
|
||||
expect(createLibraryDialog.getTitle()).toMatch('Create Library');
|
||||
expect(createLibraryDialog.isNameDisplayed()).toBe(true, 'Name input field is not displayed');
|
||||
expect(createLibraryDialog.isLibraryIdDisplayed()).toBe(true, 'Library ID field is not displayed');
|
||||
expect(createLibraryDialog.isDescriptionDisplayed()).toBe(true, 'Library description is not displayed');
|
||||
expect(createLibraryDialog.isPublicDisplayed()).toBe(true, 'Public radio button is not displayed');
|
||||
expect(createLibraryDialog.isPrivateDisplayed()).toBe(true, 'Private radio button is not displayed');
|
||||
expect(createLibraryDialog.isModeratedDisplayed()).toBe(true, 'Moderated radio button is not displayed');
|
||||
expect(createLibraryDialog.isCreateEnabled()).toBe(false, 'Create button is not disabled');
|
||||
expect(createLibraryDialog.isCancelEnabled()).toBe(true, 'Cancel button is disabled');
|
||||
expect(createLibraryDialog.getSelectedRadio()).toMatch(visibility.public, 'The default visibility is not public');
|
||||
});
|
||||
|
||||
it('[C290159] Should close the dialog when clicking Cancel button', () => {
|
||||
let libraryName = 'cancelLibrary';
|
||||
|
||||
createLibraryDialog.typeLibraryName(libraryName);
|
||||
|
||||
createLibraryDialog.clickCancel();
|
||||
|
||||
createLibraryDialog.waitForDialogToClose();
|
||||
});
|
||||
|
||||
it('[C290160] Should create a public library', () => {
|
||||
let libraryName = Util.generateRandomString();
|
||||
let libraryDescription = Util.generateRandomString();
|
||||
createLibraryDialog.typeLibraryName(libraryName);
|
||||
createLibraryDialog.typeLibraryDescription(libraryDescription);
|
||||
createLibraryDialog.selectPublic();
|
||||
|
||||
expect(createLibraryDialog.getSelectedRadio()).toMatch(visibility.public, 'The visibility is not public');
|
||||
|
||||
createLibraryDialog.clickCreate();
|
||||
createLibraryDialog.waitForDialogToClose();
|
||||
|
||||
expect(createLibraryDialog.isDialogOpen()).not.toBe(true, 'The Create Library dialog is not closed');
|
||||
|
||||
customSourcesPage.navigateToCustomSources();
|
||||
customSourcesPage.selectMySitesSourceType();
|
||||
customSourcesPage.checkRowIsDisplayed(libraryName);
|
||||
|
||||
expect(customSourcesPage.getStatusCell(libraryName)).toMatch('PUBLIC', 'Wrong library status.');
|
||||
});
|
||||
|
||||
it('[C290173] Should create a private library', () => {
|
||||
let libraryName = Util.generateRandomString();
|
||||
let libraryDescription = Util.generateRandomString();
|
||||
createLibraryDialog.typeLibraryName(libraryName);
|
||||
createLibraryDialog.typeLibraryDescription(libraryDescription);
|
||||
createLibraryDialog.selectPrivate();
|
||||
|
||||
expect(createLibraryDialog.getSelectedRadio()).toMatch(visibility.private, 'The visibility is not private');
|
||||
|
||||
createLibraryDialog.clickCreate();
|
||||
createLibraryDialog.waitForDialogToClose();
|
||||
|
||||
expect(createLibraryDialog.isDialogOpen()).not.toBe(true, 'The Create Library dialog is not closed');
|
||||
|
||||
customSourcesPage.navigateToCustomSources();
|
||||
customSourcesPage.selectMySitesSourceType();
|
||||
customSourcesPage.checkRowIsDisplayed(libraryName);
|
||||
|
||||
expect(customSourcesPage.getStatusCell(libraryName)).toMatch('PRIVATE', 'Wrong library status.');
|
||||
});
|
||||
|
||||
it('[C290174, C290175] Should create a moderated library with a given Library ID', () => {
|
||||
let libraryName = Util.generateRandomString();
|
||||
let libraryId = Util.generateRandomString();
|
||||
let libraryDescription = Util.generateRandomString();
|
||||
createLibraryDialog.typeLibraryName(libraryName);
|
||||
createLibraryDialog.typeLibraryId(libraryId);
|
||||
createLibraryDialog.typeLibraryDescription(libraryDescription);
|
||||
createLibraryDialog.selectModerated();
|
||||
|
||||
expect(createLibraryDialog.getSelectedRadio()).toMatch(visibility.moderated, 'The visibility is not moderated');
|
||||
|
||||
createLibraryDialog.clickCreate();
|
||||
createLibraryDialog.waitForDialogToClose();
|
||||
|
||||
expect(createLibraryDialog.isDialogOpen()).not.toBe(true, 'The Create Library dialog is not closed');
|
||||
|
||||
customSourcesPage.navigateToCustomSources();
|
||||
customSourcesPage.selectMySitesSourceType();
|
||||
customSourcesPage.checkRowIsDisplayed(libraryName);
|
||||
|
||||
expect(customSourcesPage.getStatusCell(libraryName)).toMatch('MODERATED', 'Wrong library status.');
|
||||
});
|
||||
|
||||
it('[C290163] Should disable Create button when a mandatory field is not filled in', () => {
|
||||
let inputValue = Util.generateRandomString();
|
||||
|
||||
createLibraryDialog.typeLibraryName(inputValue);
|
||||
createLibraryDialog.clearLibraryId();
|
||||
expect(createLibraryDialog.isCreateEnabled()).not.toBe(true, 'The Create button is enabled');
|
||||
createLibraryDialog.clearLibraryName();
|
||||
|
||||
createLibraryDialog.typeLibraryId(inputValue);
|
||||
expect(createLibraryDialog.isCreateEnabled()).not.toBe(true, 'The Create button is enabled');
|
||||
createLibraryDialog.clearLibraryId();
|
||||
|
||||
createLibraryDialog.typeLibraryDescription(inputValue);
|
||||
expect(createLibraryDialog.isCreateEnabled()).not.toBe(true, 'The Create button is enabled');
|
||||
});
|
||||
|
||||
it('[C290164] Should auto-fill in the Library Id built from library name', () => {
|
||||
let name: string[] = ['abcd1234', 'ab cd 12 34', 'ab cd&12+34_@link/*'];
|
||||
let libraryId: string[] = ['abcd1234', 'ab-cd-12-34', 'ab-cd1234link'];
|
||||
|
||||
for (let _i = 0; _i < 3; _i++) {
|
||||
createLibraryDialog.typeLibraryName(name[_i]);
|
||||
expect(createLibraryDialog.getLibraryIdText()).toMatch(libraryId[_i]);
|
||||
createLibraryDialog.clearLibraryName();
|
||||
}
|
||||
});
|
||||
|
||||
it('[C290176] Should not accept special characters for Library Id', () => {
|
||||
let name = 'My Library';
|
||||
let libraryId: string[] = ['My New Library', 'My+New+Library123!', '<>'];
|
||||
|
||||
createLibraryDialog.typeLibraryName(name);
|
||||
|
||||
for (let _i = 0; _i < 3; _i++) {
|
||||
createLibraryDialog.typeLibraryId(libraryId[_i]);
|
||||
expect(createLibraryDialog.isErrorMessageDisplayed()).toBe(true, 'Error message is not displayed');
|
||||
expect(createLibraryDialog.getErrorMessage()).toMatch('Use numbers and letters only');
|
||||
}
|
||||
});
|
||||
|
||||
it('[C291793] Should display error for Name field filled in with spaces only', () => {
|
||||
let name = ' ';
|
||||
let libraryId = Util.generateRandomString();
|
||||
|
||||
createLibraryDialog.typeLibraryName(name);
|
||||
createLibraryDialog.typeLibraryId(libraryId);
|
||||
|
||||
expect(createLibraryDialog.isErrorMessageDisplayed()).toBe(true, 'Error message is not displayed');
|
||||
expect(createLibraryDialog.getErrorMessage()).toMatch("Library name can't contain only spaces");
|
||||
});
|
||||
|
||||
it('[C290177] Should not accept a duplicate Library Id', () => {
|
||||
let name = 'My Library';
|
||||
let libraryId = Util.generateRandomString();
|
||||
|
||||
createLibraryDialog.typeLibraryName(name);
|
||||
createLibraryDialog.typeLibraryId(libraryId);
|
||||
createLibraryDialog.clickCreate();
|
||||
createLibraryDialog.waitForDialogToClose();
|
||||
|
||||
contentServicesPage.openCreateLibraryDialog();
|
||||
|
||||
createLibraryDialog.typeLibraryName(name);
|
||||
createLibraryDialog.typeLibraryId(libraryId);
|
||||
expect(createLibraryDialog.isErrorMessageDisplayed()).toBe(true, 'Error message is not displayed');
|
||||
expect(createLibraryDialog.getErrorMessage()).toMatch("This Library ID isn't available. Try a different Library ID.");
|
||||
});
|
||||
|
||||
it('[C290178] Should accept the same library name but different Library Ids', () => {
|
||||
let name = createSite.entry.title;
|
||||
let libraryId = Util.generateRandomString();
|
||||
|
||||
createLibraryDialog.typeLibraryName(name.toUpperCase());
|
||||
createLibraryDialog.typeLibraryId(libraryId);
|
||||
|
||||
createLibraryDialog.waitForLibraryNameHint();
|
||||
expect(createLibraryDialog.getLibraryNameHint()).toMatch('Library name already in use', 'The library name hint is wrong');
|
||||
|
||||
createLibraryDialog.clickCreate();
|
||||
createLibraryDialog.waitForDialogToClose();
|
||||
|
||||
expect(createLibraryDialog.isDialogOpen()).not.toBe(true, 'The Create library dialog remained open');
|
||||
});
|
||||
|
||||
it('[C290179] Should not accept more than the expected characters for input fields', () => {
|
||||
let name = Util.generateRandomString(257);
|
||||
let libraryId = Util.generateRandomString(73);
|
||||
let libraryDescription = Util.generateRandomString(513);
|
||||
|
||||
createLibraryDialog.typeLibraryName(name);
|
||||
createLibraryDialog.typeLibraryId(libraryId);
|
||||
createLibraryDialog.typeLibraryDescription(libraryDescription);
|
||||
|
||||
createLibraryDialog.selectPublic();
|
||||
|
||||
expect(createLibraryDialog.getErrorMessages(0)).toMatch('Use 256 characters or less for title');
|
||||
expect(createLibraryDialog.getErrorMessages(1)).toMatch('Use 72 characters or less for the URL name');
|
||||
expect(createLibraryDialog.getErrorMessages(2)).toMatch('Use 512 characters or less for description');
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user