-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Filenames containing * chars break windows and create incompatible archives in the npm registry. In the next major release, this should raise an error instead of silently omitting them, so that authors can be alerted. Fix #9 PR-URL: #32 Credit: @isaacs Close: #32 Reviewed-by: @isaacs
- Loading branch information
Showing
3 changed files
with
135 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
'use strict' | ||
const fs = require('fs') | ||
|
||
const readdir = fs.readdir | ||
fs.readdir = (path, cb) => { | ||
readdir(path, (er, entries) => { | ||
if (er) | ||
cb(er) | ||
else | ||
cb(null, entries.concat('made*of*stars')) | ||
}) | ||
} | ||
|
||
const readdirSync = fs.readdirSync | ||
fs.readdirSync = path => readdirSync(path).concat('made*of*stars') | ||
|
||
const path = require('path') | ||
|
||
const mkdirp = require('mkdirp') | ||
const rimraf = require('rimraf') | ||
const t = require('tap') | ||
|
||
const pack = require('../') | ||
|
||
const pkg = path.join(__dirname, path.basename(__filename, '.js')) | ||
t.teardown(_ => rimraf.sync(pkg)) | ||
|
||
const elfJS = ` | ||
module.exports = elf => | ||
console.log("i'm a elf") | ||
` | ||
|
||
const json = { | ||
'name': 'test-package', | ||
'version': '3.1.4', | ||
'main': 'elf.js' | ||
} | ||
|
||
const expect = [ | ||
'deps/foo/config/config.gypi', | ||
'elf.js', | ||
'package.json', | ||
] | ||
|
||
t.test('setup', t => { | ||
rimraf.sync(pkg) | ||
mkdirp.sync(pkg) | ||
fs.writeFileSync( | ||
path.join(pkg, 'package.json'), | ||
JSON.stringify(json, null, 2) | ||
) | ||
|
||
fs.writeFileSync( | ||
path.join(pkg, 'elf.js'), | ||
elfJS | ||
) | ||
|
||
fs.writeFileSync( | ||
path.join(pkg, '.npmrc'), | ||
'packaged=false' | ||
) | ||
|
||
fs.writeFileSync( | ||
path.join(pkg, '.npmignore'), | ||
'.npmignore\ndummy\npackage.json' | ||
) | ||
|
||
fs.writeFileSync( | ||
path.join(pkg, 'dummy'), | ||
'foo' | ||
) | ||
|
||
// empty dir should be ignored | ||
mkdirp.sync(pkg + '/this/dir/is/empty/and/ignored') | ||
|
||
const buildDir = path.join(pkg, 'build') | ||
mkdirp.sync(buildDir) | ||
fs.writeFileSync( | ||
path.join(buildDir, 'config.gypi'), | ||
"i_wont_be_included='with any luck'" | ||
) | ||
|
||
const depscfg = path.join(pkg, 'deps/foo/config') | ||
mkdirp.sync(depscfg) | ||
fs.writeFileSync( | ||
path.join(depscfg, 'config.gypi'), | ||
"i_will_be_included='with any luck'" | ||
) | ||
|
||
fs.writeFileSync( | ||
path.join(buildDir, 'npm-debug.log'), | ||
'0 lol\n' | ||
) | ||
|
||
const gitDir = path.join(pkg, '.git') | ||
mkdirp.sync(gitDir) | ||
fs.writeFileSync( | ||
path.join(gitDir, 'gitstub'), | ||
"won't fool git, also won't be included" | ||
) | ||
|
||
const historyDir = path.join(pkg, 'node_modules/history') | ||
mkdirp.sync(historyDir) | ||
fs.writeFileSync( | ||
path.join(historyDir, 'README.md'), | ||
"please don't include me" | ||
) | ||
|
||
t.end() | ||
}) | ||
|
||
t.test('follows npm package ignoring rules', function (t) { | ||
const check = (files, t) => { | ||
t.same(files, expect) | ||
t.end() | ||
} | ||
|
||
t.test('sync', t => check(pack.sync({ path: pkg }), t)) | ||
t.test('async', t => pack({ path: pkg }).then(files => check(files, t))) | ||
|
||
t.end() | ||
}) |