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

Commit 803a3ef

Browse files
hacdiasdaviddias
authored andcommitted
feat: REPO spec (#207)
1 parent 7431098 commit 803a3ef

File tree

4 files changed

+170
-1
lines changed

4 files changed

+170
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ test.all(common)
8282
8383
## API
8484

85-
In order to be considered "valid", an IPFS core implementation must expose the API described in [/API](/API). You can also use this loose spec as documentation for consuming the core APIs. Here is an outline of the contents of that directory:
85+
In order to be considered "valid", an IPFS core implementation must expose the API described in [/SPEC](/SPEC). You can also use this loose spec as documentation for consuming the core APIs. Here is an outline of the contents of that directory:
8686

8787
- **Files**
8888
- [files](/SPEC/FILES.md)
@@ -102,6 +102,7 @@ In order to be considered "valid", an IPFS core implementation must expose the
102102
- [Miscellaneous](/SPEC/MISCELLANEOUS.md)
103103
- [config](/SPEC/CONFIG.md)
104104
- [stats](/SPEC/STATS.md)
105+
- [repo](/SPEC/REPO.md)
105106

106107
## Contribute
107108

SPEC/REPO.md

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
Repo API
2+
=======
3+
4+
#### `gc`
5+
6+
> Perform a garbage collection sweep on the repo.
7+
8+
##### `Go` **WIP**
9+
10+
##### `JavaScript` - ipfs.repo.gc([options, callback])
11+
12+
Where:
13+
14+
- `options` is an object that contains following properties
15+
- `quiet` writes a minimal output.
16+
- `stream-errors` stream errors.
17+
18+
`callback` must follow `function (err, res) {}` signature, where `err` is an Error if the operation was not successful.
19+
20+
If no `callback` is passed, a promise is returned.
21+
22+
**Example:**
23+
24+
```JavaScript
25+
ipfs.repo.gc((err, res) => console.log(res))
26+
```
27+
28+
#### `stat`
29+
30+
> Get stats for the currently used repo.
31+
32+
##### `Go` **WIP**
33+
34+
##### `JavaScript` - ipfs.repo.stat([options, callback])
35+
36+
Where:
37+
38+
- `options` is an object that contains following properties
39+
- `human` a Boolean value to output `repoSize` in MiB.
40+
41+
`callback` must follow `function (err, stats) {}` signature, where `err` is an Error if the operation was not successful and `stats` is an object containing the following keys:
42+
43+
- `numObjects`
44+
- `repoSize`
45+
- `repoPath`
46+
- `version`
47+
- `storageMax`
48+
49+
If no `callback` is passed, a promise is returned.
50+
51+
**Example:**
52+
53+
```JavaScript
54+
ipfs.repo.stat((err, stats) => console.log(stats))
55+
56+
// { numObjects: 15,
57+
// repoSize: 64190,
58+
// repoPath: 'C:\\Users\\henri\\AppData\\Local\\Temp\\ipfs_687c6eb3da07d3b16fe3c63ce17560e9',
59+
// version: 'fs-repo@6',
60+
// storageMax: 10000000000 }
61+
```
62+
63+
#### `version`
64+
65+
> Show the repo version.
66+
67+
##### `Go` **WIP**
68+
69+
##### `JavaScript` - ipfs.repo.version([callback])
70+
71+
`callback` must follow `function (err, version) {}` signature, where `err` is an Error if the operation was not successful and `version` is a String containing the version.
72+
73+
If no `callback` is passed, a promise is returned.
74+
75+
**Example:**
76+
77+
```JavaScript
78+
ipfs.repo.version((err, version) => console.log(version))
79+
80+
// "6"
81+
```

src/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ exports.dag = require('./dag')
1313
exports.pubsub = require('./pubsub')
1414
exports.key = require('./key')
1515
exports.stats = require('./stats')
16+
exports.repo = require('./repo')

src/repo.js

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
/* eslint-env mocha */
2+
/* eslint max-nested-callbacks: ["error", 8] */
3+
4+
'use strict'
5+
6+
const chai = require('chai')
7+
const dirtyChai = require('dirty-chai')
8+
const expect = chai.expect
9+
chai.use(dirtyChai)
10+
11+
module.exports = (common) => {
12+
describe('.repo', () => {
13+
let ipfs
14+
15+
before(function (done) {
16+
// CI takes longer to instantiate the daemon, so we need to increase the
17+
// timeout for the before step
18+
this.timeout(60 * 1000)
19+
20+
common.setup((err, factory) => {
21+
expect(err).to.not.exist()
22+
factory.spawnNode((err, node) => {
23+
expect(err).to.not.exist()
24+
ipfs = node
25+
done()
26+
})
27+
})
28+
})
29+
30+
after((done) => {
31+
common.teardown(done)
32+
})
33+
34+
it('.version', (done) => {
35+
ipfs.repo.version((err, version) => {
36+
expect(err).to.not.exist()
37+
expect(version).to.exist()
38+
done()
39+
})
40+
})
41+
42+
it('.version Promise', () => {
43+
return ipfs.repo.version().then((version) => {
44+
expect(version).to.exist()
45+
})
46+
})
47+
48+
it('.stat', (done) => {
49+
ipfs.repo.stat((err, stat) => {
50+
expect(err).to.not.exist()
51+
expect(stat).to.exist()
52+
expect(stat).to.have.property('numObjects')
53+
expect(stat).to.have.property('repoSize')
54+
expect(stat).to.have.property('repoPath')
55+
expect(stat).to.have.property('version')
56+
expect(stat).to.have.property('storageMax')
57+
done()
58+
})
59+
})
60+
61+
it('.stat Promise', () => {
62+
return ipfs.repo.stat().then((stat) => {
63+
expect(stat).to.exist()
64+
expect(stat).to.have.property('numObjects')
65+
expect(stat).to.have.property('repoSize')
66+
expect(stat).to.have.property('repoPath')
67+
expect(stat).to.have.property('version')
68+
expect(stat).to.have.property('storageMax')
69+
})
70+
})
71+
72+
it('.gc', (done) => {
73+
ipfs.repo.gc((err, res) => {
74+
expect(err).to.not.exist()
75+
expect(res).to.exist()
76+
done()
77+
})
78+
})
79+
80+
it('.gc Promise', () => {
81+
return ipfs.repo.gc().then((res) => {
82+
expect(res).to.exist()
83+
})
84+
})
85+
})
86+
}

0 commit comments

Comments
 (0)