/*! * Copyright © 2005-2025 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 . */ import { expect } from '@playwright/test'; import { ApiClientFactory, NodesApi, Utils, test, TrashcanApi } from '@alfresco/aca-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 file8 = `file8-${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); await nodesApi.createFile(file8, 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('[XAT-5016] Delete a file and check snackbar notification', async ({ personalFiles, trashPage }) => { let items = await personalFiles.dataTable.getRowsCount(); await personalFiles.dataTable.selectItems(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('[XAT-5017] Delete multiple files and check snackbar notification', async ({ personalFiles, trashPage }) => { await personalFiles.page.reload({ waitUntil: 'load' }); await personalFiles.dataTable.selectItems(file8); await personalFiles.acaHeader.clickMoreActions(); await personalFiles.matMenu.clickMenuItem('Delete'); await personalFiles.snackBar.message.waitFor(); await personalFiles.page.reload({ waitUntil: 'load' }); await personalFiles.dataTable.selectItems(file2, 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(); await trashPage.navigate(); expect(await personalFiles.dataTable.isItemPresent(file2)).toBeTruthy(); expect(await personalFiles.dataTable.isItemPresent(file3)).toBeTruthy(); }); test('[XAT-5018] Delete a folder with content', async ({ personalFiles, trashPage }) => { let items = await personalFiles.dataTable.getRowsCount(); await personalFiles.dataTable.selectItems(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(`[XAT-5019] Delete a folder containing files that can't be deleted (e.g. locked files)`, async ({ personalFiles, trashPage }) => { await personalFiles.dataTable.selectItems(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('[XAT-5020] Notification on unsuccessful multiple items deletion - some items fail to delete', async ({ personalFiles }) => { await personalFiles.dataTable.selectItems(file4, 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('[XAT-5021] Notification on unsuccessful multiple items deletion - all items fail to delete', async ({ personalFiles }) => { await personalFiles.dataTable.selectItems(folder4, 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('[XAT-5022] Undo delete of a single file restores the file', async ({ personalFiles }) => { const items = await personalFiles.dataTable.getRowsCount(); await personalFiles.dataTable.selectItems(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('[XAT-5024] Undo restores the deleted folder and its content', async ({ personalFiles }) => { await personalFiles.dataTable.selectItems(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('[XAT-5023] Undo delete of multiple files restores all of the files', async ({ personalFiles }) => { await personalFiles.dataTable.selectItems(file6, 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(); }); }); });