[ACS-9088] Review and update docs on extension creation #4106
Triggered via pull request
December 20, 2024 13:42
Status
Failure
Total duration
14m 52s
Artifacts
–
pull-request.yml
on: pull_request
Annotations
29 errors, 9 warnings, and 17 notices
[Create Actions] › src/tests/create-library.e2e.ts:118:9 › Create Libraries › On My Libraries dataTable › [C280025] Create a public library:
e2e/playwright/create-actions/src/tests/create-library.e2e.ts#L123
1) [Create Actions] › src/tests/create-library.e2e.ts:118:9 › Create Libraries › On My Libraries dataTable › [C280025] Create a public library
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('adf-breadcrumb .adf-breadcrumb-item[title=playwright-library3-at9pa]')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('adf-breadcrumb .adf-breadcrumb-item[title=playwright-library3-at9pa]')
121 | await expect(libraryDialog.getLabelText(libraryIdLabel)).toHaveValue(randomLibraryName);
122 | await libraryDialog.createButton.click();
> 123 | await expect(libraryBreadcrumb.getItemByTitle(randomLibraryName)).toBeVisible();
| ^
124 |
125 | await myLibrariesPage.navigate();
126 | await expect(libraryTable.getCellByColumnNameAndRowItem(randomLibraryName, publicVisibility)).toBeVisible();
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/create-actions/src/tests/create-library.e2e.ts:123:73
|
[Share Action] › src/tests/share/share-file.e2e.ts:179:11 › Share a file › when logged in › from Personal Files › [C286332] Share a file with expiration date:
e2e/playwright/share-action/src/tests/share/share-file.e2e.ts#L194
1) [Share Action] › src/tests/share/share-file.e2e.ts:179:11 › Share a file › when logged in › from Personal Files › [C286332] Share a file with expiration date
Error: expect(received).toEqual(expected) // deep equality
Expected: "12/22/2024"
Received: "Invalid Date"
192 | await page.waitForTimeout(timeouts.normal);
193 | const expireDateProperty = await nodesApiAction.getNodeProperty(file5Id, 'qshare:expiryDate');
> 194 | expect(Utils.formatDate(expireDateProperty)).toEqual(Utils.formatDate(inputDate));
| ^
195 | });
196 |
197 | test('[C286337] Expire date is displayed correctly', async ({ personalFiles, nodesApiAction }) => {
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/share-action/src/tests/share/share-file.e2e.ts:194:54
|
[Share Action] › src/tests/share/unshare-file-search-results.e2e.ts:137:7 › Unshare a file from Search Results › [C306996] Unshare a file:
e2e/playwright/share-action/src/tests/share/unshare-file-search-results.e2e.ts#L153
2) [Share Action] › src/tests/share/unshare-file-search-results.e2e.ts:137:7 › Unshare a file from Search Results › [C306996] Unshare a file
Error: expect(received).toBe(expected) // Object.is equality
Expected: false
Received: true
151 | await personalFiles.viewer.waitForViewerToOpen();
152 | await expect(personalFiles.viewer.fileTitleButtonLocator).not.toHaveText(file2);
> 153 | expect(await nodesApiAction.isFileShared(file2Id)).toBe(false);
| ^
154 | });
155 |
156 | test('[C306997] Cancel the Unshare action', async ({ personalFiles, searchPage }) => {
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/share-action/src/tests/share/unshare-file-search-results.e2e.ts:153:56
|
[Delete Actions] › src/tests/delete-undo-delete.e2e.ts:153:9 › Delete and undo delete › on Personal Files › [C217126] delete a folder with content:
e2e/playwright/delete-actions/src/tests/delete-undo-delete.e2e.ts#L161
1) [Delete Actions] › src/tests/delete-undo-delete.e2e.ts:153:9 › Delete and undo delete › on Personal Files › [C217126] delete a folder with content
Error: expect(received).toEqual(expected) // deep equality
Expected: " Showing 1--1 of -1 "
Received: " Showing 1-11 of 11 "
159 | expect(await personalFiles.dataTable.isItemPresent(folder1)).toBeFalsy();
160 | items--;
> 161 | expect(await personalFiles.pagination.getMaxRange()).toEqual(` Showing 1-${items} of ${items} `);
| ^
162 | await trashPage.navigate();
163 | expect(await personalFiles.dataTable.isItemPresent(folder1)).toBeTruthy();
164 | expect(await personalFiles.dataTable.isItemPresent(file1InFolder)).toBeFalsy();
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/delete-actions/src/tests/delete-undo-delete.e2e.ts:161:60
|
[Delete Actions] › src/tests/delete-undo-delete.e2e.ts:196:9 › Delete and undo delete › on Personal Files › [C217132] undo delete of file:
e2e/playwright/delete-actions/src/tests/delete-undo-delete.e2e.ts#L206
2) [Delete Actions] › src/tests/delete-undo-delete.e2e.ts:196:9 › Delete and undo delete › on Personal Files › [C217132] undo delete of file
Error: expect(received).toContain(expected) // indexOf
Expected substring: "1-0 of 0"
Received string: "Showing 1-12 of 12"
204 | await personalFiles.dataTable.spinnerWaitForReload();
205 | expect(await personalFiles.dataTable.isItemPresent(file5)).toBeTruthy();
> 206 | expect(await personalFiles.pagination.getRange()).toContain(`1-${items} of ${items}`);
| ^
207 | });
208 |
209 | test('[C280503] undo delete of folder with content', async ({ personalFiles }) => {
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/delete-actions/src/tests/delete-undo-delete.e2e.ts:206:57
|
[Folder Rules] › src/tests/create-rules.e2e.ts:183:7 › Folder Rules Actions › [XAT-890] Create a rule which adds multiple aspects when its ran:
e2e/playwright/folder-rules/src/tests/create-rules.e2e.ts#L1
1) [Folder Rules] › src/tests/create-rules.e2e.ts:183:7 › Folder Rules Actions › [XAT-890] Create a rule which adds multiple aspects when its ran
Test timeout of 85000ms exceeded.
|
[Folder Rules] › src/tests/create-rules.e2e.ts:183:7 › Folder Rules Actions › [XAT-890] Create a rule which adds multiple aspects when its ran:
projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts#L86
1) [Folder Rules] › src/tests/create-rules.e2e.ts:183:7 › Folder Rules Actions › [XAT-890] Create a rule which adds multiple aspects when its ran
Error: locator.click: Test timeout of 85000ms exceeded.
Call log:
- waiting for locator('.mat-mdc-select-panel .mdc-list-item__primary-text').filter({ hasText: 'Controls' }).first().first()
at ../../../projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts:86
84 | async dropdownSelection(selectValue: string, locator: string, index: number): Promise<void> {
85 | await this.ruleActionLocator.nth(index).locator(locator).click();
> 86 | await this.getOptionLocator(selectValue).nth(0).click();
| ^
87 | }
88 |
89 | async insertCheckInActionValues(checkInValue: string, index: number): Promise<void> {
at ActionsDropdownComponent.dropdownSelection (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts:86:53)
at ActionsDropdownComponent.insertAddAspectActionValues (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts:94:5)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/folder-rules/src/tests/create-rules.e2e.ts:188:5
|
[Folder Rules] › src/tests/create-rules.e2e.ts:226:7 › Folder Rules Actions › [XAT-893] Removing values from required fields should restore disabled state for Create button:
e2e/playwright/folder-rules/src/tests/create-rules.e2e.ts#L1
2) [Folder Rules] › src/tests/create-rules.e2e.ts:226:7 › Folder Rules Actions › [XAT-893] Removing values from required fields should restore disabled state for Create button
Test timeout of 85000ms exceeded.
|
[Folder Rules] › src/tests/create-rules.e2e.ts:226:7 › Folder Rules Actions › [XAT-893] Removing values from required fields should restore disabled state for Create button:
projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts#L86
2) [Folder Rules] › src/tests/create-rules.e2e.ts:226:7 › Folder Rules Actions › [XAT-893] Removing values from required fields should restore disabled state for Create button
Error: locator.click: Test timeout of 85000ms exceeded.
Call log:
- waiting for locator('.mat-mdc-select-panel .mdc-list-item__primary-text').filter({ hasText: 'Controls' }).first().first()
at ../../../projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts:86
84 | async dropdownSelection(selectValue: string, locator: string, index: number): Promise<void> {
85 | await this.ruleActionLocator.nth(index).locator(locator).click();
> 86 | await this.getOptionLocator(selectValue).nth(0).click();
| ^
87 | }
88 |
89 | async insertCheckInActionValues(checkInValue: string, index: number): Promise<void> {
at ActionsDropdownComponent.dropdownSelection (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts:86:53)
at ActionsDropdownComponent.insertAddAspectActionValues (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts:94:5)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/folder-rules/src/tests/create-rules.e2e.ts:231:5
|
[Info Drawer] › src/tests/comments.e2e.ts:90:7 › Info Drawer - Comments › [C299189] from Shared Files - Comments are displayed ordered by created date in descending order:
e2e/playwright/info-drawer/src/tests/comments.e2e.ts#L101
1) [Info Drawer] › src/tests/comments.e2e.ts:90:7 › Info Drawer - Comments › [C299189] from Shared Files - Comments are displayed ordered by created date in descending order
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('adf-datatable adf-datatable-row').filter({ hasText: 'sharedFile-e2e-1hq9y' })
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('adf-datatable adf-datatable-row').filter({ hasText: 'sharedFile-e2e-1hq9y' })
99 | await apiClientFactory.share.createSharedLink({ nodeId: sharedFileId });
100 | await Utils.reloadPageIfRowNotVisible(sharedPage, sharedFileName);
> 101 | await expect(sharedPage.dataTable.getRowByName(sharedFileName)).toBeVisible();
| ^
102 | await sharedPage.dataTable.getRowByName(sharedFileName).click();
103 | await sharedPage.acaHeader.viewDetails.click();
104 | await sharedPage.infoDrawer.commentsTab.click();
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/info-drawer/src/tests/comments.e2e.ts:101:69
|
[Info Drawer] › src/tests/comments.e2e.ts:90:7 › Info Drawer - Comments › [C299189] from Shared Files - Comments are displayed ordered by created date in descending order:
e2e/playwright/info-drawer/src/tests/comments.e2e.ts#L101
1) [Info Drawer] › src/tests/comments.e2e.ts:90:7 › Info Drawer - Comments › [C299189] from Shared Files - Comments are displayed ordered by created date in descending order
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('adf-datatable adf-datatable-row').filter({ hasText: 'sharedFile-e2e-zcwgn' })
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('adf-datatable adf-datatable-row').filter({ hasText: 'sharedFile-e2e-zcwgn' })
99 | await apiClientFactory.share.createSharedLink({ nodeId: sharedFileId });
100 | await Utils.reloadPageIfRowNotVisible(sharedPage, sharedFileName);
> 101 | await expect(sharedPage.dataTable.getRowByName(sharedFileName)).toBeVisible();
| ^
102 | await sharedPage.dataTable.getRowByName(sharedFileName).click();
103 | await sharedPage.acaHeader.viewDetails.click();
104 | await sharedPage.infoDrawer.commentsTab.click();
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/info-drawer/src/tests/comments.e2e.ts:101:69
|
[Info Drawer] › src/tests/file-folder-properties.e2e.ts:212:7 › Info Drawer - File Folder Properties › [XAT-17241] Add a new category to a node:
e2e/playwright/info-drawer/src/tests/file-folder-properties.e2e.ts#L1
2) [Info Drawer] › src/tests/file-folder-properties.e2e.ts:212:7 › Info Drawer - File Folder Properties › [XAT-17241] Add a new category to a node
Test timeout of 85000ms exceeded.
|
[Info Drawer] › src/tests/file-preview.e2e.ts:68:7 › File preview › [C595967] Should preview document from the info drawer:
e2e/playwright/info-drawer/src/tests/file-preview.e2e.ts#L65
3) [Info Drawer] › src/tests/file-preview.e2e.ts:68:7 › File preview › [C595967] Should preview document from the info drawer
Error: expect(received).toContain(expected) // indexOf
Expected substring: "This is a small demonstration"
Received string: ""
63 | await expect(pageLoaded).toBeVisible();
64 | await expect(textLayerLoaded).toBeVisible();
> 65 | expect(await specificText).toContain(text);
| ^
66 | }
67 |
68 | test('[C595967] Should preview document from the info drawer', async ({ personalFiles }) => {
at checkFileContent (/home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/info-drawer/src/tests/file-preview.e2e.ts:65:32)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/info-drawer/src/tests/file-preview.e2e.ts:76:5
|
[Info Drawer] › src/tests/library-properties.e2e.ts:184:7 › Library properties › [C289343] Site description too long:
e2e/playwright/info-drawer/src/tests/library-properties.e2e.ts#L1
4) [Info Drawer] › src/tests/library-properties.e2e.ts:184:7 › Library properties › [C289343] Site description too long
Test timeout of 85000ms exceeded.
|
[Info Drawer] › src/tests/library-properties.e2e.ts:184:7 › Library properties › [C289343] Site description too long:
e2e/playwright/info-drawer/src/tests/library-properties.e2e.ts#L186
4) [Info Drawer] › src/tests/library-properties.e2e.ts:184:7 › Library properties › [C289343] Site description too long
Error: locator.click: Test timeout of 85000ms exceeded.
Call log:
- waiting for locator('adf-datatable adf-datatable-row').filter({ hasText: 'site1-105dp' })
184 | test('[C289343] Site description too long', async ({ myLibrariesPage }) => {
185 | await Utils.reloadPageIfRowNotVisible(myLibrariesPage, site.name);
> 186 | await myLibrariesPage.dataTable.getRowByName(site.name).click();
| ^
187 | await myLibrariesPage.acaHeader.viewDetails.click();
188 | await expect(myLibrariesPage.libraryDetails.infoDrawerPanel).toBeVisible();
189 |
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/info-drawer/src/tests/library-properties.e2e.ts:186:61
|
[Copy Move Actions] › src/tests/destination-picker-dialog.e2e.ts:96:7 › Copy Move actions › [C263878] Collaborator 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:96:7 › Copy Move actions › [C263878] Collaborator user can select the folder as destination
Test timeout of 150000ms exceeded.
|
[Copy Move Actions] › src/tests/destination-picker-dialog.e2e.ts:96:7 › Copy Move actions › [C263878] Collaborator 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:96:7 › Copy Move actions › [C263878] Collaborator 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-1ckr6' })
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:99:11
|
[Library Actions] › src/tests/library-actions.e2e.ts:261:9 › Library actions › Favorite Libraries page › [C290109] Join a moderated library from Favorite Libraries:
e2e/playwright/library-actions/src/tests/library-actions.e2e.ts#L1
1) [Library Actions] › src/tests/library-actions.e2e.ts:261:9 › Library actions › Favorite Libraries page › [C290109] Join a moderated library from Favorite Libraries
Error: {"error":{"errorKey":"framework.exception.EntityNotFound","statusCode":404,"briefSummary":"11209069 The entity with id: playwright-Am-library-3ekf6 was not found","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":"db7229d3-3aed-4159-b229-d33aed61598a"}}
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#L91
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).toContainText(expected)
Locator: locator('adf-search-widget-chip').filter({ hasText: 'Properties' })
Expected string: "Properties: pdf"
Received string: "Properties: 3g2 keyboard_arrow_down"
Call log:
- expect.toContainText with timeout 5000ms
- waiting for locator('adf-search-widget-chip').filter({ hasText: 'Properties' })
9 × locator resolved to <adf-search-widget-chip class="ng-star-inserted" ng-reflect-category="[object Object]">…</adf-search-widget-chip>
- unexpected value "Properties: 3g2 keyboard_arrow_down"
89 | await searchPage.searchFiltersProperties.setPropertiesParameters(searchPage, undefined, undefined, undefined, '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 | });
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-filters-properties.e2e.ts:91:61
|
[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#L91
1) [Search] › src/tests/search-filters-properties.e2e.ts:87:7 › Search - Filters - Properties › [C699047] Filter by type
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toContainText(expected)
Locator: locator('adf-search-widget-chip').filter({ hasText: 'Properties' })
Expected string: "Properties: pdf"
Received string: "Properties: 3g2 keyboard_arrow_down"
Call log:
- expect.toContainText with timeout 5000ms
- waiting for locator('adf-search-widget-chip').filter({ hasText: 'Properties' })
9 × locator resolved to <adf-search-widget-chip class="ng-star-inserted" ng-reflect-category="[object Object]">…</adf-search-widget-chip>
- unexpected value "Properties: 3g2 keyboard_arrow_down"
89 | await searchPage.searchFiltersProperties.setPropertiesParameters(searchPage, undefined, undefined, undefined, '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 | });
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-filters-properties.e2e.ts:91:61
|
[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#L91
1) [Search] › src/tests/search-filters-properties.e2e.ts:87:7 › Search - Filters - Properties › [C699047] Filter by type
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toContainText(expected)
Locator: locator('adf-search-widget-chip').filter({ hasText: 'Properties' })
Expected string: "Properties: pdf"
Received string: "Properties: 3g2 keyboard_arrow_down"
Call log:
- expect.toContainText with timeout 5000ms
- waiting for locator('adf-search-widget-chip').filter({ hasText: 'Properties' })
9 × locator resolved to <adf-search-widget-chip class="ng-star-inserted" ng-reflect-category="[object Object]">…</adf-search-widget-chip>
- unexpected value "Properties: 3g2 keyboard_arrow_down"
89 | await searchPage.searchFiltersProperties.setPropertiesParameters(searchPage, undefined, undefined, undefined, '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 | });
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-filters-properties.e2e.ts:91:61
|
[Search] › src/tests/search-filters-location.e2e.ts:70:7 › Search - Filters - Location › [C279231] Filter by location - files:
e2e/playwright/search/src/tests/search-filters-location.e2e.ts#L46
2) [Search] › src/tests/search-filters-location.e2e.ts:70:7 › Search - Filters - Location › [C279231] Filter by location - files
"beforeAll" hook timeout of 85000ms exceeded.
44 | });
45 |
> 46 | test.beforeAll(async () => {
| ^
47 | try {
48 | const apiClientFactory = new ApiClientFactory();
49 | await apiClientFactory.setUpAcaBackend('admin');
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-filters-location.e2e.ts:46:8
|
[Search] › src/tests/search-filters-logic.e2e.ts:103:7 › Search - Filters - Logic › [C699502] Filter with Exclude:
e2e/playwright/search/src/tests/search-filters-logic.e2e.ts#L112
3) [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
|
[Search] › src/tests/search-filters-properties.e2e.ts:69:7 › Search - Filters - Properties › [C699046-2] Filter by size - At most 1MB:
e2e/playwright/search/src/tests/search-filters-properties.e2e.ts#L74
4) [Search] › src/tests/search-filters-properties.e2e.ts:69:7 › Search - Filters - Properties › [C699046-2] Filter by size - At most 1MB
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('adf-datatable adf-datatable-row').filter({ hasText: '1n5nv-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: '1n5nv-fileNameKb.pdf' })
72 |
73 | await expect(searchPage.searchFilters.propertiesFilter).toContainText('Properties: At Most 1 MB');
> 74 | await expect(searchPage.dataTable.getRowByName(fileNamePdfKb)).toBeVisible();
| ^
75 | await expect(searchPage.dataTable.getRowByName(fileNameJpgMb)).toBeHidden();
76 | });
77 |
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-filters-properties.e2e.ts:74: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
5) [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-results-files-folders.e2e.ts:57:7 › Search results - files and folders › [C290029] Search file with special characters:
e2e/playwright/search/src/tests/search-results-files-folders.e2e.ts#L62
6) [Search] › src/tests/search-results-files-folders.e2e.ts:57: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: 'любимый-сайт-1377q' })
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('adf-datatable adf-datatable-row').filter({ hasText: 'любимый-сайт-1377q' })
60 | await nodesApi.createFile(fileRussian);
61 | await searchPage.searchWithin(fileRussian, 'filesAndFolders');
> 62 | await expect(searchPage.dataTable.getRowByName(fileRussian)).toBeVisible();
| ^
63 | });
64 |
65 | 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:62:66
|
[Search] › src/tests/search-results-files-folders.e2e.ts:57:7 › Search results - files and folders › [C290029] Search file with special characters:
e2e/playwright/search/src/tests/search-results-files-folders.e2e.ts#L62
6) [Search] › src/tests/search-results-files-folders.e2e.ts:57:7 › Search results - files and folders › [C290029] Search file with special characters
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('adf-datatable adf-datatable-row').filter({ hasText: 'любимый-сайт-ji0qx' })
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('adf-datatable adf-datatable-row').filter({ hasText: 'любимый-сайт-ji0qx' })
60 | await nodesApi.createFile(fileRussian);
61 | await searchPage.searchWithin(fileRussian, 'filesAndFolders');
> 62 | await expect(searchPage.dataTable.getRowByName(fileRussian)).toBeVisible();
| ^
63 | });
64 |
65 | 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:62:66
|
E2E Playwright - search
Process completed with exit code 1.
|
Finalize
Process completed with exit code 1.
|
lint
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
build
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Unit tests
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Slow Test:
[Viewer] › src/tests/viewer-useraction.e2e.ts#L1
[Viewer] › src/tests/viewer-useraction.e2e.ts took 24.9s
|
Slow Test:
[Folder Rules] › src/tests/delete-view-rules.e2e.ts#L1
[Folder Rules] › src/tests/delete-view-rules.e2e.ts took 1.5m
|
Slow Test:
[Info Drawer] › src/tests/general.e2e.ts#L1
[Info Drawer] › src/tests/general.e2e.ts took 19.0s
|
Slow Test:
[Search] › src/tests/search-filters-general.e2e.ts#L1
[Search] › src/tests/search-filters-general.e2e.ts took 30.2s
|
Slow Test:
[List Views] › src/tests/generic-errors.e2e.ts#L1
[List Views] › src/tests/generic-errors.e2e.ts took 16.9s
|
Finalize
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
🎭 Playwright Run Summary
6 passed (22.3s)
|
🎭 Playwright Run Summary
11 passed (1.1m)
|
🎭 Playwright Run Summary
9 passed (1.4m)
|
🎭 Playwright Run Summary
16 passed (1.7m)
|
🎭 Playwright Run Summary
1 flaky
[Create Actions] › src/tests/create-library.e2e.ts:118:9 › Create Libraries › On My Libraries dataTable › [C280025] Create a public library
19 passed (2.4m)
|
🎭 Playwright Run Summary
11 passed (2.8m)
|
🎭 Playwright Run Summary
29 passed (3.3m)
|
🎭 Playwright Run Summary
2 flaky
[Share Action] › src/tests/share/share-file.e2e.ts:179:11 › Share a file › when logged in › from Personal Files › [C286332] Share a file with expiration date
[Share Action] › src/tests/share/unshare-file-search-results.e2e.ts:137:7 › Unshare a file from Search Results › [C306996] Unshare a file
13 passed (3.9m)
|
🎭 Playwright Run Summary
2 flaky
[Delete Actions] › src/tests/delete-undo-delete.e2e.ts:153:9 › Delete and undo delete › on Personal Files › [C217126] delete a folder with content
[Delete Actions] › src/tests/delete-undo-delete.e2e.ts:196:9 › Delete and undo delete › on Personal Files › [C217132] undo delete of file
21 passed (4.1m)
|
🎭 Playwright Run Summary
34 passed (4.2m)
|
🎭 Playwright Run Summary
2 flaky
[Folder Rules] › src/tests/create-rules.e2e.ts:183:7 › Folder Rules Actions › [XAT-890] Create a rule which adds multiple aspects when its ran
[Folder Rules] › src/tests/create-rules.e2e.ts:226:7 › Folder Rules Actions › [XAT-893] Removing values from required fields should restore disabled state for Create button
22 passed (4.5m)
|
🎭 Playwright Run Summary
4 flaky
[Info Drawer] › src/tests/comments.e2e.ts:90:7 › Info Drawer - Comments › [C299189] from Shared Files - Comments are displayed ordered by created date in descending order
[Info Drawer] › src/tests/file-folder-properties.e2e.ts:212:7 › Info Drawer - File Folder Properties › [XAT-17241] Add a new category to a node
[Info Drawer] › src/tests/file-preview.e2e.ts:68:7 › File preview › [C595967] Should preview document from the info drawer
[Info Drawer] › src/tests/library-properties.e2e.ts:184:7 › Library properties › [C289343] Site description too long
21 passed (5.1m)
|
🎭 Playwright Run Summary
64 passed (5.5m)
|
🎭 Playwright Run Summary
1 flaky
[Copy Move Actions] › src/tests/destination-picker-dialog.e2e.ts:96:7 › Copy Move actions › [C263878] Collaborator user can select the folder as destination
22 passed (6.6m)
|
🎭 Playwright Run Summary
1 flaky
[Library Actions] › src/tests/library-actions.e2e.ts:261:9 › Library actions › Favorite Libraries page › [C290109] Join a moderated library from Favorite Libraries
18 passed (6.7m)
|
🎭 Playwright Run Summary
1 failed
[Search] › src/tests/search-filters-properties.e2e.ts:87:7 › Search - Filters - Properties › [C699047] Filter by type
5 flaky
[Search] › src/tests/search-filters-location.e2e.ts:70: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:69:7 › Search - Filters - Properties › [C699046-2] Filter by size - At most 1MB
[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-results-files-folders.e2e.ts:57:7 › Search results - files and folders › [C290029] Search file with special characters
43 passed (6.7m)
|
🎭 Playwright Run Summary
68 passed (7.4m)
|