mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
* [ACS-5016] [E2E] delete actions migrated to playwright * [ACS-5016] sonar fix 1 * [ACS-5016] sonar fix 2 * [ACS-5016] upload.effects.spec.ts reverted * [ACS-5016] upload-file.test.ts reverted * [ACS-5016] review fix 1
239 lines
12 KiB
TypeScript
Executable File
239 lines
12 KiB
TypeScript
Executable File
/*!
|
|
* Copyright © 2005-2024 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 { expect } from '@playwright/test';
|
|
import { ApiClientFactory, NodesApi, Utils, test, TrashcanApi } from '@alfresco/playwright-shared';
|
|
|
|
test.describe('Delete and undo delete', () => {
|
|
const apiClientFactory = new ApiClientFactory();
|
|
let nodesApi: NodesApi;
|
|
let trashcanApi: TrashcanApi;
|
|
|
|
const username = `user-${Utils.random()}`;
|
|
|
|
test.beforeAll(async () => {
|
|
try {
|
|
await apiClientFactory.setUpAcaBackend('admin');
|
|
await apiClientFactory.createUser({ username });
|
|
nodesApi = await NodesApi.initialize(username, username);
|
|
trashcanApi = await TrashcanApi.initialize(username, username);
|
|
} catch (error) {
|
|
console.error(`beforeAll failed : ${error}`);
|
|
}
|
|
});
|
|
|
|
test.afterAll(async () => {
|
|
await Utils.deleteNodesSitesEmptyTrashcan(nodesApi, trashcanApi, 'afterAll failed');
|
|
});
|
|
|
|
test.describe('on Personal Files', () => {
|
|
const file1 = `file1-${Utils.random()}.txt`;
|
|
const file2 = `file2-${Utils.random()}.txt`;
|
|
const file3 = `file3-${Utils.random()}.txt`;
|
|
const file4 = `file4-${Utils.random()}.txt`;
|
|
const file5 = `file5-${Utils.random()}.txt`;
|
|
const file6 = `file6-${Utils.random()}.txt`;
|
|
const file7 = `file7-${Utils.random()}.txt`;
|
|
|
|
const folder1 = `folder1-${Utils.random()}`;
|
|
const folder2 = `folder2-${Utils.random()}`;
|
|
const folder3 = `folder3-${Utils.random()}`;
|
|
const folder4 = `folder4-${Utils.random()}`;
|
|
const folder5 = `folder5-${Utils.random()}`;
|
|
const folder6 = `folder6-${Utils.random()}`;
|
|
|
|
const file1InFolder = `file1InFolder-${Utils.random()}.txt`;
|
|
const file2InFolder = `file2InFolder-${Utils.random()}.txt`;
|
|
const fileLocked1 = `fileLocked1-${Utils.random()}.txt`;
|
|
let fileLocked1Id: string;
|
|
const fileLocked2 = `fileLocked2-${Utils.random()}.txt`;
|
|
let fileLocked2Id: string;
|
|
const fileLocked3 = `fileLocked3-${Utils.random()}.txt`;
|
|
let fileLocked3Id: string;
|
|
const fileLocked4 = `fileLocked4-${Utils.random()}.txt`;
|
|
let fileLocked4Id: string;
|
|
|
|
const parent = `parentPF-${Utils.random()}`;
|
|
let parentId: string;
|
|
|
|
test.beforeAll(async () => {
|
|
parentId = (await nodesApi.createFolder(parent)).entry.id;
|
|
|
|
await nodesApi.createFile(file1, parentId);
|
|
await nodesApi.createFile(file2, parentId);
|
|
await nodesApi.createFile(file3, parentId);
|
|
await nodesApi.createFile(file4, parentId);
|
|
await nodesApi.createFile(file5, parentId);
|
|
await nodesApi.createFile(file6, parentId);
|
|
await nodesApi.createFile(file7, parentId);
|
|
|
|
const folder1Id = (await nodesApi.createFolder(folder1, parentId)).entry.id;
|
|
const folder2Id = (await nodesApi.createFolder(folder2, parentId)).entry.id;
|
|
const folder3Id = (await nodesApi.createFolder(folder3, parentId)).entry.id;
|
|
const folder4Id = (await nodesApi.createFolder(folder4, parentId)).entry.id;
|
|
const folder5Id = (await nodesApi.createFolder(folder5, parentId)).entry.id;
|
|
const folder6Id = (await nodesApi.createFolder(folder6, parentId)).entry.id;
|
|
|
|
await nodesApi.createFile(file1InFolder, folder1Id);
|
|
fileLocked1Id = (await nodesApi.createFile(fileLocked1, folder2Id)).entry.id;
|
|
fileLocked2Id = (await nodesApi.createFile(fileLocked2, folder3Id)).entry.id;
|
|
fileLocked3Id = (await nodesApi.createFile(fileLocked3, folder4Id)).entry.id;
|
|
fileLocked4Id = (await nodesApi.createFile(fileLocked4, folder5Id)).entry.id;
|
|
await nodesApi.createFile(file2InFolder, folder6Id);
|
|
|
|
await nodesApi.lockNodes([fileLocked1Id, fileLocked2Id, fileLocked3Id, fileLocked4Id], 'FULL');
|
|
});
|
|
|
|
test.beforeEach(async ({ loginPage, personalFiles }) => {
|
|
await Utils.tryLoginUser(loginPage, username, username, 'beforeEach failed');
|
|
await personalFiles.navigate();
|
|
await personalFiles.dataTable.performClickFolderOrFileToOpen(parent);
|
|
});
|
|
|
|
test.afterAll(async () => {
|
|
await nodesApi.unlockNodes([fileLocked1Id, fileLocked2Id, fileLocked3Id, fileLocked4Id]);
|
|
await Utils.deleteNodesSitesEmptyTrashcan(nodesApi, trashcanApi, 'afterAll failed');
|
|
});
|
|
|
|
test('[C217125] delete a file and check notification', async ({ personalFiles, trashPage }) => {
|
|
let items = await personalFiles.dataTable.getRowsCount();
|
|
await personalFiles.dataTable.selectItem(file1);
|
|
await personalFiles.acaHeader.clickMoreActions();
|
|
await personalFiles.matMenu.clickMenuItem('Delete');
|
|
const message = await personalFiles.snackBar.getSnackBarMessage();
|
|
expect(message).toContain(`${file1} deleted`);
|
|
const action = await personalFiles.snackBar.getSnackBarActionText();
|
|
expect(action).toContain('Undo');
|
|
await personalFiles.snackBar.closeIcon.click();
|
|
expect(await personalFiles.dataTable.isItemPresent(file1)).toBeFalsy();
|
|
items--;
|
|
expect(await personalFiles.pagination.getMaxRange()).toEqual(` Showing 1-${items} of ${items} `);
|
|
await trashPage.navigate();
|
|
expect(await personalFiles.dataTable.isItemPresent(file1)).toBeTruthy();
|
|
});
|
|
|
|
test('[C280502] delete multiple files and check notification', async ({ personalFiles, trashPage }) => {
|
|
let items = await personalFiles.dataTable.getRowsCount();
|
|
await personalFiles.dataTable.selectItem(file2);
|
|
await personalFiles.page.waitForTimeout(1500);
|
|
await personalFiles.dataTable.selectItem(file3);
|
|
await personalFiles.acaHeader.clickMoreActions();
|
|
await personalFiles.matMenu.clickMenuItem('Delete');
|
|
await personalFiles.snackBar.verifySnackBarActionText(`Deleted 2 items`);
|
|
await personalFiles.snackBar.closeIcon.click();
|
|
expect(await personalFiles.dataTable.isItemPresent(file2)).toBeFalsy();
|
|
expect(await personalFiles.dataTable.isItemPresent(file3)).toBeFalsy();
|
|
items = items - 2;
|
|
expect(await personalFiles.pagination.getMaxRange()).toEqual(` Showing 1-${items} of ${items} `);
|
|
await trashPage.navigate();
|
|
expect(await personalFiles.dataTable.isItemPresent(file2)).toBeTruthy();
|
|
expect(await personalFiles.dataTable.isItemPresent(file3)).toBeTruthy();
|
|
});
|
|
|
|
test('[C217126] delete a folder with content', async ({ personalFiles, trashPage }) => {
|
|
let items = await personalFiles.dataTable.getRowsCount();
|
|
await personalFiles.dataTable.selectItem(folder1);
|
|
await personalFiles.acaHeader.clickMoreActions();
|
|
await personalFiles.matMenu.clickMenuItem('Delete');
|
|
await personalFiles.snackBar.closeIcon.click();
|
|
expect(await personalFiles.dataTable.isItemPresent(folder1)).toBeFalsy();
|
|
items--;
|
|
expect(await personalFiles.pagination.getMaxRange()).toEqual(` Showing 1-${items} of ${items} `);
|
|
await trashPage.navigate();
|
|
expect(await personalFiles.dataTable.isItemPresent(folder1)).toBeTruthy();
|
|
expect(await personalFiles.dataTable.isItemPresent(file1InFolder)).toBeFalsy();
|
|
});
|
|
|
|
test('[C217127] delete a folder containing locked files', async ({ personalFiles, trashPage }) => {
|
|
await personalFiles.dataTable.selectItem(folder2);
|
|
await personalFiles.acaHeader.clickMoreActions();
|
|
await personalFiles.matMenu.clickMenuItem('Delete');
|
|
await personalFiles.snackBar.verifySnackBarActionText(`${folder2} couldn't be deleted`);
|
|
await expect(personalFiles.snackBar.actionButton).toBeHidden();
|
|
expect(await personalFiles.dataTable.isItemPresent(folder2)).toBeTruthy();
|
|
await trashPage.navigate();
|
|
expect(await personalFiles.dataTable.isItemPresent(folder2)).toBeFalsy();
|
|
expect(await personalFiles.dataTable.isItemPresent(fileLocked1)).toBeFalsy();
|
|
});
|
|
|
|
test('[C217129] notification on multiple items deletion - some items fail to delete', async ({ personalFiles }) => {
|
|
await personalFiles.dataTable.selectItem(file4);
|
|
await personalFiles.page.waitForTimeout(1500);
|
|
await personalFiles.dataTable.selectItem(folder3);
|
|
await personalFiles.acaHeader.clickMoreActions();
|
|
await personalFiles.matMenu.clickMenuItem('Delete');
|
|
await personalFiles.snackBar.verifySnackBarActionText(`Deleted 1 item, 1 couldn't be deleted`);
|
|
const action = await personalFiles.snackBar.getSnackBarActionText();
|
|
expect(action).toContain('Undo');
|
|
});
|
|
|
|
test('[C217130] notification on multiple items deletion - all items fail to delete', async ({ personalFiles }) => {
|
|
await personalFiles.dataTable.selectItem(folder4);
|
|
await personalFiles.page.waitForTimeout(1500);
|
|
await personalFiles.dataTable.selectItem(folder5);
|
|
await personalFiles.acaHeader.clickMoreActions();
|
|
await personalFiles.matMenu.clickMenuItem('Delete');
|
|
await personalFiles.snackBar.verifySnackBarActionText(`2 items couldn't be deleted`);
|
|
await expect(personalFiles.snackBar.actionButton).toBeHidden();
|
|
});
|
|
|
|
test('[C217132] undo delete of file', async ({ personalFiles }) => {
|
|
const items = await personalFiles.dataTable.getRowsCount();
|
|
|
|
await personalFiles.dataTable.selectItem(file5);
|
|
await personalFiles.acaHeader.clickMoreActions();
|
|
await personalFiles.matMenu.clickMenuItem('Delete');
|
|
|
|
await personalFiles.snackBar.clickSnackBarAction();
|
|
await personalFiles.dataTable.spinnerWaitForReload();
|
|
expect(await personalFiles.dataTable.isItemPresent(file5)).toBeTruthy();
|
|
expect(await personalFiles.pagination.getRange()).toContain(`1-${items} of ${items}`);
|
|
});
|
|
|
|
test('[C280503] undo delete of folder with content', async ({ personalFiles }) => {
|
|
await personalFiles.dataTable.selectItem(folder6);
|
|
await personalFiles.acaHeader.clickMoreActions();
|
|
await personalFiles.matMenu.clickMenuItem('Delete');
|
|
await personalFiles.snackBar.clickSnackBarAction();
|
|
await personalFiles.dataTable.spinnerWaitForReload();
|
|
expect(await personalFiles.dataTable.isItemPresent(folder6)).toBeTruthy();
|
|
await personalFiles.dataTable.performClickFolderOrFileToOpen(folder6);
|
|
await personalFiles.dataTable.spinnerWaitForReload();
|
|
expect(await personalFiles.dataTable.isItemPresent(file2InFolder)).toBeTruthy();
|
|
});
|
|
|
|
test('[C280504] undo delete of multiple files', async ({ personalFiles }) => {
|
|
await personalFiles.dataTable.selectItem(file6);
|
|
await personalFiles.page.waitForTimeout(1500);
|
|
await personalFiles.dataTable.selectItem(file7);
|
|
await personalFiles.acaHeader.clickMoreActions();
|
|
await personalFiles.matMenu.clickMenuItem('Delete');
|
|
await personalFiles.snackBar.clickSnackBarAction();
|
|
await personalFiles.dataTable.spinnerWaitForReload();
|
|
expect(await personalFiles.dataTable.isItemPresent(file6)).toBeTruthy();
|
|
expect(await personalFiles.dataTable.isItemPresent(file7)).toBeTruthy();
|
|
});
|
|
});
|
|
});
|