react-use/tests/useCopyToClipboard.test.ts
Renovate Bot a27f09fd36
chore: refactoring and rearrangement.
More DRY code. Also move non-hooks to separate directories.

BREAKING CHANGE: all `create*` factories been moved to `factory` subdirectory and in case direct import should be imported like `react-use/esm/factory/createBreakpoint`
BREAKING CHANGE: `comps` directory renamed to `component`
2021-01-30 23:30:26 +03:00

107 lines
3.4 KiB
TypeScript

import writeText from 'copy-to-clipboard';
import { act, renderHook } from '@testing-library/react-hooks';
import { useCopyToClipboard } from '../src';
const valueToRaiseMockException = 'fake input causing exception in copy to clipboard';
jest.mock('copy-to-clipboard', () =>
jest.fn().mockImplementation(input => {
if (input === valueToRaiseMockException) {
throw new Error(input);
}
return true;
})
);
describe('useCopyToClipboard', () => {
let hook;
let consoleErrorSpy = jest.spyOn(global.console, 'error').mockImplementation(() => {
});
beforeEach(() => {
hook = renderHook(() => useCopyToClipboard());
});
afterAll(() => {
consoleErrorSpy.mockRestore();
jest.unmock('copy-to-clipboard');
});
it('should be defined ', () => {
expect(useCopyToClipboard).toBeDefined();
});
it('should pass a given value to copy to clipboard and set state', () => {
const testValue = 'test';
let [state, copyToClipboard] = hook.result.current;
act(() => copyToClipboard(testValue));
[state, copyToClipboard] = hook.result.current;
expect(writeText).toBeCalled();
expect(state.value).toBe(testValue);
expect(state.noUserInteraction).toBe(true);
expect(state.error).not.toBeDefined();
});
it('should not call writeText if passed an invalid input and set state', () => {
let testValue = {}; // invalid value
let [state, copyToClipboard] = hook.result.current;
act(() => copyToClipboard(testValue));
[state, copyToClipboard] = hook.result.current;
expect(writeText).not.toBeCalled();
expect(state.value).toBe(testValue);
expect(state.noUserInteraction).toBe(true);
expect(state.error).toBeDefined();
testValue = ''; // empty string is also invalid
act(() => copyToClipboard(testValue));
[state, copyToClipboard] = hook.result.current;
expect(writeText).not.toBeCalled();
expect(state.value).toBe(testValue);
expect(state.noUserInteraction).toBe(true);
expect(state.error).toBeDefined();
});
it('should catch exception thrown by copy-to-clipboard and set state', () => {
let [state, copyToClipboard] = hook.result.current;
act(() => copyToClipboard(valueToRaiseMockException));
[state, copyToClipboard] = hook.result.current;
expect(writeText).toBeCalledWith(valueToRaiseMockException);
expect(state.value).toBe(valueToRaiseMockException);
expect(state.noUserInteraction).not.toBeDefined();
expect(state.error).toStrictEqual(new Error(valueToRaiseMockException));
});
it('should return initial state while unmounted', () => {
hook.unmount();
const [state, copyToClipboard] = hook.result.current;
act(() => copyToClipboard('value'));
expect(state.value).not.toBeDefined();
expect(state.error).not.toBeDefined();
expect(state.noUserInteraction).toBe(true);
});
it('should console error if in dev environment', () => {
const ORIGINAL_NODE_ENV = process.env.NODE_ENV;
const testValue = {}; // invalid value
process.env.NODE_ENV = 'development';
let [state, copyToClipboard] = hook.result.current;
act(() => copyToClipboard(testValue));
process.env.NODE_ENV = ORIGINAL_NODE_ENV;
[state, copyToClipboard] = hook.result.current;
expect(writeText).not.toBeCalled();
expect(consoleErrorSpy).toBeCalled();
expect(state.value).toBe(testValue);
expect(state.noUserInteraction).toBe(true);
expect(state.error).toBeDefined();
});
});