ACS-6796 Search results files&folders tests migration to Playwright (#3691)

* Migrated tests for Search - files & folders
This commit is contained in:
Katarzyna Kita 2024-03-11 11:16:44 +01:00 committed by GitHub
parent 789d07d59f
commit b5d2193416
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 91 additions and 0 deletions

View File

@ -0,0 +1,81 @@
/*!
* 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 { expect } from '@playwright/test';
import { ApiClientFactory, Utils, test, TrashcanApi, NodesApi } from '@alfresco/playwright-shared';
test.describe('Search results - files and folders', () => {
let nodesApi: NodesApi;
let trashcanApi: TrashcanApi;
const random = Utils.random();
const username = `user-${random}`;
test.beforeAll(async () => {
try {
const apiClientFactory = new ApiClientFactory();
await apiClientFactory.setUpAcaBackend('admin');
await apiClientFactory.createUser({ username });
nodesApi = await NodesApi.initialize(username, username);
trashcanApi = await TrashcanApi.initialize(username, username);
} catch (error) {
console.error(`beforeAll failed: ${error}`);
}
});
test.beforeEach(async ({ loginPage }) => {
await Utils.tryLoginUser(loginPage, username, username, 'beforeEach failed');
});
test.afterAll(async () => {
await Utils.deleteNodesSitesEmptyTrashcan(nodesApi, trashcanApi, 'afterAll failed');
});
test('[C290029] Search file with special characters', async ({ searchPage }) => {
const fileRussian = `любимый-сайт-${random}`;
await nodesApi.createFile(fileRussian);
await searchPage.acaHeader.searchButton.click();
await searchPage.searchInput.searchButton.click();
await searchPage.searchInput.checkFilesAndFolders();
await searchPage.searchInput.searchFor(fileRussian);
await searchPage.dataTable.progressBarWaitForReload();
await expect(searchPage.dataTable.getRowByName(fileRussian)).toBeVisible();
});
test('[C279177] Location column redirect - file in user Home', async ({ searchPage, personalFiles }) => {
const file = `test-file-${random}.txt`;
const fileTitle = 'file title';
const fileDescription = 'file description';
await nodesApi.createFile(file, '-my-', fileTitle, fileDescription);
await searchPage.acaHeader.searchButton.click();
await searchPage.searchInput.searchButton.click();
await searchPage.searchInput.checkFilesAndFolders();
await searchPage.searchInput.searchFor(file);
await searchPage.dataTable.progressBarWaitForReload();
await searchPage.dataTable.clickItemLocation(file);
expect((await personalFiles.breadcrumb.items.textContent()).trim()).toEqual('Personal Files');
});
});

View File

@ -29,6 +29,7 @@ import { timeouts } from '../../utils';
export abstract class BaseComponent extends PlaywrightBase {
private readonly rootElement: string;
private overlayElement = this.page.locator('.cdk-overlay-backdrop-showing');
private progressBar = this.page.locator('mat-progress-bar');
protected constructor(page: Page, rootElement: string) {
super(page);
@ -62,4 +63,13 @@ export abstract class BaseComponent extends PlaywrightBase {
this.logger.info('Spinner was not present');
}
}
async progressBarWaitForReload(): Promise<void> {
try {
await this.progressBar.waitFor({ state: 'visible', timeout: timeouts.medium });
await this.progressBar.waitFor({ state: 'hidden', timeout: timeouts.normal });
} catch (e) {
this.logger.info('Progress bar was not present');
}
}
}