0

私は次の設定をしています:

  • E2E Test Utils - Jest と Puppeteer を使用する標準 WP Gutenberg e2e テスト セット
  • testing-library/pptr-testing-library - @testing-library/react および @testing-library/library からのすべてのお気に入りのユーザー中心のクエリ関数は、Puppeteer から入手できます!

GB エディターでの要素の表示と非表示のテストで問題が発生しています。拡張アサーションが Puppeteer では機能しないことに気付きました。何をテストすればよいのかわかりません。インタラクティブ モードでテストを実行すると、すべてがうまくいっていることがわかりますが、正しい結果が得られません。クエリの結果は空のオブジェクトです。これが私のコードのスニペットです:

import {
    enablePageDialogAccept,
    setBrowserViewport,
    createNewPost,
    openDocumentSettingsSidebar,
    insertBlock,
    loginUser,
} from '@wordpress/e2e-test-utils';

import '@testing-library/jest-dom/extend-expect';
import { getDocument, queries, waitFor } from 'pptr-testing-library';

import { clearPuppeteerBrowser } from '../../../lib/helpers/e2eHelpers';

const {
    getByRole,
    getByLabelText,
    getByDisplayValue,
    getByText,
    queryByLabelText,
    findByRole,
    findByLabelText,
    findByText,
    findAllByText,
} = queries;

describe('CVGB Button block', () => {
  // Initialize vars within suite's scope
  let $document;
  let $editorSettings;
  let $editorContent;

  // Enable page dialog before running any tests
  beforeAll(async () => {
    await clearPuppeteerBrowser();
    await loginUser();
    await enablePageDialogAccept();
  });

  // Wait for creating a new post before running each of the tests
  beforeEach(async () => {
    await createNewPost();
    $document = await getDocument(page);

    // we want to look for Sidebar region only
    $editorSettings = await getByRole($document, 'region', { name: 'Editor settings' });

    // the same for the editor content, so we don't get repeated components from all the document
    $editorContent = await getByRole($document, 'region', { name: 'Editor content' });
  });

  it('should be able to unset a Link when URL is already set', async () => {
    await insertBlock('CVGB Button');
    await openDocumentSettingsSidebar();

    const $linkButton = await findByRole($document, 'button', {
      name: 'Link',
    });
    await $linkButton.click();

    const $URLInput = await findByRole($document, 'combobox', {
      name: 'URL',
    });
    await $URLInput.click();
    await $URLInput.type('https://www.google.es');
    await $URLInput.press('Enter');

    await waitFor(() => {
      expect(
        findByLabelText($document, 'Currently selected', {
          exact: false,
        })
      ).toBeInTheDocument();
    });
  });
});

これが私が見るエラーです:

上記のテストの結果

テストの下の完全なノード エラー メッセージは次のとおりです。

(node:41767) UnhandledPromiseRejectionWarning: Error: Protocol error (Runtime.callFunctionOn): Target closed.
    at /Users/my-user/gb-siteapp/public/wp-content/plugins/cv-wp-gb-lib-blocks/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Connection.js:208:63
    at new Promise (<anonymous>)
    at CDPSession.send (/Users/my-user/gb-siteapp/public/wp-content/plugins/cv-wp-gb-lib-blocks/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Connection.js:207:16)
    at ExecutionContext._evaluateInternal (/Users/my-user/gb-siteapp/public/wp-content/plugins/cv-wp-gb-lib-blocks/node_modules/puppeteer-core/lib/cjs/puppeteer/common/ExecutionContext.js:200:50)
    at ExecutionContext.evaluateHandle (/Users/my-user/gb-siteapp/public/wp-content/plugins/cv-wp-gb-lib-blocks/node_modules/puppeteer-core/lib/cjs/puppeteer/common/ExecutionContext.js:151:21)
    at /Users/my-user/gb-siteapp/public/wp-content/plugins/cv-wp-gb-lib-blocks/node_modules/pptr-testing-library/lib/index.ts:101:8
    at Generator.next (<anonymous>)
    at /Users/my-user/gb-siteapp/public/wp-content/plugins/cv-wp-gb-lib-blocks/node_modules/pptr-testing-library/dist/index.js:8:71
    at new Promise (<anonymous>)
    at Object.<anonymous>.__awaiter (/Users/my-user/gb-siteapp/public/wp-content/plugins/cv-wp-gb-lib-blocks/node_modules/pptr-testing-library/dist/index.js:4:12)
(node:41767) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 908)

編集:Caleb Ebyの回答に応えて

それがの目的だと思っていましたwaitFor()が、 だけを追加するとawait findByLabelText()、エラーが発生します。

SyntaxError: /Users/my-user/gb-siteapp/public/wp-content/plugins/cv-wp-gb-lib-blocks/blocks/button/test/buttonBlock.e2e.spec.js: Unexpected reserved word 'await'. (126:16)

それを次のように変更すると:

        await waitFor(async () => {
            expect(
                await findByLabelText($document, 'Currently selected', {
                    exact: false,
                })
            ).toBeInTheDocument();
        });

テストの実行には非常に長い時間がかかり、エラーで終了します。

    expect(received).toBeInTheDocument()

    received value must be an HTMLElement or an SVGElement.
    Received has type:  object
    Received has value: 
    {
        "_client": {
            "_callbacks": [Map],
            "_connection": [Connection],
            "_sessionId": "9E13F5776A59D1DD6A177F48A9D1A543",
            "_targetType": "page",
            "emitter": [Object],
            "eventsMap": [Map]
        },
        "_context": {
            "_client": [CDPSession],
            "_contextId": 17,
            "_world": [DOMWorld]
        },
        "_disposed": false,
        "_frameManager": {
            "_client": [CDPSession],
            "_contextIdToContext": [Map],
            "_frames": [Map],
            "_isolatedWorlds": [Set],
            "_mainFrame": [Frame],
            "_networkManager": [NetworkManager],
            "_page": [Page],
            "_timeoutSettings": [TimeoutSettings],
            "emitter": [Object],
            "eventsMap": [Map]
        },
        "_page": {
            "_accessibility": [Accessibility],
            "_client": [CDPSession],
            "_closed": false,
            "_coverage": [Coverage],
            "_emulationManager": [EmulationManager],
            "_fileChooserInterceptors": [Set],
            "_frameManager": [FrameManager],
            "_javascriptEnabled": true,
            "_keyboard": [Keyboard],
            "_mouse": [Mouse],
            "_pageBindings": [Map],
            "_screenshotTaskQueue": [ScreenshotTaskQueue],
            "_target": [Target],
            "_timeoutSettings": [TimeoutSettings],
            "_touchscreen": [Touchscreen],
            "_tracing": [Tracing],
            "_viewport": [Object],
            "_workers": [Map],
            "emitter": [Object],
            "eventsMap": [Map]
        },
        "_remoteObject": {
            "className": "HTMLDivElement",
            "description": "div.block-editor-link-control__search-item.is-current",
            "objectId": "-193265238525024879.17.113",
            "subtype": "node",
            "type": "object"
        }
    }

これには実際に解決策の犯人の可能性がありますが、これをテストする正しい方法は何ですか (代わりにtoBeInTheDocument())?

4

1 に答える 1