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
|
// verify that prepublish runs on pack and publish
var test = require("tap").test
var common = require("../common-tap")
var fs = require("graceful-fs")
var join = require("path").join
var mkdirp = require("mkdirp")
var rimraf = require("rimraf")
var pkg = join(__dirname, "scoped_package")
var manifest = join(pkg, "package.json")
var tmp = join(pkg, "tmp")
var cache = join(pkg, "cache")
var data = {
name : "@scope/generic-package",
version : "90000.100001.5"
}
test("setup", function (t) {
var n = 0
rimraf.sync(pkg)
mkdirp(pkg, then())
mkdirp(cache, then())
mkdirp(tmp, then())
function then () {
n++
return function (er) {
t.ifError(er)
if (--n === 0) next()
}
}
function next () {
fs.writeFile(manifest, JSON.stringify(data), "ascii", done)
}
function done (er) {
t.ifError(er)
t.pass("setup done")
t.end()
}
})
test("test", function (t) {
var env = {
"npm_config_cache" : cache,
"npm_config_tmp" : tmp,
"npm_config_prefix" : pkg,
"npm_config_global" : "false"
}
for (var i in process.env) {
if (!/^npm_config_/.test(i)) env[i] = process.env[i]
}
common.npm([
"pack",
"--loglevel", "warn"
], {
cwd: pkg,
env: env
}, function(err, code, stdout, stderr) {
t.ifErr(err, "npm pack finished without error")
t.equal(code, 0, "npm pack exited ok")
t.notOk(stderr, "got stderr data: " + JSON.stringify("" + stderr))
stdout = stdout.trim()
var regex = new RegExp("scope-generic-package-90000.100001.5.tgz", "ig")
t.ok(stdout.match(regex), "found package")
t.end()
})
})
test("cleanup", function (t) {
rimraf.sync(pkg)
t.pass("cleaned up")
t.end()
})
|