すべてのスパイ、スタブ、モック、フェイクのブラックボックスコンテナーとして機能するサンドボックスを作成します。
最初の記述ブロックにサンドボックスを作成するだけで、すべてのテストケースでアクセスできます。すべてのテストケースが完了したら、元のメソッドをリリースし、メソッドを使用してスタブをクリーンアップする必要があります 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();
});
});