-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ACS-7466] [E2E] Added e2e tests for search highlighting
- Loading branch information
1 parent
796a3c7
commit 18afe1f
Showing
2 changed files
with
95 additions
and
0 deletions.
There are no files selected for viewing
80 changes: 80 additions & 0 deletions
80
e2e/playwright/search/src/tests/search-highlighting.e2e.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/*! | ||
* Copyright © 2005-2024 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, NodesApi, TrashcanApi, TEST_FILES, FileActionsApi } from '@alfresco/aca-playwright-shared'; | ||
|
||
test.describe('Search Highlighting', () => { | ||
let nodesApi: NodesApi; | ||
let trashcanApi: TrashcanApi; | ||
let fileActionsApi: FileActionsApi; | ||
const randomId = Utils.random(); | ||
const username = `user-${randomId}`; | ||
const fileNameHighlight = `${randomId}-file-name.jpg`; | ||
const fileDescriptionHighlight = `${randomId}-file-description.jpg`; | ||
const fileDescription = `highlight`; | ||
const fileContentHighlight = `${randomId}-file-content.pdf`; | ||
const fileContent = 'TEXT:Virtual'; | ||
|
||
test.beforeEach(async ({ loginPage }) => { | ||
await Utils.tryLoginUser(loginPage, username, username, 'beforeEach failed'); | ||
}); | ||
|
||
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); | ||
fileActionsApi = await FileActionsApi.initialize(username, username); | ||
await nodesApi.createFile(fileNameHighlight, '-my-'); | ||
await nodesApi.createFile(fileDescriptionHighlight, '-my-', null, fileDescription); | ||
await fileActionsApi.uploadFileWithRename(TEST_FILES.PDF.path, fileContentHighlight); | ||
} catch (error) { | ||
console.error(`beforeAll failed: ${error}`); | ||
} | ||
}); | ||
|
||
test.afterAll(async () => { | ||
await Utils.deleteNodesSitesEmptyTrashcan(nodesApi, trashcanApi, 'afterAll failed'); | ||
}); | ||
|
||
test('[XAT-17119] Matching phrases should be highlighted in the file name for search results', async ({ searchPage }) => { | ||
await searchPage.searchWithin(fileNameHighlight, 'files'); | ||
expect(await searchPage.dataTable.hasHighlightedText('name')).toBeTruthy(); | ||
}); | ||
|
||
test('[XAT-17120] Matching phrases should be highlighted in the file description for search results', async ({ searchPage }) => { | ||
await searchPage.searchWithin(fileDescription, 'files'); | ||
expect(await searchPage.dataTable.hasHighlightedText('description')).toBeTruthy(); | ||
expect(await searchPage.dataTable.hasHighlightedText('name')).toBeFalsy(); | ||
}); | ||
|
||
test('[XAT-17121] Matching phrases should be highlighted in the file content for search results', async ({ searchPage }) => { | ||
await searchPage.searchWithin(fileContent, 'files'); | ||
expect(await searchPage.dataTable.hasHighlightedText('content')).toBeTruthy(); | ||
expect(await searchPage.dataTable.hasHighlightedText('name')).toBeFalsy(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters