如何使用Jest / Enzyme在React中测试文件类型输入的更改处理程序?

时间:2017-01-17 17:03:08

标签: javascript reactjs filereader jestjs enzyme

我想测试我的React组件是否可以使用FileReader<input type="file"/>元素导入用户选择文件的内容。我的下面的代码显示了一个测试中断的工作组件。

在我的测试中,我尝试使用blob作为文件的替代品,因为blob也可以&#34;读取&#34;按FileReader。这是一种有效的方法吗?我还怀疑问题的一部分是reader.onload是异步的,我的测试需要考虑到这一点。我需要某个地方的承诺吗?或者,我是否需要使用FileReader模拟jest.fn()

我真的更喜欢只使用标准的React堆栈。特别是我想使用Jest和Enzyme,而不是使用Jasmine或Sinon等。但是如果你知道可以用Jest / Enzyme做但是可以以其他方式完成,这可能也会有所帮助。

MyComponent.js:

import React from 'react';
class MyComponent extends React.Component {
    constructor(props) {
        super(props);
        this.state = {fileContents: ''};
        this.changeHandler = this.changeHandler.bind(this);
    }
    changeHandler(evt) {
        const reader = new FileReader();
        reader.onload = () => {
            this.setState({fileContents: reader.result});
            console.log('file contents:', this.state.fileContents);
        };
        reader.readAsText(evt.target.files[0]);
    }
    render() {
        return <input type="file" onChange={this.changeHandler}/>;
    }
}
export default MyComponent;

MyComponent.test.js:

import React from 'react'; import {shallow} from 'enzyme'; import MyComponent from './MyComponent';
it('should test handler', () => {
    const blob = new Blob(['foo'], {type : 'text/plain'});
    shallow(<MyComponent/>).find('input')
        .simulate('change', { target: { files: [ blob ] } });
    expect(this.state('fileContents')).toBe('foo');
});

1 个答案:

答案 0 :(得分:17)

此答案显示 如何使用jest访问代码的所有不同部分。但是,这并不一定意味着应该以这种方式测试所有这些部分。

测试代码与问题中的代码基本相同,只是我已将addEventListener('load', ...替换为onload = ...,并删除了console.log行:

<强> MyComponent.js

import React from 'react';
class MyComponent extends React.Component {
    constructor(props) {
        super(props);
        this.state = {fileContents: ''};
        this.changeHandler = this.changeHandler.bind(this);
    }
    changeHandler(evt) {
        const reader = new FileReader();
        reader.addEventListener('load', () => {
            this.setState({fileContents: reader.result});
        });
        reader.readAsText(evt.target.files[0]);
    }
    render() {
        return <input type="file" onChange={this.changeHandler}/>;
    }
}
export default MyComponent;

我相信我已经设法测试了被测代码中的所有内容(注释中注明了一个例外,并在下面进行了进一步讨论),其中包含以下内容:

<强> MyComponent.test.js

import React from 'react';
import {mount} from 'enzyme';
import MyComponent from './temp01';

it('should test handler', () => {
    const componentWrapper   = mount(<MyComponent/>);
    const component          = componentWrapper.get(0);
    // should the line above use `componentWrapper.instance()` instead?
    const fileContents       = 'file contents';
    const expectedFinalState = {fileContents: fileContents};
    const file               = new Blob([fileContents], {type : 'text/plain'});
    const readAsText         = jest.fn();
    const addEventListener   = jest.fn((_, evtHandler) => { evtHandler(); });
    const dummyFileReader    = {addEventListener, readAsText, result: fileContents};
    window.FileReader        = jest.fn(() => dummyFileReader);

    spyOn(component, 'setState').and.callThrough();
    // spyOn(component, 'changeHandler').and.callThrough(); // not yet working

    componentWrapper.find('input').simulate('change', {target: {files: [file]}});

    expect(FileReader        ).toHaveBeenCalled    (                             );
    expect(addEventListener  ).toHaveBeenCalledWith('load', jasmine.any(Function));
    expect(readAsText        ).toHaveBeenCalledWith(file                         );
    expect(component.setState).toHaveBeenCalledWith(expectedFinalState           );
    expect(component.state   ).toEqual             (expectedFinalState           );
    // expect(component.changeHandler).toHaveBeenCalled(); // not yet working
});

我尚未明确测试的一件事是changeHandler是否被调用。这似乎应该很容易但无论出于何种原因,它仍然在逃避我。显然已经被调用了,因为中的其他模拟函数已被确认已被调用,但我还没有能够检查它本身是否被调用,或者使用jest.fn()甚至是Jasmine的spyOn。我已经要求this other question在SO上尝试解决这个问题。