2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-11 18:02:32 +03:00

Updating karma

This commit is contained in:
mzabriskie
2015-02-17 01:11:39 -07:00
parent 7efc095582
commit 0438dd3bac
7 changed files with 414 additions and 530 deletions
+45 -57
View File
@@ -7,102 +7,90 @@ describe('transform', function () {
jasmine.Ajax.uninstall();
});
it('should transform JSON to string', function () {
it('should transform JSON to string', function (done) {
var request;
var data = {
foo: 'bar'
};
runs(function () {
axios({
url: '/foo',
method: 'post',
data: data
});
axios({
url: '/foo',
method: 'post',
data: data
});
waitsFor(function () {
return request = jasmine.Ajax.requests.mostRecent();
}, 'waiting for the request', 100);
setTimeout(function () {
request = jasmine.Ajax.requests.mostRecent();
runs(function () {
expect(request.params).toEqual('{"foo":"bar"}');
});
done();
}, 0);
});
it('should override default transform', function () {
it('should override default transform', function (done) {
var request;
var data = {
foo: 'bar'
};
runs(function () {
axios({
url: '/foo',
method: 'post',
data: data,
transformRequest: function (data) {
return data;
}
});
axios({
url: '/foo',
method: 'post',
data: data,
transformRequest: function (data) {
return data;
}
});
waitsFor(function () {
return request = jasmine.Ajax.requests.mostRecent();
}, 'waiting for the request', 100);
setTimeout(function () {
request = jasmine.Ajax.requests.mostRecent();
runs(function () {
expect(typeof request.params).toEqual('object');
});
done();
}, 0);
});
it('should allow an Array of transformers', function () {
it('should allow an Array of transformers', function (done) {
var request;
var data = {
foo: 'bar'
};
runs(function () {
axios({
url: '/foo',
method: 'post',
data: data,
transformRequest: axios.defaults.transformRequest.concat(
function (data) {
return data.replace('bar', 'baz');
}
)
});
axios({
url: '/foo',
method: 'post',
data: data,
transformRequest: axios.defaults.transformRequest.concat(
function (data) {
return data.replace('bar', 'baz');
}
)
});
waitsFor(function () {
return request = jasmine.Ajax.requests.mostRecent();
}, 'waiting for the request', 100);
setTimeout(function () {
request = jasmine.Ajax.requests.mostRecent();
runs(function () {
expect(request.params).toEqual('{"foo":"baz"}');
});
done();
}, 0);
});
it('should allowing mutating headers', function () {
it('should allowing mutating headers', function (done) {
var token = Math.floor(Math.random() * Math.pow(2, 64)).toString(36);
var request;
runs(function () {
axios({
url: '/foo',
transformRequest: function (data, headers) {
headers['X-Authorization'] = token;
}
});
axios({
url: '/foo',
transformRequest: function (data, headers) {
headers['X-Authorization'] = token;
}
});
waitsFor(function () {
return request = jasmine.Ajax.requests.mostRecent();
}, 'waiting for the request', 100);
setTimeout(function () {
request = jasmine.Ajax.requests.mostRecent();
runs(function () {
expect(request.requestHeaders['X-Authorization']).toEqual(token);
});
done();
}, 0);
});
});