diff --git a/e2e/playwright/search/src/tests/search-input.spec.ts b/e2e/playwright/search/src/tests/search-input.spec.ts new file mode 100644 index 0000000000..728c12ff6b --- /dev/null +++ b/e2e/playwright/search/src/tests/search-input.spec.ts @@ -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 . + */ + +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(); + }); +}); diff --git a/projects/aca-playwright-shared/src/page-objects/components/search/search-overlay.components.ts b/projects/aca-playwright-shared/src/page-objects/components/search/search-overlay.components.ts index ed32e68c25..abef45127d 100644 --- a/projects/aca-playwright-shared/src/page-objects/components/search/search-overlay.components.ts +++ b/projects/aca-playwright-shared/src/page-objects/components/search/search-overlay.components.ts @@ -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);