This repository was archived by the owner on Feb 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathget.js
253 lines (206 loc) · 8.85 KB
/
get.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
/* eslint-env mocha */
'use strict'
const uint8ArrayFromString = require('uint8arrays/from-string')
const uint8ArrayToString = require('uint8arrays/to-string')
const uint8ArrayConcat = require('uint8arrays/concat')
const { fixtures } = require('./utils')
const CID = require('cids')
const all = require('it-all')
const drain = require('it-drain')
const last = require('it-last')
const map = require('it-map')
const { getDescribe, getIt, expect } = require('./utils/mocha')
const testTimeout = require('./utils/test-timeout')
const { importer } = require('ipfs-unixfs-importer')
/** @typedef { import("ipfsd-ctl/src/factory") } Factory */
/**
* @param {Factory} common
* @param {Object} options
*/
module.exports = (common, options) => {
const describe = getDescribe(options)
const it = getIt(options)
describe('.get', function () {
this.timeout(120 * 1000)
let ipfs
before(async () => {
ipfs = (await common.spawn()).api
await drain(importer([{ content: fixtures.smallFile.data }], ipfs.block))
await drain(importer([{ content: fixtures.bigFile.data }], ipfs.block))
})
after(() => common.clean())
it('should respect timeout option when getting files', () => {
return testTimeout(() => drain(ipfs.get(new CID('QmPDqvcuA4AkhBLBuh2y49yhUB98rCnxPxa3eVNC1kAbS1'), {
timeout: 1
})))
})
it('should get with a base58 encoded multihash', async () => {
const files = await all(ipfs.get(fixtures.smallFile.cid))
expect(files).to.be.length(1)
expect(files[0].path).to.eql(fixtures.smallFile.cid)
expect(uint8ArrayToString(uint8ArrayConcat(await all(files[0].content)))).to.contain('Plz add me!')
})
it('should get with a Uint8Array multihash', async () => {
const cidBuf = new CID(fixtures.smallFile.cid).multihash
const files = await all(ipfs.get(cidBuf))
expect(files).to.be.length(1)
expect(files[0].path).to.eql(fixtures.smallFile.cid)
expect(uint8ArrayToString(uint8ArrayConcat(await all(files[0].content)))).to.contain('Plz add me!')
})
it('should get a file added as CIDv0 with a CIDv1', async () => {
const input = uint8ArrayFromString(`TEST${Math.random()}`)
const res = await all(importer([{ content: input }], ipfs.block))
const cidv0 = res[0].cid
expect(cidv0.version).to.equal(0)
const cidv1 = cidv0.toV1()
const output = await all(ipfs.get(cidv1))
expect(uint8ArrayConcat(await all(output[0].content))).to.eql(input)
})
it('should get a file added as CIDv1 with a CIDv0', async () => {
const input = uint8ArrayFromString(`TEST${Math.random()}`)
const res = await all(importer([{ content: input }], ipfs.block, { cidVersion: 1, rawLeaves: false }))
const cidv1 = res[0].cid
expect(cidv1.version).to.equal(1)
const cidv0 = cidv1.toV0()
const output = await all(ipfs.get(cidv0))
expect(uint8ArrayConcat(await all(output[0].content))).to.eql(input)
})
it('should get a file added as CIDv1 with rawLeaves', async () => {
const input = uint8ArrayFromString(`TEST${Math.random()}`)
const res = await all(importer([{ content: input }], ipfs.block, { cidVersion: 1, rawLeaves: true }))
const cidv1 = res[0].cid
expect(cidv1.version).to.equal(1)
const output = await all(ipfs.get(cidv1))
expect(output[0].type).to.eql('file')
expect(uint8ArrayConcat(await all(output[0].content))).to.eql(input)
})
it('should get a BIG file', async () => {
for await (const file of ipfs.get(fixtures.bigFile.cid)) {
expect(file.path).to.equal(fixtures.bigFile.cid)
const content = uint8ArrayConcat(await all(file.content))
expect(content.length).to.eql(fixtures.bigFile.data.length)
expect(content.slice()).to.eql(fixtures.bigFile.data)
}
})
it('should get a directory', async function () {
const content = (name) => ({
path: `test-folder/${name}`,
content: fixtures.directory.files[name]
})
const emptyDir = (name) => ({ path: `test-folder/${name}` })
const dirs = [
content('pp.txt'),
content('holmes.txt'),
content('jungle.txt'),
content('alice.txt'),
emptyDir('empty-folder'),
content('files/hello.txt'),
content('files/ipfs.txt'),
emptyDir('files/empty')
]
const res = await all(importer(dirs, ipfs.block))
const root = res[res.length - 1]
expect(root.path).to.equal('test-folder')
expect(root.cid.toString()).to.equal(fixtures.directory.cid)
let files = await all((async function * () {
for await (let { path, content } of ipfs.get(fixtures.directory.cid)) {
content = content ? uint8ArrayToString(uint8ArrayConcat(await all(content))) : null
yield { path, content }
}
})())
files = files.sort((a, b) => {
if (a.path > b.path) return 1
if (a.path < b.path) return -1
return 0
})
// Check paths
const paths = files.map((file) => { return file.path })
expect(paths).to.include.members([
'QmVvjDy7yF7hdnqE8Hrf4MHo5ABDtb5AbX6hWbD3Y42bXP',
'QmVvjDy7yF7hdnqE8Hrf4MHo5ABDtb5AbX6hWbD3Y42bXP/alice.txt',
'QmVvjDy7yF7hdnqE8Hrf4MHo5ABDtb5AbX6hWbD3Y42bXP/empty-folder',
'QmVvjDy7yF7hdnqE8Hrf4MHo5ABDtb5AbX6hWbD3Y42bXP/files',
'QmVvjDy7yF7hdnqE8Hrf4MHo5ABDtb5AbX6hWbD3Y42bXP/files/empty',
'QmVvjDy7yF7hdnqE8Hrf4MHo5ABDtb5AbX6hWbD3Y42bXP/files/hello.txt',
'QmVvjDy7yF7hdnqE8Hrf4MHo5ABDtb5AbX6hWbD3Y42bXP/files/ipfs.txt',
'QmVvjDy7yF7hdnqE8Hrf4MHo5ABDtb5AbX6hWbD3Y42bXP/holmes.txt',
'QmVvjDy7yF7hdnqE8Hrf4MHo5ABDtb5AbX6hWbD3Y42bXP/jungle.txt',
'QmVvjDy7yF7hdnqE8Hrf4MHo5ABDtb5AbX6hWbD3Y42bXP/pp.txt'
])
// Check contents
expect(files.map(f => f.content)).to.include.members([
fixtures.directory.files['alice.txt'].toString(),
fixtures.directory.files['files/hello.txt'].toString(),
fixtures.directory.files['files/ipfs.txt'].toString(),
fixtures.directory.files['holmes.txt'].toString(),
fixtures.directory.files['jungle.txt'].toString(),
fixtures.directory.files['pp.txt'].toString()
])
})
it('should get a nested directory', async function () {
const content = (name, path) => ({
path: `test-folder/${path}`,
content: fixtures.directory.files[name]
})
const dirs = [
content('pp.txt', 'pp.txt'),
content('holmes.txt', 'foo/holmes.txt'),
content('jungle.txt', 'foo/bar/jungle.txt')
]
const res = await all(importer(dirs, ipfs.block))
const root = res[res.length - 1]
expect(root.path).to.equal('test-folder')
expect(root.cid.toString()).to.equal('QmVMXXo3c2bDPH9ayy2VKoXpykfYJHwAcU5YCJjPf7jg3g')
let files = await all(
map(ipfs.get(root.cid), async ({ path, content }) => {
content = content ? uint8ArrayToString(uint8ArrayConcat(await all(content))) : null
return { path, content }
})
)
files = files.sort((a, b) => {
if (a.path > b.path) return 1
if (a.path < b.path) return -1
return 0
})
// Check paths
const paths = files.map((file) => { return file.path })
expect(paths).to.include.members([
'QmVMXXo3c2bDPH9ayy2VKoXpykfYJHwAcU5YCJjPf7jg3g',
'QmVMXXo3c2bDPH9ayy2VKoXpykfYJHwAcU5YCJjPf7jg3g/pp.txt',
'QmVMXXo3c2bDPH9ayy2VKoXpykfYJHwAcU5YCJjPf7jg3g/foo/holmes.txt',
'QmVMXXo3c2bDPH9ayy2VKoXpykfYJHwAcU5YCJjPf7jg3g/foo/bar/jungle.txt'
])
// Check contents
expect(files.map(f => f.content)).to.include.members([
fixtures.directory.files['pp.txt'].toString(),
fixtures.directory.files['holmes.txt'].toString(),
fixtures.directory.files['jungle.txt'].toString()
])
})
it('should get with ipfs path, as object and nested value', async () => {
const file = {
path: 'a/testfile.txt',
content: fixtures.smallFile.data
}
const fileAdded = await last(importer([file], ipfs.block))
expect(fileAdded).to.have.property('path', 'a')
const files = await all(ipfs.get(`/ipfs/${fileAdded.cid}/testfile.txt`))
expect(files).to.be.length(1)
expect(uint8ArrayToString(uint8ArrayConcat(await all(files[0].content)))).to.contain('Plz add me!')
})
it('should error on invalid key', async () => {
const invalidCid = 'somethingNotMultihash'
const err = await expect(all(ipfs.get(invalidCid))).to.eventually.be.rejected()
switch (err.toString()) {
case 'Error: invalid ipfs ref path':
expect(err.toString()).to.contain('Error: invalid ipfs ref path')
break
case 'Error: Invalid Key':
expect(err.toString()).to.contain('Error: Invalid Key')
break
default:
break
}
})
})
}