zoukankan      html  css  js  c++  java
  • [React Testing] Test a Custom React Hook with React’s Act Utility and a Test Component

    We’ve got a custom useCounter hook here and we want to make sure the increment and decrement functions it returns will update the count state that it returns. Because hooks must be run within the render phase of a component, we’ll create a simple component that simply uses the hook and render that component. One catch is that whenever there’s a state update in your tests, React needs you to wrap that in a call to act. We don’t have to do that for regular component tests that use React Testing Library utilities because those utilities manage the act call internally, but since we’re calling these state updater functions ourselves, we have to wrap things in act. Let’s do that for our useCounter hook.

    Component:

    import React from 'react'
    
    function useCounter({ initialCount = 0, step = 1 } = {}) {
      const [count, setCount] = React.useState(initialCount)
      const increment = () => setCount((c) => c + step)
      const decrement = () => setCount((c) => c - step)
      return { count, increment, decrement }
    }
    
    export { useCounter }

    Test:

    import React from 'react'
    import { render, act } from '@testing-library/react'
    import { useCounter } from '../../components/extra/use-counter'
    
    test('exposes the count and increment/decrement functions', () => {
      let result
      function TestComponent() {
        result = useCounter()
        return null
      }
      render(<TestComponent />)
      expect(result.count).toBe(0)
      act(() => result.increment())
      expect(result.count).toBe(1)
      act(() => result.decrement())
      expect(result.count).toBe(0)
    })
    test('exposes the count and increment/decrement functions', () => {
      const result = {}
      function TestComponent(options) {
        result.current = useCounter(options)
        return null
      }
      const { rerender } = render(<TestComponent />)
      expect(result.current.count).toBe(0)
      act(() => result.current.increment())
      expect(result.current.count).toBe(1)
    
      rerender(<TestComponent step={2} />)
    
      act(() => result.current.decrement())
      expect(result.current.count).toBe(-1)
    })

    Component:

    import { useState, useEffect, useRef } from 'react'
    
    export function useFocus() {
      const inputRef = useRef()
      useEffect(() => {
        inputRef.current.focus()
      }, [])
      return inputRef
    }

    Test:

    import React from 'react'
    import { render } from '@testing-library/react'
    import '@testing-library/jest-dom/extend-expect'
    import { useFocus } from '../hooks'
    
    test('should expose input ref and auto focus on input dom', () => {
      let inputRef
      function InputComponent() {
        inputRef = useFocus()
        return <input ref={inputRef} data-testid="testInput" />
      }
      const { getByTestId } = render(<InputComponent />)
      expect(getByTestId('testInput')).toHaveFocus()
    })
  • 相关阅读:
    SpringIoC和SpringMVC的快速入门
    Swoole引擎原理的快速入门干货
    Windowns 10打开此电脑缓慢问题的一种解决办法
    CentOS下使用Postfix + Dovecot + Dnsmasq搭建极简局域网邮件系统
    CentOS7.2 创建本地YUM源和局域网YUM源
    CentOS 7.2 安装配置Samba服务器
    Zookeeper 日志输出到指定文件夹
    MySQL索引优化-from 高性能MYSQL
    Transaction事务注解和DynamicDataSource动态数据源切换问题解决
    Redis使用经验之谈
  • 原文地址:https://www.cnblogs.com/Answer1215/p/12823552.html
Copyright © 2011-2022 走看看