你会如何在Alert中模拟'onPress'?

时间:2017-09-07 02:55:12

标签: javascript unit-testing react-native jestjs enzyme

我能够模拟警报以测试它正在调用警报方法,但我真正想要测试的是按警报中的确定按钮。

import { Alert } from 'react-native';

it('Mocking Alert', () => {
    jest.mock('Alert', () => {
        return {
          alert: jest.fn()
          }
        };
      });

    const spy = jest.spyOn(Alert, 'alert');
    const wrapper = shallow(<Search />);

    wrapper.findWhere(n => n.props().title == 'Submit').simulate('Press');
    expect(spy).toHaveBeenCalled(); //passes
})

我绝对不确定如何测试。这是我试图测试的通用组件。

export default class Search extends Component{

    state = {
      someState: false
    }

    confirmSubmit(){
      this.setState(state => ({someState: !state.someState}))
    }

    onPress = () => {
      Alert.alert(
        'Confirm',
        'Are you sure?'
        [{text: 'Ok', onPress: this.confirmSubmit}] //<-- want to test this
      )
    }

    render(){
      return(
       <View>
         <Button title='Submit' onPress={this.onPress}
       </View>
      )
    }
}

有没有人试过这个?

2 个答案:

答案 0 :(得分:12)

我会模拟模块并导入它以测试间谍。然后触发click事件。这会打电话给间谍。从间谍中你可以使用mock.calls获取调用的参数来获取onPress方法并调用它。然后,您可以测试组件的状态。

import Alert from 'Alert'

jest.mock('Alert', () => {
    return {
      alert: jest.fn()
    }
});


it('Mocking Alert', () => {
    const wrapper = shallow(<Search />);
    wrapper.findWhere(n => n.props().title == 'Submit').simulate('Press');
    expect(Alert.alert).toHaveBeenCalled(); // passes
    Alert.alert.mock.calls[0][2][0].onPress() // trigger the function within the array
    expect(wrapper.state('someState')).toBe(true)
})

答案 1 :(得分:1)

我在测试 Alert 并尝试为 Alert 模拟 onPress 时遇到了同样的问题。我正在用 TypeScript 实现我的代码。我设法通过使用 spyOn 来处理这个问题:

const spyAlert = jest.spyOn(Alert, 'alert');

然后要使用 onPress,您需要忽略该行的类型检查,否则您会得到 - 无法调用可能为“未定义”的对象。

// @ts-ignore
spyAlert.mock.calls[0][2][0].onPress();