node.js – 模拟fs.readdir进行测试

前端之家收集整理的这篇文章主要介绍了node.js – 模拟fs.readdir进行测试前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试为我的测试模拟函数fs.readdir.

起初我曾尝试使用sinon,因为这是一个非常好的框架,但是没有用.

stub(fs,'readdir').yieldsTo('callback',{ error: null,files: ['index.md','page1.md','page2.md'] });

我的第二次尝试是使用自替换函数来模拟函数.但它也行不通.

beforeEach(function () {
  original = fs.readdir;

  fs.readdir = function (path,callback) {
    callback(null,['/content/index.md','/content/page1.md','/content/page2.md']);
  };
});

afterEach(function () {
  fs.readdir = original;
});

任何人都可以告诉我为什么两者都不起作用?谢谢!

更新 – 这也不起作用:

sandBox.stub(fs,'readdir',function (path,['index.md','page2.md']);
  });

UPDATE2:

当我试图在我的测试中直接调用函数时,我最后一次尝试模拟readdir函数正在工作.但是当我在另一个模块中调用mocked函数时.

解决方法

我找到了问题的原因.我在我的测试类中创建了mock,试图用supertest测试我的rest api.问题是测试是在我的网络服务器运行的过程中在另一个进程中执行的.我在我的测试类中创建了express-app,测试现在是绿色的.

这是测试

describe('When user wants to list all existing pages',function () {
    var sandBox;
    var app = express();

    beforeEach(function (done) {
      sandBox = sinon.sandBox.create();

      app.get('/api/pages',pagesRoute);
      done();
    });

    afterEach(function (done) {
      sandBox.restore();
      done();
    });

    it('should return a list of the pages with their titles except the index page',function (done) {
      sandBox.stub(fs,callback) {
        callback(null,'page2.md']);
      });

      request(app).get('/api/pages')
        .expect('Content-Type',"application/json")
        .expect(200)
        .end(function (err,res) {
          if (err) {
            return done(err);
          }

          var pages = res.body;

          should.exists(pages);

          pages.length.should.equal(2);

          done();
        });
    });
});
原文链接:https://www.f2er.com/nodejs/241184.html

猜你在找的Node.js相关文章