Jasmineを使用して、基本的なjQueryAJAXリクエストのBDD仕様を記述しようとしています。私は現在、スタンドアロンモード(つまりからSpecRunner.html
)でJasmineを使用しています。jqueryおよびその他の.jsファイルをロードするようにSpecRunnerを構成しました。以下が機能しない理由はありますか?「yuppi!」と思っても、has_returnedはtrueになりません。アラートは正常に表示されます。
describe("A jQuery ajax request should be able to fetch...", function() {
it("an XML file from the filesystem", function() {
$.ajax_get_xml_request = { has_returned : false };
// initiating the AJAX request
$.ajax({ type: "GET", url: "addressbook_files/addressbookxml.xml", dataType: "xml",
success: function(xml) { alert("yuppi!"); $.ajax_get_xml_request.has_returned = true; } });
// waiting for has_returned to become true (timeout: 3s)
waitsFor(function() { $.ajax_get_xml_request.has_returned; }, "the JQuery AJAX GET to return", 3000);
// TODO: other tests might check size of XML file, whether it is valid XML
expect($.ajax_get_xml_request.has_returned).toEqual(true);
});
});
コールバックが呼び出されたことをテストするにはどうすればよいですか?Jasmineを使用した非同期jQueryのテストに関連するブログ/資料へのポインタは大歓迎です。