目前,我有一个函数有时会返回一个内部包含一些函数的对象。使用expect(...).toEqual({...})
时它似乎与那些复杂的对象不匹配。具有函数或File
类的对象(来自输入类型文件),它就是不能。如何克服这一点?
问问题
34201 次
5 回答
17
试试下划线 _.isEqual()函数:
expect(_.isEqual(obj1, obj2)).toEqual(true);
如果可行,您可以创建一个自定义匹配器:
this.addMatchers({
toDeepEqual: function(expected) {
return _.isEqual(this.actual, expected);
};
});
然后,您可以编写如下规范:
expect(some_obj).toDeepEqual(expected_obj);
于 2013-01-26T20:38:25.873 回答
13
正如 Vlad Magdalin 在评论中指出的那样,将对象制作成 JSON 字符串,它可以和函数一样深,以及 File/FileList 类。当然,不是toString()
在函数上,它可以被称为“函数”
function replacer(k, v) {
if (typeof v === 'function') {
v = v.toString();
} else if (window['File'] && v instanceof File) {
v = '[File]';
} else if (window['FileList'] && v instanceof FileList) {
v = '[FileList]';
}
return v;
}
beforeEach(function(){
this.addMatchers({
toBeJsonEqual: function(expected){
var one = JSON.stringify(this.actual, replacer).replace(/(\\t|\\n)/g,''),
two = JSON.stringify(expected, replacer).replace(/(\\t|\\n)/g,'');
return one === two;
}
});
});
expect(obj).toBeJsonEqual(obj2);
于 2013-01-27T02:35:21.177 回答
5
如果有人像我一样使用 node.js,当我只关心比较简单属性而忽略所有功能时,我在 Jasmine 测试中使用以下方法。此方法需要json-stable-stringify用于在序列化之前对对象属性进行排序。
用法:
var stringify = require('json-stable-stringify');
var obj1 = {
func: function() {
},
str1: 'str1 value',
str2: 'str2 value',
nest1: {
nest2: {
val1:'value 1',
val2:'value 2',
someOtherFunc: function() {
}
}
}
};
var obj2 = {
str2: 'str2 value',
str1: 'str1 value',
func: function() {
},
nest1: {
nest2: {
otherFunc: function() {
},
val2:'value 2',
val1:'value 1'
}
}
};
it('should compare object properties', function () {
expect(stringify(obj1)).toEqual(stringify(obj2));
});
于 2015-02-25T22:48:33.573 回答
4
扩展@Vlad Magdalin 的答案,这在 Jasmine 2 中有效:
http://jasmine.github.io/2.0/custom_matcher.html
beforeEach(function() {
jasmine.addMatchers({
toDeepEqual: function(util, customEqualityTesters) {
return {
compare: function(actual, expected) {
var result = {};
result.pass = _.isEqual(actual, expected);
return result;
}
}
}
});
});
如果您使用的是 Karma,请将其放在启动回调中:
callback: function() {
// Add custom Jasmine matchers.
beforeEach(function() {
jasmine.addMatchers({
toDeepEqual: function(util, customEqualityTesters) {
return {
compare: function(actual, expected) {
var result = {};
result.pass = _.isEqual(actual, expected);
return result;
}
}
}
});
});
window.__karma__.start();
});
于 2015-06-06T03:19:38.177 回答
2
这是我使用Jasmine 2
语法的方法。
../support/customMatchers.js
我在(我喜欢制作模块)中创建了一个 customMatchers 模块。
"use strict";
/**
* Custom Jasmine matchers to make unit testing easier.
*/
module.exports = {
// compare two functions.
toBeTheSameFunctionAs: function(util, customEqualityTesters) {
let preProcess = function(func) {
return JSON.stringify(func.toString()).replace(/(\\t|\\n)/g,'');
};
return {
compare: function(actual, expected) {
return {
pass: (preProcess(actual) === preProcess(expected)),
message: 'The functions were not the same'
};
}
};
}
}
然后在我的测试中使用如下:
"use strict";
let someExternalFunction = require('../../lib/someExternalFunction');
let thingBeingTested = require('../../lib/thingBeingTested');
let customMatchers = require('../support/customMatchers');
describe('myTests', function() {
beforeEach(function() {
jasmine.addMatchers(customMatchers);
let app = {
use: function() {}
};
spyOn(app, 'use');
thingBeingTested(app);
});
it('calls app.use with the correct function', function() {
expect(app.use.calls.count()).toBe(1);
expect(app.use.calls.argsFor(0)).toBeTheSameFunctionAs(someExternalFunction);
});
});
于 2015-11-12T23:14:32.700 回答