mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* remove useless locale * remove useless id values, update tests * code cleanup * fix formatting * css cleanup * code cleanup * style cleanup * fix css scope * cleanup styles * remove sanitise and don't bind to innerHTML * reduce ng-container * move model specific logic to Comment Model * update tests, remove sanitise tests * drop carma coverage to 72 as code removed * drop selection animation as selection operations are not supported by the component itself * cleanup css * fix tests and lint * update stories and tests * fix line breaks * move e2e to unit test * disable search tests * disable search tests * disable search tests
197 lines
7.6 KiB
TypeScript
197 lines
7.6 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { createApiService,
|
|
LoginPage,
|
|
StringUtil,
|
|
UploadActions,
|
|
UserModel,
|
|
UsersActions,
|
|
ViewerPage
|
|
} from '@alfresco/adf-testing';
|
|
import { ContentServicesPage } from '../../core/pages/content-services.page';
|
|
import { CommentsPage } from '../../core/pages/comments.page';
|
|
import { NavigationBarPage } from '../../core/pages/navigation-bar.page';
|
|
import { FileModel } from '../../models/ACS/file.model';
|
|
import { browser } from 'protractor';
|
|
import CONSTANTS = require('../../util/constants');
|
|
import { SitesApi, SiteEntry, CommentsApi } from '@alfresco/js-api';
|
|
|
|
describe('Comment', () => {
|
|
const loginPage = new LoginPage();
|
|
const contentServicesPage = new ContentServicesPage();
|
|
const viewerPage = new ViewerPage();
|
|
const commentsPage = new CommentsPage();
|
|
const navigationBarPage = new NavigationBarPage();
|
|
|
|
const apiService = createApiService();
|
|
const commentsApi = new CommentsApi(apiService.getInstance());
|
|
|
|
let userFullName: string;
|
|
let nodeId: string;
|
|
let acsUser: UserModel;
|
|
|
|
const pngFileModel = new FileModel({
|
|
name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
|
|
location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
|
|
});
|
|
|
|
const uploadActions = new UploadActions(apiService);
|
|
const usersActions = new UsersActions(apiService);
|
|
|
|
const comments = {
|
|
first: 'This is a comment',
|
|
multiline: 'This is a comment\n' + 'with a new line',
|
|
second: 'This is another comment',
|
|
test: 'Test'
|
|
};
|
|
|
|
beforeAll(async () => {
|
|
await apiService.loginWithProfile('admin');
|
|
acsUser = await usersActions.createUser();
|
|
});
|
|
|
|
describe('component', () => {
|
|
|
|
beforeEach(async () => {
|
|
await apiService.login(acsUser.username, acsUser.password);
|
|
|
|
const pngUploadedFile = await uploadActions.uploadFile(pngFileModel.location, pngFileModel.name, '-my-');
|
|
|
|
nodeId = pngUploadedFile.entry.id;
|
|
|
|
userFullName = pngUploadedFile.entry.createdByUser.displayName;
|
|
|
|
await loginPage.login(acsUser.username, acsUser.password);
|
|
|
|
await navigationBarPage.navigateToContentServices();
|
|
await contentServicesPage.waitForTableBody();
|
|
});
|
|
|
|
afterEach(async () => {
|
|
await apiService.loginWithProfile('admin');
|
|
await uploadActions.deleteFileOrFolder(nodeId);
|
|
await navigationBarPage.clickLogoutButton();
|
|
});
|
|
|
|
it('[C276947] Should be able to add a comment on ACS and view on ADF', async () => {
|
|
await commentsApi.createComment(nodeId, { content: comments.test });
|
|
|
|
await viewerPage.viewFile(pngFileModel.name);
|
|
|
|
await viewerPage.clickInfoButton();
|
|
await viewerPage.checkInfoSideBarIsDisplayed();
|
|
|
|
await commentsPage.checkCommentsTabIsSelected();
|
|
await commentsPage.checkCommentInputIsDisplayed();
|
|
|
|
await commentsPage.getTotalNumberOfComments('Comments (1)');
|
|
await expect(await commentsPage.getMessage(0)).toEqual(comments.test);
|
|
await expect(await commentsPage.getUserName(0)).toEqual(userFullName);
|
|
await expect(await commentsPage.getTime(0)).toMatch(/(ago|few)/);
|
|
});
|
|
|
|
it('[C276948] Should be able to add a comment on a file', async () => {
|
|
await viewerPage.viewFile(pngFileModel.name);
|
|
|
|
await viewerPage.clickInfoButton();
|
|
await viewerPage.checkInfoSideBarIsDisplayed();
|
|
await viewerPage.clickOnCommentsTab();
|
|
|
|
await commentsPage.addComment(comments.first);
|
|
await commentsPage.checkUserIconIsDisplayed();
|
|
|
|
await commentsPage.getTotalNumberOfComments('Comments (1)');
|
|
await expect(await commentsPage.getMessage(0)).toEqual(comments.first);
|
|
await expect(await commentsPage.getUserName(0)).toEqual(userFullName);
|
|
await expect(await commentsPage.getTime(0)).toMatch(/(ago|few)/);
|
|
});
|
|
|
|
it('[C280021] Should be able to add a multiline comment on a file', async () => {
|
|
await viewerPage.viewFile(pngFileModel.name);
|
|
|
|
await viewerPage.clickInfoButton();
|
|
await viewerPage.checkInfoSideBarIsDisplayed();
|
|
await viewerPage.clickOnCommentsTab();
|
|
|
|
await commentsPage.addComment(comments.multiline);
|
|
await commentsPage.checkUserIconIsDisplayed();
|
|
|
|
await commentsPage.getTotalNumberOfComments('Comments (1)');
|
|
await expect(await commentsPage.getMessage(0)).toEqual(comments.multiline);
|
|
await expect(await commentsPage.getUserName(0)).toEqual(userFullName);
|
|
await expect(await commentsPage.getTime(0)).toMatch(/(ago|few)/);
|
|
|
|
await commentsPage.addComment(comments.second);
|
|
await commentsPage.checkUserIconIsDisplayed();
|
|
|
|
await commentsPage.getTotalNumberOfComments('Comments (2)');
|
|
await expect(await commentsPage.getMessage(0)).toEqual(comments.second);
|
|
await expect(await commentsPage.getUserName(0)).toEqual(userFullName);
|
|
await expect(await commentsPage.getTime(0)).toMatch(/(ago|few)/);
|
|
});
|
|
});
|
|
|
|
describe('Consumer Permissions', () => {
|
|
let site: SiteEntry;
|
|
let pngUploadedFile;
|
|
|
|
beforeAll(async () => {
|
|
await apiService.loginWithProfile('admin');
|
|
|
|
const sitesApi = new SitesApi(apiService.getInstance());
|
|
site = await sitesApi.createSite({
|
|
title: StringUtil.generateRandomString(8),
|
|
visibility: 'PUBLIC'
|
|
});
|
|
|
|
await sitesApi.createSiteMembership(site.entry.id, {
|
|
id: acsUser.username,
|
|
role: CONSTANTS.CS_USER_ROLES.CONSUMER
|
|
});
|
|
|
|
pngUploadedFile = await uploadActions.uploadFile(pngFileModel.location, pngFileModel.name, site.entry.guid);
|
|
|
|
await loginPage.login(acsUser.username, acsUser.password);
|
|
|
|
await navigationBarPage.navigateToContentServices();
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await apiService.loginWithProfile('admin');
|
|
await uploadActions.deleteFileOrFolder(pngUploadedFile.entry.id);
|
|
|
|
const sitesApi = new SitesApi(apiService.getInstance());
|
|
await sitesApi.deleteSite(site.entry.id, { permanent: true });
|
|
});
|
|
|
|
it('[C290147] Should NOT be able to add comments to a site file with Consumer permissions', async () => {
|
|
await navigationBarPage.goToSite(site);
|
|
await contentServicesPage.checkAcsContainer();
|
|
|
|
await viewerPage.viewFile(pngUploadedFile.entry.name);
|
|
await viewerPage.checkInfoButtonIsDisplayed();
|
|
await viewerPage.clickInfoButton();
|
|
await viewerPage.checkInfoSideBarIsDisplayed();
|
|
|
|
await commentsPage.checkCommentsTabIsSelected();
|
|
await commentsPage.checkCommentInputIsNotDisplayed();
|
|
await viewerPage.clickCloseButton();
|
|
});
|
|
});
|
|
});
|