mirror of
https://github.com/axios/axios.git
synced 2026-04-11 14:21:59 +08:00
* chore: small fixes to tests * feat: transitional move to vitests * feat: moving unit tests in progress * feat: moving more unit tests over * feat: more tests moved * feat: updated more sections of the http test * chore: wip http tests * chore: wip http tests * chore: more http tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: remove un-needed docs * chore: update package lock * chore: update lock
176 lines
5.5 KiB
JavaScript
176 lines
5.5 KiB
JavaScript
import { describe, it } from 'vitest';
|
|
import assert from 'assert';
|
|
import utils from '../../lib/utils.js';
|
|
import FormData from 'form-data';
|
|
import stream from 'stream';
|
|
|
|
describe('utils', () => {
|
|
it('should validate Stream', () => {
|
|
assert.strictEqual(utils.isStream(new stream.Readable()), true);
|
|
assert.strictEqual(utils.isStream({ foo: 'bar' }), false);
|
|
});
|
|
|
|
it('should validate Buffer', () => {
|
|
assert.strictEqual(utils.isBuffer(Buffer.from('a')), true);
|
|
assert.strictEqual(utils.isBuffer(null), false);
|
|
assert.strictEqual(utils.isBuffer(undefined), false);
|
|
});
|
|
|
|
describe('utils::isFormData', () => {
|
|
it('should detect the FormData instance provided by the `form-data` package', () => {
|
|
[1, 'str', {}, new RegExp()].forEach((thing) => {
|
|
assert.equal(utils.isFormData(thing), false);
|
|
});
|
|
assert.equal(utils.isFormData(new FormData()), true);
|
|
});
|
|
|
|
it('should not call toString method on built-in objects instances', () => {
|
|
const buf = Buffer.from('123');
|
|
|
|
buf.toString = () => assert.fail('should not be called');
|
|
|
|
assert.equal(utils.isFormData(buf), false);
|
|
});
|
|
|
|
it('should not call toString method on built-in objects instances, even if append method exists', () => {
|
|
const buf = Buffer.from('123');
|
|
|
|
buf.append = () => {};
|
|
|
|
buf.toString = () => assert.fail('should not be called');
|
|
|
|
assert.equal(utils.isFormData(buf), false);
|
|
});
|
|
|
|
it('should detect custom FormData instances by toStringTag signature and append method presence', () => {
|
|
class FormData {
|
|
append() {}
|
|
|
|
get [Symbol.toStringTag]() {
|
|
return 'FormData';
|
|
}
|
|
}
|
|
assert.equal(utils.isFormData(new FormData()), true);
|
|
});
|
|
});
|
|
|
|
describe('toJSON', () => {
|
|
it('should convert to a plain object without circular references', () => {
|
|
const obj = { a: [0] };
|
|
const source = { x: 1, y: 2, obj };
|
|
source.circular1 = source;
|
|
obj.a[1] = obj;
|
|
|
|
assert.deepStrictEqual(utils.toJSONObject(source), {
|
|
x: 1,
|
|
y: 2,
|
|
obj: { a: [0] },
|
|
});
|
|
});
|
|
|
|
it('should use objects with defined toJSON method without rebuilding', () => {
|
|
const objProp = {};
|
|
const obj = {
|
|
objProp,
|
|
toJSON() {
|
|
return { ok: 1 };
|
|
},
|
|
};
|
|
const source = { x: 1, y: 2, obj };
|
|
|
|
const jsonObject = utils.toJSONObject(source);
|
|
|
|
assert.strictEqual(jsonObject.obj.objProp, objProp);
|
|
assert.strictEqual(
|
|
JSON.stringify(jsonObject),
|
|
JSON.stringify({ x: 1, y: 2, obj: { ok: 1 } })
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('Buffer RangeError Fix', () => {
|
|
it('should handle large Buffer in isEmptyObject without RangeError', () => {
|
|
const largeBuffer = Buffer.alloc(1024 * 1024 * 200);
|
|
|
|
const result = utils.isEmptyObject(largeBuffer);
|
|
|
|
assert.strictEqual(result, false);
|
|
});
|
|
|
|
it('should handle large Buffer in forEach without RangeError', () => {
|
|
const largeBuffer = Buffer.alloc(1024 * 1024 * 200);
|
|
let count = 0;
|
|
|
|
utils.forEach(largeBuffer, () => count++);
|
|
|
|
assert.strictEqual(count, 0);
|
|
});
|
|
|
|
it('should handle large Buffer in findKey without RangeError', () => {
|
|
const largeBuffer = Buffer.alloc(1024 * 1024 * 200);
|
|
|
|
const result = utils.findKey(largeBuffer, 'test');
|
|
|
|
assert.strictEqual(result, null);
|
|
});
|
|
});
|
|
|
|
describe('utils::isReactNativeBlob', () => {
|
|
it('should return true for objects with uri property', () => {
|
|
assert.strictEqual(utils.isReactNativeBlob({ uri: 'file://path/to/file' }), true);
|
|
assert.strictEqual(utils.isReactNativeBlob({ uri: 'content://media/image' }), true);
|
|
});
|
|
|
|
it('should return true for React Native blob-like objects with optional name and type', () => {
|
|
assert.strictEqual(
|
|
utils.isReactNativeBlob({
|
|
uri: 'file://path/to/file',
|
|
name: 'image.png',
|
|
type: 'image/png',
|
|
}),
|
|
true
|
|
);
|
|
});
|
|
|
|
it('should return false for objects without uri property', () => {
|
|
assert.strictEqual(utils.isReactNativeBlob({ path: 'file://path' }), false);
|
|
assert.strictEqual(utils.isReactNativeBlob({ url: 'http://example.com' }), false);
|
|
assert.strictEqual(utils.isReactNativeBlob({}), false);
|
|
});
|
|
|
|
it('should return false for non-objects', () => {
|
|
assert.strictEqual(utils.isReactNativeBlob(null), false);
|
|
assert.strictEqual(utils.isReactNativeBlob(undefined), false);
|
|
assert.strictEqual(utils.isReactNativeBlob('string'), false);
|
|
assert.strictEqual(utils.isReactNativeBlob(123), false);
|
|
assert.strictEqual(utils.isReactNativeBlob(false), false);
|
|
});
|
|
|
|
it('should return true even if uri is empty string', () => {
|
|
assert.strictEqual(utils.isReactNativeBlob({ uri: '' }), true);
|
|
});
|
|
});
|
|
|
|
describe('utils::isReactNative', () => {
|
|
it('should return true for FormData with getParts method', () => {
|
|
const mockReactNativeFormData = {
|
|
append: () => {},
|
|
getParts: () => {
|
|
return [];
|
|
},
|
|
};
|
|
assert.strictEqual(utils.isReactNative(mockReactNativeFormData), true);
|
|
});
|
|
|
|
it('should return false for standard FormData without getParts method', () => {
|
|
const standardFormData = new FormData();
|
|
assert.strictEqual(utils.isReactNative(standardFormData), false);
|
|
});
|
|
|
|
it('should return false for objects without getParts method', () => {
|
|
assert.strictEqual(utils.isReactNative({ append: () => {} }), false);
|
|
assert.strictEqual(utils.isReactNative({}), false);
|
|
});
|
|
});
|
|
});
|