375 lines
9.8 KiB
JavaScript
375 lines
9.8 KiB
JavaScript
/*
|
|
|
|
Jasmine-Ajax : a set of helpers for testing AJAX requests under the Jasmine
|
|
BDD framework for JavaScript.
|
|
|
|
http://github.com/pivotal/jasmine-ajax
|
|
|
|
Jasmine Home page: http://pivotal.github.com/jasmine
|
|
|
|
Copyright (c) 2008-2013 Pivotal Labs
|
|
|
|
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:
|
|
|
|
The above copyright notice and this permission notice shall be
|
|
included in all copies or substantial portions of the Software.
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
(function() {
|
|
function extend(destination, source, propertiesToSkip) {
|
|
propertiesToSkip = propertiesToSkip || [];
|
|
for (var property in source) {
|
|
if (!arrayContains(propertiesToSkip, property)) {
|
|
destination[property] = source[property];
|
|
}
|
|
}
|
|
return destination;
|
|
}
|
|
|
|
function arrayContains(arr, item) {
|
|
for (var i = 0; i < arr.length; i++) {
|
|
if (arr[i] === item) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
function MockAjax(global) {
|
|
var requestTracker = new RequestTracker(),
|
|
stubTracker = new StubTracker(),
|
|
paramParser = new ParamParser(),
|
|
realAjaxFunction = global.XMLHttpRequest,
|
|
mockAjaxFunction = fakeRequest(requestTracker, stubTracker, paramParser);
|
|
|
|
this.install = function() {
|
|
global.XMLHttpRequest = mockAjaxFunction;
|
|
};
|
|
|
|
this.uninstall = function() {
|
|
global.XMLHttpRequest = realAjaxFunction;
|
|
|
|
this.stubs.reset();
|
|
this.requests.reset();
|
|
paramParser.reset();
|
|
};
|
|
|
|
this.stubRequest = function(url, data, method) {
|
|
var stub = new RequestStub(url, data, method);
|
|
stubTracker.addStub(stub);
|
|
return stub;
|
|
};
|
|
|
|
this.withMock = function(closure) {
|
|
this.install();
|
|
try {
|
|
closure();
|
|
} finally {
|
|
this.uninstall();
|
|
}
|
|
};
|
|
|
|
this.addCustomParamParser = function(parser) {
|
|
paramParser.add(parser);
|
|
};
|
|
|
|
this.requests = requestTracker;
|
|
this.stubs = stubTracker;
|
|
}
|
|
|
|
function StubTracker() {
|
|
var stubs = [];
|
|
|
|
this.addStub = function(stub) {
|
|
stubs.push(stub);
|
|
};
|
|
|
|
this.reset = function() {
|
|
stubs = [];
|
|
};
|
|
|
|
this.findStub = function(url, data, method) {
|
|
for (var i = stubs.length - 1; i >= 0; i--) {
|
|
var stub = stubs[i];
|
|
if (stub.matches(url, data, method)) {
|
|
return stub;
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
function ParamParser() {
|
|
var defaults = [
|
|
{
|
|
test: function(xhr) {
|
|
return (/^application\/json/).test(xhr.contentType());
|
|
},
|
|
parse: function jsonParser(paramString) {
|
|
return JSON.parse(paramString);
|
|
}
|
|
},
|
|
{
|
|
test: function(xhr) {
|
|
return true;
|
|
},
|
|
parse: function naiveParser(paramString) {
|
|
var data = {};
|
|
var params = paramString.split('&');
|
|
|
|
for (var i = 0; i < params.length; ++i) {
|
|
var kv = params[i].replace(/\+/g, ' ').split('=');
|
|
var key = decodeURIComponent(kv[0]);
|
|
data[key] = data[key] || [];
|
|
data[key].push(decodeURIComponent(kv[1]));
|
|
}
|
|
return data;
|
|
}
|
|
}
|
|
];
|
|
var paramParsers = [];
|
|
|
|
this.add = function(parser) {
|
|
paramParsers.unshift(parser);
|
|
};
|
|
|
|
this.findParser = function(xhr) {
|
|
for(var i in paramParsers) {
|
|
var parser = paramParsers[i];
|
|
if (parser.test(xhr)) {
|
|
return parser;
|
|
}
|
|
}
|
|
};
|
|
|
|
this.reset = function() {
|
|
paramParsers = [];
|
|
for(var i in defaults) {
|
|
paramParsers.push(defaults[i]);
|
|
}
|
|
};
|
|
|
|
this.reset();
|
|
}
|
|
|
|
function fakeRequest(requestTracker, stubTracker, paramParser) {
|
|
function FakeXMLHttpRequest() {
|
|
requestTracker.track(this);
|
|
this.requestHeaders = {};
|
|
}
|
|
|
|
var iePropertiesThatCannotBeCopied = ['responseBody', 'responseText', 'responseXML', 'status', 'statusText', 'responseTimeout'];
|
|
extend(FakeXMLHttpRequest.prototype, new window.XMLHttpRequest(), iePropertiesThatCannotBeCopied);
|
|
extend(FakeXMLHttpRequest.prototype, {
|
|
open: function() {
|
|
this.method = arguments[0];
|
|
this.url = arguments[1];
|
|
this.username = arguments[3];
|
|
this.password = arguments[4];
|
|
this.readyState = 1;
|
|
this.onreadystatechange();
|
|
},
|
|
|
|
setRequestHeader: function(header, value) {
|
|
this.requestHeaders[header] = value;
|
|
},
|
|
|
|
abort: function() {
|
|
this.readyState = 0;
|
|
this.status = 0;
|
|
this.statusText = "abort";
|
|
this.onreadystatechange();
|
|
},
|
|
|
|
readyState: 0,
|
|
|
|
onload: function() {
|
|
},
|
|
|
|
onreadystatechange: function(isTimeout) {
|
|
},
|
|
|
|
status: null,
|
|
|
|
send: function(data) {
|
|
this.params = data;
|
|
this.readyState = 2;
|
|
this.onreadystatechange();
|
|
|
|
var stub = stubTracker.findStub(this.url, data, this.method);
|
|
if (stub) {
|
|
this.response(stub);
|
|
}
|
|
},
|
|
|
|
contentType: function() {
|
|
for (var header in this.requestHeaders) {
|
|
if (header.toLowerCase() === 'content-type') {
|
|
return this.requestHeaders[header];
|
|
}
|
|
}
|
|
},
|
|
|
|
data: function() {
|
|
if (!this.params) {
|
|
return {};
|
|
}
|
|
|
|
return paramParser.findParser(this).parse(this.params);
|
|
},
|
|
|
|
getResponseHeader: function(name) {
|
|
return this.responseHeaders[name];
|
|
},
|
|
|
|
getAllResponseHeaders: function() {
|
|
var responseHeaders = [];
|
|
for (var i in this.responseHeaders) {
|
|
if (this.responseHeaders.hasOwnProperty(i)) {
|
|
responseHeaders.push(i + ': ' + this.responseHeaders[i]);
|
|
}
|
|
}
|
|
return responseHeaders.join('\r\n');
|
|
},
|
|
|
|
responseText: null,
|
|
|
|
response: function(response) {
|
|
if (this.readyState === 4) {
|
|
throw new Error("FakeXMLHttpRequest already completed");
|
|
}
|
|
this.status = response.status;
|
|
this.statusText = response.statusText || "";
|
|
this.responseText = response.responseText || "";
|
|
this.readyState = 4;
|
|
this.responseHeaders = response.responseHeaders ||
|
|
{"Content-Type": response.contentType || "application/json" };
|
|
|
|
this.onload();
|
|
this.onreadystatechange();
|
|
},
|
|
|
|
responseTimeout: function() {
|
|
if (this.readyState === 4) {
|
|
throw new Error("FakeXMLHttpRequest already completed");
|
|
}
|
|
this.readyState = 4;
|
|
jasmine.clock().tick(30000);
|
|
this.onreadystatechange('timeout');
|
|
}
|
|
});
|
|
|
|
return FakeXMLHttpRequest;
|
|
}
|
|
|
|
function RequestTracker() {
|
|
var requests = [];
|
|
|
|
this.track = function(request) {
|
|
requests.push(request);
|
|
};
|
|
|
|
this.first = function() {
|
|
return requests[0];
|
|
};
|
|
|
|
this.count = function() {
|
|
return requests.length;
|
|
};
|
|
|
|
this.reset = function() {
|
|
requests = [];
|
|
};
|
|
|
|
this.mostRecent = function() {
|
|
return requests[requests.length - 1];
|
|
};
|
|
|
|
this.at = function(index) {
|
|
return requests[index];
|
|
};
|
|
|
|
this.filter = function(url_to_match) {
|
|
if (requests.length === 0) { return []; }
|
|
var matching_requests = [];
|
|
|
|
for (var i = 0; i < requests.length; i++) {
|
|
if (url_to_match instanceof RegExp &&
|
|
url_to_match.test(requests[i].url)) {
|
|
matching_requests.push(requests[i]);
|
|
} else if (url_to_match instanceof Function &&
|
|
url_to_match(requests[i])) {
|
|
matching_requests.push(requests[i]);
|
|
} else {
|
|
if (requests[i].url === url_to_match) {
|
|
matching_requests.push(requests[i]);
|
|
}
|
|
}
|
|
}
|
|
|
|
return matching_requests;
|
|
};
|
|
}
|
|
|
|
function RequestStub(url, stubData, method) {
|
|
var normalizeQuery = function(query) {
|
|
return query ? query.split('&').sort().join('&') : undefined;
|
|
};
|
|
|
|
if (url instanceof RegExp) {
|
|
this.url = url;
|
|
this.query = undefined;
|
|
} else {
|
|
var split = url.split('?');
|
|
this.url = split[0];
|
|
this.query = split.length > 1 ? normalizeQuery(split[1]) : undefined;
|
|
}
|
|
|
|
this.data = normalizeQuery(stubData);
|
|
this.method = method;
|
|
|
|
this.andReturn = function(options) {
|
|
this.status = options.status || 200;
|
|
|
|
this.contentType = options.contentType;
|
|
this.responseText = options.responseText;
|
|
};
|
|
|
|
this.matches = function(fullUrl, data, method) {
|
|
var matches = false;
|
|
fullUrl = fullUrl.toString();
|
|
if (this.url instanceof RegExp) {
|
|
matches = this.url.test(fullUrl);
|
|
} else {
|
|
var urlSplit = fullUrl.split('?'),
|
|
url = urlSplit[0],
|
|
query = urlSplit[1];
|
|
matches = this.url === url && this.query === normalizeQuery(query);
|
|
}
|
|
return matches && (!this.data || this.data === normalizeQuery(data)) && (!this.method || this.method === method);
|
|
};
|
|
}
|
|
|
|
if (typeof window === "undefined" && typeof exports === "object") {
|
|
exports.MockAjax = MockAjax;
|
|
jasmine.Ajax = new MockAjax(exports);
|
|
} else {
|
|
window.MockAjax = MockAjax;
|
|
jasmine.Ajax = new MockAjax(window);
|
|
}
|
|
}());
|