This repository was archived by the owner on Aug 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathtest-importer.js
267 lines (244 loc) · 7.53 KB
/
test-importer.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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
/* eslint-env mocha */
'use strict'
const importer = require('./../src').importer
const expect = require('chai').expect
const BlockService = require('ipfs-block-service')
const pull = require('pull-stream')
const mh = require('multihashes')
const IPLDResolver = require('ipld-resolver')
const loadFixture = require('aegir/fixtures')
function stringifyMh (files) {
return files.map((file) => {
file.multihash = mh.toB58String(file.multihash)
return file
})
}
const bigFile = loadFixture(__dirname, 'fixtures/1.2MiB.txt')
const smallFile = loadFixture(__dirname, 'fixtures/200Bytes.txt')
module.exports = (repo) => {
describe('importer', () => {
let ipldResolver
before(() => {
const bs = new BlockService(repo)
ipldResolver = new IPLDResolver(bs)
})
it('bad input', (done) => {
pull(
pull.values([{
path: '200Bytes.txt',
content: 'banana'
}]),
importer(ipldResolver),
pull.onEnd((err) => {
expect(err).to.exist
done()
})
)
})
it('small file (smaller than a chunk)', (done) => {
pull(
pull.values([{
path: '200Bytes.txt',
content: pull.values([smallFile])
}]),
importer(ipldResolver),
pull.collect((err, files) => {
expect(err).to.not.exist
expect(stringifyMh(files)).to.be.eql([{
path: '200Bytes.txt',
multihash: 'QmQmZQxSKQppbsWfVzBvg59Cn3DKtsNVQ94bjAxg2h3Lb8',
size: 211
}])
done()
})
)
})
it('small file as buffer (smaller than a chunk)', (done) => {
pull(
pull.values([{
path: '200Bytes.txt',
content: smallFile
}]),
importer(ipldResolver),
pull.collect((err, files) => {
expect(err).to.not.exist
expect(stringifyMh(files)).to.be.eql([{
path: '200Bytes.txt',
multihash: 'QmQmZQxSKQppbsWfVzBvg59Cn3DKtsNVQ94bjAxg2h3Lb8',
size: 211
}])
done()
})
)
})
it('small file (smaller than a chunk) inside a dir', (done) => {
pull(
pull.values([{
path: 'foo/bar/200Bytes.txt',
content: pull.values([smallFile])
}]),
importer(ipldResolver),
pull.collect((err, files) => {
expect(err).to.not.exist
expect(files.length).to.equal(3)
stringifyMh(files).forEach((file) => {
if (file.path === 'foo/bar/200Bytes.txt') {
expect(file).to.be.eql({
path: 'foo/bar/200Bytes.txt',
multihash: 'QmQmZQxSKQppbsWfVzBvg59Cn3DKtsNVQ94bjAxg2h3Lb8',
size: 211
})
}
if (file.path === 'foo') {
expect(file).to.be.eql({
path: 'foo',
multihash: 'QmQrb6KKWGo8w7zKfx2JksptY6wN7B2ysSBdKZr4xMU36d',
size: 320
})
}
if (file.path === 'foo/bar') {
expect(file).to.be.eql({
path: 'foo/bar',
multihash: 'Qmf5BQbTUyUAvd6Ewct83GYGnE1F6btiC3acLhR8MDxgkD',
size: 270
})
}
})
done()
})
)
})
it('file bigger than a single chunk', (done) => {
pull(
pull.values([{
path: '1.2MiB.txt',
content: pull.values([bigFile])
}]),
importer(ipldResolver),
pull.collect((err, files) => {
expect(err).to.not.exist
expect(stringifyMh(files)).to.be.eql([{
path: '1.2MiB.txt',
multihash: 'QmW7BDxEbGqxxSYVtn3peNPQgdDXbWkoQ6J1EFYAEuQV3Q',
size: 1258318
}])
done()
})
)
})
it('file bigger than a single chunk inside a dir', (done) => {
pull(
pull.values([{
path: 'foo-big/1.2MiB.txt',
content: pull.values([bigFile])
}]),
importer(ipldResolver),
pull.collect((err, files) => {
expect(err).to.not.exist
expect(stringifyMh(files)).to.be.eql([{
path: 'foo-big/1.2MiB.txt',
multihash: 'QmW7BDxEbGqxxSYVtn3peNPQgdDXbWkoQ6J1EFYAEuQV3Q',
size: 1258318
}, {
path: 'foo-big',
multihash: 'QmaFgyFJUP4fxFySJCddg2Pj6rpwSywopWk87VEVv52RSj',
size: 1258376
}])
done()
})
)
})
it.skip('file (that chunk number exceeds max links)', (done) => {
// TODO
})
it('empty directory', (done) => {
pull(
pull.values([{
path: 'empty-dir'
}]),
importer(ipldResolver),
pull.collect((err, files) => {
expect(err).to.not.exist
expect(stringifyMh(files)).to.be.eql([{
path: 'empty-dir',
multihash: 'QmUNLLsPACCz1vLxQVkXqqLX5R1X345qqfHbsf67hvA3Nn',
size: 4
}])
done()
})
)
})
it('directory with files', (done) => {
pull(
pull.values([{
path: 'pim/200Bytes.txt',
content: pull.values([smallFile])
}, {
path: 'pim/1.2MiB.txt',
content: pull.values([bigFile])
}]),
importer(ipldResolver),
pull.collect((err, files) => {
expect(err).to.not.exist
expect(stringifyMh(files)).be.eql([{
path: 'pim/200Bytes.txt',
multihash: 'QmQmZQxSKQppbsWfVzBvg59Cn3DKtsNVQ94bjAxg2h3Lb8',
size: 211
}, {
path: 'pim/1.2MiB.txt',
multihash: 'QmW7BDxEbGqxxSYVtn3peNPQgdDXbWkoQ6J1EFYAEuQV3Q',
size: 1258318
}, {
path: 'pim',
multihash: 'QmY8a78tx6Tk6naDgWCgTsd9EqGrUJRrH7dDyQhjyrmH2i',
size: 1258642
}])
done()
})
)
})
it('nested directory (2 levels deep)', (done) => {
pull(
pull.values([{
path: 'pam/pum/200Bytes.txt',
content: pull.values([smallFile])
}, {
path: 'pam/pum/1.2MiB.txt',
content: pull.values([bigFile])
}, {
path: 'pam/1.2MiB.txt',
content: pull.values([bigFile])
}]),
importer(ipldResolver),
pull.collect((err, files) => {
expect(err).to.not.exist
// need to sort as due to parallel storage the order
// can vary
stringifyMh(files).forEach((file) => {
if (file.path === 'pam/pum/200Bytes.txt') {
expect(file.multihash).to.be.eql('QmQmZQxSKQppbsWfVzBvg59Cn3DKtsNVQ94bjAxg2h3Lb8')
expect(file.size).to.be.eql(211)
}
if (file.path === 'pam/pum/1.2MiB.txt') {
expect(file.multihash).to.be.eql('QmW7BDxEbGqxxSYVtn3peNPQgdDXbWkoQ6J1EFYAEuQV3Q')
expect(file.size).to.be.eql(1258318)
}
if (file.path === 'pam/pum') {
expect(file.multihash).to.be.eql('QmY8a78tx6Tk6naDgWCgTsd9EqGrUJRrH7dDyQhjyrmH2i')
expect(file.size).to.be.eql(1258642)
}
if (file.path === 'pam/1.2MiB.txt') {
expect(file.multihash).to.be.eql('QmW7BDxEbGqxxSYVtn3peNPQgdDXbWkoQ6J1EFYAEuQV3Q')
expect(file.size).to.be.eql(1258318)
}
if (file.path === 'pam') {
expect(file.multihash).to.be.eql('QmRgdtzNx1H1BPJqShdhvWZ2D4DA2HUgZJ3XLtoXei27Av')
expect(file.size).to.be.eql(2517065)
}
})
done()
})
)
})
})
}