-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
211 lines (186 loc) · 5.71 KB
/
test.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
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
var expect = require('chai').expect
, promise = require('utilise/promise')
, client = require('utilise/client')
, update = require('utilise/update')
, remove = require('utilise/remove')
, push = require('utilise/push')
, time = require('utilise/time')
, keys = require('utilise/keys')
, key = require('utilise/key')
, core = require('rijs.core').default
, data = require('rijs.data').default
, db = require('./').default
, path = require('path')
, deep = key
, mockdb
, result
describe('Database', function(){
beforeEach(function(){
mockdb = { table: [{ foo: 'bar', id: 1 }] }
result = undefined
})
it('should initialise adaptors if does not exist', function(){
var ripple = data(core())
expect(ripple.adaptors).to.not.be.ok
db(ripple)
expect(ripple.adaptors).to.be.ok
})
it('should do nothing if falsy given', function(){
var ripple = db(adaptor(data(core())), { })
expect(ripple.connections).to.eql({})
})
it('should do nothing if fail to parse', function(){
var ripple = db(adaptor(data(core())), { db: { wat: 'wat.com' }})
expect(ripple.connections).to.eql({
wat: {
id: 'wat'
, invalid: 'incorrect connection string'
}
})
})
it('should do nothing if adaptor does not exist', function(){
var ripple = db(adaptor(data(core())), { db: { type: 'type://user:password@host:port/database' }})
expect(ripple.connections).to.eql({
type: {
id: 'type'
, invalid: 'invalid connection'
}
})
})
it('should initialise new connection', function(){
var ripple = db(adaptor(data(core())), { db: { mock: 'mock://user:password@host:port/database' }})
expect(keys(ripple.adaptors)).to.eql(['mock'])
expect(ripple.connections.mock.config).to.eql({
type: 'mock'
, user: 'user'
, password: 'password'
, host: 'host'
, port: 'port'
, database: 'database'
})
})
it('should skip non-data resources', function(done){
var ripple = db(adaptor(data(core())), { db: { mock: 'mock://user:password@host:port/table' }})
ripple('non-data', 'text')
time(20, function(){
expect(ripple('non-data')).to.eql('text')
expect(result).to.be.not.ok
})
time(40, done)
})
it('should load from db', function(done){
var ripple = db(adaptor(data(core())), { db: { mock: 'mock://user:password@host:port/table' }})
ripple('table')
time(20, function(){
expect(ripple('table')).to.eql([{foo: 'bar', id: 1 }])
expect(result).to.be.eql(['load', ripple('table')])
})
time(40, done)
})
it('should push to db', function(done){
var ripple = db(adaptor(data(core())), { db: { mock: 'mock://user:password@host:port/table' }})
ripple('table')
time(20, function(){
var record = { a: 'b' }
push(record)(ripple('table'))
})
time(40, function(){
expect(ripple('table')).to.eql([{foo: 'bar', id: 1 }, { a: 'b', id: 2 }])
expect(result).to.be.eql(['add', { a: 'b', id: 2 }])
})
time(60, done)
})
it('should update to db', function(done){
var ripple = db(adaptor(data(core())), { db: { mock: 'mock://user:password@host:port/table' }})
ripple('table')
time(20, function(){
update('0.foo', 'foo')(ripple('table'))
})
time(40, function(){
expect(result).to.be.eql(['update', { foo: 'foo', id: 1 }])
})
time(60, done)
})
it('should remove from db', function(done){
var ripple = db(adaptor(data(core())), { db: { mock: 'mock://user:password@host:port/table' }})
ripple('table')
time(20, function(){
remove(0)(ripple('table'))
})
time(40, function(){
expect(ripple('table')).to.eql([])
expect(result).to.eql(['remove', { foo: 'bar', id: 1 }])
})
time(60, done)
})
it('should not reload if not new resource', function(done){
var ripple = db(adaptor(data(core())), { db: { mock: 'mock://user:password@host:port/table' }})
ripple('table')
time(20, function(){
result = undefined
expect(ripple('table')).to.eql([{foo: 'bar', id: 1 }])
ripple('table', [])
})
time(40, function(){
expect(ripple('table')).to.eql([])
expect(result).to.not.be.ok
ripple('table').emit('change')
})
time(60, function(){
expect(ripple('table')).to.eql([])
expect(result).to.not.be.ok
done()
})
})
function adaptor(ripple) {
ripple.adaptors = { mock: mock(ripple) }
return ripple
}
function mock(ripple) {
return function(config) {
return {
change: change(ripple)
, config: config
}
}
}
function change(ripple){
return function(type) {
return function(res, change){
if (type == 'add') dbadd(ripple)(res, change.key, change.value)
if (type == 'update') dbupdate(ripple)(res, change.key, change.value)
if (type == 'remove') dbremove(ripple)(res, change.key, change.value)
}
}
}
function dbload(ripple){
return function(res){
time(0, function(){
result = ['load', ripple({ name: res.name, body: mockdb[res.name], headers: { db: { loaded: true }}})]
})
}
}
function dbadd(ripple){
return function(res, key, value){
time(0, function(){
value.id = 2
result = ['add', value]
})
}
}
function dbupdate(ripple){
return function(res, key, value){
time(0, function(){
if (!key && !deep('headers.db.loaded')(res)) return dbload(ripple)(res)
if (key) result = ['update', res.body[key.split('.').shift()]]
})
}
}
function dbremove(ripple){
return function(res, key, value){
time(0, function(){
result = ['remove', value]
})
}
}
})