MatchersUtil#contains uses deep equality rather than === for set members

[#169001712]
This commit is contained in:
Steve Gravrock
2021-07-24 14:23:05 -07:00
parent 0170005015
commit c73df57720
5 changed files with 106 additions and 20 deletions

View File

@@ -109,6 +109,28 @@ describe('base helpers', function() {
});
});
describe('isIterable_', function() {
it('returns true when the object is an Array', function() {
expect(jasmineUnderTest.isIterable_([])).toBe(true);
});
it('returns true when the object is a Set', function() {
expect(jasmineUnderTest.isIterable_(new Set())).toBe(true);
});
it('returns true when the object is a Map', function() {
expect(jasmineUnderTest.isIterable_(new Map())).toBe(true);
});
it('returns true when the object implements @@iterator', function() {
const myIterable = { [Symbol.iterator]: function() {} };
expect(jasmineUnderTest.isIterable_(myIterable)).toBe(true);
});
it('returns false when the object does not implement @@iterator', function() {
expect(jasmineUnderTest.isIterable_({})).toBe(false);
});
});
describe('isPending_', function() {
it('returns a promise that resolves to true when the promise is pending', function() {
var promise = new Promise(function() {});

View File

@@ -1030,7 +1030,7 @@ describe('matchersUtil', function() {
expect(matchersUtil.contains(null, 'A')).toBe(false);
});
it('passes with array-like objects', function() {
it('works with array-like objects that implement iterable', function() {
var capturedArgs = null,
matchersUtil = new jasmineUnderTest.MatchersUtil();
@@ -1040,6 +1040,19 @@ describe('matchersUtil', function() {
testFunction('foo', 'bar');
expect(matchersUtil.contains(capturedArgs, 'bar')).toBe(true);
expect(matchersUtil.contains(capturedArgs, 'baz')).toBe(false);
});
it("passes with array-like objects that don't implement iterable", function() {
const arrayLike = {
0: 'a',
1: 'b',
length: 2
};
const matchersUtil = new jasmineUnderTest.MatchersUtil();
expect(matchersUtil.contains(arrayLike, 'b')).toBe(true);
expect(matchersUtil.contains(arrayLike, 'c')).toBe(false);
});
it('passes for set members', function() {
@@ -1051,13 +1064,12 @@ describe('matchersUtil', function() {
expect(matchersUtil.contains(set, setItem)).toBe(true);
});
// documenting current behavior
it('fails (!) for objects that equal to a set member', function() {
it('passes for objects that equal to a set member', function() {
var matchersUtil = new jasmineUnderTest.MatchersUtil();
var set = new Set();
set.add({ foo: 'bar' });
expect(matchersUtil.contains(set, { foo: 'bar' })).toBe(false);
expect(matchersUtil.contains(set, { foo: 'bar' })).toBe(true);
});
});