shlink-web-client/test/utils/services/ShlinkApiClient.test.ts

254 lines
7.8 KiB
TypeScript
Raw Normal View History

2020-08-29 20:51:14 +03:00
import { AxiosInstance, AxiosRequestConfig } from 'axios';
import ShlinkApiClient from '../../../src/utils/services/ShlinkApiClient';
2020-08-29 20:51:14 +03:00
import { OptionalString } from '../../../src/utils/utils';
2018-08-04 12:07:28 +03:00
describe('ShlinkApiClient', () => {
2020-08-29 20:51:14 +03:00
const createAxios = (data: AxiosRequestConfig) => (async () => Promise.resolve(data)) as unknown as AxiosInstance;
const createAxiosMock = (data: AxiosRequestConfig = {}) => jest.fn(createAxios(data)) as unknown as AxiosInstance;
const createApiClient = (data: AxiosRequestConfig) => new ShlinkApiClient(createAxios(data), '', '');
const shortCodesWithDomainCombinations: [ string, OptionalString ][] = [
[ 'abc123', null ],
[ 'abc123', undefined ],
[ 'abc123', 'example.com' ],
];
2018-08-04 12:07:28 +03:00
describe('listShortUrls', () => {
it('properly returns short URLs list', async () => {
const expectedList = [ 'foo', 'bar' ];
2018-08-04 12:07:28 +03:00
const { listShortUrls } = createApiClient({
2018-08-22 23:38:05 +03:00
data: {
shortUrls: expectedList,
},
2018-08-04 12:07:28 +03:00
});
const actualList = await listShortUrls();
2018-08-04 12:07:28 +03:00
expect(expectedList).toEqual(actualList);
});
});
2018-08-22 23:38:05 +03:00
describe('createShortUrl', () => {
const shortUrl = {
bar: 'foo',
};
it('returns create short URL', async () => {
const { createShortUrl } = createApiClient({ data: shortUrl });
const result = await createShortUrl({});
2018-08-22 23:38:05 +03:00
expect(result).toEqual(shortUrl);
});
it('removes all empty options', async () => {
2020-08-29 20:51:14 +03:00
const axiosSpy = createAxiosMock({ data: shortUrl });
const { createShortUrl } = new ShlinkApiClient(axiosSpy, '', '');
2018-08-22 23:38:05 +03:00
await createShortUrl(
2020-08-22 09:10:31 +03:00
{ foo: 'bar', empty: undefined, anotherEmpty: null },
2018-08-22 23:38:05 +03:00
);
2019-04-19 13:41:59 +03:00
expect(axiosSpy).toHaveBeenCalledWith(expect.objectContaining({ data: { foo: 'bar' } }));
2018-08-22 23:38:05 +03:00
});
});
describe('getShortUrlVisits', () => {
it('properly returns short URL visits', async () => {
const expectedVisits = [ 'foo', 'bar' ];
2020-08-29 20:51:14 +03:00
const axiosSpy = createAxiosMock({
2018-08-22 23:38:05 +03:00
data: {
visits: {
data: expectedVisits,
},
},
2020-08-29 20:51:14 +03:00
});
const { getShortUrlVisits } = new ShlinkApiClient(axiosSpy, '', '');
2018-08-22 23:38:05 +03:00
const actualVisits = await getShortUrlVisits('abc123', {});
2018-08-22 23:38:05 +03:00
2019-01-10 22:05:02 +03:00
expect({ data: expectedVisits }).toEqual(actualVisits);
2019-04-19 13:41:59 +03:00
expect(axiosSpy).toHaveBeenCalledWith(expect.objectContaining({
url: '/short-urls/abc123/visits',
method: 'GET',
}));
2018-08-22 23:38:05 +03:00
});
});
2020-05-10 20:02:58 +03:00
describe('getTagVisits', () => {
it('properly returns tag visits', async () => {
const expectedVisits = [ 'foo', 'bar' ];
2020-08-29 20:51:14 +03:00
const axiosSpy = createAxiosMock({
2020-05-10 20:02:58 +03:00
data: {
visits: {
data: expectedVisits,
},
},
2020-08-29 20:51:14 +03:00
});
const { getTagVisits } = new ShlinkApiClient(axiosSpy, '', '');
2020-05-10 20:02:58 +03:00
const actualVisits = await getTagVisits('foo', {});
expect({ data: expectedVisits }).toEqual(actualVisits);
expect(axiosSpy).toHaveBeenCalledWith(expect.objectContaining({
url: '/tags/foo/visits',
method: 'GET',
}));
});
});
2018-08-22 23:38:05 +03:00
describe('getShortUrl', () => {
it.each(shortCodesWithDomainCombinations)('properly returns short URL', async (shortCode, domain) => {
2018-08-22 23:38:05 +03:00
const expectedShortUrl = { foo: 'bar' };
2020-08-29 20:51:14 +03:00
const axiosSpy = createAxiosMock({
2018-08-22 23:38:05 +03:00
data: expectedShortUrl,
2020-08-29 20:51:14 +03:00
});
const { getShortUrl } = new ShlinkApiClient(axiosSpy, '', '');
2018-08-22 23:38:05 +03:00
const result = await getShortUrl(shortCode, domain);
2018-08-22 23:38:05 +03:00
expect(expectedShortUrl).toEqual(result);
2019-04-19 13:41:59 +03:00
expect(axiosSpy).toHaveBeenCalledWith(expect.objectContaining({
url: `/short-urls/${shortCode}`,
2019-04-19 13:41:59 +03:00
method: 'GET',
params: domain ? { domain } : {},
2019-04-19 13:41:59 +03:00
}));
2018-08-22 23:38:05 +03:00
});
});
describe('updateShortUrlTags', () => {
it.each(shortCodesWithDomainCombinations)('properly updates short URL tags', async (shortCode, domain) => {
const expectedTags = [ 'foo', 'bar' ];
2020-08-29 20:51:14 +03:00
const axiosSpy = createAxiosMock({
2018-08-22 23:38:05 +03:00
data: { tags: expectedTags },
2020-08-29 20:51:14 +03:00
});
const { updateShortUrlTags } = new ShlinkApiClient(axiosSpy, '', '');
2018-08-22 23:38:05 +03:00
const result = await updateShortUrlTags(shortCode, domain, expectedTags);
2018-08-22 23:38:05 +03:00
expect(expectedTags).toEqual(result);
2019-04-19 13:41:59 +03:00
expect(axiosSpy).toHaveBeenCalledWith(expect.objectContaining({
url: `/short-urls/${shortCode}/tags`,
2019-04-19 13:41:59 +03:00
method: 'PUT',
params: domain ? { domain } : {},
2019-04-19 13:41:59 +03:00
}));
2018-08-22 23:38:05 +03:00
});
});
2020-01-19 15:20:46 +03:00
describe('updateShortUrlMeta', () => {
it.each(shortCodesWithDomainCombinations)('properly updates short URL meta', async (shortCode, domain) => {
2020-01-19 15:20:46 +03:00
const expectedMeta = {
maxVisits: 50,
validSince: '2025-01-01T10:00:00+01:00',
};
2020-08-29 20:51:14 +03:00
const axiosSpy = createAxiosMock();
const { updateShortUrlMeta } = new ShlinkApiClient(axiosSpy, '', '');
2020-01-19 15:20:46 +03:00
const result = await updateShortUrlMeta(shortCode, domain, expectedMeta);
2020-01-19 15:20:46 +03:00
expect(expectedMeta).toEqual(result);
expect(axiosSpy).toHaveBeenCalledWith(expect.objectContaining({
url: `/short-urls/${shortCode}`,
2020-01-19 15:20:46 +03:00
method: 'PATCH',
params: domain ? { domain } : {},
2020-01-19 15:20:46 +03:00
}));
});
});
2018-08-22 23:38:05 +03:00
describe('listTags', () => {
it('properly returns list of tags', async () => {
const expectedTags = [ 'foo', 'bar' ];
2020-08-29 20:51:14 +03:00
const axiosSpy = createAxiosMock({
2018-08-22 23:38:05 +03:00
data: {
tags: { data: expectedTags },
2018-08-22 23:38:05 +03:00
},
2020-08-29 20:51:14 +03:00
});
const { listTags } = new ShlinkApiClient(axiosSpy, '', '');
2018-08-22 23:38:05 +03:00
const result = await listTags();
2018-08-22 23:38:05 +03:00
expect({ tags: expectedTags }).toEqual(result);
2019-04-19 13:41:59 +03:00
expect(axiosSpy).toHaveBeenCalledWith(expect.objectContaining({ url: '/tags', method: 'GET' }));
2018-08-22 23:38:05 +03:00
});
});
describe('deleteTags', () => {
it('properly deletes provided tags', async () => {
const tags = [ 'foo', 'bar' ];
2020-08-29 20:51:14 +03:00
const axiosSpy = createAxiosMock();
const { deleteTags } = new ShlinkApiClient(axiosSpy, '', '');
2018-08-22 23:38:05 +03:00
await deleteTags(tags);
2018-08-22 23:38:05 +03:00
2019-04-19 13:41:59 +03:00
expect(axiosSpy).toHaveBeenCalledWith(expect.objectContaining({
url: '/tags',
method: 'DELETE',
params: { tags },
}));
2018-08-22 23:38:05 +03:00
});
});
describe('editTag', () => {
it('properly edits provided tag', async () => {
2018-08-22 23:38:05 +03:00
const oldName = 'foo';
const newName = 'bar';
2020-08-29 20:51:14 +03:00
const axiosSpy = createAxiosMock();
const { editTag } = new ShlinkApiClient(axiosSpy, '', '');
2018-08-22 23:38:05 +03:00
await editTag(oldName, newName);
2018-08-22 23:38:05 +03:00
2019-04-19 13:41:59 +03:00
expect(axiosSpy).toHaveBeenCalledWith(expect.objectContaining({
url: '/tags',
method: 'PUT',
data: { oldName, newName },
}));
2018-08-22 23:38:05 +03:00
});
});
describe('deleteShortUrl', () => {
it.each(shortCodesWithDomainCombinations)('properly deletes provided short URL', async (shortCode, domain) => {
2020-08-29 20:51:14 +03:00
const axiosSpy = createAxiosMock({});
const { deleteShortUrl } = new ShlinkApiClient(axiosSpy, '', '');
await deleteShortUrl(shortCode, domain);
2019-04-19 13:41:59 +03:00
expect(axiosSpy).toHaveBeenCalledWith(expect.objectContaining({
url: `/short-urls/${shortCode}`,
2019-04-19 13:41:59 +03:00
method: 'DELETE',
params: domain ? { domain } : {},
2019-04-19 13:41:59 +03:00
}));
});
});
2019-10-05 11:40:32 +03:00
describe('health', () => {
it('returns health data', async () => {
const expectedData = {
status: 'pass',
version: '1.19.0',
};
2020-08-29 20:51:14 +03:00
const axiosSpy = createAxiosMock({ data: expectedData });
const { health } = new ShlinkApiClient(axiosSpy, '', '');
2019-10-05 11:40:32 +03:00
const result = await health();
expect(axiosSpy).toHaveBeenCalled();
expect(result).toEqual(expectedData);
});
});
describe('mercureInfo', () => {
it('returns mercure info', async () => {
const expectedData = {
token: 'abc.123.def',
mercureHubUrl: 'http://example.com/.well-known/mercure',
};
2020-08-29 20:51:14 +03:00
const axiosSpy = createAxiosMock({ data: expectedData });
const { mercureInfo } = new ShlinkApiClient(axiosSpy, '', '');
const result = await mercureInfo();
expect(axiosSpy).toHaveBeenCalled();
expect(result).toEqual(expectedData);
});
});
2018-08-04 12:07:28 +03:00
});