-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.js
119 lines (100 loc) · 2.64 KB
/
index.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
/* eslint-env mocha */
// import { it, before, after, beforeEach, afterEach } from 'arrow-mocha/es5'
import { it, beforeEach } from 'arrow-mocha/es5'
import Firedux from '../src'
import { createStore, applyMiddleware, combineReducers } from 'redux'
import thunk from 'redux-thunk'
import assert from 'assert'
import { ref, url } from './ref'
describe('test', t => {
let firedux
let reducer
let store
let middleware
beforeEach(t => {
firedux = new Firedux({
ref
})
reducer = combineReducers({
app: (s = {}) => s,
firedux: firedux.reducer()
})
middleware = applyMiddleware(thunk)
store = createStore(reducer, middleware)
firedux.dispatch = store.dispatch
})
it('should get url from ref', (t) => {
assert.equal(firedux.url, url)
})
it('should set and get', (t, done) => {
t.timeout(10000)
store.subscribe(() => {
const state = store.getState()
console.log('STATE:', JSON.stringify(state, null, ' '))
assert.equal(state.firedux.data.test, true)
})
firedux.set('test', true)
.then(() => {
return firedux.get('test')
})
.then((result) => {
assert.equal(result.snapshot.val(), true)
done()
})
.catch(done)
})
it('should replace on set', (t, done) => {
t.timeout(10000)
store.subscribe(() => {
const state = store.getState()
console.log('STATE:', JSON.stringify(state, null, ' '))
})
firedux.set('set', {first: true})
.then(() => {
const p = firedux.set('set', {second: true})
const state = store.getState()
assert.deepEqual(state.firedux.data.set, {second: true})
return p
})
.then(() => {
return firedux.get('set')
})
.then((result) => {
assert.deepEqual(result.snapshot.val(), {second: true})
done()
})
.catch(done)
})
it('should merge on update', (t, done) => {
t.timeout(10000)
store.subscribe(() => {
const state = store.getState()
console.log('STATE:', JSON.stringify(state, null, ' '))
})
firedux.set('update', {first: true})
.then(() => {
const p = firedux.update('update', {second: true})
const state = store.getState()
assert.deepEqual(state.firedux.data.update, {first: true, second: true}, 'local state')
return p
})
.then(() => {
return firedux.get('update')
})
.then((result) => {
done()
})
.catch(done)
})
it('should push with key', (t, done) => {
t.timeout(10000)
firedux.push('push', {first: true}, id => {
assert.ok(id)
})
.then((id) => {
assert.ok(id)
done()
})
.catch(done)
})
})