Фермент не тестирует метод onChange - PullRequest
1 голос
/ 01 апреля 2019

Я пытаюсь проверить, передавая фиктивные данные методу изменения для App.test.js, однако я получаю следующую ошибку.

● Обрабатывать событие onChange ›Обрабатывать событие onChange

expect(received).toEqual(expected)

Expected value to equal:
  "Owl"
Received:
  undefined

Difference:

  Comparing two different types of values. Expected string but received undefined.

я проверил похожий пост

onChange - Тестирование с использованием Jest Enzyme - проверка? , однако это не был ответ, который мог бы помочь

App.js

import React, {Component} from 'react';
import logo from './logo.svg';
import './App.css';
import Card from './Card';
import PropTypes from "prop-types";
const Styles = {
    marginTop: '100px',
    inputStyle: {
        borderRadius: '0px',
        border: 'none',
        borderBottom: '2px solid #000',
        outline: 'none',
        focus: 'none'
    }
}
class App extends Component {
    constructor(props) {
        super(props);
        this.state = {
            query: '',
            title: undefined,
            url: undefined
        }
        this.onChange = this.onChange.bind(this);
    }
    onChange(e) {
        this.setState({query: e.target.value})
    }
    getGIY = async(e) => {
        e.preventDefault();
        const { query } = this.state;
        await fetch(`http://api.giphy.com/v1/gifs/search?q=${query}&api_key=iBXhsCDYcnktw8n3WSJvIUQCXRqVv8AP&limit=5`)
        .then(response => response.json())
        .then(({ data }) => {
          this.setState({
            title: data[0].title,
            url: data[0].images.downsized.url
          });
        })
        .catch(console.log);
    }
    render() {
        return (
            <div className="col-md-6 mx-auto" style={Styles}>
                <h1 className="gif-title">Random GIF fetch</h1>
                <form className="form-group" onSubmit={this.getGIY}>
                    <input
                        style={Styles.inputStyle}
                        className="form-control"
                        type="text"
                        name="query"
                        onChange={this.onChange}
                        placeholder="Search GIF..."/>
                    <button type="submit" className="btn btn-primary mt-4">Get GIF</button>
                </form>
                <Card title={this.state.title} url={this.state.url}/>
            </div>
        );
    }
}
PropTypes.propTypes = {
    onChange: PropTypes.func.isRequired,
    getGIY:PropTypes.func.isRequired,
    title:PropTypes.string.isRequired,
    url:PropTypes.string.isRequired
}
export default App;

App.test.js

import React from 'react';
import ReactDOM from 'react-dom';
import {shallow} from 'enzyme';
import App from './App';


describe('Should render App Component', ()=> {
  it('should render app component', ()=> {
    const component = shallow(<App />);
  })
})

describe('Should have h1 title', ()=> {
  it('Should show Random GIF fetch', ()=>{
    const component = shallow(<App/>);

    expect(component.find("h1.gif-title")).toHaveLength(1);
    expect(component.find("h1.gif-title").text()).toContain("Random GIF fetch")
  })
})



describe('Should handle onChange event', ()=> {
  it('should handle onChange event', ()=> {
    const component = shallow(<App/>)
    const form = component.find('input')

    form.props().onChange({
      target:{
        title: 'Owl',
        query: 'Owl',
        url: 'https://media.giphy.com/media/qISaMW1xwmvNS/giphy.gif'
      }
    });
    expect(component.state('query')).toEqual('Owl')

  })
})

1 Ответ

1 голос
/ 01 апреля 2019

Ваш обработчик событий устанавливает состояние на основе e.target.value:

onChange(e) {
    this.setState({query: e.target.value})
}

... но вы не пропускаете ничего за target.value в вашем смоделированном событии.

Измените свой тест на это:

describe('Should handle onChange event', ()=> {
  it('should handle onChange event', ()=> {
    const component = shallow(<App/>)
    const form = component.find('input')

    form.props().onChange({
      target:{
        value: 'Owl'
      }
    });
    expect(component.state('query')).toEqual('Owl')  // Success!
  })
})

... и оно должно работать.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...