ajaxRequest (1) (2) を実装する次の 2 つの方法は同等である必要があります。
そうは言っても:
- コールバックが実行されたことを検証する単体テスト (3) が (1) で成功し、(2) で失敗するのはなぜですか?
- (2) の成功コールバックをスパイするには、テスト (3) をどのように書き直すべきですか?
stub jQuery.ajax
sinon とコード (2) を使用しようとする と、エラーが発生します。どうすれば直せますか?
詳細については、コード (3) のコメントを参照してください。
(1)
ajaxRequest: function (message, callback) {
return $.ajax({
url: backendRouter.generate('feedback_send'),
type: 'POST',
dataType: 'json',
data: {
message: message
},
success: callback
});
}
(2)
ajaxRequest: function (message, callback) {
return $.ajax({
url: backendRouter.generate('feedback_send'),
type: 'POST',
dataType: 'json',
data: {
message: message
}
}).success(callback);
}
(3)
it("should execute the callback function on success", function () {
spyOn($, "ajax").andCallFake(function(options) {
options.success();
}); // If I use the code (2) I get the following error
// TypeError: Object #<Object> has no method 'success'
var callback = jasmine.createSpy();
ajaxRequest('some message', callback);
expect(callback).toHaveBeenCalled();
});
(4)
it("makes a GET request for todo items", function () {
sinon.stub(jQuery, 'ajax');
backendController.ajaxRequest('some message', sinon.spy());
// Cannot call method 'success' of undefined
});