单元测试在原生反应中触摸事件

我正在尝试使用本指南测试驱动器反应本机代码。 reactjs重写了原生反应,以便使用jestjs进行浅显示和测试。

尽管我可以测试浅呈现组件(检查它的存在和子项),但我无法测试触摸事件。

handleTouch() {
 this.setState({ showDescription: !this.state.showDescription });
}


render() {
const description = this.state.showDescription ? (<Text style={styles.description}>{this.props.entry.description}</Text>) : null;
return (
  <TouchableNativeFeedback onPress={() => this.handleTouch()}>
    <View style={styles.rowContainer}>
      <View style={styles.row}>
      </View>
      {description}
    </View>
  </TouchableNativeFeedback>
 )
}

我试图测试是否触摸了TouchableNativeFeedbackdescription标签被呈现。 reactjs TestUtils提供了Simulate但它不起作用。

这是我的规格设置:

beforeEach(function() {
    profileView = TestUtils.renderIntoDocument(<ProfileEntryView entry={entry}/>);
    var touchableNativeFeedback = TestUtils.findRenderedComponentWithType(profileView, TouchableNativeFeedback);
    TestUtils.Simulate.onTouchEnd(touchableNativeFeedback);
});

我将如何使用reactjs TestUtils来测试用户界面之间的相互作用以反应原生?


因为ReactTestUtils模拟不具有onTouchEndonPress事件。 所以,你需要添加到模拟对象mocks /react-native.js

const NativeComponent = (type) => {
    return React.createClass({
        render() {
            var properties = {className: type};
            if (typeof this.props.onPress !== 'undefined') {
                properties.onClick = this.props.onPress;
            }
            Object.assign(properties, this.props);
            return (
                <div {...properties}>{this.props.children}</div>
            );
      }
};
...
ReactNative.TouchableNativeFeedback = NativeComponent("TouchableNativeFeedback");

并将您的测试代码更新为:

var touchableNativeFeedback = TestUtils.findRenderedDOMComponentWithClass(profileView, 'TouchableNativeFeedback');
TestUtils.Simulate.click(touchableNativeFeedback);

从这个页面寻找更多的代码。

链接地址: http://www.djcxy.com/p/90085.html

上一篇: Unit testing touch events in react native

下一篇: Generate random variables from a distribution function using inverse sampling