web-dev-qa-db-ja.com

単体テストReactコンポーネントの外部をクリック

this answer のコードを使用して、コンポーネントの外側をクリックすることを解決します。

_componentDidMount() {
    document.addEventListener('mousedown', this.handleClickOutside);
}

componentWillUnmount() {
    document.removeEventListener('mousedown', this.handleClickOutside);
}

setWrapperRef(node) {
    this.wrapperRef = node;
}

handleClickOutside(event) {
    if (this.wrapperRef && !this.wrapperRef.contains(event.target)) {
        this.props.actions.something() // Eg. closes modal
    }
}
_

不幸なパスを単体テストする方法がわからないため、アラートが実行されません。

_it('Handles click outside of component', () => {
  props = {
    actions: {
      something: jest.fn(),
    }
  }
  const wrapper = mount(
    <Component {... props} />,
  )
  expect(props.actions.something.mock.calls.length).toBe(0)

  // Happy path should trigger mock

  wrapper.instance().handleClick({
    target: 'outside',
  })

  expect(props.actions.something.mock.calls.length).toBe(1)  //true

  // Unhappy path should not trigger mock here ???

  expect(props.actions.something.mock.calls.length).toBe(1)
})
_

私はもう試した:

  • wrapper.html()を介して送信
  • _.find_ノードを送信して送信する(_event.target_をモックしない)
  • _.simulate_ ing click内の要素に(イベントリスナーをトリガーしません)

私は小さなものが欠けていると確信していますが、この例はどこにも見つかりませんでした。

20
csilk
import { mount } from 'enzyme'
import React from 'react'
import ReactDOM from 'react-dom'

it('Should not call action on click inside the component', () => {
  const map = {}

  document.addEventListener = jest.fn((event, cb) => {
    map[event] = cb
  })

  const props = {
    actions: {
      something: jest.fn(),
    }
  }

  const wrapper = mount(<Component {... props} />)

  map.mousedown({
    target: ReactDOM.findDOMNode(wrapper.instance()),
  })

  expect(props.actions.something).not.toHaveBeenCalled()
})

this githubでの酵素の問題からの解決策。

23
quotesBro