mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-03-30 15:08:28 +00:00
101 lines
2.8 KiB
JavaScript
101 lines
2.8 KiB
JavaScript
'use strict'
|
|
|
|
const assert = require('assert')
|
|
const rmrf = require('rimraf')
|
|
const OrbitDB = require('../src/OrbitDB')
|
|
const CustomCache = require('orbit-db-cache')
|
|
// Include test utilities
|
|
const {
|
|
config,
|
|
startIpfs,
|
|
stopIpfs,
|
|
testAPIs,
|
|
CustomTestCache
|
|
} = require('./utils')
|
|
|
|
const dbPath = './orbitdb/tests/customKeystore'
|
|
const ipfsPath = './orbitdb/tests/customKeystore/ipfs'
|
|
|
|
const databases = [
|
|
{
|
|
type: 'eventlog',
|
|
create: (orbitdb, name, options) => orbitdb.eventlog(name, options),
|
|
tryInsert: (db) => db.add('hello'),
|
|
query: (db) => db.iterator({ limit: -1 }).collect(),
|
|
getTestValue: (db) => db.iterator({ limit: -1 }).collect()[0].payload.value,
|
|
expectedValue: 'hello',
|
|
},
|
|
{
|
|
type: 'feed',
|
|
create: (orbitdb, name, options) => orbitdb.feed(name, options),
|
|
tryInsert: (db) => db.add('hello'),
|
|
query: (db) => db.iterator({ limit: -1 }).collect(),
|
|
getTestValue: (db) => db.iterator({ limit: -1 }).collect()[0].payload.value,
|
|
expectedValue: 'hello',
|
|
},
|
|
{
|
|
type: 'key-value',
|
|
create: (orbitdb, name, options) => orbitdb.kvstore(name, options),
|
|
tryInsert: (db) => db.set('one', 'hello'),
|
|
query: (db) => [],
|
|
getTestValue: (db) => db.get('one'),
|
|
expectedValue: 'hello',
|
|
},
|
|
{
|
|
type: 'documents',
|
|
create: (orbitdb, name, options) => orbitdb.docstore(name, options),
|
|
tryInsert: (db) => db.put({ _id: 'hello world', doc: 'all the things'}),
|
|
query: (db) => [],
|
|
getTestValue: (db) => db.get('hello world'),
|
|
expectedValue: [{ _id: 'hello world', doc: 'all the things'}],
|
|
},
|
|
{
|
|
type: 'counter',
|
|
create: (orbitdb, name, options) => orbitdb.counter(name, options),
|
|
tryInsert: (db) => db.inc(8),
|
|
query: (db) => [],
|
|
getTestValue: (db) => db.value,
|
|
expectedValue: 8,
|
|
},
|
|
]
|
|
|
|
Object.keys(testAPIs).forEach(API => {
|
|
describe(`orbit-db - Use a Custom Cache (${API})`, function() {
|
|
this.timeout(20000)
|
|
|
|
let ipfsd, ipfs, orbitdb1
|
|
|
|
before(async () => {
|
|
config.daemon1.repo = ipfsPath
|
|
rmrf.sync(config.daemon1.repo)
|
|
rmrf.sync(dbPath)
|
|
ipfsd = await startIpfs(API, config.daemon1)
|
|
ipfs = ipfsd.api
|
|
orbitdb1 = new OrbitDB(ipfs, dbPath + '/1', {
|
|
cache: CustomTestCache
|
|
})
|
|
})
|
|
|
|
after(async () => {
|
|
if(orbitdb1)
|
|
await orbitdb1.stop()
|
|
|
|
if (ipfsd)
|
|
await stopIpfs(ipfsd)
|
|
})
|
|
|
|
describe('allows orbit to use a custom cache with different store types', function() {
|
|
databases.forEach(async (database) => {
|
|
it(database.type + ' allows custom keystore', async () => {
|
|
const db1 = await database.create(orbitdb1, 'custom-keystore')
|
|
await database.tryInsert(db1)
|
|
|
|
assert.deepEqual(database.getTestValue(db1), database.expectedValue)
|
|
|
|
await db1.close()
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|