Jasmine 的自定义部分
自定义toEqual
toEqual
mathers 支持用户自定义比较方法,使用的是jasmine.addCustomEquallyTester(myCustomEqualltyFunction)
方法注册,注册的时候只能在beforeEach
、beforeAll
或it
内注册。myCustomEqualltyFunction
接受两个参数,就是需要比较的值。比较完成后必须返回true或false。
describe("custom equality", function() {
var myCustomEquality = function(first, second) {
if (typeof first == "string" && typeof second == "string") {
return first[0] == second[1];
}
};
beforeEach(function() {
jasmine.addCustomEqualityTester(myCustomEquality);
});
it("should be custom equal", function() {
expect("abc").toEqual("aaa");
});
it("should be custom not equal", function() {
expect("abc").not.toEqual("abc");
});
});
默认的toEqual被我们注册的比较方法给取代了。
自定义 mathers
mathers
是一个定义了mathers function
方法的对象,这个方法需要返回一个有campare
属性的对象。同样的,使用 jasmine.addMatchers
进行mathers
的注册也只能发生在beforeEach
、beforeAll
或it
内。
var customMatchers = {
toBeGoofy: function(util, customEqualityTesters) {
return {
compare: function(actual, expected) {
if (expected === undefined) {
expected = '';
}
var result = {};
result.pass = util.equals(actual.hyuk, "gawrsh" + expected, customEqualityTesters);
if (result.pass) {
result.message = "Expected " + actual + " not to be quite so goofy";
} else {
result.message = "Expected " + actual + " to be goofy, but it was not very goofy";
}
return result;
}
};
}
};
describe("Custom matcher: 'toBeGoofy'", function() {
beforeEach(function() {
jasmine.addMatchers(customMatchers);
});
it("is available on an expectation", function() {
expect({
hyuk: 'gawrsh'
}).toBeGoofy();
});
it("can take an 'expected' parameter", function() {
expect({
hyuk: 'gawrsh is fun'
}).toBeGoofy(' is fun');
});
it("can be negated", function() {
expect({
hyuk: 'this is fun'
}).not.toBeGoofy();
});
});
- customMatchers:一个对象,可以包含多个方法作为
matchers
; - toBeFoofy:一个
matchers
,toBeFoofy
就是matchers
调用时的名字。有参数util和customEqualityTesters(自定义toEqual
)。进行matcher
的时候都会执行这个方法。这个方法还需要返回一个有compare方法的对象才能正常执行; - compare:用作比较actual(实际)和expected(期望)。可以返回一个有pass和message属性对象,pass为true就是通过,pass为false就是不通过,message就是不通过的时候的提示信息。
matchers
的.not
操作默认是取compare.pass的否定,如果想自定义.not
的比较器,可以在compare方法后添加negativeCompare
方法,当然,negativeCompare
是可选的。
自定义reporter
在命令行敲下jasmine
命令后会有一串的反馈信息,这串信息其实也是可以使用jasmine.getEnv().addReporter(myReporter);
自定义的,注册时候建议使用全局定义。
myReporter
是一个对象,它可以有以下方法:
- jasmineStarted(suiteInfo):会在全部
specs
读取完成后,和execution开始前执行; - jasmineDone():会在整个套件完成后执行;
- suiteStarted(result)/suiteDone(result):每个
describe
开始/结束的时候会执行; - specStarted(result)/specDone(result):每个
it
开始/结束的时候会执行。
var myReporter = {
jasmineStarted: function(suiteInfo) {
console.log('Running suite with ' + suiteInfo.totalSpecsDefined);
},
suiteStarted: function(result) {
console.log('Suite started: ' + result.description + ' whose full description is: ' + result.fullName);
},
specStarted: function(result) {
console.log('Spec started: ' + result.description + ' whose full description is: ' + result.fullName);
},
specDone: function(result) {
console.log('Spec: ' + result.description + ' was ' + result.status);
for (var i = 0; i < result.failedExpectations.length; i++) {
console.log('Failure: ' + result.failedExpectations[i].message);
console.log(result.failedExpectations[i].stack);
}
console.log(result.passedExpectations.length);
},
suiteDone: function(result) {
console.log('Suite: ' + result.description + ' was ' + result.status);
for (var i = 0; i < result.failedExpectations.length; i++) {
console.log('AfterAll ' + result.failedExpectations[i].message);
console.log(result.failedExpectations[i].stack);
}
},
jasmineDone: function() {
console.log('Finished suite');
}
};
jasmine.getEnv().addReporter(myReporter);
describe('Top Level suite', function() {
it('spec', function() {
expect(1).toBe(1);
});
describe('Nested suite', function() {
it('nested spec', function() {
expect(true).toBe(true);
});
});
});