-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathayanami.spec.ts
53 lines (41 loc) · 1.3 KB
/
ayanami.spec.ts
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
import { Injectable, Test } from '@asuka/di'
import { Ayanami, Reducer, getAllActionsForTest, ActionMethodOfAyanami } from '../../src'
interface CountState {
count: number
}
@Injectable()
class CountModel extends Ayanami<CountState> {
defaultState = { count: 0 }
@Reducer()
setCount(state: CountState, count: number): CountState {
return { ...state, count }
}
}
describe('Ayanami specs:', () => {
let countModel: CountModel
let actions: ActionMethodOfAyanami<CountModel, CountState>
beforeEach(() => {
const testModule = Test.createTestingModule().compile()
countModel = testModule.getInstance(CountModel)
actions = getAllActionsForTest(countModel)
})
it('getState', () => {
expect(countModel.getState()).toEqual({ count: 0 })
actions.setCount(10)
expect(countModel.getState()).toEqual({ count: 10 })
})
it('getState$', () => {
const count$ = countModel.getState$()
const callback = jest.fn()
count$.subscribe(callback)
actions.setCount(44)
expect(callback.mock.calls.length).toBe(2)
expect(callback.mock.calls[0][0]).toEqual({ count: 0 })
expect(callback.mock.calls[1][0]).toEqual({ count: 44 })
})
it('destroy', () => {
countModel.destroy()
actions.setCount(10)
expect(countModel.getState()).toEqual({ count: 0 })
})
})