DefinitelyTyped/types/sinon/sinon-tests.ts
2018-01-10 15:26:30 -08:00

297 lines
8.4 KiB
TypeScript

import sinon = require("sinon");
function once(fn: Function) {
let called = false;
let returnValue: any;
return function(this: any) {
if (!called) {
called = true;
returnValue = fn.apply(this, arguments);
}
return returnValue;
};
}
function testOne() {
const callback = sinon.spy();
const proxy = once(callback);
proxy();
if (callback.calledOnce) { console.log("test1 calledOnce success"); } else { console.log("test1 calledOnce failure"); }
}
function testTwo() {
const callback = sinon.spy(() => { });
const proxy = once(callback);
proxy();
proxy();
if (callback.calledOnce) { console.log("test2 calledOnce success"); } else { console.log("test2 calledOnce failure"); }
}
function testThree() {
const obj = { thisObj: true };
const callback = sinon.spy<any>({}, "method");
const proxy = once(callback);
proxy.call(obj, callback, 1, 2, 3);
if (callback.calledOn(obj)) { console.log("test3 calledOn success"); } else { console.log("test3 calledOn failure"); }
if (callback.calledWith(callback, 1, 2, 3)) { console.log("test3 calledWith success"); } else { console.log("test3 calledWith failure"); }
}
function testFour() {
const callback = sinon.stub().returns(42);
const proxy = once(callback);
const val = proxy.apply(callback, [1, 2, 3]);
if (val === 42) { console.log("test4 returns success"); } else { console.log("test4 returns failure"); }
}
function testFive() {
const callback = sinon.stub().returnsArg(1);
const proxy = once(callback);
const val = proxy.apply(callback, [1, 2, 3]);
if (val === 2) { console.log("test5 returnsArg success"); } else { console.log("test5 returnsArg failure"); }
}
const objectUnderTest: any = {
process: (obj: any) => {
// It doesn't really matter what's here because the stub is going to replace this function
return obj.success(99);
}
};
function testSix() {
const stub = sinon.stub(objectUnderTest, "process").yieldsTo("success");
objectUnderTest.process({
success: () => { console.log("test6 yieldsTo success"); },
failure: () => { console.log("test6 yieldsTo failure"); }
});
stub.restore();
}
function testSeven() {
const obj = { functionToTest: () => { } };
const mockObj = sinon.mock(obj);
obj.functionToTest();
mockObj.expects('functionToTest').once();
}
function testEight() {
sinon.match.typeOf("object").and(sinon.match.has("pages"));
}
function testNine() {
const callback = sinon.stub().returns(42);
callback({ x: 5, y: 5 });
callback.calledWithMatch({ x: 5 });
callback.alwaysCalledWithMatch({ y: 5 });
callback.neverCalledWithMatch({ x: 6 });
callback.notCalledWithMatch({ x: 6 });
sinon.assert.calledWithMatch(callback, { x: 5 });
sinon.assert.alwaysCalledWithMatch(callback, { y: 5 });
sinon.assert.neverCalledWithMatch(callback, { x: 6 });
}
function testAssert() {
sinon.assert.match(1, 1 + 1);
sinon.assert.match("abc", "abc");
sinon.assert.match({ a: 1 }, { b: 2, c: "abc" });
}
function testSandbox() {
const config = {
injectInto: null,
properties: ["spy", "stub", "mock", "clock", "server", "requests"],
useFakeServer: true,
useFakeTimers: true,
};
let sandbox = sinon.sandbox.create();
sandbox = sinon.sandbox.create(config);
sandbox = sinon.sandbox.create(sinon.defaultConfig);
sandbox = sinon.createSandbox();
sandbox = sinon.createSandbox(config);
sandbox = sinon.createSandbox(sinon.defaultConfig);
sandbox = sandbox.usingPromise(Promise);
sandbox.assert.notCalled(sinon.spy());
if (sandbox.spy().called) {
sandbox.stub(objectUnderTest, "process").yieldsTo("success");
sandbox.mock(objectUnderTest).expects("process").once();
}
sandbox.useFakeTimers();
sandbox.useFakeXMLHttpRequest();
sandbox.useFakeServer();
sandbox.restore();
sandbox.reset();
sandbox.resetHistory();
sandbox.resetBehavior();
sandbox.verify();
sandbox.verifyAndRestore();
sandbox.createStubInstance(TestCreateStubInstance).someTestMethod('some argument');
sandbox.createStubInstance<TestCreateStubInstance>(TestCreateStubInstance).someTestMethod('some argument');
}
function testPromises() {
let resolveStub = sinon.stub().resolves();
resolveStub = sinon.stub().resolves(10);
const rejectStub1 = sinon.stub().rejects();
let rejectsStub2 = sinon.stub().rejects(new Error('Specified error'));
rejectsStub2 = sinon.stub().rejects("TypeError");
}
function testMatchInvoke() {
const stub = sinon.stub();
stub(123);
stub.calledWithMatch(sinon.match(123));
stub.calledWithMatch(sinon.match((value: any) => value === 123));
stub.calledWithMatch(sinon.match((value: any) => value === 123, "Must be 123"));
}
function testSymbolMatch() {
const stub = sinon.stub();
stub(Symbol('TestSymbol'));
stub.calledWithMatch(sinon.match.symbol);
}
function testResetHistory() {
sinon.stub().resetHistory();
sinon.spy().resetHistory();
}
function testUsingPromises() {
const stub: sinon.SinonStub = sinon.stub().usingPromise(Promise);
}
function testArrayMatchers() {
const stub = sinon.stub();
stub([{ a: 'b' }]);
stub.calledWithMatch(sinon.match.array);
stub.calledWithMatch(sinon.match.array.deepEquals([{ a: 'b' }]));
stub.calledWithMatch(sinon.match.array.startsWith([{ a: 'b' }]));
stub.calledWithMatch(sinon.match.array.deepEquals([{ a: 'b' }]));
stub.calledWithMatch(sinon.match.array.contains([{ a: 'b' }]));
}
function testMapMatcher() {
const stub = sinon.stub();
stub(new Map([['a', true], ['b', false]]));
stub.calledWithMatch(sinon.match.map);
stub.calledWithMatch(sinon.match.map.deepEquals(new Map([['a', true], ['b', false]])));
stub.calledWithMatch(sinon.match.map.contains(new Map([['a', true]])));
}
function testSetMatcher() {
const stub = sinon.stub();
stub(new Set(['a', true]));
stub.calledWithMatch(sinon.match.set);
stub.calledWithMatch(sinon.match.set.deepEquals(new Set(['a', true])));
stub.calledWithMatch(sinon.match.set.contains(new Set([true])));
}
function testGetterStub() {
const myObj = {
prop: 'foo'
};
const stub = sinon.stub(myObj, 'prop').get(() => 'bar');
stub.restore();
}
function testSetterStub() {
const myObj = {
prop: 'foo',
prop2: 'bar'
};
const stub = sinon.stub(myObj, 'prop').set((val: string) => myObj.prop2 = val);
stub.restore();
}
function testValueStub() {
const myObj = {
prop: 'foo'
};
const stub = sinon.stub(myObj, 'prop').value('bar');
stub.restore();
}
function testThrowsStub() {
sinon.stub().throws(new Error('foo'));
sinon.stub().throwsException(new Error('foo'));
sinon.stub().throws('foo');
sinon.stub().throwsException('foo');
}
function testSpy() {
const otherSpy = sinon.spy();
sinon.spy().calledAfter(otherSpy);
sinon.spy().calledBefore(otherSpy);
sinon.spy().calledImmediatelyAfter(otherSpy);
sinon.spy().calledImmediatelyBefore(otherSpy);
}
function testFakeServer() {
sinon.fakeServer.create({
autoRespond: true,
autoRespondAfter: 3,
fakeHTTPMethods: true,
respondImmediately: false
});
}
function testStubObject() {
const myObj = {
setStatus() {},
json() {}
};
const stub = sinon.stub(myObj);
stub.setStatus.returns(stub);
stub.json.callCount;
}
testOne();
testTwo();
testThree();
testFour();
testFive();
testSix();
testSeven();
testEight();
testNine();
testPromises();
testSandbox();
testSpy();
testSymbolMatch();
testResetHistory();
testUsingPromises();
testGetterStub();
testSetterStub();
testValueStub();
testThrowsStub();
testFakeServer();
const clock = sinon.useFakeTimers();
clock.setSystemTime(1000);
clock.setSystemTime(new Date());
class TestCreateStubInstance {
someTestMethod(testArg: string) { }
}
sinon.createStubInstance(TestCreateStubInstance).someTestMethod('some argument');
sinon.createStubInstance<TestCreateStubInstance>(TestCreateStubInstance).someTestMethod('some argument');
function testGetCalls() {
const double = sinon.spy((a: number) => a * 2);
double(2);
double(4);
double.getCall(0).args.length === 1;
const secondCall = double.getCalls().find(call => call.args[0] === 4);
if (secondCall) {
secondCall.returnValue === 8;
}
}