我们正试图在一些快速应用程序中删除一个身份验证中间件,但不是所有的测试,我们在为我们制作存根工作时遇到了麻烦。
我们的mocha测试看起来像这样: describe('primaryDeal routes unit test',()=> {
describe('Authentication allows for data fetching', () => {
let app;
let getPrimaryDealData;
let queryParams;
let isAuthenticated;
let count = 0;
beforeEach(() => {
// console.log(isAuthenticated);
if (count === 0) {
isAuthenticated = sinon.stub(authCheck, 'isAuthenticated');
isAuthenticated.callsArg(2);
}
app = require('../../lib/index.js');
});
afterEach(() => {
if (count === 0) {
isAuthenticated.restore();
}
app.close();
count++;
});
it(('should send an API request, validate input and return 200 response'), () => {
return chai.request(app)
.get('/api/contracts/')
.then((res) => {
expect(res).to.have.status(200);
});
});
it(('should respond with forbidden'), () => {
app = require('../../lib/index.js');
return chai.request(app)
.get('/api/contracts/')
.catch((res, err) => {
expect(res).to.have.status(403);
});
});
});
});
我们的存根按照预期用于第一个it
,但是存根似乎没有为第二个it
恢复,并且我们的身份验证中间件没有运行。如果另一个被注释掉,这两个测试都有效。
我们尝试在不同的文件中分隔这些块,并且在不同的describe
块中,我们也尝试切换it
块的顺序,我们尝试同时给予chai.request(app)
块{{ 1}}单独的服务器,但我们不知所措。
为什么我们的第二个it
语句不会调用我们的Auth中间件?
答案 0 :(得分:0)
我建议你使用沙盒。使用起来更优雅。无需单独恢复存根。以下是一个示例:
let sandbox;
beforeEach(() => {
sandbox = sinon.sandbox.create();
isAuthenticated = sandbox.stub(authCheck, 'isAuthenticated');
});
afterEach(() => {
sandbox.restore();
});
另外,您可以尝试添加替换
app = require('../../lib/index.js');
delete require.cache[require.resolve('../../lib/index.js')]
app = require('../../lib/index.js');
另一个想法,也许你需要在这种特殊情况下使用reset
而不是restore
?
P.S。 看到index.js来源也很好
答案 1 :(得分:0)
我遇到了同样的问题,并尝试了该解决方案,但没有成功。但是删除require.cache [require.resolve('../../ lib / index.js')]给了我一个主意。我能够使用decache而不是delete require。这为我解决了这个问题。
const decache = require('decache');
decache('../../lib/index.js');