使用Jest在自定义Ajax函数中模拟响应值

问题描述 投票:0回答:1

我们将axios替换为自定义ajax函数,以避免Promises和IE11不支持的任何功能。

/* _utility.js */

export const ajaxGet = ( config ) => {
    const httpRequest = new XMLHttpRequest();
    const defaultConfig = Object.assign( {
        url: '',
        contentType: 'application/json',
        success: ( response ) => {},
    }, config );

    httpRequest.onreadystatechange = function() {
        if ( httpRequest.readyState === XMLHttpRequest.DONE ) {
            if ( httpRequest.status >= 200 && httpRequest.status < 300 ) {
                defaultConfig.success( JSON.parse( httpRequest.responseText ) );
            }
        }
    };

    httpRequest.open( 'GET', defaultConfig.url, true );
    httpRequest.send();
};

这通过以下方式在React JS中使用:

/* AggregationPageContent */

export class AggregationPageContent extends React.Component {
    constructor() {
        super();
        this.state = {
            data: false,
        };
    }

    componentDidMount() {
        const { restUrl, termId } = tlsAggregationPage;

        ajaxGet( {
            url: `${ restUrl }/category/${ termId }?page=${ this.state.page }`,
            success: ( response ) => {
                this.setState( {
                    data: response,
                    page: 1,
                }
            },
        } );
    }
}

[在与axios一起使用时,以这种方式模拟了响应:

/* AggregationPage.test.js */

import { aggregationData } from '../../../stories/aggregation-page-data-source';

jest.mock( 'axios' );

test( 'Aggregation page loads all components.', async () => {
    global.tlsAggregationPage = {
        id: 123,
        resultUrl: 'test',
    };

    axios.get.mockResolvedValue( { data: aggregationData } );

我已经尝试模拟ajaxGet的响应,但是我已经走到了尽头。如何模拟传递给defaultConfig.success( JSON.parse( httpRequest.responseText ) );的值?

javascript reactjs testing mocking jestjs
1个回答
0
投票

这里是单元测试解决方案:

_utility.js

export const ajaxGet = (config) => {
  const httpRequest = new XMLHttpRequest();
  const defaultConfig = Object.assign(
    {
      url: '',
      contentType: 'application/json',
      success: (response) => {},
    },
    config,
  );

  httpRequest.onreadystatechange = function() {
    if (httpRequest.readyState === XMLHttpRequest.DONE) {
      if (httpRequest.status >= 200 && httpRequest.status < 300) {
        defaultConfig.success(JSON.parse(httpRequest.responseText));
      }
    }
  };

  httpRequest.open('GET', defaultConfig.url, true);
  httpRequest.send();
};

AggregationPageContent.jsx

import React from 'react';
import { ajaxGet } from './_utility';

const tlsAggregationPage = { restUrl: 'https://example.com', termId: '1' };

export class AggregationPageContent extends React.Component {
  constructor() {
    super();
    this.state = {
      data: false,
      page: 0,
    };
  }

  componentDidMount() {
    const { restUrl, termId } = tlsAggregationPage;

    ajaxGet({
      url: `${restUrl}/category/${termId}?page=${this.state.page}`,
      success: (response) => {
        this.setState({
          data: response,
          page: 1,
        });
      },
    });
  }

  render() {
    return null;
  }
}

AggregationPage.test.jsx

import { AggregationPageContent } from './AggregationPageContent';
import { ajaxGet } from './_utility';
import { shallow } from 'enzyme';

jest.mock('./_utility.js', () => {
  return {
    ajaxGet: jest.fn(),
  };
});

describe('AggregationPageContent', () => {
  afterEach(() => {
    jest.resetAllMocks();
  });
  it('should pass', () => {
    let successCallback;
    ajaxGet.mockImplementationOnce(({ url, success }) => {
      successCallback = success;
    });
    const wrapper = shallow(<AggregationPageContent></AggregationPageContent>);
    expect(wrapper.exists()).toBeTruthy();
    const mResponse = [];
    successCallback(mResponse);
    expect(wrapper.state()).toEqual({ data: [], page: 1 });
    expect(ajaxGet).toBeCalledWith({ url: 'https://example.com/category/1?page=0', success: successCallback });
  });
});

单元测试结果覆盖率100%:

 PASS  src/stackoverflow/59299691/AggregationPage.test.jsx (13.603s)
  AggregationPageContent
    ✓ should pass (13ms)

----------------------------|----------|----------|----------|----------|-------------------|
File                        |  % Stmts | % Branch |  % Funcs |  % Lines | Uncovered Line #s |
----------------------------|----------|----------|----------|----------|-------------------|
All files                   |      100 |      100 |      100 |      100 |                   |
 AggregationPageContent.jsx |      100 |      100 |      100 |      100 |                   |
----------------------------|----------|----------|----------|----------|-------------------|
Test Suites: 1 passed, 1 total
Tests:       1 passed, 1 total
Snapshots:   0 total
Time:        15.403s

源代码:https://github.com/mrdulin/jest-codelab/tree/master/src/stackoverflow/59299691

© www.soinside.com 2019 - 2024. All rights reserved.