-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathhooks.spec.tsx
291 lines (238 loc) · 8.72 KB
/
hooks.spec.tsx
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
import { Injectable, ValueProvider, Inject } from '@asuka/di'
import * as React from 'react'
import { act, create, ReactTestInstance, ReactTestRenderer } from 'react-test-renderer'
import { Observable } from 'rxjs'
import { map, withLatestFrom } from 'rxjs/operators'
import { Ayanami, Effect, EffectAction, Reducer, useAyanami, TransientScope } from '../../src'
import { useCallback, useEffect } from 'react'
interface State {
count: number
anotherCount: number
}
enum CountAction {
ADD = 'add',
MINUS = 'minus',
}
const numberProvider: ValueProvider = {
provide: 'token',
useValue: 0,
}
@Injectable({
providers: [numberProvider],
})
class Count extends Ayanami<State> {
defaultState = {
count: -1,
anotherCount: 0,
}
constructor(@Inject(numberProvider.provide) number: number) {
super()
this.defaultState.count = number
}
@Reducer()
add(state: State, count: number): State {
return { ...state, count: state.count + count }
}
@Reducer()
setCount(state: State, count: number): State {
return { ...state, count }
}
@Effect()
minus(count$: Observable<number>, state$: Observable<State>): Observable<EffectAction> {
return count$.pipe(
withLatestFrom(state$),
map(([subCount, state]) => this.getActions().setCount(state.count - subCount)),
)
}
}
function CountComponent({ scope }: { scope?: any }) {
const [state, actions] = useAyanami(Count, { scope })
const add = (count: number) => () => actions.add(count)
const minus = (count: number) => () => actions.minus(count)
return (
<div>
<p>
current count is <span>{state.count}</span>
</p>
<button id={CountAction.ADD} onClick={add(1)}>
add one
</button>
<button id={CountAction.MINUS} onClick={minus(1)}>
minus one
</button>
</div>
)
}
describe('Hooks spec:', () => {
describe('Default behavior', () => {
const testRenderer = create(<CountComponent />)
const count = () => testRenderer.root.findByType('span').children[0]
const click = (action: CountAction) =>
act(() => testRenderer.root.findByProps({ id: action }).props.onClick())
// https://github.com/facebook/react/issues/14050 to trigger useEffect manually
testRenderer.update(<CountComponent />)
it('default state work properly', () => {
expect(count()).toBe('0')
})
it('Reducer action work properly', () => {
click(CountAction.ADD)
expect(count()).toBe('1')
})
it('Effect action work properly', () => {
click(CountAction.MINUS)
expect(count()).toBe('0')
})
it('State selector work properly', () => {
const innerRenderSpy = jest.fn()
const outerRenderSpy = jest.fn()
const InnerComponent = React.memo(({ scope }: { scope?: any }) => {
const [anotherCount] = useAyanami(Count, { selector: (state) => state.anotherCount, scope })
innerRenderSpy(anotherCount)
return <div />
})
const OuterComponent = () => {
const [{ count }, actions] = useAyanami(Count, { scope: TransientScope })
const addOne = useCallback(() => actions.add(1), [])
outerRenderSpy(count)
return (
<div>
<button onClick={addOne}>add one</button>
<InnerComponent />
</div>
)
}
const renderer = create(<OuterComponent />)
act(() => renderer.root.findByType('button').props.onClick())
expect(innerRenderSpy.mock.calls).toEqual([[0]])
expect(outerRenderSpy.mock.calls).toEqual([[0], [1]])
})
it('should only render once when update the state right during rendering', () => {
const spy = jest.fn()
const TestComponent = () => {
const [state, actions] = useAyanami(Count, { scope: TransientScope })
const addOne = useCallback(() => actions.add(1), [])
if (state.count % 2 === 0) {
actions.add(1)
}
useEffect(() => {
spy(state.count)
}, [state.count])
return (
<div>
<p>count: {state.count}</p>
<button onClick={addOne}>add one</button>
</div>
)
}
const renderer = create(<TestComponent />)
// https://github.com/facebook/react/issues/14050 to trigger useEffect manually
renderer.update(<TestComponent />)
expect(spy.mock.calls).toEqual([[1]])
act(() => renderer.root.findByType('button').props.onClick())
expect(spy.mock.calls).toEqual([[1], [3]])
})
})
describe('Scope behavior', () => {
describe('Same scope will share state and actions', () => {
const scope = Symbol('scope')
let count: () => string | ReactTestInstance
let click: (action: CountAction) => void
beforeEach(() => {
const testRenderer = create(<CountComponent scope={scope} />)
count = () => testRenderer.root.findByType('span').children[0]
click = (action: CountAction) =>
act(() => testRenderer.root.findByProps({ id: action }).props.onClick())
// https://github.com/facebook/react/issues/14050 to trigger useEffect manually
testRenderer.update(<CountComponent scope={scope} />)
})
it('default state work properly', () => {
expect(count()).toBe('0')
})
it('Reducer action work properly', () => {
click(CountAction.ADD)
expect(count()).toBe('1')
})
it('Effect action work properly', () => {
click(CountAction.MINUS)
expect(count()).toBe('0')
})
})
describe('Different scope will isolate state and actions', () => {
let count: () => string | ReactTestInstance
let click: (action: CountAction) => void
beforeEach(() => {
const scope = Symbol('scope')
const testRenderer = create(<CountComponent scope={scope} />)
count = () => testRenderer.root.findByType('span').children[0]
click = (action: CountAction) =>
act(() => testRenderer.root.findByProps({ id: action }).props.onClick())
// https://github.com/facebook/react/issues/14050 to trigger useEffect manually
testRenderer.update(<CountComponent scope={scope} />)
})
it('Reducer action work properly', () => {
click(CountAction.ADD)
expect(count()).toBe('1')
})
it('default state work properly', () => {
expect(count()).toBe('0')
})
it('Effect action work properly', () => {
click(CountAction.MINUS)
expect(count()).toBe('-1')
})
})
describe('TransientScope will isolate state and actions', () => {
let count: () => string | ReactTestInstance
let click: (action: CountAction) => void
let testRenderer: ReactTestRenderer
beforeEach(() => {
testRenderer = create(<CountComponent scope={TransientScope} />)
count = () => testRenderer.root.findByType('span').children[0]
click = (action: CountAction) =>
act(() => testRenderer.root.findByProps({ id: action }).props.onClick())
// https://github.com/facebook/react/issues/14050 to trigger useEffect manually
testRenderer.update(<CountComponent scope={TransientScope} />)
})
it('Reducer action work properly', () => {
click(CountAction.ADD)
expect(count()).toBe('1')
})
it('default state work properly', () => {
expect(count()).toBe('0')
})
it('Effect action work properly', () => {
click(CountAction.MINUS)
expect(count()).toBe('-1')
})
it('should destroy when component unmount', () => {
const spy = jest.spyOn(Ayanami.prototype, 'destroy')
act(() => testRenderer.unmount())
expect(spy.mock.calls.length).toBe(1)
})
})
describe('Dynamic update scope', () => {
const testRenderer = create(<CountComponent scope={1} />)
const count = () => testRenderer.root.findByType('span').children[0]
const click = (action: CountAction) =>
act(() => testRenderer.root.findByProps({ id: action }).props.onClick())
it(`should use same Ayanami at each update if scope didn't change`, () => {
testRenderer.update(<CountComponent scope={1} />)
click(CountAction.ADD)
expect(count()).toBe('1')
})
it(`should use new scope's Ayanami if scope changed`, () => {
testRenderer.update(<CountComponent scope={2} />)
click(CountAction.MINUS)
expect(count()).toBe('-1')
})
it(`should update state to corresponding one`, () => {
testRenderer.update(<CountComponent scope={1} />)
expect(count()).toBe('1')
testRenderer.update(<CountComponent scope={2} />)
expect(count()).toBe('-1')
testRenderer.update(<CountComponent scope={3} />)
expect(count()).toBe('0')
})
})
})
})