mirror of https://codeberg.org/pzp/pzp-db.git
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
const test = require('tape')
|
|
const path = require('path')
|
|
const os = require('os')
|
|
const rimraf = require('rimraf')
|
|
const SecretStack = require('secret-stack')
|
|
const caps = require('ssb-caps')
|
|
const FeedV1 = require('../lib/feed-v1')
|
|
const p = require('util').promisify
|
|
const { generateKeypair } = require('./util')
|
|
|
|
const DIR = path.join(os.tmpdir(), 'ppppp-db-add')
|
|
rimraf.sync(DIR)
|
|
|
|
test('add()', async (t) => {
|
|
const keys = generateKeypair('alice')
|
|
const peer = SecretStack({ appKey: caps.shs })
|
|
.use(require('../lib'))
|
|
.use(require('ssb-box'))
|
|
.call(null, { keys, path: DIR })
|
|
|
|
await peer.db.loaded()
|
|
|
|
const rootMsg = FeedV1.createRoot(keys, 'post')
|
|
const rootHash = FeedV1.getMsgHash(rootMsg)
|
|
|
|
const recRoot = await p(peer.db.add)(rootMsg, rootHash)
|
|
t.equals(recRoot.msg.metadata.size, 0, 'root msg added')
|
|
const tangle = new FeedV1.Tangle(rootHash)
|
|
tangle.add(recRoot.hash, recRoot.msg)
|
|
|
|
const inputMsg = FeedV1.create({
|
|
keys,
|
|
type: 'post',
|
|
content: { text: 'This is the first post!' },
|
|
tangles: {
|
|
[rootHash]: tangle,
|
|
},
|
|
})
|
|
|
|
const rec = await p(peer.db.add)(inputMsg, rootHash)
|
|
t.equal(rec.msg.content.text, 'This is the first post!')
|
|
|
|
await p(peer.close)(true)
|
|
})
|