EDIT: Решено! Прокрутите вниз для ответа
В наших тестах компонентов нам нужно, чтобы они имели доступ к контексту react-intl
. Проблема в том, что мы монтируем отдельные компоненты (с Enzyme mount()
) без их родительской оболочки <IntlProvider />
. Это решается путем обертывания провайдера, но затем root
указывает на экземпляр IntlProvider
, а не на CustomComponent
.
Тестирование с помощью React-Intl: Enzyme Документы по-прежнему пусты.
< CustomComponent/ >
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>
);
Это предоставляет CustomComponent
контекст intl
, который он запрашивает. Однако при попытке выполнить такие утверждения теста, как эти:
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
Вопрос: Как мы можем монтировать CustomComponent
с контекстом intl
, все еще имея возможность выполнять "root" операции на нашем CustomComponent
?