简体   繁体   English

是否可以为 Node.js fs.readFile() 编写 Jest 单元测试?

[英]Is it possible to write Jest unit tests for Node.js fs.readFile()?

I am new to Jest unit testing and was wondering if Jest can be used to test Node.js file system modules.我是 Jest 单元测试的新手,想知道 Jest 是否可用于测试 Node.js 文件系统模块。

I currently have a text file that contains a short poem, and the viewText function console logs the poem on my terminal.我目前有一个包含一首短诗的文本文件,viewText function 控制台在我的终端上记录了这首诗。

Using Jest, I my goal is to write a test that checks if viewText function is indeed working.使用 Jest,我的目标是编写一个测试来检查viewText function 是否确实有效。

const viewText = () => {
  fs.readFile('poem.txt', 'utf8', (err, data) => {
    if (err) throw err;
    console.log(data);
  });
};

With Jest, I have tried:使用 Jest,我尝试过:

jest.spyOn(global.console, 'log');

const mockPoem = 'Some say the world will end in fire, Some say in ice. From what I’ve tasted of desire I hold with those who favor fire ... And would suffice.';

describe('viewText', () => {
  const mockReadFile = jest.fn();
  mockReadFile.mockReturnValue(mockPoem);

  it('prints poem to console', () => {
    viewText();
    expect(global.console.log).toHaveBeenCalledWith(mockPoem);
  });
});

With the test, all I want to do check if my viewText function passes the test - be able to view the mockPoem .通过测试,我要做的就是检查我的viewText function 是否通过了测试 - 能够查看mockPoem I'm really confused as to how I should approach writing unit tests for functions using the file system module.我真的很困惑我应该如何使用文件系统模块为函数编写单元测试。

Here is an UT solution:这是一个UT解决方案:

index.ts : index.ts

import fs from 'fs';

export const viewText = () => {
  fs.readFile('poem.txt', 'utf8', (err, data) => {
    if (err) throw err;
    console.log(data);
  });
};

index.spec.ts : index.spec.ts

import { viewText } from './';
import fs from 'fs';

const mockPoem =
  'Some say the world will end in fire, Some say in ice. From what I’ve tasted of desire I hold with those who favor fire ... And would suffice.';

describe('viewText', () => {
  afterEach(() => {
    jest.restoreAllMocks();
  });
  test('prints poem to console', done => {
    const logSpy = jest.spyOn(console, 'log');
    let readFileCallback;
    // @ts-ignore
    jest.spyOn(fs, 'readFile').mockImplementation((path, options, callback) => {
      readFileCallback = callback;
    });

    viewText();
    readFileCallback(null, mockPoem);
    expect(logSpy).toBeCalledWith(mockPoem);
    expect(fs.readFile).toBeCalledWith('poem.txt', 'utf8', readFileCallback);
    done();
  });

  test('should throw error when read file failed', done => {
    let readFileCallback;
    // @ts-ignore
    jest.spyOn(fs, 'readFile').mockImplementation((path, options, callback) => {
      readFileCallback = callback;
    });

    viewText();
    const mError = new Error('read file failed');
    expect(() => readFileCallback(mError, null)).toThrowError(mError);
    expect(fs.readFile).toBeCalledWith('poem.txt', 'utf8', readFileCallback);
    done();
  });
});

Unit test result with 100% coverage:覆盖率 100% 的单元测试结果:

 PASS  src/stackoverflow/58810079/index.spec.ts (11.118s)
  viewText
    ✓ prints poem to console (23ms)
    ✓ should throw error when read file failed (3ms)

  console.log node_modules/jest-mock/build/index.js:860
    Some say the world will end in fire, Some say in ice. From what I’ve tasted of desire I hold with those who favor fire ... And would suffice.

----------|----------|----------|----------|----------|-------------------|
File      |  % Stmts | % Branch |  % Funcs |  % Lines | Uncovered Line #s |
----------|----------|----------|----------|----------|-------------------|
All files |      100 |      100 |      100 |      100 |                   |
 index.ts |      100 |      100 |      100 |      100 |                   |
----------|----------|----------|----------|----------|-------------------|
Test Suites: 1 passed, 1 total
Tests:       2 passed, 2 total
Snapshots:   0 total
Time:        13.129s

Source code: https://github.com/mrdulin/jest-codelab/tree/master/src/stackoverflow/58810079源码: https://github.com/mrdulin/jest-codelab/tree/master/src/stackoverflow/58810079

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM