232 lines
5.4 KiB
JavaScript
232 lines
5.4 KiB
JavaScript
'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')
|
|
|
|
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('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()
|
|
})
|