我在JavaScript单元测试中发现了一个失败的断言,我想修复它。单元测试代码如下(完整代码可以找到here):
beforeEach(function() {
arrNeedle = ['waffles'];
objNeedle = {w: 'waffles'};
strNeedle = 'waffles';
numNeedle = 3.14159
arrDupe = JSON.parse(JSON.stringify(arrNeedle));
objDupe = JSON.parse(JSON.stringify(objNeedle));
strDupe = JSON.parse(JSON.stringify(strNeedle));
numDupe = JSON.parse(JSON.stringify(numNeedle));
arrContainer = [arrDupe, objDupe, strDupe, numDupe];
objContainer = {
arr: arrDupe
, obj: objDupe
, str: strDupe
, num: numDupe
};
arrMissing = ['chan'];
objMissing = {missing: 'chan'}
strMissing = 'chan';
});
it("has its test set up correctly", function() {
arrNeedle.should.not.equal(arrDupe);
objNeedle.should.not.equal(objDupe);
arrContainer.should.not.contain(arrNeedle);
arrContainer.should.not.contain(objNeedle); // fails
objContainer.arr.should.not.equal(arrNeedle);
objContainer.obj.should.not.equal(objNeedle);
});
在测试中,我们克隆一个对象并将其插入一个数组中:
objNeedle = {w: 'waffles'}; // original
objDupe = JSON.parse(JSON.stringify(objNeedle)); // clone
arrContainer = [arrDupe, objDupe, strDupe, numDupe]; // add clone to array
失败的断言检查数组(包含克隆的对象)是否包含原始对象。
arrContainer.should.not.contain(objNeedle); // fails
我尝试使用外部断言插入(chai-things)而没有运气:
arrContainer.should.not.include(objNeedle); // fails
arrContainer.should.not.include.something.that.deep.equals(objNeedle); // fails
以下断言通过了测试,但不是理想的解决方案:
arrContainer[0].should.not.equal(objNeedle); // pass
你知道为什么数组在某些情况下只被认为是克隆的吗?
提前致谢:)
答案 0 :(得分:2)
如果您查看ChaiJS代码,您将在line 189 of /lib/chai/core/assertions.js上看到以下内容:
if (_.type(obj) === 'array' && _.type(val) === 'object') {
for (var i in obj) {
if (_.eql(obj[i], val)) {
expected = true;
break;
}
}
}
这是include(val, msg)
函数内部,.contains()
匹配器使用的函数(请参阅line 215)。
这意味着如果obj
(正在测试的东西)是一个数组,并且val
(.contains()
匹配器函数的参数)是一个对象,就像它在在您的情况下,它将使用_.eql()
检查深度相等(_.eql
是外部deep-eql
模块提供/导出的函数的别名。)