forked from isaacs/node-tar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextract.js
263 lines (216 loc) · 6.14 KB
/
extract.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
'use strict'
const t = require('tap')
const x = require('../lib/extract.js')
const path = require('path')
const fs = require('fs')
const extractdir = path.resolve(__dirname, 'fixtures/extract')
const tars = path.resolve(__dirname, 'fixtures/tars')
const mkdirp = require('mkdirp')
const { promisify } = require('util')
const rimraf = promisify(require('rimraf'))
const mutateFS = require('mutate-fs')
const pipeline = promisify(require('stream').pipeline)
const https = require('https')
t.teardown(_ => rimraf(extractdir))
t.test('basic extracting', t => {
const file = path.resolve(tars, 'utf8.tar')
const dir = path.resolve(extractdir, 'basic')
t.beforeEach(async () => {
await rimraf(dir)
await mkdirp(dir)
})
const check = async t => {
fs.lstatSync(dir + '/Ω.txt')
fs.lstatSync(dir + '/🌟.txt')
t.throws(_ => fs.lstatSync(dir + '/long-path/r/e/a/l/l/y/-/d/e/e/p/-' +
'/f/o/l/d/e/r/-/p/a/t/h/Ω.txt'))
await rimraf(dir)
t.end()
}
const files = ['🌟.txt', 'Ω.txt']
t.test('sync', t => {
x({ file: file, sync: true, C: dir }, files)
return check(t)
})
t.test('async promisey', t => {
return x({ file: file, cwd: dir }, files).then(_ => check(t))
})
t.test('async cb', t => {
return x({ file: file, cwd: dir }, files, er => {
if (er) {
throw er
}
return check(t)
})
})
t.end()
})
t.test('ensure an open stream is not prematuraly closed', t => {
const dir = path.resolve(extractdir, 'basic-with-stream')
t.beforeEach(async () => {
await rimraf(dir)
await mkdirp(dir)
})
const check = async t => {
fs.lstatSync(dir + '/node-tar-main/LICENSE')
await rimraf(dir)
t.end()
}
t.test('async promisey', t => {
https.get('https://codeload.github.com/npm/node-tar/tar.gz/main', (stream) => {
return pipeline(
stream,
x({ cwd: dir }, ['node-tar-main/LICENSE'])
).then(_ => check(t))
})
})
t.end()
})
t.test('file list and filter', t => {
const file = path.resolve(tars, 'utf8.tar')
const dir = path.resolve(extractdir, 'filter')
t.beforeEach(async () => {
await rimraf(dir)
await mkdirp(dir)
})
const check = async t => {
fs.lstatSync(dir + '/Ω.txt')
t.throws(_ => fs.lstatSync(dir + '/🌟.txt'))
t.throws(_ => fs.lstatSync(dir + '/long-path/r/e/a/l/l/y/-/d/e/e/p/-' +
'/f/o/l/d/e/r/-/p/a/t/h/Ω.txt'))
await rimraf(dir)
t.end()
}
const filter = path => path === 'Ω.txt'
t.test('sync', t => {
x({ filter: filter, file: file, sync: true, C: dir }, ['🌟.txt', 'Ω.txt'])
return check(t)
})
t.test('async promisey', t => {
return x({ filter: filter, file: file, cwd: dir }, ['🌟.txt', 'Ω.txt']).then(_ => {
return check(t)
})
})
t.test('async cb', t => {
return x({ filter: filter, file: file, cwd: dir }, ['🌟.txt', 'Ω.txt'], er => {
if (er) {
throw er
}
return check(t)
})
})
t.end()
})
t.test('no file list', t => {
const file = path.resolve(tars, 'body-byte-counts.tar')
const dir = path.resolve(extractdir, 'no-list')
t.beforeEach(async () => {
await rimraf(dir)
await mkdirp(dir)
})
const check = async t => {
t.equal(fs.lstatSync(path.resolve(dir, '1024-bytes.txt')).size, 1024)
t.equal(fs.lstatSync(path.resolve(dir, '512-bytes.txt')).size, 512)
t.equal(fs.lstatSync(path.resolve(dir, 'one-byte.txt')).size, 1)
t.equal(fs.lstatSync(path.resolve(dir, 'zero-byte.txt')).size, 0)
await rimraf(dir)
t.end()
}
t.test('sync', t => {
x({ file: file, sync: true, C: dir })
return check(t)
})
t.test('async promisey', t => {
return x({ file: file, cwd: dir }).then(_ => {
return check(t)
})
})
t.test('async cb', t => {
return x({ file: file, cwd: dir }, er => {
if (er) {
throw er
}
return check(t)
})
})
t.end()
})
t.test('read in itty bits', t => {
const maxReadSize = 1000
const file = path.resolve(tars, 'body-byte-counts.tar')
const dir = path.resolve(extractdir, 'no-list')
t.beforeEach(async () => {
await rimraf(dir)
await mkdirp(dir)
})
const check = async t => {
t.equal(fs.lstatSync(path.resolve(dir, '1024-bytes.txt')).size, 1024)
t.equal(fs.lstatSync(path.resolve(dir, '512-bytes.txt')).size, 512)
t.equal(fs.lstatSync(path.resolve(dir, 'one-byte.txt')).size, 1)
t.equal(fs.lstatSync(path.resolve(dir, 'zero-byte.txt')).size, 0)
await rimraf(dir)
t.end()
}
t.test('sync', t => {
x({ file: file, sync: true, C: dir, maxReadSize: maxReadSize })
return check(t)
})
t.test('async promisey', t => {
return x({ file: file, cwd: dir, maxReadSize: maxReadSize }).then(_ => {
return check(t)
})
})
t.test('async cb', t => {
return x({ file: file, cwd: dir, maxReadSize: maxReadSize }, er => {
if (er) {
throw er
}
return check(t)
})
})
t.end()
})
t.test('bad calls', t => {
t.throws(_ => x(_ => _))
t.throws(_ => x({ sync: true }, _ => _))
t.throws(_ => x({ sync: true }, [], _ => _))
t.end()
})
t.test('no file', t => {
const Unpack = require('../lib/unpack.js')
t.type(x(), Unpack)
t.type(x(['asdf']), Unpack)
t.type(x({ sync: true }), Unpack.Sync)
t.end()
})
t.test('nonexistent', t => {
t.throws(_ => x({ sync: true, file: 'does not exist' }))
x({ file: 'does not exist' }).catch(_ => t.end())
})
t.test('read fail', t => {
const poop = new Error('poop')
t.teardown(mutateFS.fail('read', poop))
t.throws(_ => x({ maxReadSize: 10, sync: true, file: __filename }), poop)
t.end()
})
t.test('sync gzip error edge case test', async t => {
const file = path.resolve(__dirname, 'fixtures/sync-gzip-fail.tgz')
const dir = path.resolve(__dirname, 'sync-gzip-fail')
const cwd = process.cwd()
await mkdirp(dir + '/x')
process.chdir(dir)
t.teardown(async () => {
process.chdir(cwd)
await rimraf(dir)
})
x({
sync: true,
file: file,
onwarn: (c, m, er) => {
throw er
},
})
t.same(fs.readdirSync(dir + '/x').sort(),
['1', '10', '2', '3', '4', '5', '6', '7', '8', '9'])
t.end()
})