mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-10-07 22:57:07 +00:00
Add tests for using multiple databases at the same time
This commit is contained in:
185
test/multiple-databases.test.js
Normal file
185
test/multiple-databases.test.js
Normal file
@@ -0,0 +1,185 @@
|
||||
'use strict'
|
||||
|
||||
const assert = require('assert')
|
||||
const mapSeries = require('p-each-series')
|
||||
const rmrf = require('rimraf')
|
||||
const OrbitDB = require('../src/OrbitDB')
|
||||
const config = require('./utils/config')
|
||||
const startIpfs = require('./utils/start-ipfs')
|
||||
const stopIpfs = require('./utils/stop-ipfs')
|
||||
const waitForPeers = require('./utils/wait-for-peers')
|
||||
|
||||
const dbPath1 = './orbitdb/tests/multiple-databases/1'
|
||||
const dbPath2 = './orbitdb/tests/multiple-databases/2'
|
||||
const ipfsPath1 = './orbitdb/tests/multiple-databases/1/ipfs'
|
||||
const ipfsPath2 = './orbitdb/tests/multiple-databases/2/ipfs'
|
||||
|
||||
const databaseInterfaces = [
|
||||
{
|
||||
name: 'logdb',
|
||||
open: async (orbitdb, address, options) => await orbitdb.log(address, options),
|
||||
write: async (db, index) => await db.add('hello' + index),
|
||||
query: (db) => db.iterator({ limit: -1 }).collect().length,
|
||||
},
|
||||
{
|
||||
name: 'feed',
|
||||
open: async (orbitdb, address, options) => await orbitdb.feed(address, options),
|
||||
write: async (db, index) => await db.add('hello' + index),
|
||||
query: (db) => db.iterator({ limit: -1 }).collect().length,
|
||||
},
|
||||
{
|
||||
name: 'key-value',
|
||||
open: async (orbitdb, address, options) => await orbitdb.keyvalue(address, options),
|
||||
write: async (db, index) => await db.put('hello', index),
|
||||
query: (db) => db.get('hello'),
|
||||
},
|
||||
{
|
||||
name: 'counterdb',
|
||||
open: async (orbitdb, address, options) => await orbitdb.counter(address, options),
|
||||
write: async (db, index) => await db.inc(1),
|
||||
query: (db) => db.value,
|
||||
},
|
||||
{
|
||||
name: 'documents',
|
||||
open: async (orbitdb, address, options) => await orbitdb.docs(address, options),
|
||||
write: async (db, index) => await db.put({ _id: 'hello', testing: index }),
|
||||
query: (db) => {
|
||||
const docs = db.get('hello')
|
||||
return docs ? docs[0].testing : 0
|
||||
},
|
||||
},
|
||||
]
|
||||
|
||||
describe('orbit-db - Multiple Databases', function() {
|
||||
this.timeout(config.timeout)
|
||||
|
||||
let ipfs1, ipfs2, orbitdb1, orbitdb2, db1, db2, db3, db4
|
||||
|
||||
let localDatabases = []
|
||||
let remoteDatabases = []
|
||||
|
||||
// Create two IPFS instances and two OrbitDB instaces (2 nodes/peers)
|
||||
before(async () => {
|
||||
config.daemon1.repo = ipfsPath1
|
||||
config.daemon2.repo = ipfsPath2
|
||||
rmrf.sync(config.daemon1.repo)
|
||||
rmrf.sync(config.daemon2.repo)
|
||||
rmrf.sync(dbPath1)
|
||||
rmrf.sync(dbPath2)
|
||||
ipfs1 = await startIpfs(config.daemon1)
|
||||
ipfs2 = await startIpfs(config.daemon2)
|
||||
orbitdb1 = new OrbitDB(ipfs1, dbPath1)
|
||||
orbitdb2 = new OrbitDB(ipfs2, dbPath2)
|
||||
})
|
||||
|
||||
after(async () => {
|
||||
if(orbitdb1)
|
||||
await orbitdb1.stop()
|
||||
|
||||
if(orbitdb2)
|
||||
await orbitdb2.stop()
|
||||
|
||||
if (ipfs1)
|
||||
await stopIpfs(ipfs1)
|
||||
|
||||
if (ipfs2)
|
||||
await stopIpfs(ipfs2)
|
||||
})
|
||||
|
||||
beforeEach(async () => {
|
||||
let options = {}
|
||||
// Set write access for both clients
|
||||
options.write = [
|
||||
orbitdb1.key.getPublic('hex'),
|
||||
orbitdb2.key.getPublic('hex')
|
||||
],
|
||||
|
||||
console.log("Creating databases and waiting for peers to connect")
|
||||
|
||||
// Open the databases on the first node
|
||||
options = Object.assign({}, options, { create: true })
|
||||
|
||||
// Open the databases on the first node
|
||||
for (let dbInterface of databaseInterfaces) {
|
||||
const db = await dbInterface.open(orbitdb1, dbInterface.name, options)
|
||||
localDatabases.push(db)
|
||||
}
|
||||
|
||||
// Open the databases on the second node, set 'sync' flag so that
|
||||
// the second peer fetches the db manifest from the network
|
||||
options = Object.assign({}, options, { sync: true })
|
||||
for (let [index, dbInterface] of databaseInterfaces.entries()) {
|
||||
const address = localDatabases[index].address.toString()
|
||||
const db = await dbInterface.open(orbitdb2, address, options)
|
||||
remoteDatabases.push(db)
|
||||
}
|
||||
|
||||
// Wait for the peers to connect
|
||||
await waitForPeers(ipfs1, [orbitdb2.id], localDatabases[0].address.toString())
|
||||
await waitForPeers(ipfs1, [orbitdb2.id], localDatabases[0].address.toString())
|
||||
|
||||
console.log("Peers connected")
|
||||
})
|
||||
|
||||
afterEach(async () => {
|
||||
for (let db of remoteDatabases)
|
||||
await db.drop()
|
||||
|
||||
for (let db of localDatabases)
|
||||
await db.drop()
|
||||
})
|
||||
|
||||
it('replicates multiple open databases', async () => {
|
||||
const entryCount = 100
|
||||
const entryArr = []
|
||||
|
||||
// Create an array that we use to create the db entries
|
||||
for (let i = 1; i < entryCount + 1; i ++)
|
||||
entryArr.push(i)
|
||||
|
||||
// Result state,
|
||||
// we count how many times 'replicated' event was fired per db
|
||||
let replicated = {}
|
||||
localDatabases.forEach(db => {
|
||||
replicated[db.address.toString()] = 0
|
||||
})
|
||||
|
||||
// Listen for the updates from remote peers
|
||||
remoteDatabases.forEach(db => {
|
||||
db.events.on('replicated', (address) => {
|
||||
replicated[address] += 1
|
||||
})
|
||||
})
|
||||
|
||||
// Write entries to each database
|
||||
console.log("Writing to databases")
|
||||
databaseInterfaces.forEach((dbInterface, index) => {
|
||||
const db = localDatabases[index]
|
||||
mapSeries(entryArr, val => dbInterface.write(db, val))
|
||||
})
|
||||
|
||||
// Function to check if all databases have been replicated,
|
||||
// we calculate this by checking number of 'replicated' events fired
|
||||
const allReplicated = () => {
|
||||
return remoteDatabases.every(db => db._oplog.length === entryCount)
|
||||
}
|
||||
|
||||
console.log("Waiting for replication to finish")
|
||||
|
||||
return new Promise((resolve, reject) => {
|
||||
const interval = setInterval(() => {
|
||||
if (allReplicated()) {
|
||||
clearInterval(interval)
|
||||
// Verify that the databases contain all the right entries
|
||||
databaseInterfaces.forEach((dbInterface, index) => {
|
||||
const db = remoteDatabases[index]
|
||||
const result = dbInterface.query(db)
|
||||
assert.equal(result, entryCount)
|
||||
assert.equal(db._oplog.length, entryCount)
|
||||
})
|
||||
resolve()
|
||||
}
|
||||
}, 500)
|
||||
})
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user