Files
jasmine/spec/core/matchers/toHaveBeenCalledOnceWithSpec.js
Steve Gravrock 434575f49d Use one declaration per statement
The old style of merging all of a function's variable declarations into
a single statement made some sense back in the days of var, but there's
no reason to keep doing it now that we use const and let.
2026-03-11 06:30:46 -07:00

123 lines
4.8 KiB
JavaScript

describe('toHaveBeenCalledOnceWith', function() {
it('passes when the actual was called only once and with matching parameters', function() {
const pp = privateUnderTest.makePrettyPrinter();
const util = new privateUnderTest.MatchersUtil({ pp: pp });
const matcher = privateUnderTest.matchers.toHaveBeenCalledOnceWith(util);
const calledSpy = new privateUnderTest.Spy('called-spy');
calledSpy('a', 'b');
const result = matcher.compare(calledSpy, 'a', 'b');
expect(result.pass).toBe(true);
expect(result.message).toEqual(
"Expected spy called-spy to have been called 0 times, multiple times, or once, but with arguments different from:\n [ 'a', 'b' ]\nBut the actual call was:\n [ 'a', 'b' ].\n\n"
);
});
it('supports custom equality testers', function() {
const customEqualityTesters = [
function() {
return true;
}
];
const matchersUtil = new privateUnderTest.MatchersUtil({
customTesters: customEqualityTesters
});
const matcher = privateUnderTest.matchers.toHaveBeenCalledOnceWith(
matchersUtil
);
const calledSpy = new privateUnderTest.Spy('called-spy');
calledSpy('a', 'b');
const result = matcher.compare(calledSpy, 'a', 'a');
expect(result.pass).toBe(true);
});
it('fails when the actual was never called', function() {
const pp = privateUnderTest.makePrettyPrinter();
const util = new privateUnderTest.MatchersUtil({ pp: pp });
const matcher = privateUnderTest.matchers.toHaveBeenCalledOnceWith(util);
const calledSpy = new privateUnderTest.Spy('called-spy');
const result = matcher.compare(calledSpy, 'a', 'b');
expect(result.pass).toBe(false);
expect(result.message).toEqual(
"Expected spy called-spy to have been called only once, and with given args:\n [ 'a', 'b' ]\nBut it was never called.\n\n"
);
});
it('fails when the actual was called once with different parameters', function() {
const pp = privateUnderTest.makePrettyPrinter();
const util = new privateUnderTest.MatchersUtil({ pp: pp });
const matcher = privateUnderTest.matchers.toHaveBeenCalledOnceWith(util);
const calledSpy = new privateUnderTest.Spy('called-spy');
calledSpy('a', 'c');
const result = matcher.compare(calledSpy, 'a', 'b');
expect(result.pass).toBe(false);
expect(result.message).toEqual(
"Expected spy called-spy to have been called only once, and with given args:\n [ 'a', 'b' ]\nBut the actual call was:\n [ 'a', 'c' ].\nExpected $[1] = 'c' to equal 'b'.\n\n"
);
});
it('fails when the actual was called multiple times with expected parameters', function() {
const pp = privateUnderTest.makePrettyPrinter();
const util = new privateUnderTest.MatchersUtil({ pp: pp });
const matcher = privateUnderTest.matchers.toHaveBeenCalledOnceWith(util);
const calledSpy = new privateUnderTest.Spy('called-spy');
calledSpy('a', 'b');
calledSpy('a', 'b');
const result = matcher.compare(calledSpy, 'a', 'b');
expect(result.pass).toBe(false);
expect(result.message).toEqual(
"Expected spy called-spy to have been called only once, and with given args:\n [ 'a', 'b' ]\nBut the actual calls were:\n [ 'a', 'b' ],\n [ 'a', 'b' ].\n\n"
);
});
it('fails when the actual was called multiple times (one of them - with expected parameters)', function() {
const pp = privateUnderTest.makePrettyPrinter();
const util = new privateUnderTest.MatchersUtil({ pp: pp });
const matcher = privateUnderTest.matchers.toHaveBeenCalledOnceWith(util);
const calledSpy = new privateUnderTest.Spy('called-spy');
calledSpy('a', 'b');
calledSpy('a', 'c');
const result = matcher.compare(calledSpy, 'a', 'b');
expect(result.pass).toBe(false);
expect(result.message).toEqual(
"Expected spy called-spy to have been called only once, and with given args:\n [ 'a', 'b' ]\nBut the actual calls were:\n [ 'a', 'b' ],\n [ 'a', 'c' ].\n\n"
);
});
it('throws an exception when the actual is not a spy', function() {
const pp = privateUnderTest.makePrettyPrinter();
const util = new privateUnderTest.MatchersUtil({ pp: pp });
const matcher = privateUnderTest.matchers.toHaveBeenCalledOnceWith(util);
const fn = function() {};
expect(function() {
matcher.compare(fn);
}).toThrowError(/Expected a spy, but got Function./);
});
it('set the correct calls as verified when passing', function() {
const pp = privateUnderTest.makePrettyPrinter();
const util = new privateUnderTest.MatchersUtil({ pp: pp });
const matcher = privateUnderTest.matchers.toHaveBeenCalledOnceWith(util);
const calledSpy = new privateUnderTest.Spy('called-spy');
calledSpy('x');
matcher.compare(calledSpy, 'x');
expect(calledSpy.calls.count()).toBe(1);
expect(calledSpy.calls.unverifiedCount()).toBe(0);
});
});