创建一个沙箱,将其用作所有间谍,存根,模拟和假货的黑匣子容器。
您所要做的就是在第一个describe块中创建一个沙箱,以便可以在所有测试用例中访问它。一旦完成所有测试用例,就应该释放原始方法,并sandbox.restore()
在afterEach挂钩中使用该方法清理存根 ,以便在运行时释放保留的资源afterEach
测试用例通过或失败。
这是一个例子:
describe('MyController', () => {
//Creates a new sandbox object
const sandbox = sinon.createSandbox();
let myControllerInstance: MyController;
let loginStub: sinon.SinonStub;
beforeEach(async () => {
let config = {key: 'value'};
myControllerInstance = new MyController(config);
loginStub = sandbox.stub(ThirdPartyModule, 'login').resolves({success: true});
});
describe('MyControllerMethod1', () => {
it('should run successfully', async () => {
loginStub.withArgs({username: 'Test', password: 'Test'}).resolves();
let ret = await myControllerInstance.run();
expect(ret.status).to.eq('200');
expect(loginStub.called).to.be.true;
});
});
afterEach(async () => {
//clean and release the original methods afterEach test case at runtime
sandbox.restore();
});
});