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

229 lines
6.9 KiB
JavaScript
Raw Normal View History

import ShlinkApiClient from '../../../src/utils/services/ShlinkApiClient';
2018-08-04 12:07:28 +03:00
describe('ShlinkApiClient', () => {
const createAxiosMock = (data) => () => Promise.resolve(data);
const createApiClient = (data) => new ShlinkApiClient(createAxiosMock(data));
const shortCodesWithDomainCombinations = [
[ '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 () => {
2019-04-19 13:41:59 +03:00
const axiosSpy = jest.fn(createAxiosMock({ data: shortUrl }));
const { createShortUrl } = new ShlinkApiClient(axiosSpy);
2018-08-22 23:38:05 +03:00
await createShortUrl(
2018-08-22 23:38:05 +03:00
{ foo: 'bar', empty: undefined, anotherEmpty: null }
);
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' ];
2019-04-19 13:41:59 +03:00
const axiosSpy = jest.fn(createAxiosMock({
2018-08-22 23:38:05 +03:00
data: {
visits: {
data: expectedVisits,
},
},
}));
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
});
});
describe('getShortUrl', () => {
it.each(shortCodesWithDomainCombinations)('properly returns short URL', async (shortCode, domain) => {
2018-08-22 23:38:05 +03:00
const expectedShortUrl = { foo: 'bar' };
2019-04-19 13:41:59 +03:00
const axiosSpy = jest.fn(createAxiosMock({
2018-08-22 23:38:05 +03:00
data: expectedShortUrl,
}));
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' ];
2019-04-19 13:41:59 +03:00
const axiosSpy = jest.fn(createAxiosMock({
2018-08-22 23:38:05 +03:00
data: { tags: expectedTags },
}));
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',
};
const axiosSpy = jest.fn(createAxiosMock());
const { updateShortUrlMeta } = new ShlinkApiClient(axiosSpy);
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' ];
2019-04-19 13:41:59 +03:00
const axiosSpy = jest.fn(createAxiosMock({
2018-08-22 23:38:05 +03:00
data: {
tags: { data: expectedTags },
2018-08-22 23:38:05 +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({ data: 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' ];
2019-04-19 13:41:59 +03:00
const axiosSpy = jest.fn(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';
2019-04-19 13:41:59 +03:00
const axiosSpy = jest.fn(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) => {
2019-04-19 13:41:59 +03:00
const axiosSpy = jest.fn(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',
};
const axiosSpy = jest.fn(createAxiosMock({ data: expectedData }));
const { health } = new ShlinkApiClient(axiosSpy);
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',
};
const axiosSpy = jest.fn(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
});