mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
* upgrade prettier * noImplicitAny rule * fix type * update tsconfig * upgrade to 150 print width
198 lines
8.9 KiB
TypeScript
Executable File
198 lines
8.9 KiB
TypeScript
Executable File
/*!
|
|
* @license
|
|
* Alfresco Example Content Application
|
|
*
|
|
* Copyright (C) 2005 - 2020 Alfresco Software Limited
|
|
*
|
|
* 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
|
|
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { BrowsingPage, Utils } from '@alfresco/aca-testing-shared';
|
|
import * as testData from './test-data-permissions';
|
|
import * as testUtil from '../test-util';
|
|
|
|
export function librariesTests(siteName?: string) {
|
|
const page = new BrowsingPage();
|
|
const { dataTable } = page;
|
|
|
|
describe('available actions : ', () => {
|
|
beforeAll(async () => {
|
|
await page.goToMyLibrariesAndWait();
|
|
await dataTable.doubleClickOnRowByName(siteName);
|
|
await dataTable.waitForHeader();
|
|
});
|
|
|
|
beforeEach(async () => {
|
|
await Utils.pressEscape();
|
|
});
|
|
|
|
afterEach(async () => {
|
|
await page.closeOpenDialogs();
|
|
});
|
|
|
|
describe('on a file', () => {
|
|
it('File Office - [C280476]', async () => {
|
|
await testUtil.checkToolbarActions(testData.fileDocx.name, testData.fileDocx.toolbarPrimary, testData.fileDocx.toolbarMore);
|
|
await testUtil.checkContextMenu(testData.fileDocx.name, testData.fileDocx.contextMenu);
|
|
});
|
|
|
|
it('File Office, favorite - [C280455]', async () => {
|
|
await testUtil.checkToolbarActions(testData.fileDocxFav.name, testData.fileDocxFav.toolbarPrimary, testData.fileDocxFav.toolbarMore);
|
|
await testUtil.checkContextMenu(testData.fileDocxFav.name, testData.fileDocxFav.contextMenu);
|
|
});
|
|
|
|
it('File simple - [C280444]', async () => {
|
|
await testUtil.checkToolbarActions(testData.file.name, testData.file.toolbarPrimary, testData.file.toolbarMore);
|
|
await testUtil.checkContextMenu(testData.file.name, testData.file.contextMenu);
|
|
});
|
|
|
|
it('File favorite - [C280464]', async () => {
|
|
await testUtil.checkToolbarActions(testData.fileFav.name, testData.fileFav.toolbarPrimary, testData.fileFav.toolbarMore);
|
|
await testUtil.checkContextMenu(testData.fileFav.name, testData.fileFav.contextMenu);
|
|
});
|
|
|
|
it('File Office, shared - [C280465]', async () => {
|
|
await testUtil.checkToolbarActions(testData.fileDocxShared.name, testData.fileDocxShared.toolbarPrimary, testData.fileDocxShared.toolbarMore);
|
|
await testUtil.checkContextMenu(testData.fileDocxShared.name, testData.fileDocxShared.contextMenu);
|
|
});
|
|
|
|
it('File Office, shared, favorite - [C280466]', async () => {
|
|
await testUtil.checkToolbarActions(
|
|
testData.fileDocxSharedFav.name,
|
|
testData.fileDocxSharedFav.toolbarPrimary,
|
|
testData.fileDocxSharedFav.toolbarMore
|
|
);
|
|
await testUtil.checkContextMenu(testData.fileDocxSharedFav.name, testData.fileDocxSharedFav.contextMenu);
|
|
});
|
|
|
|
it('File shared - [C280599]', async () => {
|
|
await testUtil.checkToolbarActions(testData.fileShared.name, testData.fileShared.toolbarPrimary, testData.fileShared.toolbarMore);
|
|
await testUtil.checkContextMenu(testData.fileShared.name, testData.fileShared.contextMenu);
|
|
});
|
|
|
|
it('File shared, favorite - [C280600]', async () => {
|
|
await testUtil.checkToolbarActions(testData.fileSharedFav.name, testData.fileSharedFav.toolbarPrimary, testData.fileSharedFav.toolbarMore);
|
|
await testUtil.checkContextMenu(testData.fileSharedFav.name, testData.fileSharedFav.contextMenu);
|
|
});
|
|
|
|
it('File locked - [C280647]', async () => {
|
|
await testUtil.checkToolbarActions(testData.fileLocked.name, testData.fileLocked.toolbarPrimary, testData.fileLocked.toolbarMore);
|
|
await testUtil.checkContextMenu(testData.fileLocked.name, testData.fileLocked.contextMenu);
|
|
});
|
|
|
|
it('File favorite, locked - [C280477]', async () => {
|
|
await testUtil.checkToolbarActions(testData.fileFavLocked.name, testData.fileFavLocked.toolbarPrimary, testData.fileFavLocked.toolbarMore);
|
|
await testUtil.checkContextMenu(testData.fileFavLocked.name, testData.fileFavLocked.contextMenu);
|
|
});
|
|
|
|
it('File shared, locked - [C280666]', async () => {
|
|
await testUtil.checkToolbarActions(
|
|
testData.fileSharedLocked.name,
|
|
testData.fileSharedLocked.toolbarPrimary,
|
|
testData.fileSharedLocked.toolbarMore
|
|
);
|
|
await testUtil.checkContextMenu(testData.fileSharedLocked.name, testData.fileSharedLocked.contextMenu);
|
|
});
|
|
|
|
it('File shared, favorite, locked - [C280669]', async () => {
|
|
await testUtil.checkToolbarActions(
|
|
testData.fileSharedFavLocked.name,
|
|
testData.fileSharedFavLocked.toolbarPrimary,
|
|
testData.fileSharedFavLocked.toolbarMore
|
|
);
|
|
await testUtil.checkContextMenu(testData.fileSharedFavLocked.name, testData.fileSharedFavLocked.contextMenu);
|
|
});
|
|
});
|
|
|
|
describe('on a folder', () => {
|
|
it('Folder not favorite - [C280456]', async () => {
|
|
await testUtil.checkToolbarActions(testData.folder.name, testData.folder.toolbarPrimary, testData.folder.toolbarMore);
|
|
await testUtil.checkContextMenu(testData.folder.name, testData.folder.contextMenu);
|
|
});
|
|
|
|
it('Folder favorite - [C286284]', async () => {
|
|
await testUtil.checkToolbarActions(testData.folderFav.name, testData.folderFav.toolbarPrimary, testData.folderFav.toolbarMore);
|
|
await testUtil.checkContextMenu(testData.folderFav.name, testData.folderFav.contextMenu);
|
|
});
|
|
});
|
|
|
|
describe('on multiple selection', () => {
|
|
it('multiple files - [C286264]', async () => {
|
|
await testUtil.checkMultipleSelContextMenu([testData.fileDocx.name, testData.fileDocxSharedFav.name], testData.multipleSel.contextMenu);
|
|
await testUtil.checkMultipleSelToolbarActions(
|
|
[testData.fileDocx.name, testData.fileDocxSharedFav.name],
|
|
testData.multipleSel.toolbarPrimary,
|
|
testData.multipleSel.toolbarMore
|
|
);
|
|
});
|
|
|
|
it('multiple files - all favorite - [C286283]', async () => {
|
|
await testUtil.checkMultipleSelContextMenu(
|
|
[testData.fileDocxFav.name, testData.fileDocxSharedFav.name],
|
|
testData.multipleSelAllFav.contextMenu
|
|
);
|
|
await testUtil.checkMultipleSelToolbarActions(
|
|
[testData.fileDocxFav.name, testData.fileDocxSharedFav.name],
|
|
testData.multipleSel.toolbarPrimary,
|
|
testData.multipleSelAllFav.toolbarMore
|
|
);
|
|
});
|
|
|
|
it('multiple locked files - [C280478]', async () => {
|
|
await testUtil.checkMultipleSelContextMenu([testData.fileLocked.name, testData.fileSharedFavLocked.name], testData.multipleSel.contextMenu);
|
|
await testUtil.checkMultipleSelToolbarActions(
|
|
[testData.fileLocked.name, testData.fileSharedFavLocked.name],
|
|
testData.multipleSel.toolbarPrimary,
|
|
testData.multipleSel.toolbarMore
|
|
);
|
|
});
|
|
|
|
it('multiple folders - [C213121]', async () => {
|
|
await testUtil.checkMultipleSelContextMenu([testData.folderFav.name, testData.folder.name], testData.multipleSel.contextMenu);
|
|
await testUtil.checkMultipleSelToolbarActions(
|
|
[testData.folderFav.name, testData.folder.name],
|
|
testData.multipleSel.toolbarPrimary,
|
|
testData.multipleSel.toolbarMore
|
|
);
|
|
});
|
|
|
|
it('both files and folders - [C286266]', async () => {
|
|
await testUtil.checkMultipleSelContextMenu([testData.file.name, testData.folder.name], testData.multipleSel.contextMenu);
|
|
await testUtil.checkMultipleSelToolbarActions(
|
|
[testData.file.name, testData.folder.name],
|
|
testData.multipleSel.toolbarPrimary,
|
|
testData.multipleSel.toolbarMore
|
|
);
|
|
});
|
|
|
|
it('multiple files with different granular permissions - [C286285]', async () => {
|
|
await testUtil.checkMultipleSelContextMenu(
|
|
[testData.fileDocxFav.name, testData.fileGranularPermission],
|
|
testData.multipleSelAllFav.contextMenu
|
|
);
|
|
await testUtil.checkMultipleSelToolbarActions(
|
|
[testData.fileDocxFav.name, testData.fileGranularPermission],
|
|
testData.multipleSel.toolbarPrimary,
|
|
testData.multipleSelAllFav.toolbarMore
|
|
);
|
|
});
|
|
});
|
|
});
|
|
}
|