File size: 3,495 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
import { renderHook } from '@testing-library/react-hooks';
import useLongPress from '../src/useLongPress';

const callback = jest.fn();
const defaultDelay = 300;
const mouseDown = new MouseEvent('mousedown');
const touchStart = new TouchEvent('touchstart');

beforeAll(() => {
  jest.useFakeTimers();
});

afterEach(() => {
  callback.mockRestore();
  jest.clearAllTimers();
});

afterAll(() => {
  jest.useRealTimers();
});

it('should not call provided callback without trigger any event', () => {
  renderHook(() => useLongPress(callback));

  expect(callback).toHaveBeenCalledTimes(0);

  jest.advanceTimersByTime(defaultDelay);

  expect(callback).toHaveBeenCalledTimes(0);
});

it('should call provided callback onMouseDown', () => {
  const { result } = renderHook(() => useLongPress(callback));
  const { onMouseDown } = result.current;

  expect(callback).toHaveBeenCalledTimes(0);
  onMouseDown(mouseDown);

  jest.advanceTimersByTime(defaultDelay - 20);
  expect(callback).toHaveBeenCalledTimes(0);

  jest.advanceTimersByTime(20);
  expect(callback).toHaveBeenCalledTimes(1);
});

it('should call provided callback with custom delay', () => {
  const customDelay = 1000;
  const { result } = renderHook(() => useLongPress(callback, { delay: customDelay }));
  const { onMouseDown } = result.current;

  expect(callback).toHaveBeenCalledTimes(0);
  onMouseDown(mouseDown);

  jest.advanceTimersByTime(customDelay - 20);
  expect(callback).toHaveBeenCalledTimes(0);

  jest.advanceTimersByTime(20);
  expect(callback).toHaveBeenCalledTimes(1);
});

it('should not call provided callback if interrupted by onMouseLeave', () => {
  const { result } = renderHook(() => useLongPress(callback));
  const { onMouseDown, onMouseLeave } = result.current;

  expect(callback).toHaveBeenCalledTimes(0);
  onMouseDown(mouseDown);

  jest.advanceTimersByTime(defaultDelay - 20);
  expect(callback).toHaveBeenCalledTimes(0);

  onMouseLeave();

  jest.advanceTimersByTime(20);
  expect(callback).toHaveBeenCalledTimes(0);
  expect(setTimeout).toHaveBeenCalledTimes(1);
});

it('should not call provided callback if interrupted by onMouseUp', () => {
  const { result } = renderHook(() => useLongPress(callback));
  const { onMouseDown, onMouseUp } = result.current;

  expect(callback).toHaveBeenCalledTimes(0);
  onMouseDown(mouseDown);

  jest.advanceTimersByTime(defaultDelay - 20);
  expect(callback).toHaveBeenCalledTimes(0);

  onMouseUp();

  jest.advanceTimersByTime(20);
  expect(callback).toHaveBeenCalledTimes(0);
  expect(setTimeout).toHaveBeenCalledTimes(1);
});

it('should call provided callback onTouchStart', () => {
  const { result } = renderHook(() => useLongPress(callback));
  const { onTouchStart } = result.current;

  expect(callback).toHaveBeenCalledTimes(0);
  onTouchStart(touchStart);

  jest.advanceTimersByTime(defaultDelay - 20);
  expect(callback).toHaveBeenCalledTimes(0);

  jest.advanceTimersByTime(20);
  expect(callback).toHaveBeenCalledTimes(1);
});

it('should not call provided callback if interrupted by onTouchEnd', () => {
  const { result } = renderHook(() => useLongPress(callback));
  const { onTouchStart, onTouchEnd } = result.current;

  expect(callback).toHaveBeenCalledTimes(0);
  onTouchStart(touchStart);

  jest.advanceTimersByTime(defaultDelay - 20);
  expect(callback).toHaveBeenCalledTimes(0);

  onTouchEnd();

  jest.advanceTimersByTime(20);
  expect(callback).toHaveBeenCalledTimes(0);
  expect(setTimeout).toHaveBeenCalledTimes(1);
});