首页 > 解决方案 > 在 React 模块中测试 SweetAlert2 的 preConfirm 钩子

问题描述

具有这样的 React 模块名称Modal

import withReactContent from 'sweetalert2-react-content'

export const Modal = withReactContent(Swal)
const showModal = props => {
  return Modal.fire({
    ...props,
    showCloseButton: true
  })
}

export default showModal

在另一个组件中用作用户操作的确认框

export const renderDeployModal = (deploymentId) => {
  console.log(' - renderDeployModal - ')
  Modal.fire({
    type: 'question',
    text: `Are you sure you wish to re-deploy this (${deploymentId})?`,
    showCancelButton: true,
    confirmButtonText: 'Deploy',
    preConfirm: () => {
      console.log(' - preConfirm - ')
      return apiRequest(`/deployments/${deploymentId}/trigger`, {}, 'POST')
        .then(response => {
          return response.body
        })
        .catch(response => {
          Modal.showValidationMessage(response.message)
        })
    },
    allowOutsideClick: () => !Modal.isLoading()
  }).then(result => {
    if (result.value) {
      notify('success', 'Your deployment has triggered.')
    }
  })
}

实现工作,但我被困在测试preConfirm钩子中执行的逻辑,因为我想不出任何方法来Modal.clickConfirm()手动触发我的测试并实际工作

import * as mockModal from '../../modal'
jest.mock('../../modal')

describe('renderDeployModal', () => {

  it('fails to run a deploy without deploymentId argument', async () => {
    const Modal = mockModal.Modal.mockImplementationOnce()

    Modal.fire.mockImplementationOnce(() => Promise.resolve({ value: false }))
    Modal.clickConfirm = jest.fn()

    // Modal.clickConfirm.mockImplementation(() => Promise.resolve())
    // const spy = jest.spyOn(mockModal.Modal, 'clickConfirm')

    apiRequest.default = jest.fn().mockReturnValue(Promise.reject(new Error('foo')))
    await renderDeployModal(null)
    await Promise.resolve()

    Modal.clickConfirm()
    await Promise.resolve()

    expect(Modal.fire).toHaveBeenCalled()
    expect(Modal.clickConfirm).toHaveBeenCalled()
    expect(apiRequest.default).toHaveBeenCalledWith(`/deployments/null/trigger`, {}, 'POST')
  })

上面的测试在预期的最后一次失败apiRequest

  console.log src/actions.js:111
     - renderDeployModal -
 FAIL  src/actions.test.js
...
    ✕ fails to run a deploy without deploymentId argument (56ms)

  ● renderDeployModal › fails to run a deploy without deploymentId argument

    expect(jest.fn()).toHaveBeenCalledWith(expected)

    Expected mock function to have been called with:
      ["/deployments/null/trigger", {}, "POST"]
    But it was not called.

      148 |     expect(Modal.fire).toHaveBeenCalled()
      149 |     expect(Modal.clickConfirm).toHaveBeenCalled()
    > 150 |     expect(apiRequest.default).toHaveBeenCalledWith(`/deployments/null/trigger`, {}, 'POST')
          |                                ^

console.log(' - renderDeployModal - ')显示,但console.log(' - preConfirm - ')不显示,表明Modal.clickConfirm()未正确触发。

我在这里想念什么?我没有想法(好或坏)可以尝试。

标签: javascriptreactjsmockingjestjssweetalert2

解决方案


每当您像以前一样模拟模块时

jest.mock('../../modal')

它为模块对象对象的每个属性创建模拟函数,而无需实现。

因此,您将一个对象传递给Modal.fire()具有回调的对象preConfirm,但没有什么应该调用它。因此,您可能应该将模拟实现更改为:

Modal.fire.mockImplementationOnce(({ preConfirm }) => {
  preConfirm(); // <- execute the given callback
  return Promise.resolve({ value: false })
})

然后期望它被调用


旁注:顺便说一句,没有意义

test('if I call a function it`s actually being called', () => {
    Modal.clickConfirm() // <- execute a function within the test
    expect(Modal.clickConfirm).toHaveBeenCalled() // and make sure it have been called few lines below
});

推荐阅读