2010-09-30 05:56:17 +08:00
|
|
|
/*
|
2011-08-08 04:20:37 +08:00
|
|
|
Jasmine-Ajax : a set of helpers for testing AJAX requests under the Jasmine
|
|
|
|
BDD framework for JavaScript.
|
2010-09-30 05:56:17 +08:00
|
|
|
|
2011-08-08 04:20:37 +08:00
|
|
|
Supports both Prototype.js and jQuery.
|
2010-09-30 05:56:17 +08:00
|
|
|
|
2011-08-08 04:20:37 +08:00
|
|
|
http://github.com/pivotal/jasmine-ajax
|
2010-09-30 05:56:17 +08:00
|
|
|
|
2011-08-08 04:20:37 +08:00
|
|
|
Jasmine Home page: http://pivotal.github.com/jasmine
|
2010-09-30 05:56:17 +08:00
|
|
|
|
2011-08-08 04:20:37 +08:00
|
|
|
Copyright (c) 2008-2010 Pivotal Labs
|
2010-09-30 05:56:17 +08:00
|
|
|
|
2011-08-08 04:20:37 +08:00
|
|
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
a copy of this software and associated documentation files (the
|
|
|
|
"Software"), to deal in the Software without restriction, including
|
|
|
|
without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
the following conditions:
|
2010-09-30 05:56:17 +08:00
|
|
|
|
2011-08-08 04:20:37 +08:00
|
|
|
The above copyright notice and this permission notice shall be
|
|
|
|
included in all copies or substantial portions of the Software.
|
2010-09-30 05:56:17 +08:00
|
|
|
|
2011-08-08 04:20:37 +08:00
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
2010-09-30 05:56:17 +08:00
|
|
|
|
2011-08-08 04:20:37 +08:00
|
|
|
*/
|
2010-09-30 05:56:17 +08:00
|
|
|
|
2010-09-17 08:07:01 +08:00
|
|
|
// Jasmine-Ajax interface
|
|
|
|
var ajaxRequests = [];
|
2010-09-17 05:24:35 +08:00
|
|
|
|
2010-09-17 08:07:01 +08:00
|
|
|
function mostRecentAjaxRequest() {
|
|
|
|
if (ajaxRequests.length > 0) {
|
2010-09-18 01:10:34 +08:00
|
|
|
return ajaxRequests[ajaxRequests.length - 1];
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
2010-09-17 08:07:01 +08:00
|
|
|
}
|
2010-09-17 05:24:35 +08:00
|
|
|
|
2010-09-17 08:07:01 +08:00
|
|
|
function clearAjaxRequests() {
|
|
|
|
ajaxRequests = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fake XHR for mocking Ajax Requests & Responses
|
2010-09-17 08:09:52 +08:00
|
|
|
function FakeXMLHttpRequest() {
|
2011-08-08 04:01:38 +08:00
|
|
|
var extend = Object.extend || $.extend;
|
2011-03-11 03:48:01 +08:00
|
|
|
extend(this, {
|
2010-09-17 06:46:55 +08:00
|
|
|
requestHeaders: {},
|
2010-09-17 07:51:52 +08:00
|
|
|
|
2010-09-17 06:46:55 +08:00
|
|
|
open: function() {
|
2011-03-11 03:48:01 +08:00
|
|
|
this.method = arguments[0];
|
|
|
|
this.url = arguments[1];
|
|
|
|
this.readyState = 1;
|
2010-09-17 06:46:55 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
setRequestHeader: function(header, value) {
|
2011-03-11 03:48:01 +08:00
|
|
|
this.requestHeaders[header] = value;
|
2010-09-17 06:46:55 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
abort: function() {
|
2011-03-11 03:48:01 +08:00
|
|
|
this.readyState = 0;
|
2010-09-17 06:46:55 +08:00
|
|
|
},
|
|
|
|
|
2010-09-17 08:07:01 +08:00
|
|
|
readyState: 0,
|
2010-09-17 06:46:55 +08:00
|
|
|
|
2011-02-22 14:27:11 +08:00
|
|
|
onreadystatechange: function(isTimeout) {
|
2010-09-29 02:41:50 +08:00
|
|
|
},
|
|
|
|
|
2010-09-17 06:46:55 +08:00
|
|
|
status: null,
|
|
|
|
|
|
|
|
send: function(data) {
|
2011-03-11 03:48:01 +08:00
|
|
|
this.params = data;
|
|
|
|
this.readyState = 2;
|
2010-09-17 06:46:55 +08:00
|
|
|
},
|
|
|
|
|
2010-09-17 07:51:52 +08:00
|
|
|
getResponseHeader: function(name) {
|
2011-03-11 03:48:01 +08:00
|
|
|
return this.responseHeaders[name];
|
2010-09-17 07:51:52 +08:00
|
|
|
},
|
2010-09-17 06:46:55 +08:00
|
|
|
|
2011-02-22 14:27:11 +08:00
|
|
|
getAllResponseHeaders: function() {
|
|
|
|
var responseHeaders = [];
|
2011-03-11 03:48:01 +08:00
|
|
|
for (var i in this.responseHeaders) {
|
|
|
|
if (this.responseHeaders.hasOwnProperty(i)) {
|
|
|
|
responseHeaders.push(i + ': ' + this.responseHeaders[i]);
|
2011-02-22 14:27:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return responseHeaders.join('\r\n');
|
|
|
|
},
|
|
|
|
|
2010-09-17 06:46:55 +08:00
|
|
|
responseText: null,
|
|
|
|
|
|
|
|
response: function(response) {
|
2011-03-11 03:48:01 +08:00
|
|
|
this.status = response.status;
|
|
|
|
this.responseText = response.responseText || "";
|
|
|
|
this.readyState = 4;
|
|
|
|
this.responseHeaders = response.responseHeaders ||
|
2010-09-18 01:10:34 +08:00
|
|
|
{"Content-type": response.contentType || "application/json" };
|
2010-09-17 06:46:55 +08:00
|
|
|
// uncomment for jquery 1.3.x support
|
|
|
|
// jasmine.Clock.tick(20);
|
|
|
|
|
2011-03-11 03:48:01 +08:00
|
|
|
this.onreadystatechange();
|
2011-02-22 14:27:11 +08:00
|
|
|
},
|
|
|
|
responseTimeout: function() {
|
2011-03-11 03:48:01 +08:00
|
|
|
this.readyState = 4;
|
2011-02-22 14:33:11 +08:00
|
|
|
jasmine.Clock.tick(jQuery.ajaxSettings.timeout || 30000);
|
2011-03-11 03:48:01 +08:00
|
|
|
this.onreadystatechange('timeout');
|
2010-09-17 06:46:55 +08:00
|
|
|
}
|
2011-03-11 03:48:01 +08:00
|
|
|
});
|
2010-09-17 06:46:55 +08:00
|
|
|
|
2011-03-11 03:48:01 +08:00
|
|
|
return this;
|
2010-09-17 06:46:55 +08:00
|
|
|
}
|
|
|
|
|
2011-08-08 04:01:38 +08:00
|
|
|
|
|
|
|
jasmine.Ajax = {
|
|
|
|
|
|
|
|
isInstalled: function() {
|
|
|
|
return jasmine.Ajax.installed == true;
|
|
|
|
},
|
|
|
|
|
|
|
|
assertInstalled: function() {
|
|
|
|
if (!jasmine.Ajax.isInstalled()) {
|
|
|
|
throw new Error("Mock ajax is not installed, use jasmine.Ajax.useMock()")
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
useMock: function() {
|
|
|
|
if (!jasmine.Ajax.isInstalled()) {
|
|
|
|
var spec = jasmine.getEnv().currentSpec;
|
|
|
|
spec.after(jasmine.Ajax.uninstallMock);
|
|
|
|
|
|
|
|
jasmine.Ajax.installMock();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
installMock: function() {
|
|
|
|
if (typeof jQuery != 'undefined') {
|
|
|
|
jasmine.Ajax.installJquery();
|
|
|
|
} else if (typeof Prototype != 'undefined') {
|
|
|
|
jasmine.Ajax.installPrototype();
|
|
|
|
} else {
|
|
|
|
throw new Error("jasmine.Ajax currently only supports jQuery and Prototype");
|
|
|
|
}
|
|
|
|
jasmine.Ajax.installed = true;
|
|
|
|
},
|
|
|
|
|
|
|
|
installJquery: function() {
|
|
|
|
jasmine.Ajax.mode = 'jQuery';
|
|
|
|
jasmine.Ajax.real = jQuery.ajaxSettings.xhr;
|
2011-08-08 04:20:37 +08:00
|
|
|
jQuery.ajaxSettings.xhr = jasmine.Ajax.jQueryMock;
|
2011-08-08 04:01:38 +08:00
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
installPrototype: function() {
|
|
|
|
jasmine.Ajax.mode = 'Prototype';
|
|
|
|
jasmine.Ajax.real = Ajax.getTransport;
|
|
|
|
|
2011-08-08 04:20:37 +08:00
|
|
|
Ajax.getTransport = jasmine.Ajax.prototypeMock;
|
2011-08-08 04:01:38 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
uninstallMock: function() {
|
|
|
|
jasmine.Ajax.assertInstalled();
|
|
|
|
if (jasmine.Ajax.mode == 'jQuery') {
|
|
|
|
jQuery.ajaxSettings.xhr = jasmine.Ajax.real;
|
|
|
|
} else if (jasmine.Ajax.mode == 'Prototype') {
|
|
|
|
Ajax.getTransport = jasmine.Ajax.real;
|
|
|
|
}
|
|
|
|
jasmine.Ajax.reset();
|
|
|
|
},
|
|
|
|
|
|
|
|
reset: function() {
|
|
|
|
jasmine.Ajax.installed = false;
|
|
|
|
jasmine.Ajax.mode = null;
|
|
|
|
jasmine.Ajax.real = null;
|
|
|
|
},
|
|
|
|
|
2011-08-08 04:20:37 +08:00
|
|
|
jQueryMock: function() {
|
|
|
|
var newXhr = new FakeXMLHttpRequest();
|
|
|
|
ajaxRequests.push(newXhr);
|
|
|
|
return newXhr;
|
|
|
|
},
|
|
|
|
|
|
|
|
prototypeMock: function() {
|
|
|
|
return new FakeXMLHttpRequest();
|
|
|
|
},
|
|
|
|
|
2011-08-08 04:01:38 +08:00
|
|
|
installed: false,
|
|
|
|
mode: null
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-17 08:07:01 +08:00
|
|
|
// Jasmine-Ajax Glue code for Prototype.js
|
2010-09-18 01:10:34 +08:00
|
|
|
if (typeof Prototype != 'undefined' && Ajax && Ajax.Request) {
|
|
|
|
Ajax.Request.prototype.originalRequest = Ajax.Request.prototype.request;
|
|
|
|
Ajax.Request.prototype.request = function(url) {
|
|
|
|
this.originalRequest(url);
|
|
|
|
ajaxRequests.push(this);
|
|
|
|
};
|
2010-09-17 06:46:55 +08:00
|
|
|
|
2010-09-18 01:10:34 +08:00
|
|
|
Ajax.Request.prototype.response = function(responseOptions) {
|
|
|
|
return this.transport.response(responseOptions);
|
|
|
|
};
|
2011-02-22 14:27:11 +08:00
|
|
|
}
|