使用Jasmine是否可以测试2个数组是否包含相同的元素,但不一定以相同的顺序?即
array1 = [1,2,3];
array2 = [3,2,1];
expect(array1).toEqualIgnoreOrder(array2);//should be true
使用Jasmine是否可以测试2个数组是否包含相同的元素,但不一定以相同的顺序?即
array1 = [1,2,3];
array2 = [3,2,1];
expect(array1).toEqualIgnoreOrder(array2);//should be true
Answers:
茉莉2.8版及更高版本具有
jasmine.arrayWithExactContents()
它期望数组精确地以任何顺序包含列出的元素。
array1 = [1,2,3];
array2 = [3,2,1];
expect(array1).toEqual(jasmine.arrayWithExactContents(array2))
简单...
array1 = [1,2,3];
array2 = [3,2,1];
expect(array1).toEqual(jasmine.arrayContaining(array2));
// check if every element of array2 is element of array1
// to ensure [1, 1] !== [1, 2]
array2.forEach(x => expect(array1).toContain(x))
// check if every element of array1 is element of array2
// to ensure [1, 2] !== [1, 1]
array1.forEach(x => expect(array2).toContain(x))
// check if they have equal length to ensure [1] !== [1, 1]
expect(array1.length).toBe(array2.length)
.forEach
而不是.map
节省一些时间和一堆内存。
array1 = [1, 2]
,也会通过以下数组传递:,array2 = [1, 1]
[1,1,2]
and[1,2,2]
怎么办?也许为每个地图或某物使用地图?例如array1.reduce((map, item) => { map.set(item, (map.get(item) || 0) + 1)), new Map())
对于两个数组,然后遍历它们并检查数量是否相同?看起来像很多迭代,但是会更彻底。
该笑话扩展包为我们提供了一些断言来简化测试,它不那么冗长,并且对于失败的测试,错误更明确。
对于这种情况,我们可以使用toIncludeSameMembers
expect([{foo: "bar"}, {baz: "qux"}]).toIncludeSameMembers([{baz: "qux"}, {foo: "bar"}]);
//Compare arrays without order
//Example
//a1 = [1, 2, 3, 4, 5]
//a2 = [3, 2, 1, 5, 4]
//isEqual(a1, a2) -> true
//a1 = [1, 2, 3, 4, 5];
//a2 = [3, 2, 1, 5, 4, 6];
//isEqual(a1, a2) -> false
function isInArray(a, e) {
for ( var i = a.length; i--; ) {
if ( a[i] === e ) return true;
}
return false;
}
function isEqArrays(a1, a2) {
if ( a1.length !== a2.length ) {
return false;
}
for ( var i = a1.length; i--; ) {
if ( !isInArray( a2, a1[i] ) ) {
return false;
}
}
return true;
}
function equal(arr1, arr2){
return arr1.length === arr2.length
&&
arr1.every((item)=>{
return arr2.indexOf(item) >-1
})
&&
arr2.every((item)=>{
return arr1.indexOf(item) >-1
})
}
这里的想法是首先确定两个数组的长度是否相同,然后检查所有元素是否都在另一个数组中。
equal([1, 1, 2], [1, 2, 2])
return true
。
这是一个适用于任何数字或数组的解决方案
https://gist.github.com/tvler/cc5b2a3f01543e1658b25ca567c078e4
const areUnsortedArraysEqual = (...arrs) =>
arrs.every((arr, i, [first]) => !i || arr.length === first.length) &&
arrs
.map(arr =>
arr.reduce(
(map, item) => map.set(item, (map.get(item) || 0) + 1),
new Map(),
),
)
.every(
(map, i, [first]) =>
!i ||
[...first, ...map].every(([item]) => first.get(item) === map.get(item)),
);
某些测试(此问题的一些答案未说明具有多个具有相同值的项的数组,因此[1、2、2]和[1、2]将错误地返回true)
[1, 2] true
[1, 2], [1, 2] true
[1, 2], [1, 2], [1, 2] true
[1, 2], [2, 1] true
[1, 1, 2], [1, 2, 1] true
[1, 2], [1, 2, 3] false
[1, 2, 3, 4], [1, 2, 3], [1, 2] false
[1, 2, 2], [1, 2] false
[1, 1, 2], [1, 2, 2] false
[1, 2, 3], [1, 2], [1, 2, 3] false
该算法非常适合每个项目都是唯一的数组。如果没有,您可以添加一些检查重复项...
tests = [
[ [1,0,1] , [0,1,1] ],
[ [1,0,1] , [0,0,1] ], //breaks on this one...
[ [2,3,3] , [2,2,3] ], //breaks on this one also...
[ [1,2,3] , [2,1,3] ],
[ [2,3,1] , [1,2,2] ],
[ [2,2,1] , [1,3,2] ]
]
tests.forEach(function(test) {
console.log('eqArraySets( '+test[0]+' , '+test[1]+' ) = '+eqArraySets( test[0] , test[1] ));
});
function eqArraySets(a, b) {
if ( a.length !== b.length ) { return false; }
for ( var i = a.length; i--; ) {
if ( !(b.indexOf(a[i])>-1) ) { return false; }
if ( !(a.indexOf(b[i])>-1) ) { return false; }
}
return true;
}
这种方法在理论上在最坏情况下的运行时性能较差,但是,由于它不对阵列执行任何写操作,因此在许多情况下它可能会更快(尚未测试性能):
警告:正如Torben在评论中所指出的那样,这种方法仅在两个数组都具有唯一(非重复)元素的情况下才有效(就像这里的其他几个答案一样)。
/**
* Determine whether two arrays contain exactly the same elements, independent of order.
* @see /programming/32103252/expect-arrays-to-be-equal-ignoring-order/48973444#48973444
*/
function cmpIgnoreOrder(a, b) {
const { every, includes } = _;
return a.length === b.length && every(a, v => includes(b, v));
}
// the following should be all true!
const results = [
!!cmpIgnoreOrder([1,2,3], [3,1,2]),
!!cmpIgnoreOrder([4,1,2,3], [3,4,1,2]),
!!cmpIgnoreOrder([], []),
!cmpIgnoreOrder([1,2,3], [3,4,1,2]),
!cmpIgnoreOrder([1], []),
!cmpIgnoreOrder([1, 3, 4], [3,4,5])
];
console.log('Results: ', results)
console.assert(_.reduce(results, (a, b) => a && b, true), 'Test did not pass!');
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.js"></script>
Array#sort
就地对数组进行排序。
目前有一个匹配器适用于这种使用情况:
https://github.com/jest-community/jest-extended/pull/122/files
test('passes when arrays match in a different order', () => {
expect([1, 2, 3]).toMatchArray([3, 1, 2]);
expect([{ foo: 'bar' }, { baz: 'qux' }]).toMatchArray([{ baz: 'qux' }, { foo: 'bar' }]);
});
您可以使用类似:
expect(array1).toEqual(jasmine.arrayContaining(array2));
记住导入jasmine
。或将其添加到您的.eslintrc
Jest有一个名为的函数expect.arrayContaining
,它将完全满足您的要求:
expect(array1).toEqual(expect.arrayContaining(array2))
您可能还想检查它们是否具有相同的长度,因为如果
预期数组是接收到的数组的子集
根据文档。
编辑:对不起,我没有注意到茉莉花标记,这是与杰斯特一起工作的一种方式
expect(array1.sort()).toEqual(array2.sort());
?