gpt4 book ai didi

node.js - 使用 sinon stub 在 mocha 中对 ES6 函数导入进行 stub

转载 作者:太空宇宙 更新时间:2023-11-03 22:11:07 26 4
gpt4 key购买 nike

我正在尝试根据 super 测试库的请求,在 Express Router 中的一条路由上调用 stub 函数。我看到函数 foo 被正确调用,不幸的是它没有被我在测试中编写的 stub 函数替换。代码是用 ES6 编写的,我使用 babel-register 和 babel-polyfill 来使其工作。

我使用运行测试脚本

./node_modules/mocha/bin/mocha server --timeout 10000 --compilers js:babel-register --require babel-polyfill --recursive

路由器.js

import {foo} from '../controller';
const router = new Router();
router.route(ROUTE).post(foo);

Controller .js

export function foo(req, res) {
res.status(200).send({
ok: 'ok'
});
}

测试.js

import request from 'supertest';
import sinon from 'sinon';
import {app} from 'app';
import * as controller from 'controller';

const agent = request.agent(app);
describe('Admin routes tests', () => {
it('Tests login admin route', async () => {
const bar = () => {
console.log('bar');
};
sinon.stub(controller, 'foo', bar);
const req = await agent
.post(ROUTE)
.set('Accept', 'application/json');
console.log(stub.calledOnce); // false
});
});

任何帮助将不胜感激。

最佳答案

解决方案如下:

app.js:

import express from "express";
import * as controller from "./controller";

const app = express();

app.post("/foo", controller.foo);

export { app };

controller.js:

export function foo(req, res) {
res.status(200).send({ ok: "ok" });
}

test.js:

import request from "supertest";
import sinon from "sinon";
import * as controller from "./controller";
import { expect } from "chai";

describe("Admin routes tests", () => {
it("Tests login admin route", (done) => {
const bar = () => {
console.log("bar");
};
const fooStub = sinon.stub(controller, "foo").callsFake(bar);
const { app } = require("./app");
const agent = request.agent(app);
agent
.post("/foo")
.set("Accept", "application/json")
.timeout(1000)
.end((err, res) => {
sinon.assert.calledOnce(fooStub);
expect(res).to.be.undefined;
expect(err).to.be.an.instanceof(Error);
done();
});
});
});

由于您对 foo Controller 进行了 stub 处理,并且其返回值是 undefined。对于supertest,没有响应,比如res.send(),服务器会挂起,直到mocha测试超时,从而导致测试失败。

.mocharc.yml:

recursive: true
require: ts-node/register
timeout: 2000
diff: true
inline-diffs: true

我们为 super 测试添加.timeout(1000),因为我们知道它会超时(你用bar stub foo Controller )。并且,针对此超时错误做出断言。

集成测试结果与覆盖率报告:

  Admin routes tests
bar
✓ Tests login admin route (1341ms)


1 passing (1s)

---------------|----------|----------|----------|----------|-------------------|
File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s |
---------------|----------|----------|----------|----------|-------------------|
All files | 95.65 | 100 | 80 | 95.65 | |
app.ts | 100 | 100 | 100 | 100 | |
controller.ts | 50 | 100 | 0 | 50 | 2 |
test.ts | 100 | 100 | 100 | 100 | |
---------------|----------|----------|----------|----------|-------------------|

源代码:https://github.com/mrdulin/mocha-chai-sinon-codelab/tree/master/src/stackoverflow/41600031

关于node.js - 使用 sinon stub 在 mocha 中对 ES6 函数导入进行 stub ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41600031/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com