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

Commit 142a373

Browse files
committed
feat: add test for listing config profiles
This is only in js-IPFS for the time being
1 parent b91c0c8 commit 142a373

File tree

4 files changed

+64
-25
lines changed

4 files changed

+64
-25
lines changed

src/config/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const tests = {
55
get: require('./get'),
66
set: require('./set'),
77
replace: require('./replace'),
8-
profile: require('./profile')
8+
profiles: require('./profiles')
99
}
1010

1111
module.exports = createSuite(tests)

src/config/profile.js src/config/profiles/apply.js

+4-24
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
/* eslint-env mocha */
22
'use strict'
33

4-
const { getDescribe, getIt, expect } = require('../utils/mocha')
4+
const { getDescribe, getIt, expect } = require('../../utils/mocha')
55
const waterfall = require('async/waterfall')
66

77
module.exports = (createCommon, options) => {
88
const describe = getDescribe(options)
99
const it = getIt(options)
1010
const common = createCommon()
1111

12-
describe('.config.profile', function () {
12+
describe('.config.profiles.apply', function () {
1313
this.timeout(30 * 1000)
1414
let ipfs
1515

@@ -30,30 +30,10 @@ module.exports = (createCommon, options) => {
3030

3131
after((done) => common.teardown(done))
3232

33-
it('should output changes but not save them for dry run', (done) => {
34-
let config
35-
waterfall([
36-
(cb) => ipfs.config.get(cb),
37-
(_config, cb) => {
38-
config = _config
39-
ipfs.config.profile('lowpower', { dryRun: true }, cb)
40-
},
41-
(diff, cb) => {
42-
expect(diff.oldCfg.Swarm.ConnMgr.LowWater).to.not.equal(diff.newCfg.Swarm.ConnMgr.LowWater)
43-
ipfs.config.get(cb)
44-
},
45-
(newConfig, cb) => {
46-
expect(newConfig.Swarm.ConnMgr.LowWater).to.equal(config.Swarm.ConnMgr.LowWater)
47-
cb()
48-
}
49-
], done)
50-
})
51-
52-
it('should set a config profile', (done) => {
33+
it('should apply a config profile', (done) => {
5334
let diff
5435
waterfall([
55-
(cb) => ipfs.config.get(cb),
56-
(config, cb) => ipfs.config.profile('lowpower', cb),
36+
(cb) => ipfs.config.profiles.apply('lowpower', cb),
5737
(_diff, cb) => {
5838
diff = _diff
5939
expect(diff.oldCfg.Swarm.ConnMgr.LowWater).to.not.equal(diff.newCfg.Swarm.ConnMgr.LowWater)

src/config/profiles/index.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
'use strict'
2+
const { createSuite } = require('../../utils/suite')
3+
4+
const tests = {
5+
list: require('./list'),
6+
apply: require('./apply')
7+
}
8+
9+
module.exports = createSuite(tests)

src/config/profiles/list.js

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
/* eslint-env mocha */
2+
'use strict'
3+
4+
const { getDescribe, getIt, expect } = require('../../utils/mocha')
5+
const waterfall = require('async/waterfall')
6+
7+
module.exports = (createCommon, options) => {
8+
const describe = getDescribe(options)
9+
const it = getIt(options)
10+
const common = createCommon()
11+
12+
describe('.config.profiles.list', function () {
13+
this.timeout(30 * 1000)
14+
let ipfs
15+
16+
before(function (done) {
17+
// CI takes longer to instantiate the daemon, so we need to increase the
18+
// timeout for the before step
19+
this.timeout(60 * 1000)
20+
21+
common.setup((err, factory) => {
22+
expect(err).to.not.exist()
23+
factory.spawnNode((err, node) => {
24+
expect(err).to.not.exist()
25+
ipfs = node
26+
done()
27+
})
28+
})
29+
})
30+
31+
after((done) => common.teardown(done))
32+
33+
it('should list config profiles', (done) => {
34+
waterfall([
35+
(cb) => ipfs.config.profiles.list(cb),
36+
(profiles, cb) => {
37+
expect(profiles).to.be.an('array')
38+
expect(profiles).not.to.be.empty()
39+
40+
profiles.forEach(profile => {
41+
expect(profile.name).to.be.a('string')
42+
expect(profile.description).to.be.a('string')
43+
})
44+
45+
cb()
46+
}
47+
], done)
48+
})
49+
})
50+
}

0 commit comments

Comments
 (0)