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
246 lines (192 loc) · 6.46 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
/* eslint-env mocha */
'use strict'
const fs = require('fs')
const { expect } = require('aegir/utils/chai')
const path = require('path')
const clean = require('./utils/clean')
const CID = require('cids')
const cli = require('./utils/cli')
const sinon = require('sinon')
const uint8ArrayFromString = require('uint8arrays/from-string')
const defaultOptions = {
timeout: undefined
}
describe('get', () => {
const cid = new CID('QmPZ9gcCEpqKTo6aq61g2nXGUhM4iCL3ewB6LDXZCtioEB')
const buf = uint8ArrayFromString('hello world')
let ipfs
beforeEach(() => {
ipfs = {
get: sinon.stub()
}
})
it('should get file', async () => {
ipfs.get.withArgs(cid.toString(), defaultOptions).returns([{
type: 'file',
path: 'QmPZ9gcCEpqKTo6aq61g2nXGUhM4iCL3ewB6LDXZCtioEB',
content: function * () {
yield buf
}
}])
const outPath = path.join(process.cwd(), cid.toString())
await clean(outPath)
const out = await cli(`get ${cid}`, { ipfs })
expect(out)
.to.equal(`Saving file(s) ${cid}\n`)
expect(fs.readFileSync(outPath)).to.deep.equal(buf)
await clean(outPath)
})
it('should get file from a raw block', async () => {
const cid = new CID('bafkreifzjut3te2nhyekklss27nh3k72ysco7y32koao5eei66wof36n5e')
ipfs.get.withArgs(cid.toString(), defaultOptions).returns([{
type: 'raw',
path: 'bafkreifzjut3te2nhyekklss27nh3k72ysco7y32koao5eei66wof36n5e',
content: function * () {
yield buf
}
}])
const outPath = path.join(process.cwd(), cid.toString())
await clean(outPath)
const out = await cli(`get ${cid}`, { ipfs })
expect(out)
.to.equal(`Saving file(s) ${cid}\n`)
expect(fs.readFileSync(outPath)).to.deep.equal(buf)
await clean(outPath)
})
it('get file with output option', async () => {
ipfs.get.withArgs(cid.toString(), defaultOptions).returns([{
type: 'file',
path: 'QmPZ9gcCEpqKTo6aq61g2nXGUhM4iCL3ewB6LDXZCtioEB',
content: function * () {
yield buf
}
}])
const outPath = path.join(process.cwd(), 'derp')
await clean(outPath)
const out = await cli(`get ${cid} --output ${outPath}`, { ipfs })
expect(out)
.to.equal(`Saving file(s) ${cid}\n`)
expect(fs.readFileSync(path.join(outPath, cid.toString()))).to.deep.equal(buf)
await clean(outPath)
})
it('get file with short output option', async () => {
ipfs.get.withArgs(cid.toString(), defaultOptions).returns([{
type: 'file',
path: 'QmPZ9gcCEpqKTo6aq61g2nXGUhM4iCL3ewB6LDXZCtioEB',
content: function * () {
yield buf
}
}])
const outPath = path.join(process.cwd(), 'herp')
await clean(outPath)
const out = await cli(`get ${cid} -o ${outPath}`, { ipfs })
expect(out)
.to.equal(`Saving file(s) ${cid}\n`)
expect(fs.readFileSync(path.join(outPath, cid.toString()))).to.deep.equal(buf)
await clean(outPath)
})
it('get directory', async () => {
ipfs.get.withArgs(cid.toString(), defaultOptions).returns([{
type: 'dir',
path: cid.toString()
}])
const outPath = path.join(process.cwd(), cid.toString())
await clean(outPath)
const out = await cli(`get ${cid}`, { ipfs })
expect(out)
.to.equal(`Saving file(s) ${cid}\n`)
expect(fs.statSync(outPath).isDirectory()).to.be.true()
await clean(outPath)
})
it('get recursively', async () => {
ipfs.get.withArgs(cid.toString(), defaultOptions).returns([{
type: 'dir',
path: cid.toString()
}, {
type: 'file',
path: `${cid}/foo.txt`,
content: function * () {
yield buf
}
}])
const outPath = path.join(process.cwd(), cid.toString())
await clean(outPath)
const out = await cli(`get ${cid}`, { ipfs })
expect(out).to.eql(
`Saving file(s) ${cid}\n`
)
expect(fs.statSync(outPath).isDirectory()).to.be.true()
expect(fs.statSync(path.join(outPath, 'foo.txt')).isFile()).to.be.true()
expect(fs.readFileSync(path.join(outPath, 'foo.txt'))).to.deep.equal(buf)
await clean(outPath)
})
it('should get file with a timeout', async () => {
ipfs.get.withArgs(cid.toString(), {
...defaultOptions,
timeout: 1000
}).returns([{
type: 'file',
path: cid.toString(),
content: function * () {
yield buf
}
}])
const outPath = path.join(process.cwd(), cid.toString())
await clean(outPath)
const out = await cli(`get ${cid} --timeout=1s`, { ipfs })
expect(out)
.to.equal(`Saving file(s) ${cid}\n`)
expect(fs.readFileSync(outPath)).to.deep.equal(buf)
await clean(outPath)
})
it('should not get file with path traversal characters that result in leaving the output directory', async () => {
ipfs.get.withArgs(cid.toString(), defaultOptions).returns([{
type: 'file',
path: '../foo.txt',
content: function * () {
yield buf
}
}])
const outPath = path.join(process.cwd(), 'derp')
await expect(cli(`get ${cid} --output ${outPath}`, { ipfs })).to.eventually.be.rejectedWith(/File prefix invalid/)
})
it('should get file with path traversal characters that result in leaving the output directory when forced', async () => {
ipfs.get.withArgs(cid.toString(), defaultOptions).returns([{
type: 'file',
path: '../foo.txt',
content: function * () {
yield buf
}
}])
const dir = path.join(process.cwd(), 'derp')
const outPath = path.join(process.cwd(), 'derp', 'herp')
await clean(dir)
const out = await cli(`get ${cid} --output ${outPath} --force`, { ipfs })
expect(out)
.to.equal(`Saving file(s) ${cid}\n`)
expect(fs.readFileSync(path.join(dir, 'foo.txt'))).to.deep.equal(buf)
await clean(dir)
})
it('should strip control characters when getting a file', async function () {
if (process.platform === 'win32') {
// windows cannot write files with control characters in the path
return this.skip()
}
const ipfsPath = `${cid}/foo/bar`
const junkPath = `${cid}/foo\b/bar`
ipfs.get.withArgs(junkPath, defaultOptions).returns([{
type: 'file',
path: junkPath,
content: function * () {
yield buf
}
}])
const outPath = `${process.cwd()}/${junkPath}`
await clean(outPath)
const out = await cli(`get ${junkPath}`, { ipfs })
expect(out)
.to.equal(`Saving file(s) ${ipfsPath}\n`)
expect(fs.readFileSync(outPath)).to.deep.equal(buf)
await clean(outPath)
})
})