AAE-28655 Testing ADF autoscroll change #4302
pull-request.yml
on: pull_request
Annotations
7 errors, 7 warnings, and 17 notices
[Navigation] › src/tests/single-click.e2e.ts:83:7 › Single click on item name › [C284902] Navigate inside the library when clicking the hyperlink on File Libraries:
e2e/playwright/navigation/src/tests/single-click.e2e.ts#L1
1) [Navigation] › src/tests/single-click.e2e.ts:83:7 › Single click on item name › [C284902] Navigate inside the library when clicking the hyperlink on File Libraries
Error: {"error":{"errorKey":"Person 'user-12p52' already exists.","statusCode":409,"briefSummary":"00310023 Person 'user-12p52' already exists.","stackTrace":"For security reasons the stack trace is no longer displayed, but the property is kept for previous versions","descriptionURL":"https://api-explorer.alfresco.com","logId":"6d5f6475-2a24-47ba-9f64-752a24a7ba70"}}
at Request.callback (/home/runner/work/alfresco-content-app/alfresco-content-app/node_modules/superagent/src/node/index.js:875:17)
at fn (/home/runner/work/alfresco-content-app/alfresco-content-app/node_modules/superagent/src/node/index.js:1165:18)
at IncomingMessage.<anonymous> (/home/runner/work/alfresco-content-app/alfresco-content-app/node_modules/superagent/src/node/parsers/json.js:19:7)
|
[Viewer] › src/tests/viewer-action.e2e.ts:220:7 › viewer action file › [C286384] Copy action from Recent Files:
e2e/playwright/viewer/src/tests/viewer-action.e2e.ts#L1
1) [Viewer] › src/tests/viewer-action.e2e.ts:220:7 › viewer action file › [C286384] Copy action from Recent Files
Error: {"error":{"errorKey":"framework.exception.ApiDefault","statusCode":500,"briefSummary":"00310059 Couldn't delete the quick share link expiry action for the sharedId:dGYHFROpROimBxUTqbToag","stackTrace":"For security reasons the stack trace is no longer displayed, but the property is kept for previous versions","descriptionURL":"https://api-explorer.alfresco.com","logId":"337f9a95-9216-4a4d-bf9a-9592163a4df5"}}
at Request.callback (/home/runner/work/alfresco-content-app/alfresco-content-app/node_modules/superagent/src/node/index.js:875:17)
at fn (/home/runner/work/alfresco-content-app/alfresco-content-app/node_modules/superagent/src/node/index.js:1165:18)
at IncomingMessage.<anonymous> (/home/runner/work/alfresco-content-app/alfresco-content-app/node_modules/superagent/src/node/parsers/json.js:19:7)
|
[Search] › src/tests/search-filters-properties.e2e.ts:87:7 › Search - Filters - Properties › [C699047] Filter by type:
e2e/playwright/search/src/tests/search-filters-properties.e2e.ts#L92
1) [Search] › src/tests/search-filters-properties.e2e.ts:87:7 › Search - Filters - Properties › [C699047] Filter by type
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('adf-datatable adf-datatable-row').filter({ hasText: '1k02u-fileNameKb.pdf' })
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('adf-datatable adf-datatable-row').filter({ hasText: '1k02u-fileNameKb.pdf' })
90 |
91 | await expect(searchPage.searchFilters.propertiesFilter).toContainText('Properties: pdf');
> 92 | await expect(searchPage.dataTable.getRowByName(fileNamePdfKb)).toBeVisible();
| ^
93 | await expect(searchPage.dataTable.getRowByName(fileNameJpgMb)).toBeHidden();
94 | });
95 | });
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-filters-properties.e2e.ts:92:68
|
[Search] › src/tests/search-highlighting.e2e.ts:75:7 › Search Highlighting › [XAT-17121] Matching phrases should be highlighted in the file content for search results:
e2e/playwright/search/src/tests/search-highlighting.e2e.ts#L77
2) [Search] › src/tests/search-highlighting.e2e.ts:75:7 › Search Highlighting › [XAT-17121] Matching phrases should be highlighted in the file content for search results
Error: expect(received).toBeTruthy()
Received: false
75 | test('[XAT-17121] Matching phrases should be highlighted in the file content for search results', async ({ searchPage }) => {
76 | await searchPage.searchWithin(fileContent, 'files');
> 77 | expect(await searchPage.dataTable.hasHighlightedText('content')).toBeTruthy();
| ^
78 | expect(await searchPage.dataTable.hasHighlightedText('name')).toBeFalsy();
79 | });
80 | });
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-highlighting.e2e.ts:77:70
|
[Search] › src/tests/search-sorting.e2e.ts:136:7 › Search sorting › [C277727] Sort by Relevance:
e2e/playwright/search/src/tests/search-sorting.e2e.ts#L112
3) [Search] › src/tests/search-sorting.e2e.ts:136:7 › Search sorting › [C277727] Sort by Relevance
Error: expect(received).toContain(expected) // indexOf
Expected substring: "search-sort-dodav-file-1.jpg"
Received string: " Select file search-sort-dodav-file-2.pdf ( search sort title )search-sort-${random}-fileCompany Home › User Homes › user1-dodav › parent-search-dodav2.96 KB less than a minute ago user2-dodav user2-dodav View 0 more "
110 | await searchPage.searchWithin(`*${random}*`, 'files');
111 | await searchPage.searchSortingPicker.sortBy(sortBy, sortOrder);
> 112 | expect(await searchPage.dataTable.getNthRow(0).textContent()).toContain(expectedFirstFile);
| ^
113 | expect(await searchPage.dataTable.getNthRow(1).textContent()).toContain(expectedSecondFile);
114 | }
115 |
at testSearchSorting (/home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-sorting.e2e.ts:112:67)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-sorting.e2e.ts:137:5
|
[Copy Move Actions] › src/tests/destination-picker-dialog.e2e.ts:89:7 › Copy Move actions › [C263877] Contributor user can select the folder as destination:
e2e/playwright/copy-move-actions/src/tests/destination-picker-dialog.e2e.ts#L1
1) [Copy Move Actions] › src/tests/destination-picker-dialog.e2e.ts:89:7 › Copy Move actions › [C263877] Contributor user can select the folder as destination
Test timeout of 150000ms exceeded.
|
[Copy Move Actions] › src/tests/destination-picker-dialog.e2e.ts:89:7 › Copy Move actions › [C263877] Contributor user can select the folder as destination:
projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts#L204
1) [Copy Move Actions] › src/tests/destination-picker-dialog.e2e.ts:89:7 › Copy Move actions › [C263877] Contributor user can select the folder as destination
Error: locator.click: Test timeout of 150000ms exceeded.
Call log:
- waiting for locator('adf-datatable .adf-cell-value span[role="link"]').filter({ hasText: 'site-rquzw' })
at ../../../projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts:204
202 | */
203 | async performClickFolderOrFileToOpen(name: string): Promise<void> {
> 204 | await this.getCellLinkByName(name).click();
| ^
205 | await this.spinnerWaitForReload();
206 | }
207 |
at DataTableComponent.performClickFolderOrFileToOpen (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts:204:40)
at copyContentInMyLibraries (/home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/copy-move-actions/src/tests/destination-picker-dialog.e2e.ts:76:37)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/copy-move-actions/src/tests/destination-picker-dialog.e2e.ts:92:11
|
Slow Test:
[Authentication] › src/tests/general.e2e.ts#L1
[Authentication] › src/tests/general.e2e.ts took 17.2s
|
Slow Test:
[Navigation] › src/tests/breadcrumb-admin.e2e.ts#L1
[Navigation] › src/tests/breadcrumb-admin.e2e.ts took 16.1s
|
Slow Test:
[Info Drawer] › src/tests/general.e2e.ts#L1
[Info Drawer] › src/tests/general.e2e.ts took 30.0s
|
Slow Test:
[Info Drawer] › src/tests/file-preview.e2e.ts#L1
[Info Drawer] › src/tests/file-preview.e2e.ts took 17.3s
|
Slow Test:
[Viewer] › src/tests/viewer-useraction.e2e.ts#L1
[Viewer] › src/tests/viewer-useraction.e2e.ts took 24.2s
|
Slow Test:
[Search] › src/tests/search-filters-general.e2e.ts#L1
[Search] › src/tests/search-filters-general.e2e.ts took 40.5s
|
Slow Test:
[Search] › src/tests/search-filters-tags.e2e.ts#L1
[Search] › src/tests/search-filters-tags.e2e.ts took 15.6s
|
🎭 Playwright Run Summary
6 passed (27.2s)
|
🎭 Playwright Run Summary
10 passed (1.0m)
|
🎭 Playwright Run Summary
9 passed (1.0m)
|
🎭 Playwright Run Summary
1 flaky
[Navigation] › src/tests/single-click.e2e.ts:83:7 › Single click on item name › [C284902] Navigate inside the library when clicking the hyperlink on File Libraries
15 passed (1.5m)
|
🎭 Playwright Run Summary
15 passed (1.8m)
|
🎭 Playwright Run Summary
11 passed (1.9m)
|
🎭 Playwright Run Summary
20 passed (1.9m)
|
🎭 Playwright Run Summary
25 passed (2.6m)
|
🎭 Playwright Run Summary
29 passed (2.9m)
|
🎭 Playwright Run Summary
24 passed (3.5m)
|
🎭 Playwright Run Summary
19 passed (3.2m)
|
🎭 Playwright Run Summary
23 passed (3.3m)
|
🎭 Playwright Run Summary
1 flaky
[Viewer] › src/tests/viewer-action.e2e.ts:220:7 › viewer action file › [C286384] Copy action from Recent Files
32 passed (5.1m)
|
🎭 Playwright Run Summary
3 flaky
[Search] › src/tests/search-filters-properties.e2e.ts:87:7 › Search - Filters - Properties › [C699047] Filter by type
[Search] › src/tests/search-highlighting.e2e.ts:75:7 › Search Highlighting › [XAT-17121] Matching phrases should be highlighted in the file content for search results
[Search] › src/tests/search-sorting.e2e.ts:136:7 › Search sorting › [C277727] Sort by Relevance
45 passed (6.1m)
|
🎭 Playwright Run Summary
1 flaky
[Copy Move Actions] › src/tests/destination-picker-dialog.e2e.ts:89:7 › Copy Move actions › [C263877] Contributor user can select the folder as destination
22 passed (6.3m)
|
🎭 Playwright Run Summary
67 passed (6.0m)
|
🎭 Playwright Run Summary
64 passed (6.1m)
|