mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
[ACS-6795] Search Input tests migrated to Playwright (#3675)
* Added Playwright tests for search - input
This commit is contained in:
parent
3fe3746dfe
commit
73726a8d39
97
e2e/playwright/search/src/tests/search-input.spec.ts
Normal file
97
e2e/playwright/search/src/tests/search-input.spec.ts
Normal file
@ -0,0 +1,97 @@
|
||||
/*!
|
||||
* 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 } from '@alfresco/playwright-shared';
|
||||
|
||||
test.describe('Search - Input', () => {
|
||||
const username = `user1-${Utils.random()}`;
|
||||
|
||||
test.beforeAll(async () => {
|
||||
try {
|
||||
const apiClientFactory = new ApiClientFactory();
|
||||
await apiClientFactory.setUpAcaBackend('admin');
|
||||
await apiClientFactory.createUser({ username });
|
||||
} catch (error) {
|
||||
console.error(`beforeAll failed: ${error}`);
|
||||
}
|
||||
});
|
||||
|
||||
test.beforeEach(async ({ loginPage }) => {
|
||||
try {
|
||||
await loginPage.loginUser({ username, password: username }, { withNavigation: true, waitForLoading: true });
|
||||
} catch (error) {
|
||||
console.error(`beforeEach failed: ${error}`);
|
||||
}
|
||||
});
|
||||
|
||||
test('[C289847] Search icon is displayed in toolbar and clicking on it displays search input container', async ({ searchPage }) => {
|
||||
await searchPage.acaHeader.searchButton.click();
|
||||
await searchPage.searchInput.searchButton.click();
|
||||
|
||||
await expect(searchPage.searchOverlay.searchInputControl).toBeVisible();
|
||||
});
|
||||
|
||||
test('[C289848] Search options are displayed when clicking in the search input', async ({ searchPage }) => {
|
||||
await searchPage.acaHeader.searchButton.click();
|
||||
await searchPage.searchInput.searchButton.click();
|
||||
|
||||
await expect(searchPage.searchOverlay.searchOptions).toBeVisible();
|
||||
await expect(searchPage.searchOverlay.searchFilesOption).toBeEnabled();
|
||||
await expect(searchPage.searchOverlay.searchFoldersOption).toBeEnabled();
|
||||
await expect(searchPage.searchOverlay.searchLibrariesOption).toBeEnabled();
|
||||
await expect(searchPage.searchOverlay.searchFilesOption).not.toBeChecked();
|
||||
await expect(searchPage.searchOverlay.searchFoldersOption).not.toBeChecked();
|
||||
await expect(searchPage.searchOverlay.searchLibrariesOption).not.toBeChecked();
|
||||
});
|
||||
|
||||
test('[C289849] Search options are correctly enabled / disabled', async ({ searchPage }) => {
|
||||
await searchPage.acaHeader.searchButton.click();
|
||||
await searchPage.searchInput.searchButton.click();
|
||||
|
||||
await searchPage.searchOverlay.searchFilesOption.click();
|
||||
await expect(searchPage.searchOverlay.searchFoldersOption).toBeEnabled();
|
||||
await expect(searchPage.searchOverlay.searchLibrariesOption).not.toBeEnabled();
|
||||
|
||||
await searchPage.searchOverlay.searchFilesOption.click();
|
||||
await expect(searchPage.searchOverlay.searchFoldersOption).toBeEnabled();
|
||||
await expect(searchPage.searchOverlay.searchLibrariesOption).toBeEnabled();
|
||||
|
||||
await searchPage.searchOverlay.searchFoldersOption.click();
|
||||
await expect(searchPage.searchOverlay.searchFilesOption).toBeEnabled();
|
||||
await expect(searchPage.searchOverlay.searchLibrariesOption).not.toBeEnabled();
|
||||
|
||||
await searchPage.searchOverlay.searchFoldersOption.click();
|
||||
await expect(searchPage.searchOverlay.searchFilesOption).toBeEnabled();
|
||||
await expect(searchPage.searchOverlay.searchLibrariesOption).toBeEnabled();
|
||||
|
||||
await searchPage.searchOverlay.searchLibrariesOption.click();
|
||||
await expect(searchPage.searchOverlay.searchFilesOption).not.toBeEnabled();
|
||||
await expect(searchPage.searchOverlay.searchFoldersOption).not.toBeEnabled();
|
||||
|
||||
await searchPage.searchOverlay.searchLibrariesOption.click();
|
||||
await expect(searchPage.searchOverlay.searchFilesOption).toBeEnabled();
|
||||
await expect(searchPage.searchOverlay.searchFoldersOption).toBeEnabled();
|
||||
});
|
||||
});
|
@ -33,6 +33,8 @@ export class SearchOverlayComponent extends BaseComponent {
|
||||
public searchLibrariesOption = this.getChild('label[for="libraries-input"]');
|
||||
public searchInput = this.getChild('input[id="app-control-input"]');
|
||||
public searchButton = this.getChild('.app-search-button');
|
||||
public searchInputControl = this.page.locator('.app-search-control');
|
||||
public searchOptions = this.page.locator('#search-options');
|
||||
|
||||
constructor(page: Page, rootElement = SearchOverlayComponent.rootElement) {
|
||||
super(page, rootElement);
|
||||
|
Loading…
x
Reference in New Issue
Block a user