JasmineのtoThrowマッチャーを次のものに置き換えます。これにより、例外の名前プロパティまたはそのメッセージプロパティを照合できます。私にとっては、次のことができるので、これによりテストの記述が簡単になり、脆弱性が少なくなります。
throw {
name: "NoActionProvided",
message: "Please specify an 'action' property when configuring the action map."
}
そして、以下でテストします:
expect (function () {
.. do something
}).toThrow ("NoActionProvided");
これにより、後でテストを中断することなく例外メッセージを微調整することができます。重要なのは、予期されたタイプの例外をスローしたことです。
これは、これを可能にするtoThrowの置き換えです。
jasmine.Matchers.prototype.toThrow = function(expected) {
var result = false;
var exception;
if (typeof this.actual != 'function') {
throw new Error('Actual is not a function');
}
try {
this.actual();
} catch (e) {
exception = e;
}
if (exception) {
result = (expected === jasmine.undefined || this.env.equals_(exception.message || exception, expected.message || expected) || this.env.equals_(exception.name, expected));
}
var not = this.isNot ? "not " : "";
this.message = function() {
if (exception && (expected === jasmine.undefined || !this.env.equals_(exception.message || exception, expected.message || expected))) {
return ["Expected function " + not + "to throw", expected ? expected.name || expected.message || expected : " an exception", ", but it threw", exception.name || exception.message || exception].join(' ');
} else {
return "Expected function to throw an exception.";
}
};
return result;
};
Function.bind
:stackoverflow.com/a/13233194/294855