/*! * @license * Alfresco Example Content Application * * Copyright (C) 2005 - 2018 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 . */ import { SITE_VISIBILITY, SITE_ROLES } from '../../configs'; import { LoginPage, BrowsingPage } from '../../pages/pages'; import { Utils } from '../../utilities/utils'; import { RepoClient } from '../../utilities/repo-client/repo-client'; describe('Shared Files', () => { const username = `user-${Utils.random()}`; const password = username; const siteName = `site-${Utils.random()}`; const fileAdmin = `fileSite-${Utils.random()}.txt`; const folderUser = `folder-${Utils.random()}`; let folderId; const file1User = `file1-${Utils.random()}.txt`; let file1Id; const file2User = `file2-${Utils.random()}.txt`; let file2Id; const file3User = `file3-${Utils.random()}.txt`; let file3Id; const file4User = `file4-${Utils.random()}.txt`; let file4Id; const apis = { admin: new RepoClient(), user: new RepoClient(username, password) }; const loginPage = new LoginPage(); const page = new BrowsingPage(); const { dataTable, breadcrumb } = page; beforeAll(async (done) => { await apis.admin.people.createUser({ username }); await apis.admin.sites.createSite(siteName, SITE_VISIBILITY.PUBLIC); await apis.admin.sites.addSiteMember(siteName, username, SITE_ROLES.SITE_CONSUMER.ROLE); const docLibId = await apis.admin.sites.getDocLibId(siteName); const nodeId = (await apis.admin.nodes.createFile(fileAdmin, docLibId)).entry.id; await apis.admin.shared.shareFileById(nodeId); folderId = (await apis.user.nodes.createFolder(folderUser)).entry.id; file1Id = (await apis.user.nodes.createFile(file1User, folderId)).entry.id; file2Id = (await apis.user.nodes.createFile(file2User)).entry.id; file3Id = (await apis.user.nodes.createFile(file3User)).entry.id; file4Id = (await apis.user.nodes.createFile(file4User)).entry.id; await apis.user.shared.shareFilesByIds([file1Id, file2Id, file3Id, file4Id]); await apis.admin.shared.waitForApi({ expect: 5 }); await apis.user.nodes.deleteNodeById(file2Id); await apis.user.shared.unshareFile(file3User); await apis.admin.shared.waitForApi({ expect: 3 }); await loginPage.loginWith(username); done(); }); beforeEach(async (done) => { await page.clickSharedFilesAndWait(); done(); }); afterAll(async (done) => { await apis.admin.sites.deleteSite(siteName); await apis.user.nodes.deleteNodeById(folderId); await apis.user.nodes.deleteNodeById(file4Id); done(); }); it('has the correct columns - [C213113]', async () => { const expectedHeader = [ 'Thumbnail', 'Name', 'Location', 'Size', 'Modified', 'Modified by', 'Shared by' ]; const headers = dataTable.getColumnHeaders(); const count = await headers.count(); expect(count).toBe(6 + 1, 'Incorrect number of columns'); expect(await dataTable.getHeaderText()).toEqual(expectedHeader); }); it('default sorting column - [C213115]', async () => { expect(await dataTable.getSortedColumnHeaderText()).toBe('Modified'); expect(await dataTable.getSortingOrder()).toBe('desc'); }); it('displays the files shared by everyone - [C213114]', async () => { expect(await dataTable.isItemPresent(fileAdmin)).toBe(true, `${fileAdmin} not displayed`); expect(await dataTable.isItemPresent(file1User)).toBe(true, `${file1User} not displayed`); }); it(`file not displayed if it's been deleted - [C213117]`, async () => { expect(await dataTable.isItemPresent(file2User)).toBe(false, `${file2User} is displayed`); }); it('unshared file is not displayed - [C213118]', async () => { expect(await dataTable.isItemPresent(file3User)).toBe(false, `${file3User} is displayed`); }); it('Location column displays the parent folder of the file - [C213665]', async () => { expect(await dataTable.getItemLocationTooltip(file4User)).toEqual('Personal Files'); expect(await dataTable.getItemLocation(fileAdmin)).toEqual(siteName); expect(await dataTable.getItemLocation(file1User)).toEqual(folderUser); }); it('Location column redirect - file in user Home - [C213666]', async () => { await dataTable.clickItemLocation(file4User); expect(await breadcrumb.getAllItems()).toEqual([ 'Personal Files' ]); }); it('Location column redirect - file in folder - [C280490]', async () => { await dataTable.clickItemLocation(file1User); expect(await breadcrumb.getAllItems()).toEqual([ 'Personal Files', folderUser ]); }); it('Location column redirect - file in site - [C280491]', async () => { await dataTable.clickItemLocation(fileAdmin); expect(await breadcrumb.getAllItems()).toEqual([ 'My Libraries', siteName ]); }); it('Location column displays a tooltip with the entire path of the file - [C213667]', async () => { expect(await dataTable.getItemLocationTooltip(fileAdmin)).toEqual(`File Libraries/${siteName}`); expect(await dataTable.getItemLocationTooltip(file1User)).toEqual(`Personal Files/${folderUser}`); }); });