PMM-7 annotations push clean up #12
Annotations
6 errors, 2 warnings, and 1 notice
pmm-ui-tests/playwright-tests/components/toast.ts#L35
1) [chromium] › portal/postPmmConnect.spec.ts:366:7 › Spec file for PMM connected the portal › PMM-T1264 Verify that pmm admin user can force disconnect pmm from the portal. @not-ui-pipeline @portal @post-pmm-portal-upgrade
Error: expect(received).toHaveText(expected)
Expected string: "You have successfully disconnected this server from Percona Platform"
Received string: "Internal server error."
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for locator('xpath=//div[contains(@data-testid, "Alert") or contains(@aria-label, "Alert")]')
- locator resolved to <div role="alert" class="css-14ka8ii" data-testid="da…>…</div>
- unexpected value "Internal server error."
- waiting for locator('xpath=//div[contains(@data-testid, "Alert") or contains(@aria-label, "Alert")]')
- locator resolved to <div role="alert" class="css-14ka8ii" data-testid="da…>…</div>
- unexpected value "Internal server error."
- locator resolved to <div role="alert" class="css-14ka8ii" data-testid="da…>…</div>
- unexpected value "Internal server error."
- locator resolved to <div role="alert" class="css-14ka8ii" data-testid="da…>…</div>
- unexpected value "Internal server error."
- locator resolved to <div role="alert" class="css-14ka8ii" data-testid="da…>…</div>
- unexpected value "Internal server error."
- locator resolved to <div role="alert" class="css-14ka8ii" data-testid="da…>…</div>
- unexpected value "Internal server error."
- locator resolved to <div role="alert" class="css-14ka8ii" data-testid="da…>…</div>
- unexpected value "Internal server error."
- locator resolved to <div role="alert" class="css-14ka8ii" data-testid="da…>…</div>
- unexpected value "Internal server error."
- locator resolved to <div role="alert" class="css-14ka8ii" data-testid="da…>…</div>
- unexpected value "Internal server error."
at ../components/toast.ts:35
33 |
34 | await selectedToast.waitFor({ state: 'visible', timeout: options?.timeout || 30000 });
> 35 | await expect(selectedToast).toHaveText(message, { timeout: options?.assertionTimeout || config.expect?.timeout });
| ^
36 | await this.closeButton(selectedToast).click();
37 | await selectedToast.waitFor({ state: 'detached' });
38 | };
at Toast.checkToastMessage (/home/runner/work/pmm-ui-tests/pmm-ui-tests/pmm-ui-tests/playwright-tests/components/toast.ts:35:33)
at /home/runner/work/pmm-ui-tests/pmm-ui-tests/pmm-ui-tests/playwright-tests/tests/portal/postPmmConnect.spec.ts:386:7
at /home/runner/work/pmm-ui-tests/pmm-ui-tests/pmm-ui-tests/playwright-tests/tests/portal/postPmmConnect.spec.ts:385:5
|
pmm-ui-tests/playwright-tests/tests/portal/postPmmConnect.spec.ts#L375
1) [chromium] › portal/postPmmConnect.spec.ts:366:7 › Spec file for PMM connected the portal › PMM-T1264 Verify that pmm admin user can force disconnect pmm from the portal. @not-ui-pipeline @portal @post-pmm-portal-upgrade
Retry #1 ---------------------------------------------------------------------------------------
locator.waitFor: Timeout 15000ms exceeded.
=========================== logs ===========================
waiting for getByTestId('connected-wrapper') to be visible
============================================================
373 | await grafanaHelper.authorize(page);
374 | await page.goto(platformPage.perconaPlatformURL);
> 375 | await platformPage.connectedContainer.waitFor({ state: 'visible' });
| ^
376 | });
377 |
378 | await test.step('2. Force disconnect from the platform.', async () => {
at /home/runner/work/pmm-ui-tests/pmm-ui-tests/pmm-ui-tests/playwright-tests/tests/portal/postPmmConnect.spec.ts:375:45
at /home/runner/work/pmm-ui-tests/pmm-ui-tests/pmm-ui-tests/playwright-tests/tests/portal/postPmmConnect.spec.ts:372:5
|
pmm-ui-tests/playwright-tests/tests/portal/postPmmConnect.spec.ts#L375
1) [chromium] › portal/postPmmConnect.spec.ts:366:7 › Spec file for PMM connected the portal › PMM-T1264 Verify that pmm admin user can force disconnect pmm from the portal. @not-ui-pipeline @portal @post-pmm-portal-upgrade
Retry #2 ---------------------------------------------------------------------------------------
locator.waitFor: Timeout 15000ms exceeded.
=========================== logs ===========================
waiting for getByTestId('connected-wrapper') to be visible
============================================================
373 | await grafanaHelper.authorize(page);
374 | await page.goto(platformPage.perconaPlatformURL);
> 375 | await platformPage.connectedContainer.waitFor({ state: 'visible' });
| ^
376 | });
377 |
378 | await test.step('2. Force disconnect from the platform.', async () => {
at /home/runner/work/pmm-ui-tests/pmm-ui-tests/pmm-ui-tests/playwright-tests/tests/portal/postPmmConnect.spec.ts:375:45
at /home/runner/work/pmm-ui-tests/pmm-ui-tests/pmm-ui-tests/playwright-tests/tests/portal/postPmmConnect.spec.ts:372:5
|
pmm-ui-tests/playwright-tests/api/helpers/portalApiHelper.ts#L6
2) [chromium] › portal/connectPMM.spec.ts:43:7 › Spec file for connecting PMM to the portal › PMM-T398 Verify Percona Platform elements on PMM Settings Page @portal @pre-pmm-portal-upgrade
Error: Failed to execute portal request. Error: Error: apiRequestContext.post: Request timed out after 30000ms
=========================== logs ===========================
→ POST https://portal-dev.percona.com/v1/orgs
user-agent: Playwright/1.30.0 (x64; ubuntu 22.04) node/18.17 CI/1
accept: */*
accept-encoding: gzip,deflate,br
authorization: ***
content-type: application/json
content-length: 28
============================================================
at ../api/helpers/portalApiHelper.ts:6
4 |
5 | const throwPortalRequestError = (e: string) => {
> 6 | throw new Error(`Failed to execute portal request. Error: ${e}`);
| ^
7 | };
8 |
9 | const checkAndReturnResponse = (r: APIResponse) => {
at throwPortalRequestError (/home/runner/work/pmm-ui-tests/pmm-ui-tests/pmm-ui-tests/playwright-tests/api/helpers/portalApiHelper.ts:6:9)
at /home/runner/work/pmm-ui-tests/pmm-ui-tests/pmm-ui-tests/playwright-tests/tests/portal/connectPMM.spec.ts:31:23
|
pmm-ui-tests/playwright-tests/api/helpers/portalApiHelper.ts#L6
2) [chromium] › portal/connectPMM.spec.ts:43:7 › Spec file for connecting PMM to the portal › PMM-T398 Verify Percona Platform elements on PMM Settings Page @portal @pre-pmm-portal-upgrade
Retry #1 ---------------------------------------------------------------------------------------
Error: Failed to execute portal request. Error: Error: apiRequestContext.post: Request timed out after 30000ms
=========================== logs ===========================
→ POST https://portal-dev.percona.com/v1/orgs
user-agent: Playwright/1.30.0 (x64; ubuntu 22.04) node/18.17 CI/1
accept: */*
accept-encoding: gzip,deflate,br
authorization: ***
content-type: application/json
content-length: 28
============================================================
at ../api/helpers/portalApiHelper.ts:6
4 |
5 | const throwPortalRequestError = (e: string) => {
> 6 | throw new Error(`Failed to execute portal request. Error: ${e}`);
| ^
7 | };
8 |
9 | const checkAndReturnResponse = (r: APIResponse) => {
at throwPortalRequestError (/home/runner/work/pmm-ui-tests/pmm-ui-tests/pmm-ui-tests/playwright-tests/api/helpers/portalApiHelper.ts:6:9)
at /home/runner/work/pmm-ui-tests/pmm-ui-tests/pmm-ui-tests/playwright-tests/tests/portal/connectPMM.spec.ts:31:23
|
|
pmm-ui-tests/playwright-tests/[chromium] › portal/postPmmConnect.spec.ts#L1
pmm-ui-tests/playwright-tests/[chromium] › portal/postPmmConnect.spec.ts took 4.0m
|
pmm-ui-tests/playwright-tests/[chromium] › portal/connectPMM.spec.ts#L1
pmm-ui-tests/playwright-tests/[chromium] › portal/connectPMM.spec.ts took 1.6m
|
1 failed
[chromium] › portal/postPmmConnect.spec.ts:366:7 › Spec file for PMM connected the portal › PMM-T1264 Verify that pmm admin user can force disconnect pmm from the portal. @not-ui-pipeline @portal @post-pmm-portal-upgrade
1 flaky
[chromium] › portal/connectPMM.spec.ts:43:7 › Spec file for connecting PMM to the portal › PMM-T398 Verify Percona Platform elements on PMM Settings Page @portal @pre-pmm-portal-upgrade
14 passed (7.5m)
|
The logs for this run have expired and are no longer available.
Loading