shlink-web-client/test/servers/reducers/server.test.js

91 lines
3.6 KiB
JavaScript
Raw Normal View History

import { values } from 'ramda';
2018-08-26 11:52:45 +03:00
import reducer, {
createServer,
deleteServer,
listServers,
createServers,
2018-08-12 11:17:13 +03:00
FETCH_SERVERS,
} from '../../../src/servers/reducers/server';
describe('serverReducer', () => {
const payload = {
2018-08-12 11:17:13 +03:00
abc123: { id: 'abc123' },
def456: { id: 'def456' },
2018-08-12 11:17:13 +03:00
};
const expectedFetchServersResult = { type: FETCH_SERVERS, payload };
2018-08-12 11:17:13 +03:00
const ServersServiceMock = {
listServers: jest.fn(() => payload),
createServer: jest.fn(),
deleteServer: jest.fn(),
createServers: jest.fn(),
2018-08-12 11:17:13 +03:00
};
2018-08-26 11:52:45 +03:00
describe('reducer', () => {
2018-08-12 11:17:13 +03:00
it('returns servers when action is FETCH_SERVERS', () =>
expect(reducer({}, { type: FETCH_SERVERS, payload })).toEqual(payload));
2018-08-12 11:17:13 +03:00
});
describe('action creators', () => {
beforeEach(() => {
ServersServiceMock.listServers.mockClear();
ServersServiceMock.createServer.mockReset();
ServersServiceMock.deleteServer.mockReset();
ServersServiceMock.createServers.mockReset();
2018-08-12 11:17:13 +03:00
});
describe('listServers', () => {
it('fetches servers and returns them as part of the action', () => {
const result = listServers(ServersServiceMock)();
2018-08-12 11:17:13 +03:00
expect(result).toEqual(expectedFetchServersResult);
expect(ServersServiceMock.listServers).toHaveBeenCalledTimes(1);
expect(ServersServiceMock.createServer).not.toHaveBeenCalled();
expect(ServersServiceMock.deleteServer).not.toHaveBeenCalled();
expect(ServersServiceMock.createServers).not.toHaveBeenCalled();
2018-08-12 11:17:13 +03:00
});
});
describe('createServer', () => {
it('adds new server and then fetches servers again', () => {
const serverToCreate = { id: 'abc123' };
const result = createServer(ServersServiceMock, () => expectedFetchServersResult)(serverToCreate);
2018-08-12 11:17:13 +03:00
expect(result).toEqual(expectedFetchServersResult);
expect(ServersServiceMock.createServer).toHaveBeenCalledTimes(1);
expect(ServersServiceMock.createServer).toHaveBeenCalledWith(serverToCreate);
expect(ServersServiceMock.listServers).not.toHaveBeenCalled();
expect(ServersServiceMock.deleteServer).not.toHaveBeenCalled();
expect(ServersServiceMock.createServers).not.toHaveBeenCalled();
2018-08-12 11:17:13 +03:00
});
});
describe('deleteServer', () => {
it('deletes a server and then fetches servers again', () => {
const serverToDelete = { id: 'abc123' };
const result = deleteServer(ServersServiceMock, () => expectedFetchServersResult)(serverToDelete);
2018-08-12 11:17:13 +03:00
expect(result).toEqual(expectedFetchServersResult);
expect(ServersServiceMock.listServers).not.toHaveBeenCalled();
expect(ServersServiceMock.createServer).not.toHaveBeenCalled();
expect(ServersServiceMock.createServers).not.toHaveBeenCalled();
expect(ServersServiceMock.deleteServer).toHaveBeenCalledTimes(1);
expect(ServersServiceMock.deleteServer).toHaveBeenCalledWith(serverToDelete);
2018-08-12 11:17:13 +03:00
});
});
2018-08-23 17:35:27 +03:00
describe('createServer', () => {
it('creates multiple servers and then fetches servers again', () => {
const serversToCreate = values(payload);
const result = createServers(ServersServiceMock, () => expectedFetchServersResult)(serversToCreate);
2018-08-23 17:35:27 +03:00
expect(result).toEqual(expectedFetchServersResult);
expect(ServersServiceMock.listServers).not.toHaveBeenCalled();
expect(ServersServiceMock.createServer).not.toHaveBeenCalled();
expect(ServersServiceMock.createServers).toHaveBeenCalledTimes(1);
expect(ServersServiceMock.createServers).toHaveBeenCalledWith(serversToCreate);
expect(ServersServiceMock.deleteServer).not.toHaveBeenCalled();
2018-08-23 17:35:27 +03:00
});
});
2018-08-12 11:17:13 +03:00
});
});