mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
* Layout changes for workspace sidemenu * added header and search layout changes * implemented review comments and removed process related code * Added expand and collapse functionality * Modified the paths * linting fixes * use standard material settings icon * use only specific modules needed for page layout * use standard "menu" icon for now * use standard avatar icon for now * cleanup user profile menu item * cleanup About component layout * remove hardcoded settings route * deprecate "headerImagePath" * deprecate "headerTextColor" customisation * deprecate "headerColor" customisation * proper toggle of the side menu * proper sidebar header implementation * user profile basic cleanup * minor fixes * cleanup buttons * remove old app layout and use ADF one * remove old header component * cleanup old layout module * fix unit tests * cleanup unit tests * cleanup header actions module * deprecate unused main-action component * cleanup styles * restore removed method * cleanup search results toolbar * restore expand menu functionality * cleanup code, back buttons for about and profile * restore original code * proper collapse button * remove unused i18n key * styles cleanup * cleanup sidebar * cleanup user profile * add safety checks for focus after close * layout fixes * update view profile unit tests * code cleanup after reviews * cleanup header actions * fix menu population, user info * improved upload and create actions * remove useless tests * fix folder rules tests * search button workaround * e2e: remove wait * add create/upload tooltips * e2e fix * e2e fix * e2e fix * e2e fix * e2e fix * e2e fix * e2e fix * e2e fix * e2e fix * e2e fix * e2e fix * e2e fix * try fix e2e * update e2e extension configs * try fix e2e * try fix e2e * fix eslint config * try fix e2e * move search button to extensions * move upload and create to extensions * remove header actions as no longer needed * cleanup * e2e fixes and cleanup for unwanted files * linting fixes * linting fixes * added button type to support text buttons * linting fixes * added more unit tests to achieve code coverage requirement * fixing code covergae for aca-content * fixed code coverage for aca-shared * linting fixes * linting fixes * cleanup * version fix --------- Co-authored-by: SheenaMalhotra182 <sheena.malhotra@globallogic.com> Co-authored-by: Denys Vuika <denys.vuika@gmail.com> Co-authored-by: SheenaMalhotra182 <sheena.malhotra@contractors.onbase.com>
251 lines
11 KiB
TypeScript
Executable File
251 lines
11 KiB
TypeScript
Executable File
/*!
|
|
* Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
*
|
|
* Alfresco Example Content Application
|
|
*
|
|
* This file is part of the Alfresco Example Content Application.
|
|
* If the software was purchased under a paid Alfresco license, the terms of
|
|
* the paid license agreement will prevail. Otherwise, the software is
|
|
* provided under the following open source license terms:
|
|
*
|
|
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { AdminActions, LoginPage, BrowsingPage, SITE_VISIBILITY, SITE_ROLES, RepoClient, InfoDrawer, Utils } from '@alfresco/aca-testing-shared';
|
|
import { BrowserActions } from '@alfresco/adf-testing';
|
|
|
|
describe('Library properties', () => {
|
|
const username = `user1-${Utils.random()}`;
|
|
const user2 = `user2-${Utils.random()}`;
|
|
const user3 = `user3-${Utils.random()}`;
|
|
|
|
const site = {
|
|
name: `site1-${Utils.random()}`,
|
|
id: `site-id-${Utils.random()}`,
|
|
visibility: SITE_VISIBILITY.MODERATED,
|
|
description: 'my site description'
|
|
};
|
|
|
|
const siteForUpdate = {
|
|
name: `site2-${Utils.random()}`,
|
|
id: `site-id-${Utils.random()}`,
|
|
visibility: SITE_VISIBILITY.MODERATED,
|
|
description: 'my initial description'
|
|
};
|
|
|
|
const siteUpdated = {
|
|
name: `site-for-rename-${Utils.random()}`,
|
|
visibility: SITE_VISIBILITY.PRIVATE,
|
|
description: 'new description'
|
|
};
|
|
|
|
const siteDup = `site3-${Utils.random()}`;
|
|
|
|
const apis = {
|
|
user: new RepoClient(username, username)
|
|
};
|
|
|
|
const infoDrawer = new InfoDrawer();
|
|
const { aboutTab } = infoDrawer;
|
|
|
|
const loginPage = new LoginPage();
|
|
const page = new BrowsingPage();
|
|
const { dataTable } = page;
|
|
const adminApiActions = new AdminActions();
|
|
|
|
beforeAll(async () => {
|
|
await adminApiActions.createUser({ username });
|
|
await adminApiActions.createUser({ username: user2 });
|
|
await adminApiActions.createUser({ username: user3 });
|
|
await apis.user.sites.createSite(site.name, site.visibility, site.description, site.id);
|
|
await apis.user.sites.createSite(siteForUpdate.name, siteForUpdate.visibility, siteForUpdate.description, siteForUpdate.id);
|
|
await apis.user.sites.createSite(siteDup);
|
|
|
|
await apis.user.sites.addSiteMember(site.id, user2, SITE_ROLES.SITE_COLLABORATOR.ROLE);
|
|
await apis.user.sites.addSiteMember(site.id, user3, SITE_ROLES.SITE_MANAGER.ROLE);
|
|
|
|
await loginPage.loginWith(username);
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await apis.user.sites.deleteSite(site.id);
|
|
await apis.user.sites.deleteSite(siteForUpdate.id);
|
|
await apis.user.sites.deleteSite(siteDup);
|
|
});
|
|
|
|
beforeEach(async () => {
|
|
await page.goToMyLibrariesAndWait();
|
|
});
|
|
|
|
afterEach(async () => {
|
|
if (await infoDrawer.isOpen()) {
|
|
await BrowserActions.click(page.toolbar.viewDetailsButton);
|
|
}
|
|
});
|
|
|
|
it('[C289336] Info drawer opens for a library', async () => {
|
|
await dataTable.selectItem(site.name);
|
|
await BrowserActions.click(page.toolbar.viewDetailsButton);
|
|
await infoDrawer.waitForInfoDrawerToOpen();
|
|
|
|
expect(await infoDrawer.getHeaderTitle()).toEqual('Details');
|
|
expect(await infoDrawer.isPropertiesTabDisplayed()).toBe(true, 'Properties tab is not displayed');
|
|
expect(await aboutTab.isNameDisplayed()).toBe(true, 'Name field not displayed');
|
|
expect(await aboutTab.isLibraryIdDisplayed()).toBe(true, 'Library ID field not displayed');
|
|
expect(await aboutTab.isVisibilityDisplayed()).toBe(true, 'Visibility field not displayed');
|
|
expect(await aboutTab.isDescriptionDisplayed()).toBe(true, 'Description field not displayed');
|
|
|
|
expect(await aboutTab.getName()).toEqual(site.name);
|
|
expect(await aboutTab.getLibraryId()).toEqual(site.id);
|
|
expect((await aboutTab.getVisibility()).toLowerCase()).toEqual(site.visibility.toLowerCase());
|
|
expect(await aboutTab.getDescription()).toEqual(site.description);
|
|
|
|
expect(await aboutTab.isEditLibraryPropertiesDisplayed()).toBe(true, 'Edit action is not displayed');
|
|
});
|
|
|
|
it('[C289338] Editable properties', async () => {
|
|
await dataTable.selectItem(site.name);
|
|
await BrowserActions.click(page.toolbar.viewDetailsButton);
|
|
await infoDrawer.waitForInfoDrawerToOpen();
|
|
|
|
expect(await aboutTab.isEditLibraryPropertiesEnabled()).toBe(true, 'Edit action is not enabled');
|
|
await aboutTab.clickEditLibraryProperties();
|
|
|
|
expect(await aboutTab.isNameEnabled()).toBe(true, 'Name field not enabled');
|
|
expect(await aboutTab.isLibraryIdEnabled()).toBe(false, 'Library ID field not disabled');
|
|
expect(await aboutTab.isVisibilityEnabled()).toBe(true, 'Visibility field not enabled');
|
|
expect(await aboutTab.isDescriptionEnabled()).toBe(true, 'Description field not enabled');
|
|
|
|
expect(await aboutTab.isCancelDisplayed()).toBe(true, 'Cancel button not displayed');
|
|
expect(await aboutTab.isUpdateDisplayed()).toBe(true, 'Update button not displayed');
|
|
expect(await aboutTab.isCancelEnabled()).toBe(true, 'Cancel button not enabled');
|
|
expect(await aboutTab.isUpdateEnabled()).toBe(false, 'Update button not disabled');
|
|
});
|
|
|
|
it('[C289339] Edit site details', async () => {
|
|
await dataTable.selectItem(siteForUpdate.name);
|
|
await BrowserActions.click(page.toolbar.viewDetailsButton);
|
|
await infoDrawer.waitForInfoDrawerToOpen();
|
|
|
|
expect(await aboutTab.isEditLibraryPropertiesEnabled()).toBe(true, 'Edit action is not enabled');
|
|
await aboutTab.clickEditLibraryProperties();
|
|
|
|
await aboutTab.enterName(siteUpdated.name);
|
|
await aboutTab.enterDescription(siteUpdated.description);
|
|
await aboutTab.setVisibility(siteUpdated.visibility);
|
|
expect(await aboutTab.isUpdateEnabled()).toBe(true, 'Update button not enabled');
|
|
|
|
await aboutTab.clickUpdate();
|
|
|
|
expect(await page.getSnackBarMessage()).toEqual('Library properties updated');
|
|
expect(await dataTable.isItemPresent(siteUpdated.name)).toBe(true, 'New site name not displayed in the list');
|
|
expect(await infoDrawer.isOpen()).toBe(false, 'Info drawer still open');
|
|
|
|
expect((await apis.user.sites.getSite(siteForUpdate.id)).entry.title).toEqual(siteUpdated.name);
|
|
expect((await apis.user.sites.getSite(siteForUpdate.id)).entry.description).toEqual(siteUpdated.description);
|
|
expect((await apis.user.sites.getSite(siteForUpdate.id)).entry.visibility).toEqual(siteUpdated.visibility);
|
|
});
|
|
|
|
it('[C289340] Cancel editing a site', async () => {
|
|
const newName = `new-name-${Utils.random}`;
|
|
const newDesc = `new desc ${Utils.random}`;
|
|
|
|
await dataTable.selectItem(site.name);
|
|
await BrowserActions.click(page.toolbar.viewDetailsButton);
|
|
await infoDrawer.waitForInfoDrawerToOpen();
|
|
|
|
expect(await aboutTab.isEditLibraryPropertiesEnabled()).toBe(true, 'Edit action is not enabled');
|
|
await aboutTab.clickEditLibraryProperties();
|
|
|
|
await aboutTab.enterName(newName);
|
|
await aboutTab.enterDescription(newDesc);
|
|
await aboutTab.setVisibility(SITE_VISIBILITY.MODERATED);
|
|
|
|
await aboutTab.clickCancel();
|
|
|
|
expect(await dataTable.isItemPresent(newName)).toBe(false, 'New site name is displayed in the list');
|
|
expect(await dataTable.isItemPresent(site.name)).toBe(true, 'Original site name not displayed in the list');
|
|
expect(await infoDrawer.isOpen()).toBe(true, 'Info drawer not open');
|
|
});
|
|
|
|
it('[C289341] Warning appears when editing the name of the library by entering an existing name', async () => {
|
|
await apis.user.queries.waitForSites(site.name, { expect: 1 });
|
|
|
|
await dataTable.selectItem(siteDup);
|
|
await BrowserActions.click(page.toolbar.viewDetailsButton);
|
|
await infoDrawer.waitForInfoDrawerToOpen();
|
|
await aboutTab.clickEditLibraryProperties();
|
|
|
|
await aboutTab.enterName(site.name);
|
|
expect(await aboutTab.isMessageDisplayed()).toBe(true, 'Message not displayed');
|
|
expect(await aboutTab.getMessage()).toEqual('Library name already in use');
|
|
});
|
|
|
|
it('[C289342] Site name too long', async () => {
|
|
await dataTable.selectItem(site.name);
|
|
await BrowserActions.click(page.toolbar.viewDetailsButton);
|
|
await infoDrawer.waitForInfoDrawerToOpen();
|
|
await aboutTab.clickEditLibraryProperties();
|
|
|
|
await aboutTab.enterName(Utils.string257);
|
|
await Utils.pressTab();
|
|
expect(await aboutTab.isErrorDisplayed()).toBe(true, 'Message not displayed');
|
|
expect(await aboutTab.getError()).toEqual('Use 256 characters or less for title');
|
|
expect(await aboutTab.isUpdateEnabled()).toBe(false, 'Update button not disabled');
|
|
});
|
|
|
|
it('[C289343] Site description too long', async () => {
|
|
await dataTable.selectItem(site.name);
|
|
await BrowserActions.click(page.toolbar.viewDetailsButton);
|
|
await infoDrawer.waitForInfoDrawerToOpen();
|
|
await aboutTab.clickEditLibraryProperties();
|
|
|
|
await aboutTab.enterDescription(Utils.string513);
|
|
await Utils.pressTab();
|
|
expect(await aboutTab.isErrorDisplayed()).toBe(true, 'Message not displayed');
|
|
expect(await aboutTab.getError()).toEqual('Use 512 characters or less for description');
|
|
expect(await aboutTab.isUpdateEnabled()).toBe(false, 'Update button not disabled');
|
|
});
|
|
|
|
describe('Non manager', () => {
|
|
afterAll(async () => {
|
|
await loginPage.loginWith(username);
|
|
});
|
|
|
|
it('[C289337] Info drawer button is not displayed when user is not the library manager', async () => {
|
|
await loginPage.loginWith(user2);
|
|
await page.goToMyLibrariesAndWait();
|
|
await dataTable.selectItem(site.name);
|
|
expect(await page.toolbar.isButtonPresent('View Details')).toBe(false, 'View Details is present');
|
|
});
|
|
|
|
it('[C289344] Error notification', async () => {
|
|
await loginPage.loginWith(user3);
|
|
|
|
await page.goToMyLibrariesAndWait();
|
|
await dataTable.selectItem(site.name);
|
|
await BrowserActions.click(page.toolbar.viewDetailsButton);
|
|
await infoDrawer.waitForInfoDrawerToOpen();
|
|
await aboutTab.clickEditLibraryProperties();
|
|
|
|
await apis.user.sites.updateSiteMember(site.id, user3, SITE_ROLES.SITE_CONSUMER.ROLE);
|
|
|
|
await aboutTab.enterDescription('new description');
|
|
await aboutTab.clickUpdate();
|
|
|
|
expect(await page.getSnackBarMessage()).toEqual('There was an error updating library properties');
|
|
});
|
|
});
|
|
});
|