mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2026-09-09 18:02:54 +00:00
[ACS-5016] [E2E] delete actions migrated to playwright (#3868)
* [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
This commit is contained in:
@@ -1,230 +0,0 @@
|
||||
/*!
|
||||
* 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 { AdminActions, UserActions, LoginPage, BrowsingPage, RepoClient, Utils } from '@alfresco/aca-testing-shared';
|
||||
|
||||
describe('Delete and undo delete', () => {
|
||||
const username = `user-${Utils.random()}`;
|
||||
|
||||
const apis = {
|
||||
user: new RepoClient(username, username)
|
||||
};
|
||||
|
||||
const loginPage = new LoginPage();
|
||||
const page = new BrowsingPage();
|
||||
const { dataTable, toolbar } = page;
|
||||
|
||||
const adminApiActions = new AdminActions();
|
||||
const userActions = new UserActions();
|
||||
|
||||
beforeAll(async () => {
|
||||
await adminApiActions.createUser({ username });
|
||||
await userActions.login(username, username);
|
||||
});
|
||||
|
||||
afterAll(async () => {
|
||||
await userActions.login(username, username);
|
||||
await userActions.emptyTrashcan();
|
||||
});
|
||||
|
||||
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;
|
||||
|
||||
beforeAll(async () => {
|
||||
parentId = await apis.user.createFolder(parent);
|
||||
|
||||
await apis.user.createFile(file1, parentId);
|
||||
await apis.user.createFile(file2, parentId);
|
||||
await apis.user.createFile(file3, parentId);
|
||||
await apis.user.createFile(file4, parentId);
|
||||
await apis.user.createFile(file5, parentId);
|
||||
await apis.user.createFile(file6, parentId);
|
||||
await apis.user.createFile(file7, parentId);
|
||||
|
||||
const folder1Id = await apis.user.createFolder(folder1, parentId);
|
||||
const folder2Id = await apis.user.createFolder(folder2, parentId);
|
||||
const folder3Id = await apis.user.createFolder(folder3, parentId);
|
||||
const folder4Id = await apis.user.createFolder(folder4, parentId);
|
||||
const folder5Id = await apis.user.createFolder(folder5, parentId);
|
||||
const folder6Id = await apis.user.createFolder(folder6, parentId);
|
||||
|
||||
await apis.user.createFile(file1InFolder, folder1Id);
|
||||
fileLocked1Id = await apis.user.createFile(fileLocked1, folder2Id);
|
||||
fileLocked2Id = await apis.user.createFile(fileLocked2, folder3Id);
|
||||
fileLocked3Id = await apis.user.createFile(fileLocked3, folder4Id);
|
||||
fileLocked4Id = await apis.user.createFile(fileLocked4, folder5Id);
|
||||
await apis.user.createFile(file2InFolder, folder6Id);
|
||||
|
||||
await userActions.lockNodes([fileLocked1Id, fileLocked2Id, fileLocked3Id, fileLocked4Id], 'FULL');
|
||||
|
||||
await loginPage.loginWith(username);
|
||||
});
|
||||
|
||||
beforeEach(async () => {
|
||||
await page.clickPersonalFilesAndWait();
|
||||
await page.dataTable.doubleClickOnRowByName(parent);
|
||||
});
|
||||
|
||||
afterAll(async () => {
|
||||
try {
|
||||
await userActions.login(username, username);
|
||||
await userActions.unlockNodes([fileLocked1Id, fileLocked2Id, fileLocked3Id, fileLocked4Id]);
|
||||
await apis.user.nodes.deleteNodeById(parentId);
|
||||
await userActions.emptyTrashcan();
|
||||
} catch {}
|
||||
});
|
||||
|
||||
it('[C217125] delete a file and check notification', async () => {
|
||||
let items = await page.dataTable.getRowsCount();
|
||||
await dataTable.selectItem(file1);
|
||||
await toolbar.clickMoreActionsDelete();
|
||||
const message = await page.getSnackBarMessage();
|
||||
expect(message).toContain(`${file1} deleted`);
|
||||
const action = await page.getSnackBarAction();
|
||||
expect(action).toContain('Undo');
|
||||
expect(await dataTable.isItemPresent(file1)).toBe(false, `${file1} was not removed from list`);
|
||||
items--;
|
||||
expect(await page.pagination.getRange()).toContain(`1-${items} of ${items}`);
|
||||
await page.clickTrashAndWait();
|
||||
expect(await dataTable.isItemPresent(file1)).toBe(true, `${file1} is not in trash`);
|
||||
});
|
||||
|
||||
it('[C280502] delete multiple files and check notification', async () => {
|
||||
let items = await page.dataTable.getRowsCount();
|
||||
await dataTable.selectMultipleItems([file2, file3]);
|
||||
await toolbar.clickMoreActionsDelete();
|
||||
const message = await page.getSnackBarMessage();
|
||||
expect(message).toContain(`Deleted 2 items`);
|
||||
expect(await dataTable.isItemPresent(file2)).toBe(false, `${file2} was not removed from list`);
|
||||
expect(await dataTable.isItemPresent(file3)).toBe(false, `${file3} was not removed from list`);
|
||||
items = items - 2;
|
||||
expect(await page.pagination.getRange()).toContain(`1-${items} of ${items}`);
|
||||
await page.clickTrashAndWait();
|
||||
expect(await dataTable.isItemPresent(file2)).toBe(true, `${file2} is not in trash`);
|
||||
expect(await dataTable.isItemPresent(file3)).toBe(true, `${file3} is not in trash`);
|
||||
});
|
||||
|
||||
it('[C217126] delete a folder with content', async () => {
|
||||
let items = await page.dataTable.getRowsCount();
|
||||
await dataTable.selectItem(folder1);
|
||||
await toolbar.clickMoreActionsDelete();
|
||||
expect(await dataTable.isItemPresent(folder1)).toBe(false, `${folder1} was not removed from list`);
|
||||
items--;
|
||||
expect(await page.pagination.getRange()).toContain(`1-${items} of ${items}`);
|
||||
await page.clickTrashAndWait();
|
||||
expect(await dataTable.isItemPresent(folder1)).toBe(true, `${folder1} is not in trash`);
|
||||
expect(await dataTable.isItemPresent(file1InFolder)).toBe(false, `${file1InFolder} is in trash`);
|
||||
});
|
||||
|
||||
it('[C217127] delete a folder containing locked files', async () => {
|
||||
await dataTable.selectItem(folder2);
|
||||
await toolbar.clickMoreActionsDelete();
|
||||
const message = await page.getSnackBarMessage();
|
||||
expect(message).toContain(`${folder2} couldn't be deleted`);
|
||||
const action = await page.getSnackBarAction();
|
||||
expect(action).not.toContain('Undo');
|
||||
expect(await dataTable.isItemPresent(folder2)).toBe(true, `${folder2} was removed from list`);
|
||||
await page.clickTrash();
|
||||
expect(await dataTable.isItemPresent(folder2)).toBe(false, `${folder2} is in trash`);
|
||||
expect(await dataTable.isItemPresent(fileLocked1)).toBe(false, `${fileLocked1} is in trash`);
|
||||
});
|
||||
|
||||
it('[C217129] notification on multiple items deletion - some items fail to delete', async () => {
|
||||
await dataTable.selectMultipleItems([file4, folder3]);
|
||||
await toolbar.clickMoreActionsDelete();
|
||||
const message = await page.getSnackBarMessage();
|
||||
expect(message).toContain(`Deleted 1 item, 1 couldn't be deleted`);
|
||||
const action = await page.getSnackBarAction();
|
||||
expect(action).toContain('Undo');
|
||||
});
|
||||
|
||||
it('[C217130] notification on multiple items deletion - all items fail to delete', async () => {
|
||||
await dataTable.selectMultipleItems([folder4, folder5]);
|
||||
await toolbar.clickMoreActionsDelete();
|
||||
const message = await page.getSnackBarMessage();
|
||||
expect(message).toEqual(`2 items couldn't be deleted`);
|
||||
const action = await page.getSnackBarAction();
|
||||
expect(action).not.toContain('Undo');
|
||||
});
|
||||
|
||||
it('[C217132] undo delete of file', async () => {
|
||||
const items = await page.dataTable.getRowsCount();
|
||||
|
||||
await dataTable.selectItem(file5);
|
||||
await toolbar.clickMoreActionsDelete();
|
||||
|
||||
await page.clickSnackBarAction();
|
||||
await dataTable.waitForBody();
|
||||
expect(await dataTable.isItemPresent(file5)).toBe(true, `${file5} was not restored`);
|
||||
expect(await page.pagination.getRange()).toContain(`1-${items} of ${items}`);
|
||||
});
|
||||
|
||||
it('[C280503] undo delete of folder with content', async () => {
|
||||
await dataTable.selectItem(folder6);
|
||||
await toolbar.clickMoreActionsDelete();
|
||||
await page.clickSnackBarAction();
|
||||
await dataTable.waitForBody();
|
||||
expect(await dataTable.isItemPresent(folder6)).toBe(true, `${folder6} was not restored`);
|
||||
await dataTable.doubleClickOnRowByName(folder6);
|
||||
await dataTable.waitForBody();
|
||||
expect(await dataTable.isItemPresent(file2InFolder)).toBe(true, `${file2InFolder} from ${folder6} not restored`);
|
||||
});
|
||||
|
||||
it('[C280504] undo delete of multiple files', async () => {
|
||||
await dataTable.selectMultipleItems([file6, file7]);
|
||||
await toolbar.clickMoreActionsDelete();
|
||||
await page.clickSnackBarAction();
|
||||
await dataTable.waitForBody();
|
||||
expect(await dataTable.isItemPresent(file6)).toBe(true, `${file6} was removed from list`);
|
||||
expect(await dataTable.isItemPresent(file7)).toBe(true, `${file7} was removed from list`);
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -1,141 +0,0 @@
|
||||
/*!
|
||||
* 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 { AdminActions, UserActions, LoginPage, BrowsingPage, ConfirmDialog, RepoClient, Utils, click } from '@alfresco/aca-testing-shared';
|
||||
|
||||
describe('Permanently delete from Trash', () => {
|
||||
const username = `user-${Utils.random()}`;
|
||||
|
||||
const file1 = `file1-${Utils.random()}.txt`;
|
||||
const file2 = `file2-${Utils.random()}.txt`;
|
||||
const file3 = `file3-${Utils.random()}.txt`;
|
||||
let filesIds;
|
||||
|
||||
const folder1 = `folder1-${Utils.random()}`;
|
||||
const folder2 = `folder2-${Utils.random()}`;
|
||||
let foldersIds;
|
||||
|
||||
const site = `site-${Utils.random()}`;
|
||||
|
||||
const apis = {
|
||||
user: new RepoClient(username, username)
|
||||
};
|
||||
|
||||
const loginPage = new LoginPage();
|
||||
const page = new BrowsingPage();
|
||||
const { dataTable, toolbar } = page;
|
||||
|
||||
const confirmDialog = new ConfirmDialog();
|
||||
const adminApiActions = new AdminActions();
|
||||
const userActions = new UserActions();
|
||||
|
||||
beforeAll(async () => {
|
||||
await adminApiActions.createUser({ username });
|
||||
|
||||
filesIds = (await apis.user.nodes.createFiles([file1, file2, file3])).list.entries.map((entries) => entries.entry.id);
|
||||
foldersIds = (await apis.user.nodes.createFolders([folder1, folder2])).list.entries.map((entries) => entries.entry.id);
|
||||
await apis.user.sites.createSite(site);
|
||||
|
||||
await userActions.login(username, username);
|
||||
await apis.user.nodes.deleteNodesById([...filesIds, ...foldersIds], false);
|
||||
await userActions.deleteSites([site], false);
|
||||
|
||||
await loginPage.loginWith(username);
|
||||
});
|
||||
|
||||
beforeEach(async () => {
|
||||
await page.clickTrashAndWait();
|
||||
});
|
||||
|
||||
afterAll(async () => {
|
||||
await userActions.login(username, username);
|
||||
await userActions.emptyTrashcan();
|
||||
});
|
||||
|
||||
it('[C217091] delete a file', async () => {
|
||||
await dataTable.selectItem(file1);
|
||||
await click(toolbar.permanentlyDeleteButton);
|
||||
await page.waitForDialog();
|
||||
await click(confirmDialog.deleteButton);
|
||||
|
||||
expect(await page.getSnackBarMessage()).toEqual(`${file1} deleted`);
|
||||
expect(await dataTable.isItemPresent(file1)).toBe(false, 'Item was not deleted');
|
||||
});
|
||||
|
||||
it('[C280416] delete a folder', async () => {
|
||||
await dataTable.selectItem(folder1);
|
||||
await click(toolbar.permanentlyDeleteButton);
|
||||
await page.waitForDialog();
|
||||
await click(confirmDialog.deleteButton);
|
||||
|
||||
expect(await page.getSnackBarMessage()).toEqual(`${folder1} deleted`);
|
||||
expect(await dataTable.isItemPresent(folder1)).toBe(false, 'Item was not deleted');
|
||||
});
|
||||
|
||||
it('[C290103] delete a library', async () => {
|
||||
await dataTable.selectItem(site);
|
||||
await click(toolbar.permanentlyDeleteButton);
|
||||
await page.waitForDialog();
|
||||
await click(confirmDialog.deleteButton);
|
||||
|
||||
expect(await page.getSnackBarMessage()).toEqual(`${site} deleted`);
|
||||
expect(await dataTable.isItemPresent(site)).toBe(false, `${site} was not deleted`);
|
||||
});
|
||||
|
||||
it('[C280417] delete multiple items', async () => {
|
||||
await dataTable.selectMultipleItems([file2, folder2]);
|
||||
await click(toolbar.permanentlyDeleteButton);
|
||||
await page.waitForDialog();
|
||||
await click(confirmDialog.deleteButton);
|
||||
|
||||
expect(await page.getSnackBarMessage()).toEqual(`2 items deleted`);
|
||||
expect(await dataTable.isItemPresent(file2)).toBe(false, 'Item was not deleted');
|
||||
expect(await dataTable.isItemPresent(folder2)).toBe(false, 'Item was not deleted');
|
||||
});
|
||||
|
||||
it('[C269113] Confirmation dialog UI', async () => {
|
||||
await dataTable.selectItem(file3);
|
||||
await click(toolbar.permanentlyDeleteButton);
|
||||
await page.waitForDialog();
|
||||
|
||||
expect(await confirmDialog.isDialogOpen()).toBe(true, 'Confirm delete dialog not open');
|
||||
expect(await confirmDialog.getDialogTitle()).toContain('Delete from trash');
|
||||
expect(await confirmDialog.getText()).toContain('This will permanently remove the selected item(s)');
|
||||
expect(await confirmDialog.isDeleteEnabled()).toBe(true, 'DELETE button is not enabled');
|
||||
expect(await confirmDialog.isKeepEnabled()).toBe(true, 'KEEP button is not enabled');
|
||||
|
||||
await Utils.pressEscape();
|
||||
await dataTable.clearSelection();
|
||||
});
|
||||
|
||||
it('[C269115] Keep action cancels the deletion', async () => {
|
||||
await dataTable.selectItem(file3);
|
||||
await click(toolbar.permanentlyDeleteButton);
|
||||
await page.waitForDialog();
|
||||
|
||||
expect(await confirmDialog.isKeepEnabled()).toBe(true, 'KEEP button is not enabled');
|
||||
await click(confirmDialog.keepButton);
|
||||
expect(await dataTable.isItemPresent(file3)).toBe(true, 'Item was deleted');
|
||||
});
|
||||
});
|
||||
@@ -1,257 +0,0 @@
|
||||
/*!
|
||||
* 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 { browser } from 'protractor';
|
||||
import { AdminActions, UserActions, LoginPage, BrowsingPage, APP_ROUTES, RepoClient, Utils, click } from '@alfresco/aca-testing-shared';
|
||||
|
||||
describe('Restore from Trash', () => {
|
||||
const username = `user-${Utils.random()}`;
|
||||
|
||||
const apis = {
|
||||
user: new RepoClient(username, username)
|
||||
};
|
||||
|
||||
const loginPage = new LoginPage();
|
||||
const page = new BrowsingPage();
|
||||
const { dataTable, toolbar } = page;
|
||||
const adminApiActions = new AdminActions();
|
||||
const userActions = new UserActions();
|
||||
|
||||
beforeAll(async () => {
|
||||
await adminApiActions.createUser({ username });
|
||||
await loginPage.loginWith(username);
|
||||
});
|
||||
|
||||
afterAll(async () => {
|
||||
await userActions.login(username, username);
|
||||
await userActions.emptyTrashcan();
|
||||
});
|
||||
|
||||
describe('successful restore', () => {
|
||||
const file = `file-${Utils.random()}.txt`;
|
||||
let fileId: string;
|
||||
const folder = `folder-${Utils.random()}`;
|
||||
let folderId: string;
|
||||
const site = `site-${Utils.random()}`;
|
||||
|
||||
beforeAll(async () => {
|
||||
fileId = (await apis.user.nodes.createFile(file)).entry.id;
|
||||
folderId = (await apis.user.nodes.createFolder(folder)).entry.id;
|
||||
await apis.user.sites.createSite(site);
|
||||
|
||||
await userActions.login(username, username);
|
||||
await apis.user.nodes.deleteNodesById([fileId, folderId], false);
|
||||
await userActions.deleteSites([site], false);
|
||||
});
|
||||
|
||||
beforeEach(async () => {
|
||||
await page.clickTrashAndWait();
|
||||
});
|
||||
|
||||
afterAll(async () => {
|
||||
await userActions.login(username, username);
|
||||
await userActions.emptyTrashcan();
|
||||
});
|
||||
|
||||
it('[C217177] restore file', async () => {
|
||||
await dataTable.selectItem(file);
|
||||
await click(toolbar.restoreButton);
|
||||
const text = await page.getSnackBarMessage();
|
||||
expect(text).toContain(`${file} restored`);
|
||||
const action = await page.getSnackBarAction();
|
||||
expect(action).toContain('View');
|
||||
expect(await dataTable.isItemPresent(file)).toBe(false, 'Item was not removed from list');
|
||||
await page.clickPersonalFilesAndWait();
|
||||
expect(await page.dataTable.isItemPresent(file)).toBe(true, 'Item not displayed in list');
|
||||
|
||||
await apis.user.nodes.deleteNodeById(fileId, false);
|
||||
});
|
||||
|
||||
it('[C280438] restore folder', async () => {
|
||||
await dataTable.selectItem(folder);
|
||||
await click(toolbar.restoreButton);
|
||||
const text = await page.getSnackBarMessage();
|
||||
expect(text).toContain(`${folder} restored`);
|
||||
const action = await page.getSnackBarAction();
|
||||
expect(action).toContain('View');
|
||||
expect(await dataTable.isItemPresent(folder)).toBe(false, 'Item was not removed from list');
|
||||
await page.clickPersonalFilesAndWait();
|
||||
expect(await page.dataTable.isItemPresent(folder)).toBe(true, 'Item not displayed in list');
|
||||
|
||||
await apis.user.nodes.deleteNodeById(folderId, false);
|
||||
});
|
||||
|
||||
it('[C290104] restore library', async () => {
|
||||
await dataTable.selectItem(site);
|
||||
await click(toolbar.restoreButton);
|
||||
const text = await page.getSnackBarMessage();
|
||||
expect(text).toContain(`${site} restored`);
|
||||
const action = await page.getSnackBarAction();
|
||||
expect(action).toContain('View');
|
||||
expect(await dataTable.isItemPresent(site)).toBe(false, `${site} was not removed from list`);
|
||||
await page.goToMyLibrariesAndWait();
|
||||
expect(await page.dataTable.isItemPresent(site)).toBe(true, `${site} not displayed in list`);
|
||||
});
|
||||
|
||||
it('[C217182] restore multiple items', async () => {
|
||||
await dataTable.selectMultipleItems([file, folder]);
|
||||
await click(toolbar.restoreButton);
|
||||
const text = await page.getSnackBarMessage();
|
||||
expect(text).toContain(`Restore successful`);
|
||||
const action = await page.getSnackBarAction();
|
||||
expect(action).not.toContain('View');
|
||||
expect(await dataTable.isItemPresent(file)).toBe(false, 'Item was not removed from list');
|
||||
expect(await dataTable.isItemPresent(folder)).toBe(false, 'Item was not removed from list');
|
||||
await page.clickPersonalFilesAndWait();
|
||||
expect(await page.dataTable.isItemPresent(file)).toBe(true, 'Item not displayed in list');
|
||||
expect(await page.dataTable.isItemPresent(folder)).toBe(true, 'Item not displayed in list');
|
||||
|
||||
await apis.user.nodes.deleteNodesById([fileId, folderId], false);
|
||||
});
|
||||
|
||||
it('[C217181] View from notification', async () => {
|
||||
await dataTable.selectItem(file);
|
||||
await click(toolbar.restoreButton);
|
||||
await page.clickSnackBarAction();
|
||||
await page.dataTable.waitForHeader();
|
||||
expect(await page.sidenav.isActive('Personal Files')).toBe(true, 'Personal Files sidebar link not active');
|
||||
expect(await browser.getCurrentUrl()).toContain(APP_ROUTES.PERSONAL_FILES);
|
||||
|
||||
await apis.user.nodes.deleteNodeById(fileId, false);
|
||||
});
|
||||
});
|
||||
|
||||
describe('failure to restore', () => {
|
||||
const file1 = `file-${Utils.random()}.txt`;
|
||||
let file1Id1: string;
|
||||
let file1Id2: string;
|
||||
const file2 = `file-${Utils.random()}.txt`;
|
||||
let file2Id: string;
|
||||
|
||||
const folder1 = `folder-${Utils.random()}`;
|
||||
let folder1Id: string;
|
||||
const folder2 = `folder-${Utils.random()}`;
|
||||
let folder2Id: string;
|
||||
|
||||
beforeAll(async () => {
|
||||
folder1Id = (await apis.user.nodes.createFolder(folder1)).entry.id;
|
||||
file1Id1 = (await apis.user.nodes.createFile(file1, folder1Id)).entry.id;
|
||||
|
||||
await userActions.login(username, username);
|
||||
await apis.user.nodes.deleteNodeById(file1Id1, false);
|
||||
file1Id2 = (await apis.user.nodes.createFile(file1, folder1Id)).entry.id;
|
||||
|
||||
folder2Id = (await apis.user.nodes.createFolder(folder2)).entry.id;
|
||||
file2Id = (await apis.user.nodes.createFile(file2, folder2Id)).entry.id;
|
||||
|
||||
await apis.user.nodes.deleteNodesById([file2Id, folder2Id], false);
|
||||
});
|
||||
|
||||
beforeEach(async () => {
|
||||
await page.clickTrashAndWait();
|
||||
});
|
||||
|
||||
afterAll(async () => {
|
||||
await userActions.login(username, username);
|
||||
await apis.user.nodes.deleteNodeById(file1Id2);
|
||||
await userActions.emptyTrashcan();
|
||||
});
|
||||
|
||||
it('[C217178] Restore a file when another file with same name exists on the restore location', async () => {
|
||||
await dataTable.selectItem(file1);
|
||||
await click(toolbar.restoreButton);
|
||||
expect(await page.getSnackBarMessage()).toEqual(`Can't restore, ${file1} already exists`);
|
||||
});
|
||||
|
||||
it('[C217179] Restore a file when original location no longer exists', async () => {
|
||||
await dataTable.selectItem(file2);
|
||||
await click(toolbar.restoreButton);
|
||||
expect(await page.getSnackBarMessage()).toEqual(`Can't restore ${file2}, the original location no longer exists`);
|
||||
});
|
||||
});
|
||||
|
||||
describe('Notification on partial success', () => {
|
||||
const folder1 = `folder1-${Utils.random()}.txt`;
|
||||
let folder1Id: string;
|
||||
const folder2 = `folder2-${Utils.random()}.txt`;
|
||||
let folder2Id: string;
|
||||
const file1 = `file-${Utils.random()}.txt`;
|
||||
let file1Id: string;
|
||||
const file2 = `file-${Utils.random()}.txt`;
|
||||
let file2Id: string;
|
||||
|
||||
const folder3 = `folder3-${Utils.random()}.txt`;
|
||||
let folder3Id: string;
|
||||
const folder4 = `folder4-${Utils.random()}.txt`;
|
||||
let folder4Id: string;
|
||||
const file3 = `file3-${Utils.random()}.txt`;
|
||||
let file3Id: string;
|
||||
const file4 = `file4-${Utils.random()}.txt`;
|
||||
let file4Id: string;
|
||||
const file5 = `file5-${Utils.random()}.txt`;
|
||||
let file5Id: string;
|
||||
|
||||
beforeAll(async () => {
|
||||
try {
|
||||
folder1Id = (await apis.user.nodes.createFolder(folder1)).entry.id;
|
||||
file1Id = (await apis.user.nodes.createFile(file1, folder1Id)).entry.id;
|
||||
folder2Id = (await apis.user.nodes.createFolder(folder2)).entry.id;
|
||||
file2Id = (await apis.user.nodes.createFile(file2, folder2Id)).entry.id;
|
||||
|
||||
await userActions.login(username, username);
|
||||
await apis.user.nodes.deleteNodesById([file1Id, folder1Id, file2Id], false);
|
||||
|
||||
folder3Id = (await apis.user.nodes.createFolder(folder3)).entry.id;
|
||||
file3Id = (await apis.user.nodes.createFile(file3, folder3Id)).entry.id;
|
||||
file4Id = (await apis.user.nodes.createFile(file4, folder3Id)).entry.id;
|
||||
folder4Id = (await apis.user.nodes.createFolder(folder4)).entry.id;
|
||||
file5Id = (await apis.user.nodes.createFile(file5, folder4Id)).entry.id;
|
||||
|
||||
await apis.user.nodes.deleteNodesById([file3Id, file4Id, folder3Id, file5Id], false);
|
||||
await loginPage.loginWith(username);
|
||||
} catch {}
|
||||
});
|
||||
|
||||
beforeEach(async () => {
|
||||
await page.clickTrashAndWait();
|
||||
});
|
||||
|
||||
afterAll(async () => {
|
||||
await userActions.login(username, username);
|
||||
await userActions.emptyTrashcan();
|
||||
});
|
||||
|
||||
it('[C217183] one failure', async () => {
|
||||
await dataTable.selectMultipleItems([file1, file2]);
|
||||
await click(toolbar.restoreButton);
|
||||
expect(await page.getSnackBarMessage()).toEqual(`Can't restore ${file1}, the original location no longer exists`);
|
||||
});
|
||||
|
||||
it('[C217184] multiple failures', async () => {
|
||||
await dataTable.selectMultipleItems([file3, file4, file5]);
|
||||
await click(toolbar.restoreButton);
|
||||
expect(await page.getSnackBarMessage()).toEqual('2 items not restored because of issues with the restore location');
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user