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()
    })
  • 相关阅读:
    Struts系列教材 (四)- 基础
    Struts系列教材 (三)- 基础
    Struts系列教材 (一)- 基础
    Hibernate系列教材 (三十)- 注解
    网络之AFNetworking
    iOS网络学习之“远离NSURLConnection 走进NSURLSession”
    ios中常见数据存储方式以及SQLite常用的语句
    利用"仿射变换"制作“酷炫特效”
    图片滚动新闻和新闻的滚动菜单
    简易聊天窗口
  • 原文地址:https://www.cnblogs.com/Answer1215/p/12823552.html
Copyright © 2011-2022 走看看