Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Adopt next aegir #961

Merged
merged 11 commits into from
Sep 8, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions .aegir.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
'use strict'

const parallel = require('async/parallel')
const series = require('async/series')
const createTempRepo = require('./test/utils/create-repo-nodejs.js')
const HTTPAPI = require('./src/http-api')
const leftPad = require('left-pad')

let nodes = []

/*
* spawns a daemon with ports numbers starting in 10 and ending in `num`
*/
function spawnDaemon (num, callback) {
num = leftPad(num, 3, 0)

const config = {
Addresses: {
Swarm: [
`/ip4/127.0.0.1/tcp/10${num}`,
`/ip4/127.0.0.1/tcp/20${num}/ws`
],
API: `/ip4/127.0.0.1/tcp/31${num}`,
Gateway: `/ip4/127.0.0.1/tcp/32${num}`
},
Bootstrap: [],
Discovery: {
MDNS: {
Enabled: false
},
webRTCStar: {
Enabled: false
}
}
}

const daemon = new HTTPAPI(createTempRepo(), config)
nodes.push(daemon)
daemon.start(true, callback)
}

module.exports = {
karma: {
files: [{
Expand All @@ -8,5 +47,21 @@ module.exports = {
served: true,
included: false
}]
},
hooks: {
pre (callback) {
nodes = []
parallel([
(cb) => spawnDaemon(7, cb),
(cb) => spawnDaemon(8, cb),
(cb) => spawnDaemon(12, cb),
(cb) => spawnDaemon(13, cb)
], callback)
},
post (callback) {
series(nodes.map((node) => (cb) => {
setTimeout(() => node.stop(cb), 100)
}), callback)
}
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ test/test-data/go-ipfs-repo/LOG.old

# while testing npm5
package-lock.json
yarn.lock
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ matrix:
script:
- npm run lint
- npm run test
- npm run coverage
- make test

before_script:
Expand Down
3 changes: 3 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
machine:
node:
version: stable
test:
post:
- npm run coverage -- --upload

dependencies:
pre:
Expand Down
8 changes: 4 additions & 4 deletions examples/exchange-files-in-browser/public/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ function onDrop (event) {
let progress = 0

let myReadableStreamBuffer = new streamBuffers.ReadableStreamBuffer({
// frequency: 10, // in milliseconds.
chunkSize: 32048 // in bytes.
// frequency: 10, // in milliseconds.
chunkSize: 32048 // in bytes.
})

node.files.createAddStream((err, stream) => {
Expand Down Expand Up @@ -200,8 +200,8 @@ function onDrop (event) {
if (files && files.length) {
$multihashInput.value = files[0].hash
$filesStatus.innerHTML = files
.map((e) => `Added ${e.path} as ${e.hash}`)
.join('<br>')
.map((e) => `Added ${e.path} as ${e.hash}`)
.join('<br>')
}
})
.catch(onError)
Expand Down
2 changes: 1 addition & 1 deletion examples/traverse-ipld-graphs/get-path-accross-formats.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ createNode((err, ipfs) => {

series([
(cb) => {
const someData = new Buffer('capoeira')
const someData = Buffer.from('capoeira')

dagPB.DAGNode.create(someData, (err, node) => {
if (err) {
Expand Down
2 changes: 1 addition & 1 deletion examples/traverse-ipld-graphs/tree.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ createNode((err, ipfs) => {

series([
(cb) => {
const someData = new Buffer('capoeira')
const someData = Buffer.from('capoeira')

dagPB.DAGNode.create(someData, (err, node) => {
if (err) {
Expand Down
64 changes: 0 additions & 64 deletions gulpfile.js

This file was deleted.

33 changes: 16 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,29 +19,28 @@
"npm": ">=3.0.0"
},
"scripts": {
"lint": "aegir-lint",
"coverage": "gulp coverage",
"test": "gulp test --dom",
"test:node": "npm run test:unit:node",
"test:browser": "npm run test:unit:browser",
"test:unit:node": "gulp test:node",
"test:unit:node:core": "TEST=core npm run test:unit:node",
"test:unit:node:http": "TEST=http npm run test:unit:node",
"test:unit:node:cli": "TEST=cli npm run test:unit:node",
"test:unit:browser": "gulp test:browser",
"lint": "aegir lint",
"coverage": "aegir coverage --timeout 50000",
"build": "aegir build",
"release": "aegir release --no-parallel",
"release-minor": "aegir release --type minor --no-parallel",
"release-major": "aegir release --type major --no-parallel",
"test": "aegir test --no-parallel --timeout 50000",
"test:node": "aegir test --target node --no-parallel --timeout 50000",
"test:browser": "aegir test --target browser --no-parallel",
"test:unit:node": "npm run test:node --no-parallel",
"test:unit:node:core": "aegir test --target node --files test/core/** --no-parallel",
"test:unit:node:http": "aegir test --target node --files test/http/** --no-parallel",
"test:unit:node:cli": "aegir test --target node --files test/cli/** --no-parallel",
"test:unit:browser": "npm run test:browser --no-parallel",
"test:interop": "npm run test:interop:node",
"test:interop:node": "mocha -t 60000 test/interop/node.js",
"test:interop:browser": "mocha -t 60000 test/interop/browser.js",
"test:benchmark": "echo \"Error: no benchmarks yet\" && exit 1",
"test:benchmark:node": "echo \"Error: no benchmarks yet\" && exit 1",
"test:benchmark:node:core": "echo \"Error: no benchmarks yet\" && exit 1",
"test:benchmark:node:http": "echo \"Error: no benchmarks yet\" && exit 1",
"test:benchmark:browser": "echo \"Error: no benchmarks yet\" && exit 1",
"build": "gulp build",
"release": "gulp release",
"release-minor": "gulp release --type minor",
"release-major": "gulp release --type major",
"coverage-publish": "aegir-coverage publish"
"test:benchmark:browser": "echo \"Error: no benchmarks yet\" && exit 1"
},
"pre-commit": [
"lint",
Expand All @@ -61,7 +60,7 @@
},
"homepage": "https://github.com/ipfs/js-ipfs#readme",
"devDependencies": {
"aegir": "^11.0.2",
"aegir": "^12.0.6",
"buffer-loader": "0.0.1",
"chai": "^4.1.2",
"delay": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/bitswap/stat.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = {

stats.Wantlist = stats.Wantlist || []
stats.Wantlist = stats.Wantlist.map((entry) => {
const buf = new Buffer(entry.cid.hash.data)
const buf = Buffer.from(entry.cid.hash.data)
const cid = new CID(entry.cid.version, entry.cid.codec, buf)
return cid.toBaseEncodedString()
})
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/config/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ module.exports = {

function saveConfig (config, next) {
config = utils.isDaemonOn()
? new Buffer(JSON.stringify(config)) : config
? Buffer.from(JSON.stringify(config)) : config

argv.ipfs.config.replace(config, (err) => {
if (err) {
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/pubsub/pub.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = {
builder: {},

handler (argv) {
const data = new Buffer(String(argv.data))
const data = Buffer.from(String(argv.data))

argv.ipfs.pubsub.publish(argv.topic, data, (err) => {
if (err) {
Expand Down
2 changes: 1 addition & 1 deletion src/core/boot.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module.exports = (self) => {
if (err.message.match(/not found/) || // indexeddb
err.message.match(/ENOENT/) || // fs
err.message.match(/No value/) // memory
) {
) {
return cb(null, false)
}
return cb(err)
Expand Down
8 changes: 4 additions & 4 deletions src/core/components/id.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ module.exports = function id (self) {
id: self._peerInfo.id.toB58String(),
publicKey: self._peerInfo.id.pubKey.bytes.toString('base64'),
addresses: self._peerInfo.multiaddrs
.toArray()
.map((ma) => ma.toString())
.filter((ma) => ma.indexOf('ipfs') >= 0)
.sort(),
.toArray()
.map((ma) => ma.toString())
.filter((ma) => ma.indexOf('ipfs') >= 0)
.sort(),
agentVersion: 'js-ipfs',
protocolVersion: '9000'
}))
Expand Down
6 changes: 3 additions & 3 deletions src/core/components/object.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function normalizeMultihash (multihash, enc) {
return multihash
}

return new Buffer(multihash, enc)
return Buffer.from(multihash, enc)
} else if (Buffer.isBuffer(multihash)) {
return multihash
} else {
Expand Down Expand Up @@ -49,7 +49,7 @@ function parseJSONBuffer (buf, callback) {
mh.fromB58String(link.Hash || link.hash || link.multihash)
)
})
data = new Buffer(parsed.Data)
data = Buffer.from(parsed.Data)
} catch (err) {
return callback(new Error('failed to parse JSON: ' + err))
}
Expand Down Expand Up @@ -104,7 +104,7 @@ module.exports = function object (self) {
assert(template === 'unixfs-dir', 'unkown template')
data = (new Unixfs('directory')).marshal()
} else {
data = new Buffer(0)
data = Buffer.alloc(0)
}

DAGNode.create(data, (err, node) => {
Expand Down
4 changes: 2 additions & 2 deletions src/core/components/pubsub.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ module.exports = function pubsub (self) {
}

const peers = Array.from(self._pubsub.peers.values())
.filter((peer) => peer.topics.has(topic))
.map((peer) => peer.info.id.toB58String())
.filter((peer) => peer.topics.has(topic))
.map((peer) => peer.info.id.toB58String())

setImmediate(() => callback(null, peers))
}),
Expand Down
4 changes: 2 additions & 2 deletions src/http-api/resources/object.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ exports.put = {
})
}

file = new Buffer(JSON.stringify(answer))
file = Buffer.from(JSON.stringify(answer))
finished = true
})
} else {
Expand Down Expand Up @@ -190,7 +190,7 @@ exports.put = {

series([
(cb) => {
DAGNode.create(new Buffer(node.Data), node.Links, (err, _node) => {
DAGNode.create(Buffer.from(node.Data), node.Links, (err, _node) => {
if (err) {
return cb(err)
}
Expand Down
2 changes: 1 addition & 1 deletion src/http-api/resources/pubsub.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ exports.publish = {
return reply(new Error('Missing buf'))
}

ipfs.pubsub.publish(topic, new Buffer(String(buf)), (err) => {
ipfs.pubsub.publish(topic, Buffer.from(String(buf)), (err) => {
if (err) {
return reply(new Error(`Failed to publish to topic ${topic}: ${err}`))
}
Expand Down
2 changes: 1 addition & 1 deletion test/cli/block.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe('block', () => runOnAndOff((thing) => {
expect(out).to.eql('QmTwbQs4sGcCiPxV97SpbHS7QgmVg9SiKxcG1AcF1Ly2SL\n')
return ipfs('block get QmTwbQs4sGcCiPxV97SpbHS7QgmVg9SiKxcG1AcF1Ly2SL')
})
.then((out) => expect(out).to.eql('there is no newline at end of this file'))
.then((out) => expect(out).to.eql('there is no newline at end of this file'))
})

it('stat', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/cli/dag.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('dag', () => runOnAndOff.off((thing) => {
// lookup path on eth-block
return ipfs('dag get z43AaGF23fmvRnDP56Ub9WcJCfzSfqtmzNCCvmz5eudT8dtdCDS/parentHash')
}).then((out) => {
let expectHash = new Buffer('c8c0a17305adea9bbb4b98a52d44f0c1478f5c48fc4b64739ee805242501b256', 'hex')
let expectHash = Buffer.from('c8c0a17305adea9bbb4b98a52d44f0c1478f5c48fc4b64739ee805242501b256', 'hex')
expect(out).to.be.eql('0x' + expectHash.toString('hex') + '\n')
})
})
Expand Down
2 changes: 1 addition & 1 deletion test/cli/files.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const runOnAndOff = require('../utils/on-and-off')
describe('files', () => runOnAndOff((thing) => {
let ipfs
const readme = fs.readFileSync(path.join(process.cwd(), '/src/init-files/init-docs/readme'))
.toString('utf-8')
.toString('utf-8')
const recursiveGetDirResults = [
'added QmR56UJmAaZLXLdTT1ALrE9vVqV8soUEekm9BMd4FnuYqV recursive-get-dir/version',
'added QmYE7xo6NxbHEVEHej1yzxijYaNY51BaeKxjXxn6Ssa6Bs recursive-get-dir/init-docs/tour/0.0-intro',
Expand Down
Loading