This repository was archived by the owner on Jun 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.spec.js
135 lines (127 loc) · 4.81 KB
/
list.spec.js
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
const {createElement} = require('react')
const {create} = require('react-test-renderer')
const FirebaseMock = require('./firebase-mock')
const ListFactory = require('./list')
describe('list', () => {
it('should render {} initially', () => {
const {refMock, Firebase} = FirebaseMock()
const List = ListFactory(Firebase)
const component = create(createElement(List, {path: 'some path'},
(list) => `list: ${JSON.stringify(list)}`
))
expect(refMock.mock.calls[0][0]).toBe('some path')
expect(component.toJSON())
.toMatchSnapshot()
})
it('when a child is added, component is re-rendered', () => {
const {onMock, refMock, Firebase} = FirebaseMock()
const List = ListFactory(Firebase)
const component = create(createElement(List, {path: 'some path'},
(list) => `list: ${JSON.stringify(list)}`
))
expect(refMock.mock.calls[0][0]).toBe('some path')
expect(onMock.mock.calls[0][0]).toBe('child_added')
const childAddedListener = onMock.mock.calls[0][1]
childAddedListener({
key: 'some key',
val () {
return 'some value'
}
})
expect(component.toJSON())
.toMatchSnapshot()
})
it('when a child is removed, component is re-rendered', () => {
const {onMock, refMock, Firebase} = FirebaseMock()
const List = ListFactory(Firebase)
const component = create(createElement(List, {path: 'some path'},
(list) => `list: ${JSON.stringify(list)}`
))
expect(refMock.mock.calls[0][0]).toBe('some path')
expect(onMock.mock.calls[0][0]).toBe('child_added')
const childAddedListener = onMock.mock.calls[0][1]
childAddedListener({
key: 'some key',
val () {
return 'some value'
}
})
expect(onMock.mock.calls[1][0]).toBe('child_removed')
const childRemovedListener = onMock.mock.calls[1][1]
childRemovedListener({
key: 'some key'
})
expect(component.toJSON())
.toMatchSnapshot()
})
it('when a child is changed, component is re-rendered', () => {
const {onMock, refMock, Firebase} = FirebaseMock()
const List = ListFactory(Firebase)
const component = create(createElement(List, {path: 'some path'},
(list) => `list: ${JSON.stringify(list)}`
))
expect(refMock.mock.calls[0][0]).toBe('some path')
expect(onMock.mock.calls[0][0]).toBe('child_added')
const childAddedListener = onMock.mock.calls[0][1]
childAddedListener({
key: 'some key',
val () {
return 'some value'
}
})
expect(onMock.mock.calls[2][0]).toBe('child_changed')
const childChangedListener = onMock.mock.calls[2][1]
childChangedListener({
key: 'some key',
val () {
return 'some other value'
}
})
expect(component.toJSON())
.toMatchSnapshot()
})
it('when component is unmounted, listeners are removed', () => {
const {onMock, offMock, refMock, Firebase} = FirebaseMock()
const List = ListFactory(Firebase)
const component = create(createElement(List, {path: 'some path'},
(list) => `list: ${JSON.stringify(list)}`
))
expect(refMock.mock.calls[0][0]).toBe('some path')
component.unmount()
expect(onMock.mock.calls.length).toBe(3)
expect(offMock.mock.calls.length).toBe(3)
expect(onMock.mock.calls[0][1]).toBe(offMock.mock.calls[0][1])
expect(onMock.mock.calls[1][1]).toBe(offMock.mock.calls[1][1])
expect(onMock.mock.calls[2][1]).toBe(offMock.mock.calls[2][1])
})
it('when the path changes a new listeners are created', () => {
const {onMock, refMock, Firebase} = FirebaseMock()
const List = ListFactory(Firebase)
const component = create(createElement(List, {path: 'some path'},
(list) => `list: ${JSON.stringify(list)}`
))
expect(refMock.mock.calls[0][0]).toBe('some path')
component.update(createElement(List, {path: 'some other path'},
(list) => `list: ${JSON.stringify(list)}`
))
expect(refMock.mock.calls[1][0]).toBe('some other path')
expect(onMock.mock.calls.length).toBe(3 + 3)
})
it('when the path changes the existing listeners are cleaned up', () => {
const {onMock, offMock, refMock, Firebase} = FirebaseMock()
const List = ListFactory(Firebase)
const component = create(createElement(List, {path: 'some path'},
(list) => `list: ${JSON.stringify(list)}`
))
expect(refMock.mock.calls[0][0]).toBe('some path')
component.update(createElement(List, {path: 'some other path'},
(list) => `list: ${JSON.stringify(list)}`
))
expect(refMock.mock.calls[1][0]).toBe('some other path')
expect(onMock.mock.calls.length).toBe(3 + 3)
expect(offMock.mock.calls.length).toBe(3)
expect(onMock.mock.calls[0][1]).toBe(offMock.mock.calls[0][1])
expect(onMock.mock.calls[1][1]).toBe(offMock.mock.calls[1][1])
expect(onMock.mock.calls[2][1]).toBe(offMock.mock.calls[2][1])
})
})