mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-03-30 15:08:28 +00:00
351 lines
9.4 KiB
JavaScript
351 lines
9.4 KiB
JavaScript
import { deepStrictEqual, strictEqual } from 'assert'
|
|
import mapSeries from 'p-map-series'
|
|
import rimraf from 'rimraf'
|
|
import { Log, Entry } from '../../src/oplog/index.js'
|
|
import { EventStore, Database } from '../../src/db/index.js'
|
|
import { IPFSBlockStorage, LevelStorage } from '../../src/storage/index.js'
|
|
import { config, testAPIs, startIpfs, stopIpfs } from 'orbit-db-test-utils'
|
|
import { createTestIdentities, cleanUpTestIdentities } from '../fixtures/orbit-db-identity-keys.js'
|
|
|
|
const { sync: rmrf } = rimraf
|
|
|
|
const OpLog = { Log, Entry, IPFSBlockStorage, LevelStorage }
|
|
|
|
Object.keys(testAPIs).forEach((IPFS) => {
|
|
describe('EventStore Database (' + IPFS + ')', function () {
|
|
this.timeout(config.timeout * 2)
|
|
|
|
let ipfsd
|
|
let ipfs
|
|
let keystore, signingKeyStore
|
|
let accessController
|
|
let identities1
|
|
let testIdentity1
|
|
let db
|
|
|
|
const databaseId = 'eventstore-AAA'
|
|
|
|
before(async () => {
|
|
// Start two IPFS instances
|
|
ipfsd = await startIpfs(IPFS, config.daemon1)
|
|
ipfs = ipfsd.api
|
|
|
|
const [identities, testIdentities] = await createTestIdentities(ipfs)
|
|
identities1 = identities[0]
|
|
testIdentity1 = testIdentities[0]
|
|
|
|
rmrf(testIdentity1.id)
|
|
})
|
|
|
|
after(async () => {
|
|
await cleanUpTestIdentities([identities1])
|
|
|
|
if (ipfsd) {
|
|
await stopIpfs(ipfsd)
|
|
}
|
|
if (keystore) {
|
|
await keystore.close()
|
|
}
|
|
if (signingKeyStore) {
|
|
await signingKeyStore.close()
|
|
}
|
|
if (testIdentity1) {
|
|
rmrf(testIdentity1.id)
|
|
}
|
|
})
|
|
|
|
beforeEach(async () => {
|
|
db = await EventStore({ OpLog, Database, ipfs, identity: testIdentity1, databaseId, accessController })
|
|
})
|
|
|
|
afterEach(async () => {
|
|
if (db) {
|
|
await db.drop()
|
|
await db.close()
|
|
}
|
|
})
|
|
|
|
it('creates an event store', async () => {
|
|
strictEqual(db.databaseId, databaseId)
|
|
strictEqual(db.type, 'eventstore')
|
|
})
|
|
|
|
it('puts an event', async () => {
|
|
const expected = 'init'
|
|
|
|
const hash = await db.put(null, expected)
|
|
|
|
const actual = await db.get(hash)
|
|
strictEqual(actual, expected)
|
|
})
|
|
|
|
it('gets an event', async () => {
|
|
const expected = 'init'
|
|
|
|
const hash = await db.add(expected)
|
|
|
|
const actual = await db.get(hash)
|
|
strictEqual(actual, expected)
|
|
})
|
|
|
|
it('returns all events', async () => {
|
|
const events = [
|
|
'init',
|
|
true,
|
|
'hello',
|
|
'friend',
|
|
'12345',
|
|
'empty',
|
|
'friend33'
|
|
]
|
|
|
|
for (const record of events) {
|
|
await db.add(record)
|
|
}
|
|
|
|
const all = await db.all()
|
|
|
|
deepStrictEqual(all, events)
|
|
})
|
|
|
|
describe('Iterator Options', () => {
|
|
let hashes = []
|
|
const last = arr => arr[arr.length - 1]
|
|
const first = arr => arr[0]
|
|
|
|
beforeEach(async () => {
|
|
hashes = []
|
|
hashes = await mapSeries([0, 1, 2, 3, 4], (i) => db.add('hello' + i))
|
|
})
|
|
|
|
describe('amount', () => {
|
|
it('returns one item', async () => {
|
|
const expected = ['hello4']
|
|
|
|
const all = []
|
|
for await (const record of db.iterator({ amount: 1 })) {
|
|
all.unshift(record)
|
|
}
|
|
|
|
strictEqual(all.length, 1)
|
|
deepStrictEqual(all, expected)
|
|
})
|
|
|
|
it('returns two items', async () => {
|
|
const expected = ['hello3', 'hello4']
|
|
|
|
const all = []
|
|
for await (const record of db.iterator({ amount: 2 })) {
|
|
all.unshift(record)
|
|
}
|
|
|
|
strictEqual(all.length, 2)
|
|
deepStrictEqual(all, expected)
|
|
})
|
|
|
|
it('returns three items', async () => {
|
|
const expected = ['hello2', 'hello3', 'hello4']
|
|
|
|
const all = []
|
|
for await (const record of db.iterator({ amount: 3 })) {
|
|
all.unshift(record)
|
|
}
|
|
|
|
strictEqual(all.length, 3)
|
|
deepStrictEqual(all, expected)
|
|
})
|
|
|
|
it('sets \'amount\' greater than items available', async () => {
|
|
const expected = ['hello0', 'hello1', 'hello2', 'hello3', 'hello4']
|
|
|
|
const all = []
|
|
for await (const record of db.iterator({ amount: 100 })) {
|
|
all.unshift(record)
|
|
}
|
|
|
|
strictEqual(all.length, 5)
|
|
deepStrictEqual(all, expected)
|
|
})
|
|
|
|
it('sets \'amount\' to 0', async () => {
|
|
const expected = []
|
|
|
|
const all = []
|
|
for await (const record of db.iterator({ amount: 0 })) {
|
|
all.unshift(record)
|
|
}
|
|
|
|
strictEqual(all.length, 0)
|
|
deepStrictEqual(all, expected)
|
|
})
|
|
})
|
|
|
|
describe('lt', () => {
|
|
it('returns all items less than head', async () => {
|
|
const expected = ['hello0', 'hello1', 'hello2', 'hello3']
|
|
|
|
const all = []
|
|
for await (const record of db.iterator({ lt: last(hashes) })) {
|
|
all.unshift(record)
|
|
}
|
|
|
|
strictEqual(all.length, 4)
|
|
deepStrictEqual(all, expected)
|
|
})
|
|
|
|
it('returns one item less than head', async () => {
|
|
const expected = ['hello3']
|
|
|
|
const all = []
|
|
for await (const record of db.iterator({ lt: last(hashes), amount: 1 })) {
|
|
all.unshift(record)
|
|
}
|
|
|
|
strictEqual(all.length, 1)
|
|
deepStrictEqual(all, expected)
|
|
})
|
|
|
|
it('returns two items less than head', async () => {
|
|
const expected = ['hello2', 'hello3']
|
|
|
|
const all = []
|
|
for await (const record of db.iterator({ lt: last(hashes), amount: 2 })) {
|
|
all.unshift(record)
|
|
}
|
|
|
|
strictEqual(all.length, 2)
|
|
deepStrictEqual(all, expected)
|
|
})
|
|
})
|
|
|
|
describe('lte', () => {
|
|
it('returns all items less or equal to head', async () => {
|
|
const expected = ['hello0', 'hello1', 'hello2', 'hello3', 'hello4']
|
|
|
|
const all = []
|
|
for await (const record of db.iterator({ lte: last(hashes) })) {
|
|
all.unshift(record)
|
|
}
|
|
|
|
strictEqual(all.length, 5)
|
|
deepStrictEqual(all, expected)
|
|
})
|
|
|
|
it('returns one item less than or equal to head', async () => {
|
|
const expected = ['hello4']
|
|
|
|
const all = []
|
|
for await (const record of db.iterator({ lte: last(hashes), amount: 1 })) {
|
|
all.unshift(record)
|
|
}
|
|
|
|
strictEqual(all.length, 1)
|
|
deepStrictEqual(all, expected)
|
|
})
|
|
|
|
it('returns two items less than or equal to head', async () => {
|
|
const expected = ['hello3', 'hello4']
|
|
|
|
const all = []
|
|
for await (const record of db.iterator({ lte: last(hashes), amount: 2 })) {
|
|
all.unshift(record)
|
|
}
|
|
|
|
strictEqual(all.length, 2)
|
|
deepStrictEqual(all, expected)
|
|
})
|
|
})
|
|
|
|
describe('gt', () => {
|
|
it('returns all items greater than root', async () => {
|
|
const expected = ['hello1', 'hello2', 'hello3', 'hello4']
|
|
|
|
const all = []
|
|
for await (const record of db.iterator({ gt: first(hashes) })) {
|
|
all.unshift(record)
|
|
}
|
|
|
|
strictEqual(all.length, 4)
|
|
deepStrictEqual(all, expected)
|
|
})
|
|
|
|
it('returns one item greater than root', async () => {
|
|
const expected = ['hello1']
|
|
|
|
const all = []
|
|
for await (const record of db.iterator({ gt: first(hashes), amount: 1 })) {
|
|
all.unshift(record)
|
|
}
|
|
|
|
strictEqual(all.length, 1)
|
|
deepStrictEqual(all, expected)
|
|
})
|
|
|
|
it('returns two items greater than root', async () => {
|
|
const expected = ['hello1', 'hello2']
|
|
|
|
const all = []
|
|
for await (const record of db.iterator({ gt: first(hashes), amount: 2 })) {
|
|
all.unshift(record)
|
|
}
|
|
|
|
strictEqual(all.length, 2)
|
|
deepStrictEqual(all, expected)
|
|
})
|
|
})
|
|
|
|
describe('gte', () => {
|
|
it('returns all items greater than or equal to root', async () => {
|
|
const expected = ['hello0', 'hello1', 'hello2', 'hello3', 'hello4']
|
|
|
|
const all = []
|
|
for await (const record of db.iterator({ gte: first(hashes) })) {
|
|
all.unshift(record)
|
|
}
|
|
|
|
strictEqual(all.length, 5)
|
|
deepStrictEqual(all, expected)
|
|
})
|
|
|
|
it('returns one item greater than or equal to root', async () => {
|
|
const expected = ['hello0']
|
|
|
|
const all = []
|
|
for await (const record of db.iterator({ gte: first(hashes), amount: 1 })) {
|
|
all.unshift(record)
|
|
}
|
|
|
|
strictEqual(all.length, 1)
|
|
deepStrictEqual(all, expected)
|
|
})
|
|
|
|
it('returns two items greater than or equal to root', async () => {
|
|
const expected = ['hello0', 'hello1']
|
|
|
|
const all = []
|
|
for await (const record of db.iterator({ gte: first(hashes), amount: 2 })) {
|
|
all.unshift(record)
|
|
}
|
|
|
|
strictEqual(all.length, 2)
|
|
deepStrictEqual(all, expected)
|
|
})
|
|
})
|
|
|
|
describe('range', async () => {
|
|
it('returns all items greater than root and less than head', async () => {
|
|
const expected = ['hello1', 'hello2', 'hello3']
|
|
|
|
const all = []
|
|
for await (const record of db.iterator({ gt: first(hashes), lt: last(hashes) })) {
|
|
all.unshift(record)
|
|
}
|
|
|
|
strictEqual(all.length, 3)
|
|
deepStrictEqual(all, expected)
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|