mirror of
https://github.com/axios/axios.git
synced 2026-04-12 14:41:55 +08:00
129 lines
3.2 KiB
JavaScript
129 lines
3.2 KiB
JavaScript
function testHeaderValue(headers, key, val) {
|
|
var found = false;
|
|
|
|
for (var k in headers) {
|
|
if (k.toLowerCase() === key.toLowerCase()) {
|
|
found = true;
|
|
expect(headers[k]).toEqual(val);
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!found) {
|
|
if (typeof val === 'undefined') {
|
|
expect(headers.hasOwnProperty(key)).toEqual(false);
|
|
} else {
|
|
throw new Error(key + ' was not found in headers');
|
|
}
|
|
}
|
|
}
|
|
|
|
describe('headers', function () {
|
|
beforeEach(function () {
|
|
jasmine.Ajax.install();
|
|
});
|
|
|
|
afterEach(function () {
|
|
jasmine.Ajax.uninstall();
|
|
});
|
|
|
|
it('should default common headers', function (done) {
|
|
var headers = axios.defaults.headers.common;
|
|
|
|
axios('/foo');
|
|
|
|
getAjaxRequest().then(function (request) {
|
|
for (var key in headers) {
|
|
if (headers.hasOwnProperty(key)) {
|
|
expect(request.requestHeaders[key]).toEqual(headers[key]);
|
|
}
|
|
}
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should add extra headers for post', function (done) {
|
|
var headers = axios.defaults.headers.common;
|
|
|
|
axios.post('/foo', 'fizz=buzz');
|
|
|
|
getAjaxRequest().then(function (request) {
|
|
for (var key in headers) {
|
|
if (headers.hasOwnProperty(key)) {
|
|
expect(request.requestHeaders[key]).toEqual(headers[key]);
|
|
}
|
|
}
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should reset headers by null or explicit undefined', function (done) {
|
|
axios.create({
|
|
headers: {
|
|
common: {
|
|
'x-header-a': 'a',
|
|
'x-header-b': 'b',
|
|
'x-header-c': 'c'
|
|
}
|
|
}
|
|
}).post('/foo', {fizz: 'buzz'}, {
|
|
headers: {
|
|
'Content-Type': null,
|
|
'x-header-a': null,
|
|
'x-header-b': undefined
|
|
}
|
|
});
|
|
|
|
getAjaxRequest().then(function (request) {
|
|
testHeaderValue(request.requestHeaders, 'Content-Type', null);
|
|
testHeaderValue(request.requestHeaders, 'x-header-a', null);
|
|
testHeaderValue(request.requestHeaders, 'x-header-b', undefined);
|
|
testHeaderValue(request.requestHeaders, 'x-header-c', 'c');
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should use application/json when posting an object', function (done) {
|
|
axios.post('/foo/bar', {
|
|
firstName: 'foo',
|
|
lastName: 'bar'
|
|
});
|
|
|
|
getAjaxRequest().then(function (request) {
|
|
testHeaderValue(request.requestHeaders, 'Content-Type', 'application/json');
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should remove content-type if data is empty', function (done) {
|
|
axios.post('/foo');
|
|
|
|
getAjaxRequest().then(function (request) {
|
|
testHeaderValue(request.requestHeaders, 'Content-Type', undefined);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should preserve content-type if data is false', function (done) {
|
|
axios.post('/foo', false);
|
|
|
|
getAjaxRequest().then(function (request) {
|
|
testHeaderValue(request.requestHeaders, 'Content-Type', 'application/x-www-form-urlencoded');
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should sanitize headers containing invalid characters', function (done) {
|
|
axios('/foo', {
|
|
headers: {
|
|
'x-test': ' ok\r\nInjected: yes\t'
|
|
}
|
|
});
|
|
|
|
getAjaxRequest().then(function (request) {
|
|
testHeaderValue(request.requestHeaders, 'x-test', 'okInjected: yes');
|
|
done();
|
|
});
|
|
});
|
|
});
|