71ede25339
* chore: upgrade react only * chore: import renderHook from testing-library/react * chore: add @babel/runtime to fix tests * fix: fix some of the tests * fix: fix some of the tests * fix: fix tests failing on not being wrapped in act * fix: fix tests in use-environment * fix: fix @types/react issue * fix: fix formatting * fix: remove unsued method * fix: callout not accepting react node and root element null check * fix: main.tsx stats null check * fix: implicit any type fixes * Update libs/environment/src/hooks/use-nodes.spec.tsx * fix: import act from testing-lib * fix: add strict mode back * fix: fix formatting issues * fix: add babel deps for storybook * Update tsconfig.json (#970) * Update tsconfig.json * feat: [console-lite] - add missing types in few places Co-authored-by: maciek <maciek@vegaprotocol.io> * chore(#952): remove any from useDataProvider hook Co-authored-by: macqbat <kubat.maciek@gmail.com> Co-authored-by: maciek <maciek@vegaprotocol.io> Co-authored-by: Bartłomiej Głownia <bglownia@gmail.com>
133 lines
3.7 KiB
TypeScript
133 lines
3.7 KiB
TypeScript
import { renderHook, waitFor } from '@testing-library/react';
|
|
import type { EnvironmentWithOptionalUrl } from './use-config';
|
|
import { useConfig } from './use-config';
|
|
import { Networks, ErrorType } from '../types';
|
|
|
|
const mockConfig = {
|
|
hosts: [
|
|
'https://vega-host-1.com',
|
|
'https://vega-host-2.com',
|
|
'https://vega-host-3.com',
|
|
'https://vega-host-4.com',
|
|
],
|
|
};
|
|
|
|
const mockEnvironment: EnvironmentWithOptionalUrl = {
|
|
VEGA_ENV: Networks.TESTNET,
|
|
VEGA_CONFIG_URL: 'https://vega.url/config.json',
|
|
VEGA_NETWORKS: {},
|
|
ETHEREUM_PROVIDER_URL: 'https://ethereum.provider',
|
|
ETHERSCAN_URL: 'https://etherscan.url',
|
|
GIT_BRANCH: 'test',
|
|
GIT_ORIGIN_URL: 'https://github.com/test/repo',
|
|
GIT_COMMIT_HASH: 'abcde01234',
|
|
GITHUB_FEEDBACK_URL: 'https://github.com/test/feedback',
|
|
};
|
|
|
|
function setupFetch(configUrl: string) {
|
|
return (url: RequestInfo) => {
|
|
if (url === configUrl) {
|
|
return Promise.resolve({
|
|
ok: true,
|
|
json: () => Promise.resolve(mockConfig),
|
|
} as Response);
|
|
}
|
|
|
|
return Promise.resolve({
|
|
ok: true,
|
|
} as Response);
|
|
};
|
|
}
|
|
|
|
global.fetch = jest.fn();
|
|
|
|
const onError = jest.fn();
|
|
|
|
beforeAll(() => {
|
|
jest.useFakeTimers();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
onError.mockClear();
|
|
window.localStorage.clear();
|
|
|
|
// @ts-ignore typescript doesn't recognise the mocked instance
|
|
global.fetch.mockReset();
|
|
// @ts-ignore typescript doesn't recognise the mocked instance
|
|
global.fetch.mockImplementation(
|
|
setupFetch(mockEnvironment.VEGA_CONFIG_URL ?? '')
|
|
);
|
|
});
|
|
|
|
afterAll(() => {
|
|
jest.clearAllMocks();
|
|
});
|
|
|
|
describe('useConfig hook', () => {
|
|
it("doesn't update when there is no VEGA_CONFIG_URL in the environment", async () => {
|
|
const mockEnvWithoutUrl = {
|
|
...mockEnvironment,
|
|
VEGA_CONFIG_URL: undefined,
|
|
};
|
|
const { result } = renderHook(() => useConfig(mockEnvWithoutUrl, onError));
|
|
|
|
expect(result.current.config).toBe(undefined);
|
|
});
|
|
|
|
it('fetches configuration from the provided url', async () => {
|
|
const { result } = renderHook(() => useConfig(mockEnvironment, onError));
|
|
|
|
await waitFor(() => {
|
|
expect(fetch).toHaveBeenCalledWith(mockEnvironment.VEGA_CONFIG_URL);
|
|
expect(result.current.config).toEqual(mockConfig);
|
|
});
|
|
});
|
|
|
|
it('caches the configuration', async () => {
|
|
const { result: firstResult } = renderHook(() =>
|
|
useConfig(mockEnvironment, onError)
|
|
);
|
|
|
|
await waitFor(() => {
|
|
expect(fetch).toHaveBeenCalledTimes(1);
|
|
expect(firstResult.current.config).toEqual(mockConfig);
|
|
});
|
|
|
|
const { result: secondResult } = renderHook(() =>
|
|
useConfig(mockEnvironment, onError)
|
|
);
|
|
|
|
expect(fetch).toHaveBeenCalledTimes(1);
|
|
expect(secondResult.current.config).toEqual(mockConfig);
|
|
});
|
|
|
|
it('executes the error callback when the config endpoint fails', async () => {
|
|
// @ts-ignore typescript doesn't recognise the mocked instance
|
|
global.fetch.mockImplementation(() => Promise.reject());
|
|
|
|
const { result } = renderHook(() => useConfig(mockEnvironment, onError));
|
|
|
|
await waitFor(() => {
|
|
expect(result.current.config).toEqual({ hosts: [] });
|
|
expect(onError).toHaveBeenCalledWith(ErrorType.CONFIG_LOAD_ERROR);
|
|
});
|
|
});
|
|
|
|
it('executes the error callback when the config validation fails', async () => {
|
|
// @ts-ignore typescript doesn't recognise the mocked instance
|
|
global.fetch.mockImplementation(() =>
|
|
Promise.resolve({
|
|
ok: true,
|
|
json: () => Promise.resolve({ data: 'not-valid-config' }),
|
|
})
|
|
);
|
|
|
|
const { result } = renderHook(() => useConfig(mockEnvironment, onError));
|
|
|
|
await waitFor(() => {
|
|
expect(result.current.config).toBe(undefined);
|
|
expect(onError).toHaveBeenCalledWith(ErrorType.CONFIG_VALIDATION_ERROR);
|
|
});
|
|
});
|
|
});
|