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

Commit e232d8c

Browse files
authored
feat: modularise tests by command, add tools to skip and only (#290)
BREAKING CHANGE: Consumers of this test suite now have fine grained control over what tests are run. Tests can now be skipped and "onlyed" (run only specific tests). This can be done on a test, command and sub-system level. See the updated usage guide for instructions: https://github.com/ipfs/interface-ipfs-core/blob/master/README.md#usage. This means that tests skips depending on implementation (e.g. go/js), environment (e.g. node/browser) or platform (e.g. macOS/linux/windows) that were previously present in this suite have been removed. Consumers of this library should add their own skips based on the implementation that's being tested and the environment/platform that the tests are running on. The following other breaking changes have been made: 1. The common object passed to test suites has changed. It must now be a function that returns a common object (same shape and functions as before). 2. The `ipfs.ls` tests (not MFS `ipfs.files.ls`) is now a root level suite. You'll need to import it and use like `tests.ls(createCommon)` to have those tests run. 3. The `generic` suite (an alias to `miscellaneous`) has been removed. See #290 for more details. License: MIT Signed-off-by: Alan Shaw <alan@tableflip.io>
1 parent 7617e55 commit e232d8c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+8407
-5860
lines changed

README.md

+72-10
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ Include this badge in your readme if you make a new module that implements inter
5252
## Install
5353

5454
In JavaScript land:
55+
5556
```js
5657
npm install interface-ipfs-core
5758
```
@@ -68,20 +69,81 @@ In Go land:
6869

6970
Install `interface-ipfs-core` as one of the dependencies of your project and as a test file. Then, using `mocha` (for Node.js) or a test runner with compatible API, do:
7071

71-
```
72-
var test = require('interface-ipfs-core')
73-
74-
var common = {
75-
setup: function (cb) {
76-
cb(null, IPFSFactory)
72+
```js
73+
const tests = require('interface-ipfs-core')
74+
75+
// Create common setup and teardown
76+
const createCommon = () => ({
77+
// Do some setup common to all tests
78+
setup (cb) {
79+
// Must call back with an "IPFS factory", an object with a `spawnNode` method
80+
cb(null, {
81+
// Use ipfsd-ctl or other to spawn an IPFS node for testing
82+
spawnNode (cb) { /* ... */ }
83+
})
7784
},
78-
teardown: function (cb) {
85+
// Dispose of nodes created by the IPFS factory and any other teardown
86+
teardown (cb) {
7987
cb()
8088
}
81-
}
89+
})
90+
91+
tests.block(createCommon)
92+
tests.config(createCommon)
93+
tests.dag(createCommon)
94+
// ...etc. (see js/src/index.js)
95+
```
96+
97+
#### Running tests by command
98+
99+
```js
100+
tests.repo.version(createCommon)
101+
```
102+
103+
#### Skipping tests
104+
105+
```js
106+
tests.repo.gc(createCommon, { skip: true }) // pass an options object to skip these tests
107+
108+
// OR, at the subsystem level
109+
110+
// skips ALL the repo.gc tests
111+
tests.repo(createCommon, { skip: ['gc'] })
112+
// skips ALL the object.patch.addLink tests
113+
tests.object(createCommon, { skip: ['patch.addLink'] })
114+
```
115+
116+
##### Skipping specific tests
117+
118+
```js
119+
tests.repo.gc(createCommon, { skip: ['should do a thing'] }) // named test(s) to skip
120+
121+
// OR, at the subsystem level
122+
123+
tests.repo(createCommon, { skip: ['should do a thing'] })
124+
```
125+
126+
#### Running only some tests
127+
128+
```js
129+
tests.repo.gc(createCommon, { only: true }) // pass an options object to run only these tests
130+
131+
// OR, at the subsystem level
132+
133+
// runs only ALL the repo.gc tests
134+
tests.repo(createCommon, { only: ['gc'] })
135+
// runs only ALL the object.patch.addLink tests
136+
tests.object(createCommon, { only: ['patch.addLink'] })
137+
```
138+
139+
##### Running only specific tests
140+
141+
```js
142+
tests.repo.gc(createCommon, { only: ['should do a thing'] }) // only run these named test(s)
143+
144+
// OR, at the subsystem level
82145

83-
// use all of the test suits
84-
test.all(common)
146+
tests.repo(createCommon, { only: ['should do a thing'] })
85147
```
86148

87149
### Go

js/src/bitswap.js

-144
This file was deleted.

js/src/bitswap/index.js

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

js/src/bitswap/stat.js

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
/* eslint-env mocha */
2+
'use strict'
3+
4+
const waterfall = require('async/waterfall')
5+
const { getDescribe, getIt, expect } = require('../utils/mocha')
6+
const { expectIsBitswap } = require('../stats/utils')
7+
8+
module.exports = (createCommon, options) => {
9+
const describe = getDescribe(options)
10+
const it = getIt(options)
11+
const common = createCommon()
12+
13+
describe('.bitswap.stat', () => {
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 get bitswap stats', (done) => {
34+
ipfs.bitswap.stat((err, res) => {
35+
expectIsBitswap(err, res)
36+
done()
37+
})
38+
})
39+
40+
it('should get bitswap stats (promised)', () => {
41+
return ipfs.bitswap.stat().then((res) => {
42+
expectIsBitswap(null, res)
43+
})
44+
})
45+
46+
it('should not get bitswap stats when offline', function (done) {
47+
this.timeout(60 * 1000)
48+
49+
waterfall([
50+
(cb) => createCommon().setup(cb),
51+
(factory, cb) => factory.spawnNode(cb),
52+
(node, cb) => node.stop((err) => cb(err, node))
53+
], (err, node) => {
54+
expect(err).to.not.exist()
55+
node.bitswap.wantlist((err) => {
56+
expect(err).to.exist()
57+
done()
58+
})
59+
})
60+
})
61+
})
62+
}

js/src/bitswap/unwant.js

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
/* eslint-env mocha */
2+
'use strict'
3+
4+
const waterfall = require('async/waterfall')
5+
const { spawnNodesWithId } = require('../utils/spawn')
6+
const { getDescribe, getIt, expect } = require('../utils/mocha')
7+
const { waitForWantlistKey } = require('./utils')
8+
9+
module.exports = (createCommon, options) => {
10+
const describe = getDescribe(options)
11+
const it = getIt(options)
12+
const common = createCommon()
13+
14+
describe('.bitswap.unwant', () => {
15+
let ipfsA
16+
let ipfsB
17+
const key = 'QmUBdnXXPyoDFXj3Hj39dNJ5VkN3QFRskXxcGaYFBB8CNR'
18+
19+
before(function (done) {
20+
// CI takes longer to instantiate the daemon, so we need to increase the
21+
// timeout for the before step
22+
this.timeout(60 * 1000)
23+
24+
common.setup((err, factory) => {
25+
expect(err).to.not.exist()
26+
27+
spawnNodesWithId(2, factory, (err, nodes) => {
28+
expect(err).to.not.exist()
29+
30+
ipfsA = nodes[0]
31+
ipfsB = nodes[1]
32+
33+
// Add key to the wantlist for ipfsB
34+
ipfsB.block.get(key, () => {})
35+
36+
ipfsA.swarm.connect(ipfsB.peerId.addresses[0], done)
37+
})
38+
})
39+
})
40+
41+
after((done) => common.teardown(done))
42+
43+
it('should remove a key from the wantlist', (done) => {
44+
waitForWantlistKey(ipfsB, key, (err) => {
45+
expect(err).to.not.exist()
46+
47+
ipfsB.bitswap.unwant(key, (err) => {
48+
expect(err).to.not.exist()
49+
50+
ipfsB.bitswap.wantlist((err, list) => {
51+
expect(err).to.not.exist()
52+
expect(list.Keys.every(k => k['/'] !== key)).to.equal(true)
53+
done()
54+
})
55+
})
56+
})
57+
})
58+
59+
it('should not remove a key from the wantlist when offline', function (done) {
60+
this.timeout(60 * 1000)
61+
62+
waterfall([
63+
(cb) => createCommon().setup(cb),
64+
(factory, cb) => factory.spawnNode(cb),
65+
(node, cb) => node.stop((err) => cb(err, node))
66+
], (err, node) => {
67+
expect(err).to.not.exist()
68+
node.bitswap.wantlist((err) => {
69+
expect(err).to.exist()
70+
done()
71+
})
72+
})
73+
})
74+
})
75+
}

0 commit comments

Comments
 (0)