我如何为此编写 QUnit 测试:
function doSomethingWithAjax() {
$.ajax({
url: '/GetHelloWorld',
success: function(data) { $("#responseFromServer").text(data); },
});
}
Mockjax+qunit 需要在 ajax complete() 方法中调用 start()。
test("should mock ajax", function() {
$.ajax = function(options) {
equals(options.url, "/GetHelloWorld");
options.success("Hello");
};
doSomethingWithAjax();
equal($("#responseFromServer").text(), "Hello");
});
jasmine-ajax库允许您为所有 ajax 调用定义模拟响应,而无需触及调用本身。
这个问题已经有几年了,对于新版本的 jQuery 和 Jasmine 已经发生了一些变化。
如果您不想使用 jasmine-ajax,可以尝试Michael Falaga 的方法
function ajax_response(response) {
var deferred = $.Deferred().resolve(response);
return deferred.promise();
}
describe("Test test", function() {
beforeEach(function() {
spyOn($, 'ajax').and.returnValue(
ajax_response([1, 2, 3])
);
});
it("is it [1, 2, 3]", function() {
var response;
$.ajax('GET', 'some/url/i/fancy').done(function(data) {
response = data;
});
expect(response).toEqual([1, 2, 3]);
});
});