-
-
Notifications
You must be signed in to change notification settings - Fork 342
/
Copy pathfirestore.spec.ts
239 lines (210 loc) · 6.75 KB
/
firestore.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
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
import { createStore } from 'vuex'
import { vuexfireMutations, firestoreAction } from '../src'
import { db, tick, Vue, delayUpdate } from '@posva/vuefire-test-helpers'
import firebase from 'firebase/app'
import { FirestoreOptions } from '@posva/vuefire-core/dist/packages/@posva/vuefire-core/src'
describe('firestoreAction', () => {
const item: any = null,
items: any[] = []
const store = createStore({
state: { item, items },
mutations: vuexfireMutations,
actions: {
action: firestoreAction((context, fn) => fn(context)),
},
modules: {
module: {
namespaced: true,
actions: {
action: firestoreAction((context, fn) => fn(context)),
},
},
vanillaFunction: {
namespaced: true,
actions: {
action: firestoreAction(function(context, fn) {
// @ts-ignore
return fn.call(this, context)
}),
},
},
},
})
const setItems = (
collection: firebase.firestore.CollectionReference | firebase.firestore.Query,
options?: FirestoreOptions
) =>
// @ts-ignore
store.dispatch('action', ({ bindFirestoreRef }) =>
bindFirestoreRef('items', collection, options)
)
const setItem = (document: firebase.firestore.DocumentReference) =>
// @ts-ignore
store.dispatch('action', ({ bindFirestoreRef }) => bindFirestoreRef('item', document))
let collection: firebase.firestore.CollectionReference,
document: firebase.firestore.DocumentReference
beforeEach(async () => {
store.replaceState({
// @ts-ignore
items: null,
item: null,
module: {
items: [],
},
})
// @ts-ignore
collection = db.collection()
// @ts-ignore
document = db.collection().doc()
await tick()
})
it('binds a collection', async () => {
expect(store.state.items).toBe(null)
await setItems(collection)
expect(store.state.items).toEqual([])
await collection.add({ text: 'foo' })
expect(store.state.items).toEqual([{ text: 'foo' }])
})
it('binds a document', async () => {
expect(store.state.item).toBe(null)
await setItem(document)
expect(store.state.item).toEqual(null)
await document.update({ text: 'foo' })
expect(store.state.item).toEqual({ text: 'foo' })
})
it('removes items in collection', async () => {
await setItems(collection)
await collection.add({ text: 'foo' })
expect(store.state.items).toEqual([{ text: 'foo' }])
await collection.doc(store.state.items[0].id).delete()
expect(store.state.items).toEqual([])
})
it('unbinds previously bound refs', async () => {
await setItem(document)
expect(store.state.item).toEqual(null)
// @ts-ignore
const doc2: firestore.DocumentReference = db.collection().doc()
await doc2.update({ bar: 'bar' })
await document.update({ foo: 'foo' })
expect(store.state.item).toEqual({ foo: 'foo' })
await setItem(doc2)
expect(store.state.item).toEqual({ bar: 'bar' })
await document.update({ foo: 'baz' })
expect(store.state.item).toEqual({ bar: 'bar' })
})
it('waits for all refs in document', async () => {
const a = db.collection().doc()
// @ts-ignore
const b: firestore.DocumentReference = db.collection().doc()
delayUpdate(b)
await document.update({ a, b })
await setItem(document)
expect(store.state.item).toEqual({
a: null,
b: null,
})
})
it('waits for all refs in document with interrupting by new ref', async () => {
const a = db.collection().doc()
// @ts-ignore
const b: firestore.DocumentReference = db.collection().doc()
const c = db.collection().doc()
delayUpdate(b)
await document.update({ a, b })
const promise = setItem(document)
document.update({ c })
await promise
expect(store.state.item).toEqual({
a: null,
b: null,
c: null,
})
})
it('waits for nested refs with data in collections', async () => {
const a = db.collection().doc()
// @ts-ignore
const b: firestore.DocumentReference = db.collection().doc()
// @ts-ignore
const c: firestore.DocumentReference = db.collection().doc()
await a.update({ isA: true })
await c.update({ isC: true })
await b.update({ c })
delayUpdate(b)
delayUpdate(c, 5)
await collection.add({ a })
await collection.add({ b })
await setItems(collection)
expect(store.state.items).toEqual([{ a: { isA: true } }, { b: { c: { isC: true } } }])
})
it('can unbind a reference', async () => {
await setItems(collection)
await collection.add({ text: 'foo' })
await store.dispatch(
'action',
// @ts-ignore
({ unbindFirestoreRef }) => unbindFirestoreRef('items')
)
expect(store.state.items).toEqual([])
await collection.add({ text: 'foo' })
expect(store.state.items).toEqual([])
await setItems(collection)
expect(store.state.items).toEqual([{ text: 'foo' }, { text: 'foo' }])
})
it('can unbind without resetting', async () => {
await setItems(collection)
await collection.add({ text: 'foo' })
await store.dispatch(
'action',
// @ts-ignore
({ unbindFirestoreRef }) => unbindFirestoreRef('items', false)
)
expect(store.state.items).toEqual([{ text: 'foo' }])
})
it('does not throw there is nothing to unbind', async () => {
await setItems(collection)
await store.dispatch(
'action',
// @ts-ignore
({ unbindFirestoreRef }) =>
expect(() => {
unbindFirestoreRef('items')
unbindFirestoreRef('items')
}).not.toThrow()
)
await store.dispatch(
'module/action',
// @ts-ignore
({ unbindFirestoreRef }) =>
expect(() => {
unbindFirestoreRef('items')
unbindFirestoreRef('items')
}).not.toThrow()
)
})
it('propagates value of `this` to wrapped action', async () => {
await store.dispatch('vanillaFunction/action', function() {
// @ts-ignore
expect(this._vm).toBeInstanceOf(Vue)
})
})
it('does not reset if wait: true', async () => {
// @ts-ignore
const col2: firestore.CollectionReference = db.collection()
await setItems(collection)
await collection.add({ text: 'foo' })
const p = setItems(col2, { wait: true, reset: true })
expect(store.state.items).toEqual([{ text: 'foo' }])
await p
expect(store.state.items).toEqual([])
})
it('wait + reset can be overriden with a function', async () => {
// @ts-ignore
const col2: firestore.CollectionReference = db.collection()
await setItems(collection)
await collection.add({ text: 'foo' })
const p = setItems(col2, { wait: true, reset: () => ['foo'] })
expect(store.state.items).toEqual(['foo'])
await p
expect(store.state.items).toEqual([])
})
})