2023-08-07 23:25:58 -04:00

334 lines
9.2 KiB
TypeScript

import type { RequestOptions } from '@gitbeaker/requester-utils';
import { defaultOptionsHandler, defaultRequestHandler, processBody } from '../../src/Requester';
global.fetch = jest.fn();
const MockFetch = global.fetch as jest.Mock;
describe('processBody', () => {
it('should return a json object if type is application/json', async () => {
const output = await processBody({
json() {
return Promise.resolve({ test: 5 });
},
headers: new Headers({
'content-type': 'application/json',
}),
} as unknown as Response);
expect(output).toMatchObject({ test: 5 });
});
it('should return a blob if type is octet-stream, binary, or gzip', async () => {
const blobData = new Blob(['test'], {
type: 'plain/text',
});
const output = [
processBody({
blob() {
return Promise.resolve(blobData);
},
headers: new Headers({
'content-type': 'application/octet-stream',
}),
} as unknown as Response),
processBody({
blob() {
return Promise.resolve(blobData);
},
headers: new Headers({
'content-type': 'binary/octet-stream',
}),
} as unknown as Response),
processBody({
blob() {
return Promise.resolve(blobData);
},
headers: new Headers({
'content-type': 'image/png',
}),
} as unknown as Response),
processBody({
blob() {
return Promise.resolve(blobData);
},
headers: new Headers({
'content-type': 'application/gzip',
}),
} as unknown as Response),
];
const fulfilled = await Promise.all(output);
fulfilled.forEach((o) => expect(o).toBeInstanceOf(Blob));
});
it('should return a string if type is text/<subtype>', async () => {
const output = await processBody({
text() {
return Promise.resolve('test');
},
headers: new Headers({
'content-type': 'text/plain',
}),
} as unknown as Response);
expect(typeof output).toBe('string');
expect(output).toEqual('test');
});
it('should return a empty string when presented with an unknown content-type and empty body', async () => {
const blobData = new Blob(['test'], {
type: 'plain/text',
});
const output = (await processBody({
blob() {
return Promise.resolve(blobData);
},
headers: new Headers({
'content-type': 'application/fake',
}),
} as unknown as Response)) as Blob;
expect(output).toBeInstanceOf(Blob);
expect(output.size).toBe(4);
});
});
describe('defaultRequestHandler', () => {
it('should return an error with the statusText as the primary message and a description derived from a error property when response has an error property', async () => {
const stringBody = { error: 'msg' };
MockFetch.mockReturnValueOnce(
Promise.resolve({
ok: false,
status: 501,
statusText: 'Really Bad Error',
headers: new Headers({
'content-type': 'application/json',
}),
json: () => Promise.resolve(stringBody),
text: () => Promise.resolve(JSON.stringify(stringBody)),
}),
);
await expect(defaultRequestHandler('http://test.com', {} as RequestOptions)).rejects.toThrow({
message: 'Really Bad Error',
name: 'Error',
cause: {
description: 'msg',
},
});
});
it('should return correct properties if request is valid', async () => {
MockFetch.mockReturnValueOnce(
Promise.resolve({
json: () => Promise.resolve({}),
text: () => Promise.resolve(JSON.stringify({})),
ok: true,
status: 200,
headers: new Headers({
'content-type': 'application/json',
}),
}),
);
const output = await defaultRequestHandler('http://test.com', {} as RequestOptions);
expect(output).toMatchObject({
body: {},
headers: {},
status: 200,
});
});
it('should handle a prefix url correctly', async () => {
MockFetch.mockReturnValueOnce(
Promise.resolve({
json: () => Promise.resolve({}),
text: () => Promise.resolve(JSON.stringify({})),
ok: true,
status: 200,
headers: new Headers({
'content-type': 'application/json',
}),
}),
);
await defaultRequestHandler('testurl', {
prefixUrl: 'http://test.com',
} as RequestOptions);
const request = new Request(new URL('http://test.com/testurl'), { mode: undefined });
expect(MockFetch).toHaveBeenCalledWith(request);
});
it('should handle a searchParams correctly', async () => {
MockFetch.mockReturnValueOnce(
Promise.resolve({
json: () => Promise.resolve({}),
text: () => Promise.resolve(JSON.stringify({})),
ok: true,
status: 200,
headers: new Headers({
'content-type': 'application/json',
}),
}),
);
await defaultRequestHandler('testurl/123', {
searchParams: 'test=4',
prefixUrl: 'http://test.com',
} as RequestOptions);
const request = new Request(new URL('http://test.com/testurl/123?test=4'), { mode: undefined });
expect(MockFetch).toHaveBeenCalledWith(request);
});
it('should add same-origin mode for repository/archive endpoint', async () => {
MockFetch.mockReturnValueOnce(
Promise.resolve({
json: () => Promise.resolve({}),
text: () => Promise.resolve(JSON.stringify({})),
ok: true,
status: 200,
headers: new Headers({
'content-type': 'application/json',
}),
}),
);
await defaultRequestHandler('http://test.com/repository/archive');
const request = new Request(new URL('http://test.com/repository/archive'), {
mode: 'same-origin',
});
expect(MockFetch).toHaveBeenCalledWith(request);
});
it('should use default mode (cors) for non-repository/archive endpoints', async () => {
MockFetch.mockReturnValueOnce(
Promise.resolve({
json: () => Promise.resolve({}),
text: () => Promise.resolve(JSON.stringify({})),
ok: true,
status: 200,
headers: new Headers({
'content-type': 'application/json',
}),
}),
);
await defaultRequestHandler('http://test.com/test/something');
const request = new Request(new URL('http://test.com/test/something'), { mode: undefined });
expect(MockFetch).toHaveBeenCalledWith(request);
});
it('should handle multipart prefixUrls correctly', async () => {
MockFetch.mockReturnValue(
Promise.resolve({
json: () => Promise.resolve({}),
text: () => Promise.resolve(JSON.stringify({})),
ok: true,
status: 200,
headers: new Headers({
'content-type': 'application/json',
}),
}),
);
await defaultRequestHandler('testurl/123', {
searchParams: 'test=4',
prefixUrl: 'http://test.com/projects',
} as RequestOptions);
const request = new Request(new URL('http://test.com/projects/testurl/123?test=4'), {
mode: undefined,
});
expect(MockFetch).toHaveBeenCalledWith(request);
await defaultRequestHandler('123/testurl', {
searchParams: 'test=4',
prefixUrl: 'http://test.com/projects',
} as RequestOptions);
const request2 = new Request(new URL('http://test.com/projects/123/testurl?test=4'), {
mode: undefined,
});
expect(MockFetch).toHaveBeenCalledWith(request2);
await defaultRequestHandler('123/testurl', {
searchParams: 'test=4',
prefixUrl: 'http://test.com/projects/',
} as RequestOptions);
const request3 = new Request(new URL('http://test.com/projects/123/testurl?test=4'), {
mode: undefined,
});
expect(MockFetch).toHaveBeenCalledWith(request3);
});
});
describe('defaultRequest', () => {
const service = {
headers: { test: '5' },
url: 'testurl',
rejectUnauthorized: true,
authHeaders: {
token: () => Promise.resolve('1234'),
},
};
it('should not assign the agent property if given https url and not rejectUnauthorized', async () => {
const { agent } = await defaultOptionsHandler(
{ ...service, url: 'https://test.com' },
{ method: 'POST' },
);
expect(agent).toBeUndefined();
});
it('should not assign the agent property if given http url and rejectUnauthorized', async () => {
const { agent } = await defaultOptionsHandler(
{ ...service, url: 'http://test.com' },
{ method: 'POST' },
);
expect(agent).toBeUndefined();
});
it('should assign the agent property if given https url and rejectUnauthorized is false', async () => {
const { agent: agent1 } = await defaultOptionsHandler(
{ ...service, url: 'https://test.com', rejectUnauthorized: false },
{ method: 'POST' },
);
expect(agent1).toBeDefined();
const { agent: agent2 } = await defaultOptionsHandler(
{ ...service, url: 'https://test.com', rejectUnauthorized: true },
{ method: 'POST' },
);
expect(agent2).toBeUndefined();
const { agent: agent3 } = await defaultOptionsHandler(
{ ...service, url: 'https://test.com' },
{ method: 'POST' },
);
expect(agent3).toBeUndefined();
});
});