24

編集:解決しました!答えは下にスクロール


react-intlコンポーネント テストでは、コンテキストにアクセスできるようにする必要があります。問題は、親ラッパーmount()なしで (Enzyme の) 単一コンポーネントをマウントしていることです。<IntlProvider />これは、プロバイダーをラップすることで解決されますが、 は ではなくインスタンスをroot指します。IntlProviderCustomComponent

The Testing with React-Intl: Enzymeドキュメントはまだ空です。

<カスタム コンポーネント />

class CustomComponent extends Component {
  state = {
    foo: 'bar'
  }

  render() {
    return (
      <div>
        <FormattedMessage id="world.hello" defaultMessage="Hello World!" />
      </div>
    );
  }
}

標準テストケース (望ましい) (酵素 + モカ + チャイ)

// This is how we mount components normally with Enzyme
const wrapper = mount(
  <CustomComponent
    params={params}
  />
);

expect( wrapper.state('foo') ).to.equal('bar');

ただし、コンポーネントはライブラリFormattedMessageの一部として使用react-intlするため、上記のコードを実行すると次のエラーが発生します。

Uncaught Invariant Violation: [React Intl] Could not find required `intl` object. <IntlProvider> needs to exist in the component ancestry.


で包むIntlProvider

const wrapper = mount(
  <IntlProvider locale="en">
    <CustomComponent
      params={params}
    />
  </IntlProvider>
);

これにより、必要なコンテキストが提供CustomComponentintlれます。ただし、次のようなテスト アサーションを実行しようとすると、次のようになります。

expect( wrapper.state('foo') ).to.equal('bar');

次の例外が発生します。

AssertionError: expected undefined to equal ''

IntlProviderこれはもちろん、私たちの ではなくの状態を読み取ろうとするためCustomComponentです。


アクセスの試みCustomComponent

以下を試してみましたが、役に立ちませんでした:

const wrapper = mount(
  <IntlProvider locale="en">
    <CustomComponent
      params={params}
    />
  </IntlProvider>
);


// Below cases have all individually been tried to call `.state('foo')` on:
// expect( component.state('foo') ).to.equal('bar');

const component = wrapper.childAt(0); 
> Error: ReactWrapper::state() can only be called on the root

const component = wrapper.children();
> Error: ReactWrapper::state() can only be called on the root

const component = wrapper.children();
component.root = component;
> TypeError: Cannot read property 'getInstance' of null

問題は、「ルート」操作を実行しながら、コンテキストを使用してマウントするにはどうすればよいかCustomComponentintlCustomComponentということです。

4

1 に答える 1

27

既存の Enzymemount()shallow()関数にパッチを適用するヘルパー関数を作成しました。現在、React Intl コンポーネントを使用するすべてのテストでこれらのヘルパー メソッドを使用しています。

ここで要点を見つけることができます:https://gist.github.com/mirague/c05f4da0d781a9b339b501f1d5d33c37


データへのアクセスを維持するために、ここにコードを簡単に示します。

helpers/intl-test.js

/**
 * Components using the react-intl module require access to the intl context.
 * This is not available when mounting single components in Enzyme.
 * These helper functions aim to address that and wrap a valid,
 * English-locale intl context around them.
 */

import React from 'react';
import { IntlProvider, intlShape } from 'react-intl';
import { mount, shallow } from 'enzyme';

const messages = require('../locales/en'); // en.json
const intlProvider = new IntlProvider({ locale: 'en', messages }, {});
const { intl } = intlProvider.getChildContext();

/**
 * When using React-Intl `injectIntl` on components, props.intl is required.
 */
function nodeWithIntlProp(node) {
  return React.cloneElement(node, { intl });
}

export default {
  shallowWithIntl(node) {
    return shallow(nodeWithIntlProp(node), { context: { intl } });
  },

  mountWithIntl(node) {
    return mount(nodeWithIntlProp(node), {
      context: { intl },
      childContextTypes: { intl: intlShape }
    });
  }
};

カスタムコンポーネント

class CustomComponent extends Component {
  state = {
    foo: 'bar'
  }

  render() {
    return (
      <div>
        <FormattedMessage id="world.hello" defaultMessage="Hello World!" />
      </div>
    );
  }
}

CustomComponentTest.js

import { mountWithIntl } from 'helpers/intl-test';

const wrapper = mountWithIntl(
  <CustomComponent />
);

expect(wrapper.state('foo')).to.equal('bar'); // OK
expect(wrapper.text()).to.equal('Hello World!'); // OK
于 2016-05-04T09:03:27.913 に答える