Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 1db8abe

Browse files
author
Alan Shaw
authored
fix: resolve IPNS recursively test (#507)
name.publish needs at least one other node to publish to. License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
1 parent 2893423 commit 1db8abe

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

src/miscellaneous/resolve.js

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/* eslint-env mocha */
2+
/* eslint max-nested-callbacks: ["error", 5] */
23
'use strict'
34

45
const isIpfs = require('is-ipfs')
56
const loadFixture = require('aegir/fixtures')
67
const hat = require('hat')
78
const multibase = require('multibase')
89
const { spawnNodeWithId } = require('../utils/spawn')
10+
const { connect } = require('../utils/swarm')
911
const { getDescribe, getIt, expect } = require('../utils/mocha')
1012

1113
module.exports = (createCommon, options) => {
@@ -88,11 +90,23 @@ module.exports = (createCommon, options) => {
8890
it('should resolve IPNS link recursively', async function () {
8991
this.timeout(20 * 1000)
9092

93+
// Ensure another node exists for publishing to
94+
await new Promise((resolve, reject) => {
95+
common.setup((err, factory) => {
96+
if (err) return reject(err)
97+
spawnNodeWithId(factory, (err, node) => {
98+
if (err) return reject(err)
99+
const addr = node.peerId.addresses.find((a) => a.includes('127.0.0.1'))
100+
connect(ipfs, addr, resolve)
101+
})
102+
})
103+
})
104+
91105
const [{ path }] = await ipfs.add(Buffer.from('should resolve a record recursive === true'))
92106
const { id: keyId } = await ipfs.key.gen('key-name', { type: 'rsa', size: 2048 })
93107

94108
await ipfs.name.publish(path, { 'allow-offline': true })
95-
await ipfs.name.publish(`/ipns/${nodeId}`, { 'allow-offline': true, key: 'key-name' })
109+
await ipfs.name.publish(`/ipns/${nodeId}`, { 'allow-offline': true, key: 'key-name', resolve: false })
96110

97111
return expect(await ipfs.resolve(`/ipns/${keyId}`, { recursive: true }))
98112
.to.eq(`/ipfs/${path}`)

0 commit comments

Comments
 (0)