/*! * Copyright © 2005-2023 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, InfoDrawer, Utils, click } from '@alfresco/aca-testing-shared'; describe('Comments', () => { const username = `user1-${Utils.random()}`; const parent = `parent-${Utils.random()}`; let parentId: string; const file1 = `file1-${Utils.random()}.txt`; const folder1 = `folder1-${Utils.random()}`; const folder2 = `folder2-${Utils.random()}`; let folder2Id: string; const fileWith1Comment = `file1Comment-${Utils.random()}.txt`; let fileWith1CommentId: string; const fileWith2Comments = `file2Comments-${Utils.random()}.txt`; let fileWith2CommentsId: string; const file2Personal = `file2Personal-${Utils.random()}.txt`; const file2Shared = `file2Shared-${Utils.random()}.txt`; let file2SharedId: string; const file2Recent = `file2Recent-${Utils.random()}.txt`; const file2Favorites = `file2Favorites-${Utils.random()}.txt`; let file2FavoritesId: string; let commentFile1Entry: any; let comment1File2Entry: any; let comment2File2Entry: any; const apis = { user: new RepoClient(username, username) }; const infoDrawer = new InfoDrawer(); const { commentsTab } = infoDrawer; const loginPage = new LoginPage(); const page = new BrowsingPage(); const { dataTable } = page; const adminApiActions = new AdminActions(); const userActions = new UserActions(); beforeAll(async () => { await adminApiActions.createUser({ username }); parentId = (await apis.user.nodes.createFolder(parent)).entry.id; await apis.user.nodes.createFile(file1, parentId); await apis.user.nodes.createFile(file2Personal, parentId); await apis.user.nodes.createFile(file2Recent, parentId); file2SharedId = (await apis.user.nodes.createFile(file2Shared, parentId)).entry.id; file2FavoritesId = (await apis.user.nodes.createFile(file2Favorites, parentId)).entry.id; fileWith1CommentId = (await apis.user.nodes.createFile(fileWith1Comment, parentId)).entry.id; fileWith2CommentsId = (await apis.user.nodes.createFile(fileWith2Comments, parentId)).entry.id; await userActions.login(username, username); comment1File2Entry = await userActions.createComment(fileWith2CommentsId, 'first comment'); comment2File2Entry = await userActions.createComment(fileWith2CommentsId, 'second comment'); await apis.user.shared.shareFilesByIds([file2SharedId, fileWith1CommentId, fileWith2CommentsId]); await apis.user.shared.waitForFilesToBeShared([file2SharedId, fileWith1CommentId, fileWith2CommentsId]); await apis.user.favorites.addFavoritesByIds('file', [file2FavoritesId, fileWith1CommentId, fileWith2CommentsId]); await apis.user.nodes.createFolder(folder1, parentId); folder2Id = (await apis.user.nodes.createFolder(folder2, parentId)).entry.id; await apis.user.favorites.addFavoriteById('folder', folder2Id); await loginPage.loginWith(username); }); afterAll(async () => { await userActions.login(username, username); await userActions.deleteNodes([parentId]); }); afterEach(async () => { await page.clickPersonalFiles(); }); describe('from Personal Files', () => { beforeEach(async () => { await page.clickPersonalFilesAndWait(); await dataTable.doubleClickOnRowByName(parent); }); it('[C299173] Comments tab default fields', async () => { await dataTable.selectItem(file1); await click(page.toolbar.viewDetailsButton); await infoDrawer.waitForInfoDrawerToOpen(); await infoDrawer.clickCommentsTab(); expect(await infoDrawer.getActiveTabTitle()).toBe('Comments'); expect(await commentsTab.getCommentsTabHeaderText()).toBe('Comments (0)'); expect(await commentsTab.isCommentTextAreaDisplayed()).toBe(true, 'Comment field not present'); expect(await commentsTab.isAddCommentButtonEnabled()).toBe(false, 'Add comment button not disabled'); }); }); describe('from Favorites', () => { beforeAll(async () => { await apis.user.favorites.waitForApi({ expect: 4 }); }); beforeEach(async () => { await page.clickFavoritesAndWait(); }); it('[C299209] Add a comment on a folder', async () => { const myComment = 'my comment'; await dataTable.selectItem(folder2); await click(page.toolbar.viewDetailsButton); await infoDrawer.waitForInfoDrawerToOpen(); await infoDrawer.clickCommentsTab(); await commentsTab.typeComment(myComment); await commentsTab.clickAddButton(); expect(await commentsTab.getCommentsTabHeaderText()).toBe('Comments (1)'); expect(await commentsTab.isCommentDisplayed()).toBe(true, `Comment not displayed`); expect(await commentsTab.getCommentText()).toBe(myComment, 'Incorrect comment text'); }); }); describe('from Shared Files', () => { beforeEach(async () => { await page.clickSharedFilesAndWait(); }); it('[C299189] Comments are displayed ordered by created date in descending order', async () => { await dataTable.selectItem(fileWith2Comments); await click(page.toolbar.viewDetailsButton); await infoDrawer.waitForInfoDrawerToOpen(); await infoDrawer.clickCommentsTab(); expect(await commentsTab.getNthCommentText(1)).toContain(comment2File2Entry.content); expect(await commentsTab.getNthCommentText(2)).toContain(comment1File2Entry.content); }); }); describe('from Recent Files', () => { beforeAll(async () => { await apis.user.search.waitForApi(username, { expect: 7 }); }); beforeEach(async () => { await page.clickRecentFilesAndWait(); }); it('[C299195] Add a comment on a file', async () => { const myComment = 'my comment'; await dataTable.selectItem(file2Recent); await click(page.toolbar.viewDetailsButton); await infoDrawer.waitForInfoDrawerToOpen(); await infoDrawer.clickCommentsTab(); await commentsTab.typeComment(myComment); await commentsTab.clickAddButton(); expect(await commentsTab.getCommentsTabHeaderText()).toBe('Comments (1)'); expect(await commentsTab.isCommentDisplayed()).toBe(true, `Comment not displayed`); expect(await commentsTab.getCommentText()).toBe(myComment, 'Incorrect comment text'); }); }); describe('Comment info display', () => { beforeAll(async () => { await userActions.login(username, username); commentFile1Entry = await userActions.createComment(fileWith1CommentId, 'this is my comment'); await apis.user.favorites.waitForApi({ expect: 4 }); await apis.user.search.waitForApi(username, { expect: 7 }); }); it('[C299196] File from Favorites', async () => { await page.clickFavoritesAndWait(); await dataTable.selectItem(fileWith1Comment); await click(page.toolbar.viewDetailsButton); await infoDrawer.waitForInfoDrawerToOpen(); await infoDrawer.clickCommentsTab(); expect(await commentsTab.getCommentsTabHeaderText()).toBe('Comments (1)'); expect(await commentsTab.isCommentTextAreaDisplayed()).toBe(true, 'Comment field not present'); expect(await commentsTab.isAddCommentButtonEnabled()).toBe(false, 'Add comment button not disabled'); expect(await commentsTab.isCommentDisplayed()).toBe(true, `Comment is not displayed`); expect(await commentsTab.getCommentText()).toBe(commentFile1Entry.content, 'Incorrect comment text'); expect(await commentsTab.getCommentUserName()).toBe(`${username} ${username}`, 'Incorrect comment user'); expect(await commentsTab.getCommentTime()).toBe('less than a minute ago', 'Incorrect comment created time'); expect(await commentsTab.isCommentUserAvatarDisplayed()).toBe(true, 'User avatar not displayed'); }); }); });