2020-08-29 20:51:14 +03:00
|
|
|
import { AxiosInstance, AxiosRequestConfig } from 'axios';
|
2021-02-28 14:56:56 +03:00
|
|
|
import { Mock } from 'ts-mockery';
|
2020-12-22 11:55:39 +03:00
|
|
|
import ShlinkApiClient from '../../../src/api/services/ShlinkApiClient';
|
2020-08-29 20:51:14 +03:00
|
|
|
import { OptionalString } from '../../../src/utils/utils';
|
2020-12-22 11:49:13 +03:00
|
|
|
import { ShlinkDomain, ShlinkVisitsOverview } from '../../../src/api/types';
|
2021-02-27 11:49:56 +03:00
|
|
|
import { ShortUrl } from '../../../src/short-urls/data';
|
2021-02-27 22:03:51 +03:00
|
|
|
import { Visit } from '../../../src/visits/types';
|
2021-12-15 01:01:19 +03:00
|
|
|
import { OrderDir } from '../../../src/utils/helpers/ordering';
|
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 ][] = [
|
2020-02-08 11:07:55 +03:00
|
|
|
[ 'abc123', null ],
|
|
|
|
[ 'abc123', undefined ],
|
|
|
|
[ 'abc123', 'example.com' ],
|
|
|
|
];
|
2018-08-04 12:07:28 +03:00
|
|
|
|
|
|
|
describe('listShortUrls', () => {
|
2021-12-15 01:01:19 +03:00
|
|
|
const expectedList = [ 'foo', 'bar' ];
|
2018-08-04 12:07:28 +03:00
|
|
|
|
2021-12-15 01:01:19 +03:00
|
|
|
it('properly returns short URLs list', async () => {
|
2019-01-10 21:17:15 +03:00
|
|
|
const { listShortUrls } = createApiClient({
|
2018-08-22 23:38:05 +03:00
|
|
|
data: {
|
|
|
|
shortUrls: expectedList,
|
|
|
|
},
|
2018-08-04 12:07:28 +03:00
|
|
|
});
|
|
|
|
|
2019-01-10 21:17:15 +03:00
|
|
|
const actualList = await listShortUrls();
|
2018-08-26 00:39:27 +03:00
|
|
|
|
2018-08-04 12:07:28 +03:00
|
|
|
expect(expectedList).toEqual(actualList);
|
|
|
|
});
|
2021-12-15 01:01:19 +03:00
|
|
|
|
|
|
|
it.each([
|
|
|
|
[{ visits: 'DESC' as OrderDir }, 'visits-DESC' ],
|
|
|
|
[{ longUrl: 'ASC' as OrderDir }, 'longUrl-ASC' ],
|
|
|
|
[{ longUrl: undefined as OrderDir }, undefined ],
|
|
|
|
])('parses orderBy in params', async (orderBy, expectedOrderBy) => {
|
|
|
|
const axiosSpy = createAxiosMock({
|
|
|
|
data: expectedList,
|
|
|
|
});
|
|
|
|
const { listShortUrls } = new ShlinkApiClient(axiosSpy, '', '');
|
|
|
|
|
|
|
|
await listShortUrls({ orderBy });
|
|
|
|
|
|
|
|
expect(axiosSpy).toHaveBeenCalledWith(expect.objectContaining({
|
|
|
|
params: { orderBy: expectedOrderBy },
|
|
|
|
}));
|
|
|
|
});
|
2018-08-04 12:07:28 +03:00
|
|
|
});
|
2018-08-22 23:38:05 +03:00
|
|
|
|
|
|
|
describe('createShortUrl', () => {
|
|
|
|
const shortUrl = {
|
|
|
|
bar: 'foo',
|
|
|
|
};
|
|
|
|
|
|
|
|
it('returns create short URL', async () => {
|
2019-01-10 21:17:15 +03:00
|
|
|
const { createShortUrl } = createApiClient({ data: shortUrl });
|
2020-11-14 01:06:03 +03:00
|
|
|
const result = await createShortUrl({ longUrl: '' });
|
2018-08-26 00:39:27 +03:00
|
|
|
|
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
|
|
|
|
2021-03-27 11:49:47 +03:00
|
|
|
await createShortUrl({ longUrl: 'bar', customSlug: undefined, maxVisits: null });
|
2018-08-22 23:38:05 +03:00
|
|
|
|
2020-11-14 01:06:03 +03:00
|
|
|
expect(axiosSpy).toHaveBeenCalledWith(expect.objectContaining({ data: { longUrl: 'bar' } }));
|
2018-08-22 23:38:05 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('getShortUrlVisits', () => {
|
|
|
|
it('properly returns short URL visits', async () => {
|
2018-08-26 00:39:27 +03:00
|
|
|
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
|
|
|
|
2019-01-10 21:17:15 +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', () => {
|
2020-02-17 20:21:52 +03:00
|
|
|
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
|
|
|
|
2020-02-08 11:07:55 +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({
|
2020-02-08 11:07:55 +03:00
|
|
|
url: `/short-urls/${shortCode}`,
|
2019-04-19 13:41:59 +03:00
|
|
|
method: 'GET',
|
2020-02-08 11:07:55 +03:00
|
|
|
params: domain ? { domain } : {},
|
2019-04-19 13:41:59 +03:00
|
|
|
}));
|
2018-08-22 23:38:05 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('updateShortUrlTags', () => {
|
2020-02-17 20:21:52 +03:00
|
|
|
it.each(shortCodesWithDomainCombinations)('properly updates short URL tags', async (shortCode, domain) => {
|
2018-08-26 00:39:27 +03:00
|
|
|
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
|
|
|
|
2020-02-08 11:07:55 +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({
|
2020-02-08 11:07:55 +03:00
|
|
|
url: `/short-urls/${shortCode}/tags`,
|
2019-04-19 13:41:59 +03:00
|
|
|
method: 'PUT',
|
2020-02-08 11:07:55 +03:00
|
|
|
params: domain ? { domain } : {},
|
2019-04-19 13:41:59 +03:00
|
|
|
}));
|
2018-08-22 23:38:05 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-03-27 11:49:47 +03:00
|
|
|
describe('updateShortUrl', () => {
|
2020-02-17 20:21:52 +03:00
|
|
|
it.each(shortCodesWithDomainCombinations)('properly updates short URL meta', async (shortCode, domain) => {
|
2021-02-27 11:49:56 +03:00
|
|
|
const meta = {
|
2020-01-19 15:20:46 +03:00
|
|
|
maxVisits: 50,
|
|
|
|
validSince: '2025-01-01T10:00:00+01:00',
|
|
|
|
};
|
2021-02-28 14:56:56 +03:00
|
|
|
const expectedResp = Mock.of<ShortUrl>();
|
2021-02-27 11:49:56 +03:00
|
|
|
const axiosSpy = createAxiosMock({ data: expectedResp });
|
2021-03-27 11:49:47 +03:00
|
|
|
const { updateShortUrl } = new ShlinkApiClient(axiosSpy, '', '');
|
2020-01-19 15:20:46 +03:00
|
|
|
|
2021-03-27 11:49:47 +03:00
|
|
|
const result = await updateShortUrl(shortCode, domain, meta);
|
2020-01-19 15:20:46 +03:00
|
|
|
|
2021-02-27 11:49:56 +03:00
|
|
|
expect(expectedResp).toEqual(result);
|
2020-01-19 15:20:46 +03:00
|
|
|
expect(axiosSpy).toHaveBeenCalledWith(expect.objectContaining({
|
2020-02-08 11:07:55 +03:00
|
|
|
url: `/short-urls/${shortCode}`,
|
2020-01-19 15:20:46 +03:00
|
|
|
method: 'PATCH',
|
2020-02-08 11:07:55 +03:00
|
|
|
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 () => {
|
2018-08-26 00:39:27 +03:00
|
|
|
const expectedTags = [ 'foo', 'bar' ];
|
2020-08-29 20:51:14 +03:00
|
|
|
const axiosSpy = createAxiosMock({
|
2018-08-22 23:38:05 +03:00
|
|
|
data: {
|
2018-08-26 00:39:27 +03:00
|
|
|
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
|
|
|
|
2019-01-10 21:17:15 +03:00
|
|
|
const result = await listTags();
|
2018-08-22 23:38:05 +03:00
|
|
|
|
2020-05-10 12:20:40 +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 () => {
|
2018-08-26 00:39:27 +03:00
|
|
|
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
|
|
|
|
2019-01-10 21:17:15 +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', () => {
|
2019-01-10 21:17:15 +03:00
|
|
|
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
|
|
|
|
2019-01-10 21:17:15 +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
|
|
|
});
|
|
|
|
});
|
2019-01-10 21:17:15 +03:00
|
|
|
|
|
|
|
describe('deleteShortUrl', () => {
|
2020-02-17 20:21:52 +03:00
|
|
|
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, '', '');
|
2019-01-10 21:17:15 +03:00
|
|
|
|
2020-02-08 11:07:55 +03:00
|
|
|
await deleteShortUrl(shortCode, domain);
|
2019-01-10 21:17:15 +03:00
|
|
|
|
2019-04-19 13:41:59 +03:00
|
|
|
expect(axiosSpy).toHaveBeenCalledWith(expect.objectContaining({
|
2020-02-08 11:07:55 +03:00
|
|
|
url: `/short-urls/${shortCode}`,
|
2019-04-19 13:41:59 +03:00
|
|
|
method: 'DELETE',
|
2020-02-08 11:07:55 +03:00
|
|
|
params: domain ? { domain } : {},
|
2019-04-19 13:41:59 +03:00
|
|
|
}));
|
2019-01-10 21:17:15 +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);
|
|
|
|
});
|
|
|
|
});
|
2020-04-17 16:51:18 +03:00
|
|
|
|
|
|
|
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, '', '');
|
2020-04-17 16:51:18 +03:00
|
|
|
|
|
|
|
const result = await mercureInfo();
|
|
|
|
|
|
|
|
expect(axiosSpy).toHaveBeenCalled();
|
|
|
|
expect(result).toEqual(expectedData);
|
|
|
|
});
|
|
|
|
});
|
2020-11-28 13:45:04 +03:00
|
|
|
|
|
|
|
describe('listDomains', () => {
|
|
|
|
it('returns domains', async () => {
|
2021-12-09 15:16:28 +03:00
|
|
|
const expectedData = { data: [ Mock.all<ShlinkDomain>(), Mock.all<ShlinkDomain>() ] };
|
|
|
|
const resp = { domains: expectedData };
|
2020-11-28 13:45:04 +03:00
|
|
|
const axiosSpy = createAxiosMock({ data: resp });
|
|
|
|
const { listDomains } = new ShlinkApiClient(axiosSpy, '', '');
|
|
|
|
|
|
|
|
const result = await listDomains();
|
|
|
|
|
|
|
|
expect(axiosSpy).toHaveBeenCalled();
|
|
|
|
expect(result).toEqual(expectedData);
|
|
|
|
});
|
|
|
|
});
|
2020-12-07 14:12:39 +03:00
|
|
|
|
|
|
|
describe('getVisitsOverview', () => {
|
|
|
|
it('returns visits overview', async () => {
|
|
|
|
const expectedData = Mock.all<ShlinkVisitsOverview>();
|
|
|
|
const resp = { visits: expectedData };
|
|
|
|
const axiosSpy = createAxiosMock({ data: resp });
|
|
|
|
const { getVisitsOverview } = new ShlinkApiClient(axiosSpy, '', '');
|
|
|
|
|
|
|
|
const result = await getVisitsOverview();
|
|
|
|
|
|
|
|
expect(axiosSpy).toHaveBeenCalled();
|
|
|
|
expect(result).toEqual(expectedData);
|
|
|
|
});
|
|
|
|
});
|
2021-02-27 22:03:51 +03:00
|
|
|
|
|
|
|
describe('getOrphanVisits', () => {
|
|
|
|
it('returns orphan visits', async () => {
|
|
|
|
const expectedData: Visit[] = [];
|
|
|
|
const resp = { visits: expectedData };
|
|
|
|
const axiosSpy = createAxiosMock({ data: resp });
|
|
|
|
const { getOrphanVisits } = new ShlinkApiClient(axiosSpy, '', '');
|
|
|
|
|
|
|
|
const result = await getOrphanVisits();
|
|
|
|
|
|
|
|
expect(axiosSpy).toHaveBeenCalled();
|
|
|
|
expect(result).toEqual(expectedData);
|
|
|
|
});
|
|
|
|
});
|
2021-08-22 10:11:14 +03:00
|
|
|
|
|
|
|
describe('editDomainRedirects', () => {
|
|
|
|
it('returns the redirects', async () => {
|
|
|
|
const resp = { baseUrlRedirect: null, regular404Redirect: 'foo', invalidShortUrlRedirect: 'bar' };
|
|
|
|
const axiosSpy = createAxiosMock({ data: resp });
|
|
|
|
const { editDomainRedirects } = new ShlinkApiClient(axiosSpy, '', '');
|
|
|
|
|
|
|
|
const result = await editDomainRedirects({ domain: 'foo' });
|
|
|
|
|
|
|
|
expect(axiosSpy).toHaveBeenCalled();
|
|
|
|
expect(result).toEqual(resp);
|
|
|
|
});
|
|
|
|
});
|
2018-08-04 12:07:28 +03:00
|
|
|
});
|