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

Commit 0f1c6e8

Browse files
committed
feat(files.add): update tests to new files add API
1 parent a5ee5d2 commit 0f1c6e8

File tree

2 files changed

+46
-38
lines changed

2 files changed

+46
-38
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "interface-ipfs-core",
33
"version": "0.7.2",
44
"description": "A test suite and interface you can use to implement a IPFS core interface.",
5-
"main": "lib/index.js",
5+
"main": "src/index.js",
66
"jsnext:main": "src/index.js",
77
"scripts": {
88
"test": "exit(0)",
@@ -47,4 +47,4 @@
4747
"greenkeeperio-bot <support@greenkeeper.io>",
4848
"nginnever <ginneversource@gmail.com>"
4949
]
50-
}
50+
}

src/files.js

+44-36
Original file line numberDiff line numberDiff line change
@@ -53,21 +53,27 @@ module.exports = (common) => {
5353
describe('.add', () => {
5454
it('stream', (done) => {
5555
const buffered = new Buffer('some data')
56+
const expectedMultihash = 'QmVv4Wz46JaZJeH5PMV4LGbRiiMKEmszPYY3g6fjGnVXBS'
57+
5658
const rs = new Readable()
5759
rs.push(buffered)
5860
rs.push(null)
5961

6062
const arr = []
61-
const filePair = {path: 'data.txt', content: rs}
63+
const filePair = {
64+
path: 'data.txt',
65+
content: rs
66+
}
67+
6268
arr.push(filePair)
6369

6470
ipfs.files.add(arr, (err, res) => {
6571
expect(err).to.not.exist
6672
expect(res).to.be.length(1)
67-
expect(res[0].path).to.equal('data.txt')
68-
expect(res[0].node.size()).to.equal(17)
69-
const mh = 'QmVv4Wz46JaZJeH5PMV4LGbRiiMKEmszPYY3g6fjGnVXBS'
70-
expect(bs58.encode(res[0].node.multihash()).toString()).to.equal(mh)
73+
const file = res[0]
74+
expect(file.path).to.equal('data.txt')
75+
expect(file.size).to.equal(17)
76+
expect(file.hash).to.equal(expectedMultihash)
7177
done()
7278
})
7379
})
@@ -77,41 +83,40 @@ module.exports = (common) => {
7783
path: 'testfile.txt',
7884
content: smallFile
7985
}
86+
const expectedMultihash = 'Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP'
8087

8188
ipfs.files.add([file], (err, res) => {
8289
expect(err).to.not.exist
8390

84-
const added = res[0] != null ? res[0] : res
85-
const mh = bs58.encode(added.node.multihash()).toString()
86-
expect(mh).to.equal('Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP')
87-
expect(added.path).to.equal('testfile.txt')
88-
expect(added.node.links).to.have.length(0)
91+
const file = res[0]
92+
expect(file.hash).to.equal(expectedMultihash)
93+
expect(file.path).to.equal('testfile.txt')
8994
done()
9095
})
9196
})
9297

9398
it('buffer', (done) => {
99+
const expectedMultihash = 'Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP'
100+
94101
ipfs.files.add(smallFile, (err, res) => {
95102
expect(err).to.not.exist
96-
97103
expect(res).to.have.length(1)
98-
const mh = bs58.encode(res[0].node.multihash()).toString()
99-
expect(mh).to.equal('Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP')
100-
expect(res[0].path).to.equal(mh)
101-
expect(res[0].node.links).to.have.length(0)
104+
const file = res[0]
105+
expect(file.hash).to.equal(expectedMultihash)
106+
expect(file.path).to.equal(file.hash)
102107
done()
103108
})
104109
})
105110

106111
it('BIG buffer', (done) => {
112+
const expectedMultihash = 'Qme79tX2bViL26vNjPsF3DP1R9rMKMvnPYJiKTTKPrXJjq'
113+
107114
ipfs.files.add(bigFile, (err, res) => {
108115
expect(err).to.not.exist
109-
110116
expect(res).to.have.length(1)
111-
expect(res[0].node.links).to.have.length(58)
112-
const mh = bs58.encode(res[0].node.multihash()).toString()
113-
expect(res[0].path).to.equal(mh)
114-
expect(mh).to.equal('Qme79tX2bViL26vNjPsF3DP1R9rMKMvnPYJiKTTKPrXJjq')
117+
const file = res[0]
118+
expect(file.hash).to.equal(expectedMultihash)
119+
expect(file.path).to.equal(file.hash)
115120
done()
116121
})
117122
})
@@ -121,9 +126,13 @@ module.exports = (common) => {
121126
path: `test-folder/${name}`,
122127
content: directoryContent[name]
123128
})
129+
124130
const emptyDir = (name) => ({
125131
path: `test-folder/${name}`
126132
})
133+
134+
const expectedRootMultihash = 'QmVvjDy7yF7hdnqE8Hrf4MHo5ABDtb5AbX6hWbD3Y42bXP'
135+
127136
const dirs = [
128137
content('pp.txt'),
129138
content('holmes.txt'),
@@ -137,13 +146,10 @@ module.exports = (common) => {
137146

138147
ipfs.files.add(dirs, (err, res) => {
139148
expect(err).to.not.exist
149+
const root = res[res.length - 1]
140150

141-
const added = res[res.length - 1]
142-
const mh = bs58.encode(added.node.multihash()).toString()
143-
expect(added.node.links).to.have.length(6)
144-
expect(added.path).to.equal('test-folder')
145-
expect(mh).to.equal('QmVvjDy7yF7hdnqE8Hrf4MHo5ABDtb5AbX6hWbD3Y42bXP')
146-
151+
expect(root.path).to.equal('test-folder')
152+
expect(root.hash).to.equal(expectedRootMultihash)
147153
done()
148154
})
149155
})
@@ -154,9 +160,13 @@ module.exports = (common) => {
154160
path: `test-folder/${name}`,
155161
content: directoryContent[name]
156162
})
163+
157164
const emptyDir = (name) => ({
158165
path: `test-folder/${name}`
159166
})
167+
168+
const expectedRootMultihash = 'QmVvjDy7yF7hdnqE8Hrf4MHo5ABDtb5AbX6hWbD3Y42bXP'
169+
160170
const files = [
161171
content('pp.txt'),
162172
content('holmes.txt'),
@@ -171,11 +181,9 @@ module.exports = (common) => {
171181
ipfs.files.createAddStream((err, stream) => {
172182
expect(err).to.not.exist
173183

174-
stream.on('data', (tuple) => {
175-
if (tuple.path === 'test-folder') {
176-
const mh = bs58.encode(tuple.node.multihash()).toString()
177-
expect(mh).to.equal('QmVvjDy7yF7hdnqE8Hrf4MHo5ABDtb5AbX6hWbD3Y42bXP')
178-
expect(tuple.node.links).to.have.length(6)
184+
stream.on('data', (file) => {
185+
if (file.path === 'test-folder') {
186+
expect(file.hash).to.equal(expectedRootMultihash)
179187
}
180188
})
181189

@@ -232,14 +240,14 @@ module.exports = (common) => {
232240

233241
describe('promise API', () => {
234242
describe('.add', () => {
243+
const expectedMultihash = 'Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP'
244+
235245
it('buffer', () => {
236246
return ipfs.files.add(smallFile)
237247
.then((res) => {
238-
const added = res[0] != null ? res[0] : res
239-
const mh = bs58.encode(added.node.multihash()).toString()
240-
expect(mh).to.equal('Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP')
241-
expect(added.path).to.equal(mh)
242-
expect(added.node.links).to.have.length(0)
248+
const file = res[0]
249+
expect(file.hash).to.equal(expectedMultihash)
250+
expect(file.path).to.equal(file.hash)
243251
})
244252
})
245253
})

0 commit comments

Comments
 (0)