创建一个沙盒,它将充当所有间谍、存根、模拟和伪造品的黑盒容器。
您所要做的就是在第一个描述块中创建一个沙箱,以便在所有测试用例中都可以访问它。一旦你完成了所有的测试用例,你应该释放原始方法并使用 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();
});
});