interface-ipfs-core
Version:
A test suite and interface you can use to implement a IPFS core interface.
63 lines (48 loc) • 1.74 kB
JavaScript
/* eslint-env mocha */
import { fromString as uint8ArrayFromString } from 'uint8arrays/from-string'
import { CID } from 'multiformats/cid'
import all from 'it-all'
import { expect } from 'aegir/chai'
import { getDescribe, getIt } from '../utils/mocha.js'
import { ensureReachable } from './utils.js'
/**
* @typedef {import('ipfsd-ctl').Factory} Factory
*/
/**
* @param {Factory} factory
* @param {object} options
*/
export function testProvide (factory, options) {
const describe = getDescribe(options)
const it = getIt(options)
describe('.dht.provide', function () {
this.timeout(80 * 1000)
/** @type {import('ipfs-core-types').IPFS} */
let ipfs
before(async () => {
ipfs = (await factory.spawn()).api
const nodeB = (await factory.spawn()).api
await ensureReachable(ipfs, nodeB)
})
after(() => factory.clean())
it('should provide local CID', async () => {
const res = await ipfs.add(uint8ArrayFromString('test'))
await all(ipfs.dht.provide(res.cid))
})
it('should not provide if block not found locally', () => {
const cid = CID.parse('Qmd7qZS4T7xXtsNFdRoK1trfMs5zU94EpokQ9WFtxdPxsZ')
return expect(all(ipfs.dht.provide(cid))).to.eventually.be.rejected
.and.be.an.instanceOf(Error)
.and.have.property('message')
.that.include('not found locally')
})
it('should provide a CIDv1', async () => {
const res = await ipfs.add(uint8ArrayFromString('test'), { cidVersion: 1 })
await all(ipfs.dht.provide(res.cid))
})
it('should error on non CID arg', async () => {
// @ts-expect-error invalid arg
return expect(all(ipfs.dht.provide({}))).to.eventually.be.rejected()
})
})
}