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
825 lines
32 KiB
TypeScript
Executable File
825 lines
32 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 { browser } from 'protractor';
|
|
import {
|
|
LoginPage,
|
|
BrowsingPage,
|
|
SITE_VISIBILITY,
|
|
SITE_ROLES,
|
|
RepoClient,
|
|
ShareDialog,
|
|
ConfirmDialog,
|
|
Viewer,
|
|
Utils
|
|
} from '@alfresco/aca-testing-shared';
|
|
|
|
describe('Unshare a file', () => {
|
|
const username = `user-${Utils.random()}`;
|
|
|
|
const parent = `parent-${Utils.random()}`;
|
|
let parentId: string;
|
|
|
|
const apis = {
|
|
admin: new RepoClient(),
|
|
user: new RepoClient(username, username)
|
|
};
|
|
|
|
const loginPage = new LoginPage();
|
|
const page = new BrowsingPage();
|
|
const { dataTable, toolbar } = page;
|
|
const shareDialog = new ShareDialog();
|
|
const confirmDialog = new ConfirmDialog();
|
|
const contextMenu = dataTable.menu;
|
|
const viewer = new Viewer();
|
|
|
|
beforeAll(async (done) => {
|
|
await apis.admin.people.createUser({ username });
|
|
parentId = (await apis.user.nodes.createFolder(parent)).entry.id;
|
|
await loginPage.loginWith(username);
|
|
done();
|
|
});
|
|
|
|
afterAll(async (done) => {
|
|
await apis.user.nodes.deleteNodeById(parentId);
|
|
done();
|
|
});
|
|
|
|
describe('from Personal Files', () => {
|
|
const file1 = `file1-${Utils.random()}.txt`;
|
|
let file1Id: string;
|
|
const file2 = `file2-${Utils.random()}.txt`;
|
|
let file2Id: string;
|
|
const file3 = `file3-${Utils.random()}.txt`;
|
|
let file3Id: string;
|
|
const file4 = `file4-${Utils.random()}.txt`;
|
|
let file4Id: string;
|
|
|
|
beforeAll(async (done) => {
|
|
file1Id = (await apis.user.nodes.createFile(file1, parentId)).entry.id;
|
|
file2Id = (await apis.user.nodes.createFile(file2, parentId)).entry.id;
|
|
file3Id = (await apis.user.nodes.createFile(file3, parentId)).entry.id;
|
|
file4Id = (await apis.user.nodes.createFile(file4, parentId)).entry.id;
|
|
await apis.user.shared.shareFileById(file1Id);
|
|
await apis.user.shared.shareFileById(file2Id);
|
|
await apis.user.shared.shareFileById(file3Id);
|
|
await apis.user.shared.shareFileById(file4Id);
|
|
await apis.user.shared.waitForApi({ expect: 4 });
|
|
done();
|
|
});
|
|
|
|
beforeEach(async (done) => {
|
|
await page.closeOpenDialogs();
|
|
await page.clickPersonalFilesAndWait();
|
|
await dataTable.doubleClickOnRowByName(parent);
|
|
await dataTable.waitForHeader();
|
|
done();
|
|
});
|
|
|
|
afterEach(async (done) => {
|
|
await page.closeOpenDialogs();
|
|
done();
|
|
});
|
|
|
|
afterAll(async (done) => {
|
|
await apis.user.nodes.deleteNodeById(file1Id);
|
|
await apis.user.nodes.deleteNodeById(file2Id);
|
|
await apis.user.nodes.deleteNodeById(file3Id);
|
|
await apis.user.nodes.deleteNodeById(file4Id);
|
|
await apis.user.shared.waitForApi({ expect: 0 });
|
|
done();
|
|
});
|
|
|
|
it('[C286339] Unshare dialog UI', async () => {
|
|
await dataTable.selectItem(file1);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
|
|
expect(await shareDialog.isShareToggleChecked()).toBe(true, 'Share toggle not checked');
|
|
await shareDialog.shareToggle.click();
|
|
|
|
expect(await confirmDialog.isDialogOpen()).toBe(true, 'Unshare dialog is not open');
|
|
expect(await confirmDialog.getTitle()).toContain('Remove this shared link');
|
|
expect(await confirmDialog.getText()).toContain('This link will be deleted and a new link will be created next time this file is shared');
|
|
expect(await confirmDialog.isRemoveEnabled()).toBe(true, 'REMOVE button is not enabled');
|
|
expect(await confirmDialog.isCancelEnabled()).toBe(true, 'CANCEL button is not enabled');
|
|
});
|
|
|
|
it('[C286340] Unshare a file', async () => {
|
|
await dataTable.selectItem(file2);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
const url = await shareDialog.getLinkUrl();
|
|
await shareDialog.shareToggle.click();
|
|
|
|
await confirmDialog.removeButton.click();
|
|
await confirmDialog.waitForDialogToClose();
|
|
await shareDialog.waitForDialogToClose();
|
|
expect(await shareDialog.isDialogOpen()).toBe(false, 'Share dialog open');
|
|
expect(await apis.user.nodes.isFileShared(file2Id)).toBe(false, `${file2} is shared`);
|
|
|
|
await browser.get(url);
|
|
expect(await viewer.isViewerOpened()).toBe(true, 'viewer is not open');
|
|
expect(await viewer.getFileTitle()).not.toEqual(file2);
|
|
|
|
await page.load();
|
|
});
|
|
|
|
it('[C286341] Cancel the Unshare action', async () => {
|
|
await dataTable.selectItem(file3);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
|
|
const urlBefore = await shareDialog.getLinkUrl();
|
|
await shareDialog.shareToggle.click();
|
|
|
|
await confirmDialog.cancelButton.click();
|
|
await confirmDialog.waitForDialogToClose();
|
|
expect(await shareDialog.isDialogOpen()).toBe(true, 'Share dialog not open');
|
|
expect(await shareDialog.isShareToggleChecked()).toBe(true, 'Share toggle is off');
|
|
|
|
const urlAfter = await shareDialog.getLinkUrl();
|
|
expect(urlBefore).toEqual(urlAfter);
|
|
});
|
|
|
|
it('[C286359] Unshare a file from the context menu', async () => {
|
|
await dataTable.rightClickOnItem(file4);
|
|
await contextMenu.shareEditAction.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
const url = await shareDialog.getLinkUrl();
|
|
await shareDialog.shareToggle.click();
|
|
|
|
await confirmDialog.removeButton.click();
|
|
await confirmDialog.waitForDialogToClose();
|
|
await shareDialog.waitForDialogToClose();
|
|
expect(await shareDialog.isDialogOpen()).toBe(false, 'Share dialog open');
|
|
expect(await apis.user.nodes.isFileShared(file4Id)).toBe(false, `${file4} is shared`);
|
|
|
|
await browser.get(url);
|
|
expect(await viewer.isViewerOpened()).toBe(true, 'viewer is not open');
|
|
expect(await viewer.getFileTitle()).not.toEqual(file4);
|
|
|
|
await page.load();
|
|
});
|
|
});
|
|
|
|
describe('from File Libraries', () => {
|
|
const file1 = `file1-${Utils.random()}.txt`;
|
|
let file1Id: string;
|
|
const file2 = `file2-${Utils.random()}.txt`;
|
|
let file2Id: string;
|
|
const file3 = `file3-${Utils.random()}.txt`;
|
|
let file3Id: string;
|
|
const file4 = `file4-${Utils.random()}.txt`;
|
|
let file4Id: string;
|
|
|
|
const siteName = `site-${Utils.random()}`;
|
|
const parentInSite = `parent-site-${Utils.random()}`;
|
|
let parentInSiteId: string;
|
|
|
|
beforeAll(async (done) => {
|
|
await apis.user.sites.createSite(siteName, SITE_VISIBILITY.PUBLIC);
|
|
const docLibId = await apis.user.sites.getDocLibId(siteName);
|
|
parentInSiteId = (await apis.user.nodes.createFolder(parentInSite, docLibId)).entry.id;
|
|
|
|
file1Id = (await apis.user.nodes.createFile(file1, parentInSiteId)).entry.id;
|
|
file2Id = (await apis.user.nodes.createFile(file2, parentInSiteId)).entry.id;
|
|
file3Id = (await apis.user.nodes.createFile(file3, parentInSiteId)).entry.id;
|
|
file4Id = (await apis.user.nodes.createFile(file4, parentInSiteId)).entry.id;
|
|
await apis.user.shared.shareFileById(file1Id);
|
|
await apis.user.shared.shareFileById(file2Id);
|
|
await apis.user.shared.shareFileById(file3Id);
|
|
await apis.user.shared.shareFileById(file4Id);
|
|
await apis.user.shared.waitForApi({ expect: 4 });
|
|
done();
|
|
});
|
|
|
|
beforeEach(async (done) => {
|
|
await page.closeOpenDialogs();
|
|
await page.goToMyLibrariesAndWait();
|
|
await dataTable.doubleClickOnRowByName(siteName);
|
|
await dataTable.waitForHeader();
|
|
await dataTable.doubleClickOnRowByName(parentInSite);
|
|
await dataTable.waitForHeader();
|
|
done();
|
|
});
|
|
|
|
afterEach(async (done) => {
|
|
await page.closeOpenDialogs();
|
|
done();
|
|
});
|
|
|
|
afterAll(async (done) => {
|
|
await apis.admin.sites.deleteSite(siteName);
|
|
await apis.user.shared.waitForApi({ expect: 0 });
|
|
done();
|
|
});
|
|
|
|
it('[C286679] Unshare dialog UI', async () => {
|
|
await dataTable.selectItem(file1);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
|
|
expect(await shareDialog.isShareToggleChecked()).toBe(true, 'Share toggle not checked');
|
|
await shareDialog.shareToggle.click();
|
|
|
|
expect(await confirmDialog.isDialogOpen()).toBe(true, 'Unshare dialog is not open');
|
|
expect(await confirmDialog.getTitle()).toContain('Remove this shared link');
|
|
expect(await confirmDialog.getText()).toContain('This link will be deleted and a new link will be created next time this file is shared');
|
|
expect(await confirmDialog.isRemoveEnabled()).toBe(true, 'REMOVE button is not enabled');
|
|
expect(await confirmDialog.isCancelEnabled()).toBe(true, 'CANCEL button is not enabled');
|
|
});
|
|
|
|
it('[C286680] Unshare a file', async () => {
|
|
await dataTable.selectItem(file2);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
const url = await shareDialog.getLinkUrl();
|
|
await shareDialog.shareToggle.click();
|
|
|
|
await confirmDialog.removeButton.click();
|
|
await confirmDialog.waitForDialogToClose();
|
|
await shareDialog.waitForDialogToClose();
|
|
expect(await shareDialog.isDialogOpen()).toBe(false, 'Share dialog open');
|
|
expect(await apis.user.nodes.isFileShared(file2Id)).toBe(false, `${file2} is shared`);
|
|
|
|
await browser.get(url);
|
|
expect(await viewer.isViewerOpened()).toBe(true, 'viewer is not open');
|
|
expect(await viewer.getFileTitle()).not.toEqual(file2);
|
|
|
|
await page.load();
|
|
});
|
|
|
|
it('[C286681] Cancel the Unshare action', async () => {
|
|
await dataTable.selectItem(file3);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
|
|
const urlBefore = await shareDialog.getLinkUrl();
|
|
await shareDialog.shareToggle.click();
|
|
|
|
await confirmDialog.cancelButton.click();
|
|
await confirmDialog.waitForDialogToClose();
|
|
expect(await shareDialog.isDialogOpen()).toBe(true, 'Share dialog not open');
|
|
expect(await shareDialog.isShareToggleChecked()).toBe(true, 'Share toggle is off');
|
|
|
|
const urlAfter = await shareDialog.getLinkUrl();
|
|
expect(urlBefore).toEqual(urlAfter);
|
|
});
|
|
|
|
it('[C286683] Unshare a file from the context menu', async () => {
|
|
await dataTable.rightClickOnItem(file4);
|
|
await contextMenu.shareEditAction.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
const url = await shareDialog.getLinkUrl();
|
|
await shareDialog.shareToggle.click();
|
|
|
|
await confirmDialog.removeButton.click();
|
|
await confirmDialog.waitForDialogToClose();
|
|
await shareDialog.waitForDialogToClose();
|
|
expect(await shareDialog.isDialogOpen()).toBe(false, 'Share dialog open');
|
|
expect(await apis.user.nodes.isFileShared(file4Id)).toBe(false, `${file4} is shared`);
|
|
|
|
await browser.get(url);
|
|
expect(await viewer.isViewerOpened()).toBe(true, 'viewer is not open');
|
|
expect(await viewer.getFileTitle()).not.toEqual(file4);
|
|
|
|
await page.load();
|
|
});
|
|
});
|
|
|
|
describe('from Recent Files', () => {
|
|
const file1 = `file1-${Utils.random()}.txt`;
|
|
let file1Id: string;
|
|
const file2 = `file2-${Utils.random()}.txt`;
|
|
let file2Id: string;
|
|
const file3 = `file3-${Utils.random()}.txt`;
|
|
let file3Id: string;
|
|
const file4 = `file4-${Utils.random()}.txt`;
|
|
let file4Id: string;
|
|
|
|
beforeAll(async (done) => {
|
|
file1Id = (await apis.user.nodes.createFile(file1, parentId)).entry.id;
|
|
file2Id = (await apis.user.nodes.createFile(file2, parentId)).entry.id;
|
|
file3Id = (await apis.user.nodes.createFile(file3, parentId)).entry.id;
|
|
file4Id = (await apis.user.nodes.createFile(file4, parentId)).entry.id;
|
|
await apis.user.shared.shareFileById(file1Id);
|
|
await apis.user.shared.shareFileById(file2Id);
|
|
await apis.user.shared.shareFileById(file3Id);
|
|
await apis.user.shared.shareFileById(file4Id);
|
|
await apis.user.shared.waitForApi({ expect: 4 });
|
|
done();
|
|
});
|
|
|
|
beforeEach(async (done) => {
|
|
await page.closeOpenDialogs();
|
|
await page.clickRecentFilesAndWait();
|
|
done();
|
|
});
|
|
|
|
afterEach(async (done) => {
|
|
await page.closeOpenDialogs();
|
|
done();
|
|
});
|
|
|
|
afterAll(async (done) => {
|
|
await apis.user.nodes.deleteNodeById(file1Id);
|
|
await apis.user.nodes.deleteNodeById(file2Id);
|
|
await apis.user.nodes.deleteNodeById(file3Id);
|
|
await apis.user.nodes.deleteNodeById(file4Id);
|
|
await apis.user.shared.waitForApi({ expect: 0 });
|
|
done();
|
|
});
|
|
|
|
it('[C286689] Unshare dialog UI', async () => {
|
|
await dataTable.selectItem(file1);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
|
|
expect(await shareDialog.isShareToggleChecked()).toBe(true, 'Share toggle not checked');
|
|
await shareDialog.shareToggle.click();
|
|
|
|
expect(await confirmDialog.isDialogOpen()).toBe(true, 'Unshare dialog is not open');
|
|
expect(await confirmDialog.getTitle()).toContain('Remove this shared link');
|
|
expect(await confirmDialog.getText()).toContain('This link will be deleted and a new link will be created next time this file is shared');
|
|
expect(await confirmDialog.isRemoveEnabled()).toBe(true, 'REMOVE button is not enabled');
|
|
expect(await confirmDialog.isCancelEnabled()).toBe(true, 'CANCEL button is not enabled');
|
|
});
|
|
|
|
it('[C286690] Unshare a file', async () => {
|
|
await dataTable.selectItem(file2);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
const url = await shareDialog.getLinkUrl();
|
|
await shareDialog.shareToggle.click();
|
|
|
|
await confirmDialog.removeButton.click();
|
|
await confirmDialog.waitForDialogToClose();
|
|
await shareDialog.waitForDialogToClose();
|
|
expect(await shareDialog.isDialogOpen()).toBe(false, 'Share dialog open');
|
|
expect(await apis.user.nodes.isFileShared(file2Id)).toBe(false, `${file2} is shared`);
|
|
|
|
await browser.get(url);
|
|
expect(await viewer.isViewerOpened()).toBe(true, 'viewer is not open');
|
|
expect(await viewer.getFileTitle()).not.toEqual(file2);
|
|
|
|
await page.load();
|
|
});
|
|
|
|
it('[C286691] Cancel the Unshare action', async () => {
|
|
await dataTable.selectItem(file3);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
|
|
const urlBefore = await shareDialog.getLinkUrl();
|
|
await shareDialog.shareToggle.click();
|
|
|
|
await confirmDialog.cancelButton.click();
|
|
await confirmDialog.waitForDialogToClose();
|
|
expect(await shareDialog.isDialogOpen()).toBe(true, 'Share dialog not open');
|
|
expect(await shareDialog.isShareToggleChecked()).toBe(true, 'Share toggle is off');
|
|
|
|
const urlAfter = await shareDialog.getLinkUrl();
|
|
expect(urlBefore).toEqual(urlAfter);
|
|
});
|
|
|
|
it('[C286693] Unshare a file from the context menu', async () => {
|
|
await dataTable.rightClickOnItem(file4);
|
|
await contextMenu.shareEditAction.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
const url = await shareDialog.getLinkUrl();
|
|
await shareDialog.shareToggle.click();
|
|
|
|
await confirmDialog.removeButton.click();
|
|
await confirmDialog.waitForDialogToClose();
|
|
await shareDialog.waitForDialogToClose();
|
|
expect(await shareDialog.isDialogOpen()).toBe(false, 'Share dialog open');
|
|
expect(await apis.user.nodes.isFileShared(file4Id)).toBe(false, `${file4} is shared`);
|
|
|
|
await browser.get(url);
|
|
expect(await viewer.isViewerOpened()).toBe(true, 'viewer is not open');
|
|
expect(await viewer.getFileTitle()).not.toEqual(file4);
|
|
|
|
await page.load();
|
|
});
|
|
});
|
|
|
|
describe('from Shared Files', () => {
|
|
const file1 = `file1-${Utils.random()}.txt`;
|
|
let file1Id: string;
|
|
const file2 = `file2-${Utils.random()}.txt`;
|
|
let file2Id: string;
|
|
const file3 = `file3-${Utils.random()}.txt`;
|
|
let file3Id: string;
|
|
const file4 = `file4-${Utils.random()}.txt`;
|
|
let file4Id: string;
|
|
|
|
beforeAll(async (done) => {
|
|
file1Id = (await apis.user.nodes.createFile(file1, parentId)).entry.id;
|
|
file2Id = (await apis.user.nodes.createFile(file2, parentId)).entry.id;
|
|
file3Id = (await apis.user.nodes.createFile(file3, parentId)).entry.id;
|
|
file4Id = (await apis.user.nodes.createFile(file4, parentId)).entry.id;
|
|
await apis.user.shared.shareFileById(file1Id);
|
|
await apis.user.shared.shareFileById(file2Id);
|
|
await apis.user.shared.shareFileById(file3Id);
|
|
await apis.user.shared.shareFileById(file4Id);
|
|
await apis.user.shared.waitForApi({ expect: 4 });
|
|
done();
|
|
});
|
|
|
|
beforeEach(async (done) => {
|
|
await page.closeOpenDialogs();
|
|
await page.clickSharedFilesAndWait();
|
|
done();
|
|
});
|
|
|
|
afterEach(async (done) => {
|
|
await page.closeOpenDialogs();
|
|
done();
|
|
});
|
|
|
|
afterAll(async (done) => {
|
|
await apis.user.nodes.deleteNodeById(file1Id);
|
|
await apis.user.nodes.deleteNodeById(file2Id);
|
|
await apis.user.nodes.deleteNodeById(file3Id);
|
|
await apis.user.nodes.deleteNodeById(file4Id);
|
|
await apis.user.shared.waitForApi({ expect: 0 });
|
|
done();
|
|
});
|
|
|
|
it('[C286684] Unshare dialog UI', async () => {
|
|
await dataTable.selectItem(file1);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
|
|
expect(await shareDialog.isShareToggleChecked()).toBe(true, 'Share toggle not checked');
|
|
await shareDialog.shareToggle.click();
|
|
|
|
expect(await confirmDialog.isDialogOpen()).toBe(true, 'Unshare dialog is not open');
|
|
expect(await confirmDialog.getTitle()).toContain('Remove this shared link');
|
|
expect(await confirmDialog.getText()).toContain('This link will be deleted and a new link will be created next time this file is shared');
|
|
expect(await confirmDialog.isRemoveEnabled()).toBe(true, 'REMOVE button is not enabled');
|
|
expect(await confirmDialog.isCancelEnabled()).toBe(true, 'CANCEL button is not enabled');
|
|
});
|
|
|
|
it('[C286685] Unshare a file', async () => {
|
|
await dataTable.selectItem(file2);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
const url = await shareDialog.getLinkUrl();
|
|
await shareDialog.shareToggle.click();
|
|
|
|
await confirmDialog.removeButton.click();
|
|
await confirmDialog.waitForDialogToClose();
|
|
await shareDialog.waitForDialogToClose();
|
|
expect(await shareDialog.isDialogOpen()).toBe(false, 'Share dialog open');
|
|
expect(await apis.user.nodes.isFileShared(file2Id)).toBe(false, `${file2} is shared`);
|
|
|
|
await browser.get(url);
|
|
expect(await viewer.isViewerOpened()).toBe(true, 'viewer is not open');
|
|
expect(await viewer.getFileTitle()).not.toEqual(file2);
|
|
|
|
await page.load();
|
|
});
|
|
|
|
it('[C286686] Cancel the Unshare action', async () => {
|
|
await dataTable.selectItem(file3);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
|
|
const urlBefore = await shareDialog.getLinkUrl();
|
|
await shareDialog.shareToggle.click();
|
|
|
|
await confirmDialog.cancelButton.click();
|
|
await confirmDialog.waitForDialogToClose();
|
|
expect(await shareDialog.isDialogOpen()).toBe(true, 'Share dialog not open');
|
|
expect(await shareDialog.isShareToggleChecked()).toBe(true, 'Share toggle is off');
|
|
|
|
const urlAfter = await shareDialog.getLinkUrl();
|
|
expect(urlBefore).toEqual(urlAfter);
|
|
});
|
|
|
|
it('[C286688] Unshare a file from the context menu', async () => {
|
|
await dataTable.rightClickOnItem(file4);
|
|
await contextMenu.shareEditAction.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
const url = await shareDialog.getLinkUrl();
|
|
await shareDialog.shareToggle.click();
|
|
|
|
await confirmDialog.removeButton.click();
|
|
await confirmDialog.waitForDialogToClose();
|
|
await shareDialog.waitForDialogToClose();
|
|
expect(await shareDialog.isDialogOpen()).toBe(false, 'Share dialog open');
|
|
expect(await apis.user.nodes.isFileShared(file4Id)).toBe(false, `${file4} is shared`);
|
|
|
|
await browser.get(url);
|
|
expect(await viewer.isViewerOpened()).toBe(true, 'viewer is not open');
|
|
expect(await viewer.getFileTitle()).not.toEqual(file4);
|
|
|
|
await page.load();
|
|
});
|
|
});
|
|
|
|
describe('from Favorites', () => {
|
|
const file1 = `file1-${Utils.random()}.txt`;
|
|
let file1Id: string;
|
|
const file2 = `file2-${Utils.random()}.txt`;
|
|
let file2Id: string;
|
|
const file3 = `file3-${Utils.random()}.txt`;
|
|
let file3Id: string;
|
|
const file4 = `file4-${Utils.random()}.txt`;
|
|
let file4Id: string;
|
|
|
|
beforeAll(async (done) => {
|
|
file1Id = (await apis.user.nodes.createFile(file1, parentId)).entry.id;
|
|
file2Id = (await apis.user.nodes.createFile(file2, parentId)).entry.id;
|
|
file3Id = (await apis.user.nodes.createFile(file3, parentId)).entry.id;
|
|
file4Id = (await apis.user.nodes.createFile(file4, parentId)).entry.id;
|
|
await apis.user.shared.shareFileById(file1Id);
|
|
await apis.user.shared.shareFileById(file2Id);
|
|
await apis.user.shared.shareFileById(file3Id);
|
|
await apis.user.shared.shareFileById(file4Id);
|
|
|
|
await apis.user.favorites.addFavoriteById('file', file1Id);
|
|
await apis.user.favorites.addFavoriteById('file', file2Id);
|
|
await apis.user.favorites.addFavoriteById('file', file3Id);
|
|
await apis.user.favorites.addFavoriteById('file', file4Id);
|
|
|
|
await apis.user.favorites.waitForApi({ expect: 4 });
|
|
await apis.user.shared.waitForApi({ expect: 4 });
|
|
done();
|
|
});
|
|
|
|
beforeEach(async (done) => {
|
|
await page.closeOpenDialogs();
|
|
await page.clickFavoritesAndWait();
|
|
done();
|
|
});
|
|
|
|
afterEach(async (done) => {
|
|
await page.closeOpenDialogs();
|
|
done();
|
|
});
|
|
|
|
afterAll(async (done) => {
|
|
await apis.user.nodes.deleteNodeById(file1Id);
|
|
await apis.user.nodes.deleteNodeById(file2Id);
|
|
await apis.user.nodes.deleteNodeById(file3Id);
|
|
await apis.user.nodes.deleteNodeById(file4Id);
|
|
await apis.user.shared.waitForApi({ expect: 0 });
|
|
done();
|
|
});
|
|
|
|
it('[C286694] Unshare dialog UI', async () => {
|
|
await dataTable.selectItem(file1);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
|
|
expect(await shareDialog.isShareToggleChecked()).toBe(true, 'Share toggle not checked');
|
|
await shareDialog.shareToggle.click();
|
|
|
|
expect(await confirmDialog.isDialogOpen()).toBe(true, 'Unshare dialog is not open');
|
|
expect(await confirmDialog.getTitle()).toContain('Remove this shared link');
|
|
expect(await confirmDialog.getText()).toContain('This link will be deleted and a new link will be created next time this file is shared');
|
|
expect(await confirmDialog.isRemoveEnabled()).toBe(true, 'REMOVE button is not enabled');
|
|
expect(await confirmDialog.isCancelEnabled()).toBe(true, 'CANCEL button is not enabled');
|
|
});
|
|
|
|
it('[C286695] Unshare a file', async () => {
|
|
await dataTable.selectItem(file2);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
const url = await shareDialog.getLinkUrl();
|
|
await shareDialog.shareToggle.click();
|
|
|
|
await confirmDialog.removeButton.click();
|
|
await confirmDialog.waitForDialogToClose();
|
|
await shareDialog.waitForDialogToClose();
|
|
expect(await shareDialog.isDialogOpen()).toBe(false, 'Share dialog open');
|
|
expect(await apis.user.nodes.isFileShared(file2Id)).toBe(false, `${file2} is shared`);
|
|
|
|
await browser.get(url);
|
|
expect(await viewer.isViewerOpened()).toBe(true, 'viewer is not open');
|
|
expect(await viewer.getFileTitle()).not.toEqual(file2);
|
|
|
|
await page.load();
|
|
});
|
|
|
|
it('[C286696] Cancel the Unshare action', async () => {
|
|
await dataTable.selectItem(file3);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
|
|
const urlBefore = await shareDialog.getLinkUrl();
|
|
await shareDialog.shareToggle.click();
|
|
|
|
await confirmDialog.cancelButton.click();
|
|
await confirmDialog.waitForDialogToClose();
|
|
expect(await shareDialog.isDialogOpen()).toBe(true, 'Share dialog not open');
|
|
expect(await shareDialog.isShareToggleChecked()).toBe(true, 'Share toggle is off');
|
|
|
|
const urlAfter = await shareDialog.getLinkUrl();
|
|
expect(urlBefore).toEqual(urlAfter);
|
|
});
|
|
|
|
it('[C286698] Unshare a file from the context menu', async () => {
|
|
await dataTable.rightClickOnItem(file4);
|
|
await contextMenu.shareEditAction.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
const url = await shareDialog.getLinkUrl();
|
|
await shareDialog.shareToggle.click();
|
|
|
|
await confirmDialog.removeButton.click();
|
|
await confirmDialog.waitForDialogToClose();
|
|
await shareDialog.waitForDialogToClose();
|
|
expect(await shareDialog.isDialogOpen()).toBe(false, 'Share dialog open');
|
|
expect(await apis.user.nodes.isFileShared(file4Id)).toBe(false, `${file4} is shared`);
|
|
|
|
await browser.get(url);
|
|
expect(await viewer.isViewerOpened()).toBe(true, 'viewer is not open');
|
|
expect(await viewer.getFileTitle()).not.toEqual(file4);
|
|
|
|
await page.load();
|
|
});
|
|
});
|
|
|
|
describe('as Consumer', () => {
|
|
const sitePrivate = `site-private-${Utils.random()}`;
|
|
|
|
const file1FileLib = `file1-FL-${Utils.random()}.txt`;
|
|
let file1FileLibId: string;
|
|
const file2FileLib = `file2-FL-${Utils.random()}.txt`;
|
|
let file2FileLibId: string;
|
|
const file1Shared = `file1-Shared-${Utils.random()}.txt`;
|
|
let file1SharedId: string;
|
|
const file2Shared = `file2-Shared-${Utils.random()}.txt`;
|
|
let file2SharedId: string;
|
|
const file1Fav = `file1-Fav-${Utils.random()}.txt`;
|
|
let file1FavId: string;
|
|
const file2Fav = `file2-Fav-${Utils.random()}.txt`;
|
|
let file2FavId: string;
|
|
|
|
beforeAll(async (done) => {
|
|
await apis.admin.sites.createSite(sitePrivate, SITE_VISIBILITY.PRIVATE);
|
|
const docLibId = await apis.admin.sites.getDocLibId(sitePrivate);
|
|
|
|
file1FileLibId = (await apis.admin.nodes.createFile(file1FileLib, docLibId)).entry.id;
|
|
file2FileLibId = (await apis.admin.nodes.createFile(file2FileLib, docLibId)).entry.id;
|
|
file1SharedId = (await apis.admin.nodes.createFile(file1Shared, docLibId)).entry.id;
|
|
file2SharedId = (await apis.admin.nodes.createFile(file2Shared, docLibId)).entry.id;
|
|
file1FavId = (await apis.admin.nodes.createFile(file1Fav, docLibId)).entry.id;
|
|
file2FavId = (await apis.admin.nodes.createFile(file2Fav, docLibId)).entry.id;
|
|
|
|
await apis.admin.sites.addSiteMember(sitePrivate, username, SITE_ROLES.SITE_CONSUMER.ROLE);
|
|
|
|
await apis.admin.shared.shareFileById(file1FileLibId);
|
|
await apis.user.shared.shareFileById(file2FileLibId);
|
|
await apis.admin.shared.shareFileById(file1SharedId);
|
|
await apis.user.shared.shareFileById(file2SharedId);
|
|
await apis.admin.shared.shareFileById(file1FavId);
|
|
await apis.user.shared.shareFileById(file2FavId);
|
|
|
|
await apis.user.favorites.addFavoriteById('file', file1FavId);
|
|
await apis.user.favorites.addFavoriteById('file', file2FavId);
|
|
|
|
await apis.user.favorites.waitForApi({ expect: 2 });
|
|
await apis.user.shared.waitForApi({ expect: 6 });
|
|
|
|
done();
|
|
});
|
|
|
|
afterAll(async (done) => {
|
|
await apis.admin.sites.deleteSite(sitePrivate);
|
|
done();
|
|
});
|
|
|
|
afterEach(async (done) => {
|
|
await page.closeOpenDialogs();
|
|
await page.clickPersonalFilesAndWait();
|
|
done();
|
|
});
|
|
|
|
it('[C286682] on File Libraries - file shared by other user', async () => {
|
|
await page.goToMyLibrariesAndWait();
|
|
await dataTable.doubleClickOnRowByName(sitePrivate);
|
|
await dataTable.waitForHeader();
|
|
await dataTable.selectItem(file1FileLib);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
|
|
expect(await shareDialog.isShareToggleDisabled()).toBe(false, 'Share toggle disabled for consumer');
|
|
|
|
await shareDialog.shareToggle.click();
|
|
await confirmDialog.removeButton.click();
|
|
|
|
const msg = await page.getSnackBarMessage();
|
|
expect(msg).toContain(`You don't have permission to unshare this file`);
|
|
});
|
|
|
|
it('[C286701] on File Libraries - file shared by the user', async () => {
|
|
await page.goToMyLibrariesAndWait();
|
|
await dataTable.doubleClickOnRowByName(sitePrivate);
|
|
await dataTable.waitForHeader();
|
|
await dataTable.selectItem(file2FileLib);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
|
|
expect(await shareDialog.isShareToggleDisabled()).toBe(false, 'Share toggle disabled for consumer');
|
|
|
|
await shareDialog.shareToggle.click();
|
|
await confirmDialog.removeButton.click();
|
|
await confirmDialog.waitForDialogToClose();
|
|
await shareDialog.waitForDialogToClose();
|
|
|
|
expect(await shareDialog.isDialogOpen()).toBe(false, 'Share dialog open');
|
|
expect(await apis.user.nodes.isFileShared(file2FileLibId)).toBe(false, `${file2FileLib} is shared`);
|
|
});
|
|
|
|
it('[C286687] on Shared Files - file shared by other user', async () => {
|
|
await page.clickSharedFilesAndWait();
|
|
await dataTable.selectItem(file1Shared);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
|
|
expect(await shareDialog.isShareToggleDisabled()).toBe(false, 'Share toggle disabled for consumer');
|
|
|
|
await shareDialog.shareToggle.click();
|
|
await confirmDialog.removeButton.click();
|
|
|
|
const msg = await page.getSnackBarMessage();
|
|
expect(msg).toContain(`You don't have permission to unshare this file`);
|
|
});
|
|
|
|
it('[C286702] on Shared Files - file shared by the user', async () => {
|
|
await page.clickSharedFilesAndWait();
|
|
await dataTable.selectItem(file2Shared);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
|
|
expect(await shareDialog.isShareToggleDisabled()).toBe(false, 'Share toggle disabled for consumer');
|
|
|
|
await shareDialog.shareToggle.click();
|
|
await confirmDialog.removeButton.click();
|
|
await confirmDialog.waitForDialogToClose();
|
|
await shareDialog.waitForDialogToClose();
|
|
|
|
expect(await shareDialog.isDialogOpen()).toBe(false, 'Share dialog open');
|
|
expect(await apis.user.nodes.isFileShared(file2SharedId)).toBe(false, `${file2Shared} is shared`);
|
|
});
|
|
|
|
it('[C286697] on Favorites - file shared by other user', async () => {
|
|
await page.clickFavoritesAndWait();
|
|
await dataTable.selectItem(file1Fav);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
|
|
expect(await shareDialog.isShareToggleDisabled()).toBe(false, 'Share toggle disabled for consumer');
|
|
|
|
await shareDialog.shareToggle.click();
|
|
await confirmDialog.removeButton.click();
|
|
|
|
const msg = await page.getSnackBarMessage();
|
|
expect(msg).toContain(`You don't have permission to unshare this file`);
|
|
});
|
|
|
|
it('[C286703] on Favorites - file shared by the user', async () => {
|
|
await page.clickFavoritesAndWait();
|
|
await dataTable.selectItem(file2Fav);
|
|
await toolbar.shareEditButton.click();
|
|
await shareDialog.waitForDialogToOpen();
|
|
|
|
expect(await shareDialog.isShareToggleDisabled()).toBe(false, 'Share toggle disabled for consumer');
|
|
|
|
await shareDialog.shareToggle.click();
|
|
await confirmDialog.removeButton.click();
|
|
await confirmDialog.waitForDialogToClose();
|
|
await shareDialog.waitForDialogToClose();
|
|
|
|
expect(await shareDialog.isDialogOpen()).toBe(false, 'Share dialog open');
|
|
expect(await apis.user.nodes.isFileShared(file2FavId)).toBe(false, `${file2Fav} is shared`);
|
|
});
|
|
});
|
|
});
|