2020-08-23 12:58:43 +03:00
|
|
|
import { Mock } from 'ts-mockery';
|
|
|
|
import { AxiosInstance } from 'axios';
|
2020-04-27 13:54:52 +03:00
|
|
|
import { fetchServers } from '../../../src/servers/reducers/remoteServers';
|
|
|
|
import { CREATE_SERVERS } from '../../../src/servers/reducers/servers';
|
|
|
|
|
|
|
|
describe('remoteServersReducer', () => {
|
2021-10-31 14:07:38 +03:00
|
|
|
afterEach(jest.clearAllMocks);
|
2020-04-27 13:54:52 +03:00
|
|
|
|
|
|
|
describe('fetchServers', () => {
|
2020-08-23 12:58:43 +03:00
|
|
|
const get = jest.fn();
|
|
|
|
const axios = Mock.of<AxiosInstance>({ get });
|
2020-04-27 13:54:52 +03:00
|
|
|
const dispatch = jest.fn();
|
|
|
|
|
|
|
|
it.each([
|
|
|
|
[
|
2021-10-31 14:20:02 +03:00
|
|
|
{
|
2020-04-27 13:54:52 +03:00
|
|
|
data: [
|
|
|
|
{
|
|
|
|
id: '111',
|
|
|
|
name: 'acel.me from servers.json',
|
|
|
|
url: 'https://acel.me',
|
|
|
|
apiKey: '07fb8a96-8059-4094-a24c-80a7d5e7e9b0',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '222',
|
|
|
|
name: 'Local from servers.json',
|
|
|
|
url: 'http://localhost:8000',
|
|
|
|
apiKey: '7a531c75-134e-4d5c-86e0-a71b7167b57a',
|
|
|
|
},
|
|
|
|
],
|
2021-10-31 14:20:02 +03:00
|
|
|
},
|
2020-04-27 13:54:52 +03:00
|
|
|
{
|
|
|
|
111: {
|
|
|
|
id: '111',
|
|
|
|
name: 'acel.me from servers.json',
|
|
|
|
url: 'https://acel.me',
|
|
|
|
apiKey: '07fb8a96-8059-4094-a24c-80a7d5e7e9b0',
|
|
|
|
},
|
|
|
|
222: {
|
|
|
|
id: '222',
|
|
|
|
name: 'Local from servers.json',
|
|
|
|
url: 'http://localhost:8000',
|
|
|
|
apiKey: '7a531c75-134e-4d5c-86e0-a71b7167b57a',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2021-10-31 14:20:02 +03:00
|
|
|
[
|
|
|
|
{
|
|
|
|
data: [
|
|
|
|
{
|
|
|
|
id: '111',
|
|
|
|
name: 'acel.me from servers.json',
|
|
|
|
url: 'https://acel.me',
|
|
|
|
apiKey: '07fb8a96-8059-4094-a24c-80a7d5e7e9b0',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '222',
|
|
|
|
name: 'Invalid',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '333',
|
|
|
|
name: 'Local from servers.json',
|
|
|
|
url: 'http://localhost:8000',
|
|
|
|
apiKey: '7a531c75-134e-4d5c-86e0-a71b7167b57a',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
111: {
|
|
|
|
id: '111',
|
|
|
|
name: 'acel.me from servers.json',
|
|
|
|
url: 'https://acel.me',
|
|
|
|
apiKey: '07fb8a96-8059-4094-a24c-80a7d5e7e9b0',
|
|
|
|
},
|
|
|
|
333: {
|
|
|
|
id: '333',
|
|
|
|
name: 'Local from servers.json',
|
|
|
|
url: 'http://localhost:8000',
|
|
|
|
apiKey: '7a531c75-134e-4d5c-86e0-a71b7167b57a',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2022-03-26 14:17:42 +03:00
|
|
|
['<html></html>', {}],
|
2021-10-31 14:20:02 +03:00
|
|
|
[{}, {}],
|
2021-10-31 14:07:38 +03:00
|
|
|
])('tries to fetch servers from remote', async (mockedValue, expectedNewServers) => {
|
|
|
|
get.mockResolvedValue(mockedValue);
|
2020-04-27 13:54:52 +03:00
|
|
|
|
|
|
|
await fetchServers(axios)()(dispatch);
|
|
|
|
|
2021-10-31 14:07:38 +03:00
|
|
|
expect(dispatch).toHaveBeenCalledWith({ type: CREATE_SERVERS, newServers: expectedNewServers });
|
2020-08-23 12:58:43 +03:00
|
|
|
expect(get).toHaveBeenCalledTimes(1);
|
2020-04-27 13:54:52 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|