Example #1
0
			findAll: function (params) {
				return ajax({
					url: 'model/test/people.json',
					data: params,
					dataType: 'json'
				});
			}
Example #2
0
	QUnit.asyncTest("basic get request", function () {
		ajax({
			type: "get",
			url: __dirname+"/test-result.json"
		}).then(function(resp){
			QUnit.equal(resp.message, "VALUE");
			start();
		});
	});
Example #3
0
	QUnit.asyncTest("GET requests with dataType parse JSON (#106)", function(){
		ajax({
			type: "get",
			url: __dirname+"/test-result.txt",
			dataType: "json"
		}).then(function(resp){
			QUnit.equal(resp.message, "VALUE");
			start();
		});
	});
Example #4
0
	QUnit.asyncTest("cross domain post request should change data to form data (#90)", function () {
		ajax({
			type: "POST",
			url: "http://httpbin.org/post",
			data: {'message': 'VALUE'},
			dataType: 'application/json'
		}).then(function(resp){
			QUnit.equal(resp.form.message, "VALUE");
			start();
		});
	});
Example #5
0
QUnit.asyncTest("ignores case of type parameter for a post request (#100)", function () {
	var oldXhr = window.XMLHttpRequest || window.ActiveXObject,
		requestHeaders = {
			CONTENT_TYPE: "Content-Type"
		},
		xhrFixture = function () {
			this.open = function (type, url) {
			};

			this.send = function () {
				this.readyState = 4;
				this.status = 200;
				this.onreadystatechange();
			};

			this.setRequestHeader = function (header, value) {
				if (header === requestHeaders.CONTENT_TYPE) {
					var o = {};
					o[header] = value;
					this.responseText = JSON.stringify(o);
				}
			};
		};

	// replace with fixture
	if (window.XMLHttpRequest) {
		window.XMLHttpRequest = xhrFixture;
	} else if (window.ActiveXObject) {
		window.ActiveXObject = xhrFixture;
	}

	ajax({
		type: "post",
		url: "/foo",
		data: {
			bar: "qux"
		}
	}).then(function (value) {
		QUnit.equal(value[requestHeaders.CONTENT_TYPE], "application/x-www-form-urlencoded");
	}, function (reason) {
		QUnit.notOk(reason, "request failed with reason = ", reason);
	}).then(function () {
		// restore original values
		if (window.XMLHttpRequest) {
			window.XMLHttpRequest = oldXhr;
		} else if (window.ActiveXObject) {
			window.ActiveXObject = oldXhr;
		}
		start();
	});
});
Example #6
0
	QUnit.asyncTest("abort", function () {
		var promise = ajax({
			type: "get",
			url: __dirname+"/test-result.json"
		});
		promise.catch(function(xhr) {
			if(xhr instanceof Error) {
				// IE9 - see http://stackoverflow.com/questions/7287706/ie-9-javascript-error-c00c023f
				QUnit.equal(xhr.message, 'Could not complete the operation due to error c00c023f.');
				start();
			} else {
				setTimeout(function() {
					QUnit.equal(xhr.readyState, 0, "aborts the promise");
					start();
				}, 50);
			}
		});
		promise.abort();
	});
Example #7
0
			create: function() {
				return ajax({
					url: '/foos',
					type: 'POST'
				});
			}