GH Auto: Upstream dependencies ADF:7.0.0-alpha.2-10677225385 JS-API:8.0.0-alpha.2-10677225385 using Tag:7.0.0-alpha.2-10677225385 #3421
Annotations
6 errors, 3 warnings, and 1 notice
e2e/playwright/search/src/tests/search-filters-location.e2e.ts#L45
1) [Search] › src/tests/search-filters-location.e2e.ts:69:7 › Search - Filters - Location › [C279231] Filter by location - files
"beforeAll" hook timeout of 85000ms exceeded.
43 | });
44 |
> 45 | test.beforeAll(async () => {
| ^
46 | try {
47 | const apiClientFactory = new ApiClientFactory();
48 | await apiClientFactory.setUpAcaBackend('admin');
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-filters-location.e2e.ts:45:8
|
e2e/playwright/search/src/tests/search-filters-location.e2e.ts#L45
1) [Search] › src/tests/search-filters-location.e2e.ts:69:7 › Search - Filters - Location › [C279231] Filter by location - files
"beforeAll" hook timeout of 85000ms exceeded.
43 | });
44 |
> 45 | test.beforeAll(async () => {
| ^
46 | try {
47 | const apiClientFactory = new ApiClientFactory();
48 | await apiClientFactory.setUpAcaBackend('admin');
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-filters-location.e2e.ts:45:8
|
e2e/playwright/search/src/tests/search-filters-logic.e2e.ts#L112
2) [Search] › src/tests/search-filters-logic.e2e.ts:103:7 › Search - Filters - Logic › [C699502] Filter with Exclude
Error: expect(received).toBe(expected) // Object.is equality
Expected: 1
Received: 0
110 | await searchPage.dataTable.progressBarWaitForReload();
111 |
> 112 | expect(await searchPage.dataTable.getRowsCount()).toBe(1);
| ^
113 | await expect(searchPage.dataTable.getRowByName(logicFile1.name)).toBeHidden();
114 | await expect(searchPage.dataTable.getRowByName(logicFile2.name)).toBeVisible();
115 | });
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-filters-logic.e2e.ts:112:55
|
e2e/playwright/search/src/tests/search-filters-properties.e2e.ts#L92
3) [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: 'cf5yt-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: 'cf5yt-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
|
e2e/playwright/search/src/tests/search-results-files-folders.e2e.ts#L60
4) [Search] › src/tests/search-results-files-folders.e2e.ts:55:7 › Search results - files and folders › [C290029] Search file with special characters
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('adf-datatable adf-datatable-row').filter({ hasText: 'любимый-сайт-d31bu' })
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('adf-datatable adf-datatable-row').filter({ hasText: 'любимый-сайт-d31bu' })
58 | await nodesApi.createFile(fileRussian);
59 | await searchPage.searchWithin(fileRussian, 'filesAndFolders');
> 60 | await expect(searchPage.dataTable.getRowByName(fileRussian)).toBeVisible();
| ^
61 | });
62 |
63 | test('[C279177] Location column redirect - file in user Home', async ({ searchPage, personalFiles }) => {
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-results-files-folders.e2e.ts:60:66
|
e2e/playwright/search/src/tests/search-sorting.e2e.ts#L114
5) [Search] › src/tests/search-sorting.e2e.ts:162:9 › Search sorting › [C277736] Sort by Modified date
Error: expect(received).toContain(expected) // indexOf
Expected substring: "search-sort-rhpgo-file-1.jpg"
Received string: " Select file search-sort-rhpgo-file-2.pdf ( search sort title )search-sort-${random}-fileCompany Home › User Homes › user1-rhpgo › parent-rhpgo2.96 KB less than a minute ago user2-rhpgo user2-rhpgo View 0 more "
112 | await searchPage.searchSortingPicker.sortBy(sortBy, sortOrder);
113 |
> 114 | expect(await searchPage.dataTable.getNthRow(0).textContent()).toContain(expectedFirstFile);
| ^
115 | expect(await searchPage.dataTable.getNthRow(1).textContent()).toContain(expectedSecondFile);
116 | }
117 |
at testSearchSorting (/home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-sorting.e2e.ts:114:67)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-sorting.e2e.ts:163:7
|
[Search] › src/tests/search-filters-general.e2e.ts#L1
[Search] › src/tests/search-filters-general.e2e.ts took 36.2s
|
[Search] › src/tests/search-input.e2e.ts#L1
[Search] › src/tests/search-input.e2e.ts took 21.1s
|
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/cache/restore@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
5 flaky
[Search] › src/tests/search-filters-location.e2e.ts:69:7 › Search - Filters - Location › [C279231] Filter by location - files
[Search] › src/tests/search-filters-logic.e2e.ts:103:7 › Search - Filters - Logic › [C699502] Filter with Exclude
[Search] › src/tests/search-filters-properties.e2e.ts:87:7 › Search - Filters - Properties › [C699047] Filter by type
[Search] › src/tests/search-results-files-folders.e2e.ts:55:7 › Search results - files and folders › [C290029] Search file with special characters
[Search] › src/tests/search-sorting.e2e.ts:162:9 › Search sorting › [C277736] Sort by Modified date
41 passed (7.7m)
|
This job succeeded
Loading