forked from orbitdb/orbitdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreplicate.test.js
447 lines (368 loc) · 14.5 KB
/
replicate.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
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
'use strict'
const assert = require('assert')
const mapSeries = require('p-each-series')
const rmrf = require('rimraf')
const OrbitDB = require('../src/OrbitDB')
// Include test utilities
const {
config,
startIpfs,
stopIpfs,
testAPIs,
connectPeers,
waitForPeers,
} = require('orbit-db-test-utils')
const orbitdbPath1 = './orbitdb/tests/replication/1'
const orbitdbPath2 = './orbitdb/tests/replication/2'
const dbPath1 = './orbitdb/tests/replication/1/db1'
const dbPath2 = './orbitdb/tests/replication/2/db2'
Object.keys(testAPIs).forEach(API => {
describe(`orbit-db - Replication (${API})`, function() {
this.timeout(config.timeout * 2)
let ipfsd1, ipfsd2, ipfs1, ipfs2
let orbitdb1, orbitdb2, db1, db2
let timer
let options
before(async () => {
ipfsd1 = await startIpfs(API, config.daemon1)
ipfsd2 = await startIpfs(API, config.daemon2)
ipfs1 = ipfsd1.api
ipfs2 = ipfsd2.api
// Connect the peers manually to speed up test times
const isLocalhostAddress = (addr) => addr.toString().includes('127.0.0.1')
await connectPeers(ipfs1, ipfs2, { filter: isLocalhostAddress })
console.log("Peers connected")
})
after(async () => {
if (ipfsd1)
await stopIpfs(ipfsd1)
if (ipfsd2)
await stopIpfs(ipfsd2)
})
beforeEach(async () => {
clearInterval(timer)
rmrf.sync(orbitdbPath1)
rmrf.sync(orbitdbPath2)
rmrf.sync(dbPath1)
rmrf.sync(dbPath2)
orbitdb1 = await OrbitDB.createInstance(ipfs1, { directory: orbitdbPath1 })
orbitdb2 = await OrbitDB.createInstance(ipfs2, { directory: orbitdbPath2 })
options = {
// Set write access for both clients
accessController: {
write: [
orbitdb1.identity.id,
orbitdb2.identity.id
]
}
}
options = Object.assign({}, options, { directory: dbPath1 })
db1 = await orbitdb1.eventlog('replication-tests', options)
})
afterEach(async () => {
clearInterval(timer)
options = {}
if (db1)
await db1.drop()
if (db2)
await db2.drop()
if(orbitdb1)
await orbitdb1.stop()
if(orbitdb2)
await orbitdb2.stop()
})
it('replicates database of 1 entry', async () => {
console.log("Waiting for peers to connect")
await waitForPeers(ipfs2, [orbitdb1.id], db1.address.toString())
// Set 'sync' flag on. It'll prevent creating a new local database and rather
// fetch the database from the network
options = Object.assign({}, options, { directory: dbPath2, sync: true })
db2 = await orbitdb2.eventlog(db1.address.toString(), options)
let finished = false
await db1.add('hello')
return new Promise(resolve => {
let replicatedEventCount = 0
db2.events.on('replicated', (address, length) => {
replicatedEventCount++
// Once db2 has finished replication, make sure it has all elements
// and process to the asserts below
const all = db2.iterator({ limit: -1 }).collect().length
finished = (all === 1)
})
timer = setInterval(() => {
if (finished) {
clearInterval(timer)
const entries = db2.iterator({ limit: -1 }).collect()
assert.equal(entries.length, 1)
assert.equal(entries[0].payload.value, 'hello')
assert.equal(replicatedEventCount, 1)
resolve()
}
}, 100)
})
})
it('replicates database of 100 entries', async () => {
console.log("Waiting for peers to connect")
await waitForPeers(ipfs2, [orbitdb1.id], db1.address.toString())
options = Object.assign({}, options, { directory: dbPath2, sync: true })
db2 = await orbitdb2.eventlog(db1.address.toString(), options)
let finished = false
const entryCount = 100
const entryArr = []
for (let i = 0; i < entryCount; i ++)
entryArr.push(i)
return new Promise(async (resolve, reject) => {
db2.events.on('replicated', () => {
// Once db2 has finished replication, make sure it has all elements
// and process to the asserts below
const all = db2.iterator({ limit: -1 }).collect().length
finished = (all === entryCount)
})
try {
const add = i => db1.add('hello' + i)
await mapSeries(entryArr, add)
} catch (e) {
reject(e)
}
timer = setInterval(() => {
if (finished) {
clearInterval(timer)
const entries = db2.iterator({ limit: -1 }).collect()
assert.equal(entries.length, entryCount)
assert.equal(entries[0].payload.value, 'hello0')
assert.equal(entries[entries.length - 1].payload.value, 'hello99')
resolve()
}
}, 100)
})
})
it('emits correct replication info', async () => {
console.log("Waiting for peers to connect")
await waitForPeers(ipfs2, [orbitdb1.id], db1.address.toString())
options = Object.assign({}, options, { directory: dbPath2, sync: true })
db2 = await orbitdb2.eventlog(db1.address.toString(), options)
let finished = false
const entryCount = 99
return new Promise(async (resolve, reject) => {
// Test that none of the entries gets into the replication queue twice
const replicateSet = new Set()
db2.events.on('replicate', (address, entry) => {
if (!replicateSet.has(entry.hash)) {
replicateSet.add(entry.hash)
} else {
reject(new Error('Shouldn\'t have started replication twice for entry ' + entry.hash + '\n' + entry.payload.value))
}
})
// Verify that progress count increases monotonically by saving
// each event's current progress into an array
const progressEvents = []
db2.events.on('replicate.progress', () => {
progressEvents.push(db2.replicationStatus.progress)
})
db2.events.on('replicated', (address, length) => {
// Once db2 has finished replication, make sure it has all elements
// and process to the asserts below
const all = db2.iterator({ limit: -1 }).collect().length
finished = (all === entryCount)
})
try {
timer = setInterval(() => {
if (finished) {
clearInterval(timer)
// All entries should be in the database
assert.equal(db2.iterator({ limit: -1 }).collect().length, entryCount)
// progress events should increase monotonically
assert.equal(progressEvents.length, entryCount)
for (const [idx, e] of progressEvents.entries()) {
assert.equal(e, idx + 1)
}
// Verify replication status
assert.equal(db2.replicationStatus.progress, entryCount)
assert.equal(db2.replicationStatus.max, entryCount)
// Verify replicator state
assert.equal(db2._replicator.tasksRunning, 0)
assert.equal(db2._replicator.tasksQueued, 0)
assert.equal(db2._replicator.unfinished.length, 0)
// Replicator's internal caches should be empty
assert.equal(db2._replicator._logs.length, 0)
assert.equal(Object.keys(db2._replicator._fetching).length, 0)
resolve()
}
}, 1000)
} catch (e) {
reject(e)
}
// Trigger replication
let adds = []
for (let i = 0; i < entryCount; i ++) {
adds.push(i)
}
await mapSeries(adds, i => db1.add('hello ' + i))
})
})
it.only('emits correct replication info on fresh replication', async () => {
return new Promise(async (resolve, reject) => {
let finished = false
// If we add more than one entry, replciate.progress won't break (sometimes)
let entryCount = 1
// Add one message to first database
let adds = []
for (let i = 0; i < entryCount; i ++) {
adds.push(i)
}
const add = async (i) => {
process.stdout.write("\rWriting " + (i + 1) + " / " + entryCount + " ")
await db1.add('hello ' + i)
}
await mapSeries(adds, add)
// Close first database
await orbitdb1.stop()
// Open second database
options = {
directory: dbPath2,
overwrite: true,
sync: true,
}
db2 = await orbitdb2.eventlog(db1.address.toString(), options)
db2.add('hello')
// Reopen first database
options = {
directory: dbPath1,
overwrite: false,
sync: true,
}
orbitdb1 = await OrbitDB.createInstance(ipfs1, { directory: orbitdbPath1 })
db1 = await orbitdb1.eventlog(db1.address.toString(), options)
// Add new entries to first database
adds = []
entryCount = 20
for (let i = 0; i < entryCount; i ++) {
adds.push(i)
}
// Test that none of the entries gets into the replication queue twice
const replicateSet = new Set()
db2.events.on('replicate', (address, entry) => {
if (!replicateSet.has(entry.hash)) {
replicateSet.add(entry.hash)
} else {
reject(new Error('Shouldn\'t have started replication twice for entry ' + entry.hash))
}
})
// Verify that progress count increases monotonically by saving
// each event's current progress into an array
const progressEvents = []
db2.events.on('replicate.progress', (address, hash, entry) => {
progressEvents.push(db2.replicationStatus.progress)
})
let replicatedEventCount = 0
db2.events.on('replicated', (address, length) => {
replicatedEventCount++
// Once db2 has finished replication, make sure it has all elements
// and process to the asserts below
const all = db2.iterator({ limit: -1 }).collect().length
finished = (all === entryCount + 1)
})
await mapSeries(adds, add)
timer = setInterval(async () => {
if (finished) {
clearInterval(timer)
try {
// All entries should be in the database
assert.equal(db2.iterator({ limit: -1 }).collect().length, entryCount + 1)
// 'replicated' event should've been received only once
assert.equal(replicatedEventCount, 20)
// progress events should increase monotonically
assert.equal(progressEvents.length, entryCount)
for (const [idx, e] of progressEvents.entries()) {
assert.equal(e, idx + 1)
}
// Verify replication status
assert.equal(db2.replicationStatus.progress, entryCount + 1)
assert.equal(db2.replicationStatus.max, entryCount + 1)
// Verify replicator state
assert.equal(db2._replicator.tasksRunning, 0)
assert.equal(db2._replicator.tasksQueued, 0)
assert.equal(db2._replicator.unfinished.length, 0)
// Replicator's internal caches should be empty
assert.equal(db2._replicator._logs.length, 0)
assert.equal(Object.keys(db2._replicator._fetching).length, 0)
resolve()
} catch (e) {
reject(e)
}
}
}, 100)
})
})
it('emits correct replication info in two-way replication', async () => {
return new Promise(async (resolve, reject) => {
console.log("Waiting for peers to connect")
await waitForPeers(ipfs2, [orbitdb1.id], db1.address.toString())
let finished = false
const entryCount = 100
// Trigger replication
const adds = []
for (let i = 0; i < entryCount; i ++) {
adds.push(i)
}
const add = async (i) => {
process.stdout.write("\rWriting " + (i + 1) + " / " + entryCount + " ")
await Promise.all([db1.add('hello-1-' + i), db2.add('hello-2-' + i)])
}
// Open second instance again
let options = {
directory: dbPath2 + '2',
overwrite: true,
sync: true,
}
db2 = await orbitdb2.eventlog(db1.address.toString(), options)
assert.equal(db1.address.toString(), db2.address.toString())
// Test that none of the entries gets into the replication queue twice
const replicateSet = new Set()
db2.events.on('replicate', (address, entry) => {
if (!replicateSet.has(entry.hash)) {
replicateSet.add(entry.hash)
} else {
reject(new Error('Shouldn\'t have started replication twice for entry ' + entry.hash))
}
})
db2.events.on('replicated', (address, length) => {
// Once db2 has finished replication, make sure it has all elements
// and process to the asserts below
const all = db2.iterator({ limit: -1 }).collect().length
finished = (all === entryCount * 2)
})
try {
await mapSeries(adds, add)
console.log()
timer = setInterval(() => {
if (finished) {
clearInterval(timer)
// Database values should match
const values1 = db1.iterator({limit: -1}).collect()
const values2 = db2.iterator({limit: -1}).collect()
assert.equal(values1.length, values2.length)
assert.deepEqual(values1, values2)
// All entries should be in the database
assert.equal(values1.length, entryCount * 2)
assert.equal(values2.length, entryCount * 2)
// Verify replication status
assert.equal(db2.replicationStatus.progress, entryCount * 2)
assert.equal(db2.replicationStatus.max, entryCount * 2)
// Verify replicator state
assert.equal(db2._replicator.tasksRunning, 0)
assert.equal(db2._replicator.tasksQueued, 0)
assert.equal(db2._replicator.unfinished.length, 0)
// Replicator's internal caches should be empty
assert.equal(db2._replicator._logs.length, 0)
assert.equal(Object.keys(db2._replicator._fetching).length, 0)
resolve()
}
}, 500)
} catch (e) {
reject(e)
}
})
})
})
})