mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
87 lines
2.5 KiB
TypeScript
87 lines
2.5 KiB
TypeScript
import { values } from 'ramda';
|
|
import { Mock } from 'ts-mockery';
|
|
import reducer, {
|
|
createServer,
|
|
deleteServer,
|
|
createServers,
|
|
editServer,
|
|
EDIT_SERVER,
|
|
DELETE_SERVER,
|
|
CREATE_SERVERS,
|
|
} from '../../../src/servers/reducers/servers';
|
|
import { RegularServer } from '../../../src/servers/data';
|
|
|
|
describe('serverReducer', () => {
|
|
const list = {
|
|
abc123: Mock.of<RegularServer>({ id: 'abc123' }),
|
|
def456: Mock.of<RegularServer>({ id: 'def456' }),
|
|
};
|
|
|
|
afterEach(jest.clearAllMocks);
|
|
|
|
describe('reducer', () => {
|
|
it('returns edited server when action is EDIT_SERVER', () =>
|
|
expect(reducer(
|
|
list,
|
|
{ type: EDIT_SERVER, serverId: 'abc123', serverData: { foo: 'foo' } } as any,
|
|
)).toEqual({
|
|
abc123: { id: 'abc123', foo: 'foo' },
|
|
def456: { id: 'def456' },
|
|
}));
|
|
|
|
it('removes server when action is DELETE_SERVER', () =>
|
|
expect(reducer(list, { type: DELETE_SERVER, serverId: 'abc123' } as any)).toEqual({
|
|
def456: { id: 'def456' },
|
|
}));
|
|
|
|
it('appends server when action is CREATE_SERVERS', () =>
|
|
expect(reducer(list, {
|
|
type: CREATE_SERVERS,
|
|
newServers: {
|
|
ghi789: { id: 'ghi789' },
|
|
},
|
|
} as any)).toEqual({
|
|
abc123: { id: 'abc123' },
|
|
def456: { id: 'def456' },
|
|
ghi789: { id: 'ghi789' },
|
|
}));
|
|
});
|
|
|
|
describe('action creators', () => {
|
|
describe('createServer', () => {
|
|
it('returns expected action', () => {
|
|
const serverToCreate = Mock.of<RegularServer>({ id: 'abc123' });
|
|
const result = createServer(serverToCreate);
|
|
|
|
expect(result).toEqual(expect.objectContaining({ type: CREATE_SERVERS }));
|
|
});
|
|
});
|
|
|
|
describe('editServer', () => {
|
|
it('returns expected action', () => {
|
|
const serverData = { name: 'edited' };
|
|
const result = editServer('123', serverData);
|
|
|
|
expect(result).toEqual({ type: EDIT_SERVER, serverId: '123', serverData });
|
|
});
|
|
});
|
|
|
|
describe('deleteServer', () => {
|
|
it('returns expected action', () => {
|
|
const serverToDelete = Mock.of<RegularServer>({ id: 'abc123' });
|
|
const result = deleteServer(serverToDelete);
|
|
|
|
expect(result).toEqual({ type: DELETE_SERVER, serverId: 'abc123' });
|
|
});
|
|
});
|
|
|
|
describe('createServers', () => {
|
|
it('returns expected action', () => {
|
|
const newServers = values(list);
|
|
const result = createServers(newServers);
|
|
|
|
expect(result).toEqual(expect.objectContaining({ type: CREATE_SERVERS }));
|
|
});
|
|
});
|
|
});
|
|
});
|