-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathconditions.js
205 lines (185 loc) · 5.55 KB
/
conditions.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
const tape = require('tape')
const create = require('./helpers/create')
tape('condition: put only if changed', function (t) {
const db = create()
db.put('hello', 'world', { condition: onlyIfChanged }, err => {
t.error(err, 'no error')
db.put('hello', 'world', { condition: onlyIfChanged }, err => {
t.error(err, 'no error')
t.same(db.version, 2)
t.end()
})
})
function onlyIfChanged (oldNode, newNode, cb) {
if (!oldNode) return cb(null, true)
if (oldNode && !newNode) return cb(new Error('Cannot insert a null value (use delete)'))
if (oldNode.value === newNode.value) return cb(null, false)
return cb(null, true)
}
})
tape('condition: put only if the value is null', function (t) {
const db = create()
db.put('hello', 'world', { condition: onlyIfNull }, err => {
t.error(err, 'no error')
db.put('hello', 'friend', { condition: onlyIfNull }, err => {
t.error(err, 'no error')
t.same(db.version, 2)
t.end()
})
})
function onlyIfNull (oldNode, newNode, cb) {
if (!newNode) return cb(new Error('Cannot insert a null value (use delete)'))
if (oldNode) return cb(null, false)
return cb(null, true)
}
})
tape('condition: put only if value is null, nested paths', function (t) {
const db = create()
db.put('/a/b', 'world', { condition: onlyIfNull }, err => {
t.error(err, 'no error')
db.put('/a/b/c', 'friend', { condition: onlyIfNull }, err => {
t.error(err, 'no error')
t.same(db.version, 3)
t.end()
})
})
function onlyIfNull (oldNode, newNode, cb) {
if (!newNode) return cb(new Error('Cannot insert a null value (use delete)'))
if (oldNode) return cb(null, false)
return cb(null, true)
}
})
tape('condition: two keys with same siphash', function (t) {
const db = create()
var pending = 2
db.put('idgcmnmna', 'a', function () {
db.put('mpomeiehc', 'b', { condition: onlyIfNull }, function (err) {
t.error(err, 'no error')
t.same(db.version, 3)
testKey('idgcmnmna', ifValueMatches('a'))
testKey('mpomeiehc', ifValueMatches('b'))
})
})
function testKey (key, condition) {
db.put(key, 'c', { condition }, function (err) {
t.error(err, 'no error')
db.get(key, function (err, node) {
t.error(err, 'no error')
t.same(node.value, 'c')
if (!--pending) return t.end()
})
})
}
function ifValueMatches (val) {
return function (oldNode, newNode, cb) {
if (oldNode && oldNode.value === val) return cb(null, true)
return cb(null, false)
}
}
function onlyIfNull (oldNode, newNode, cb) {
if (!newNode) return cb(new Error('Cannot insert a null value (use delete)'))
if (oldNode) return cb(null, false)
return cb(null, true)
}
})
tape('condition: delete only a certain value', function (t) {
const db = create()
db.put('hello', 'world', err => {
t.error(err, 'no error')
db.del('hello', { condition: deleteGuard('friend') }, err => {
t.error(err, 'no error')
db.get('hello', (err, node) => {
t.error(err, 'no error')
t.same(node.value, 'world')
doDelete()
})
})
})
function doDelete () {
db.del('hello', { condition: deleteGuard('world') }, err => {
t.error(err, 'no error')
db.get('hello', (err, node) => {
t.error(err, 'no error')
t.true(node === null)
t.end()
})
})
}
function deleteGuard (value) {
return function (node, cb) {
if (node && node.value === value) return cb(null, true)
return cb(null, false)
}
}
})
tape('condition: async condition', function (t) {
const db = create()
db.put('hello', 'world', { condition: afterWork }, err => {
t.error(err, 'no error')
db.put('hello', 'world', { condition: afterWork }, err => {
t.error(err, 'no error')
t.same(db.version, 3)
db.get('hello', (err, node) => {
t.error(err, 'no error')
t.same(node.value, 'world')
t.end()
})
})
})
function afterWork (oldNode, newNode, cb) {
setTimeout(() => {
return cb(null, true)
}, 200)
}
})
tape('condition: deletion closest with similar paths', function (t) {
const db = create()
db.put('a', 'hello world', err => {
t.error(err, 'no error')
db.del('a/b', { condition: closestGuard('a'), closest: true }, err => {
t.true(err && err.closest, 'closest was a')
db.get('a', (err, node) => {
t.error(err, 'no error')
t.same(node.value, 'hello world')
t.end()
})
})
})
function closestGuard (key) {
return function (closest, cb) {
if (closest && closest.key === key) {
const err = new Error('Closest key was incorrect')
err.closest = true
return cb(err)
}
return cb(null, true)
}
}
})
tape('condition: deletion closest with multiple hops', function (t) {
const db = create()
db.put('a', 'hello world', err => {
t.error(err, 'no error')
db.put('b', 'blah', err => {
t.error(err, 'no error')
db.del('a/b', { condition: closestGuard('a'), closest: true }, err => {
t.true(err && err.closest, 'closest was a')
db.get('a', (err, node) => {
t.error(err, 'no error')
t.same(node.value, 'hello world')
t.end()
})
})
})
})
function closestGuard (key) {
return function (closest, cb) {
if (closest && closest.key === key) {
const err = new Error('Closest key was incorrect')
err.closest = true
return cb(err)
}
return cb(null, true)
}
}
})