mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
* [ACS-9297] [E2E] Authentication and List Views updated * [ACS-9297] navigation tests IDs updated * [ACS-9297] updated pagination IDs * [ACS-9297] updated download actions ids * [ACS-9297] Updated upload-download actions IDs & changed the location of viewer-version-actions tests to match XRAY * [ACS-9297] updated copy-move-actions IDs * [ACS-9297] Updated delete-actions IDs * [ACS-9297] updated create-actions IDs * [ACS-9297] Updated library-actions IDs * [ACS_9297] Updated share IDs * [ACS-9297] Special Permissions Updated IDs * [ACS-9297] Updated viewer IDs * [ACS-9297] Updated comments IDs * [ACS-9297] Updated Search IDs * [ACS-9297] Updated the remaning IDs * [ACS-9297] one tests excluded one duplicated deleted * [ACS-9297] fixing rebase mistakes 1
92 lines
4.2 KiB
TypeScript
92 lines
4.2 KiB
TypeScript
/*!
|
|
* Copyright © 2005-2025 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 { expect } from '@playwright/test';
|
|
import { ApiClientFactory, TrashcanApi, NodesApi, SitesApi, test, Utils } from '@alfresco/aca-playwright-shared';
|
|
|
|
test.describe('Single click on item name', () => {
|
|
let nodesApi: NodesApi;
|
|
let trashcanApi: TrashcanApi;
|
|
const username = `user-${Utils.random()}`;
|
|
const folder1 = `folder1-${Utils.random()}`;
|
|
const folderSearch = `folder1-${Utils.random()}`;
|
|
|
|
const deletedFile1 = `file1-${Utils.random()}.txt`;
|
|
const deletedFolder1 = `folder1-${Utils.random()}`;
|
|
|
|
const siteName = `site-single-${Utils.random()}`;
|
|
const fileSite = `fileSite-${Utils.random()}.txt`;
|
|
|
|
test.beforeAll(async () => {
|
|
const apiClientFactory = new ApiClientFactory();
|
|
await apiClientFactory.setUpAcaBackend('admin');
|
|
await apiClientFactory.createUser({ username });
|
|
nodesApi = await NodesApi.initialize(username, username);
|
|
trashcanApi = await TrashcanApi.initialize(username, username);
|
|
const siteActions = await SitesApi.initialize(username, username);
|
|
await nodesApi.createFolder(folder1);
|
|
await nodesApi.createFolder(folderSearch);
|
|
await nodesApi.createFile(deletedFile1);
|
|
await nodesApi.createFolder(deletedFolder1);
|
|
|
|
await siteActions.createSite(siteName);
|
|
const docLibId = await siteActions.getDocLibId(siteName);
|
|
await nodesApi.createFile(fileSite, docLibId);
|
|
});
|
|
|
|
test.beforeEach(async ({ loginPage }) => {
|
|
await Utils.tryLoginUser(loginPage, username, username, 'beforeEach failed');
|
|
});
|
|
|
|
test.afterAll(async () => {
|
|
await Utils.deleteNodesSitesEmptyTrashcan(nodesApi, trashcanApi, 'afterAll failed');
|
|
});
|
|
|
|
test('[XAT-4894] Hyperlink does not appear for items in the Trash', async ({ trashPage }) => {
|
|
await trashPage.navigate();
|
|
await expect(trashPage.dataTable.getCellLinkByName(deletedFile1), 'Link on name is present').toBeHidden();
|
|
await expect(trashPage.dataTable.getCellLinkByName(deletedFolder1), 'Link on name is present').toBeHidden();
|
|
});
|
|
|
|
test('[XAT-4897] Navigate inside the folder when clicking the hyperlink - on Personal Files', async ({ personalFiles }) => {
|
|
await personalFiles.navigate();
|
|
await personalFiles.dataTable.setPaginationTo50();
|
|
await personalFiles.dataTable.getCellLinkByName(folder1).click();
|
|
await personalFiles.dataTable.spinnerWaitForReload();
|
|
while ((await personalFiles.breadcrumb.currentItem.innerText()) === 'Personal Files') {
|
|
await personalFiles.breadcrumb.currentItem.innerText();
|
|
}
|
|
await expect(personalFiles.breadcrumb.currentItem).toHaveText(folder1);
|
|
});
|
|
|
|
test('[XAT-4899] Navigate inside the library when clicking the hyperlink', async ({ myLibrariesPage }) => {
|
|
await myLibrariesPage.navigate();
|
|
await myLibrariesPage.dataTable.goThroughPagesLookingForRowWithName(siteName);
|
|
await myLibrariesPage.dataTable.getCellLinkByName(siteName).click();
|
|
await myLibrariesPage.dataTable.spinnerWaitForReload();
|
|
await expect(myLibrariesPage.breadcrumb.currentItem).toHaveText(siteName);
|
|
await expect(myLibrariesPage.dataTable.getCellLinkByName(fileSite), `${fileSite} not displayed`).toBeVisible();
|
|
});
|
|
});
|