我正在尝试测试从根组件继承上下文的组件,而不从根目录下加载/呈现所有内容。我已经尝试并搜索了如何模拟上下文但无法找到任何内容的示例(至少不会使用jest)。
这是我想要实现的一个简化示例。
有没有一种简单的方法可以模拟reactEl.context进行测试?
/**
* Root Element that sets up & shares context
*/
class Root extends Component {
getChildContext() {
return {
language: { text: 'A String'}
};
}
render() {
return (
<div>
<ElWithContext />
</div>
);
}
}
Root.childContextTypes = { language: React.PropTypes.object };
/**
* Child Element which uses context
*/
class ElWithContext extends React.Component{
render() {
const {language} = this.context;
return <p>{language.text}</p>
}
}
ElWithContext.contextTypes = { language: React.PropTypes.object }
/**
* Example test where context is unavailable.
*/
let el = React.createElement(ElWithContext)
element = TestUtils.renderIntoDocument(el);
// ERROR: undefined is not an object (evaluating 'language.text')
describe("ElWithContext", () => {
it('should contain textContent from context', () => {
const node = ReactDOM.findDOMNode(element);
expect(node.textContent).to.equal('A String');
});
})
答案 0 :(得分:15)
我和你一样遇到了同样的问题,并找到了两种方法。
第一个是你自己的方式的基本模仿:在我的组件周围创建一个包装器,并用动态上下文注入它。我把下面的源代码放在那些感兴趣的人身上,因为它的ES6与你的例子不同。但它只是为了展示如何在ES6中完成它并且我不推荐任何人使用它(我还没有亲自测试过它)。
的src / testUtils / mockWithContext.js
import React, { Component } from 'react';
import wrapDisplayName from 'recompose/wrapDisplayName';
import hoistStatics from 'recompose/hoistStatics';
export const defaultContext = {
permissions: [
],
user: {
id: '1',
display_name: 'Default user',
email: '<your.email>+default.user@gmail.com', // Trick with "+" for infinite aliases using gmail.
username: 'default_user',
created: '2016-08-01T15:50:13.246Z',
},
};
export const defaultContextType = {
permissions: React.PropTypes.array,
user: React.PropTypes.shape({
id: React.PropTypes.string.isRequired,
display_name: React.PropTypes.string.isRequired,
email: React.PropTypes.string.isRequired,
username: React.PropTypes.string.isRequired,
created: React.PropTypes.string.isRequired,
}),
};
/**
* HOC for context
*/
const withContext = ({ context = defaultContext, contextType = defaultContextType }) => (WrappedComponent) => {
class WithContext extends Component {
getChildContext() {
return context;
}
render() {
return <WrappedComponent {...this.props} />;
}
}
WithContext.displayName = wrapDisplayName(WrappedComponent, 'WithContext');
WithContext.WrappedComponent = WrappedComponent;
WithContext.childContextTypes = contextType;
return WithContext;
};
export default hoistStatics(withContext);
正如我所说的那样,我写了它,但没有测试它,因为我在尝试为这个模拟编写测试时找到了更好的上下文注入方法。
使用完全支持React组件测试的Enzyme库,可以shallow
/ mount
/ static
呈现您的组件,以进行测试。并且每个方法都允许第二个参数:上下文。
SimpleComponent.js
const SimpleComponent = React.createClass({
contextTypes: {
name: React.PropTypes.string,
},
render() {
return <div>{this.context.name}</div>;
},
});
SimpleComponent.test.js
const context = { name: 'foo' };
const wrapper = mount(<SimpleComponent />, { context });
expect(wrapper.text()).to.equal('foo');
wrapper.setContext({ name: 'bar' });
expect(wrapper.text()).to.equal('bar');
wrapper.setContext({ name: 'baz' });
expect(wrapper.text()).to.equal('baz');
非常直截了当。我还没有使用它,但它看起来像我(和你)想要做的。我想我只需要把我自己的实现扔进垃圾箱。
http://airbnb.io/enzyme/docs/api/ReactWrapper/setContext.html
答案 1 :(得分:3)
我选择了使用上下文创建包装组件的解决方案。不确定这是一个很好的方法,但现在正在为我工作:
/**
* Helper function to wrap component with a component that has context
*/
function wrapWithContext(context, contextTypes, children, React){
const wrapperWithContext = React.createClass({
childContextTypes: contextTypes,
getChildContext: function() { return context },
render: function() { return React.createElement('div', null, children) }
});
return React.createElement(wrapperWithContext);
}
/**
* Usage
*/
// in setup function of test framework
const el = React.createElement(ElWithContext);
const context = { language: { text: 'A String' } };
const contextTypes = { language: React.PropTypes.object };
const wrapper = wrapWithContext(context, contextTypes, [el], React);
const ElWithContext = TestUtils.renderIntoDocument(wrapper);
// do tests
describe('ElWithContext', () => {
it('should contain textContent from context', () => {
const node = ReactDOM.findDOMNode(element);
expect(node.textContent).to.equal('A String');
});
})