summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/install-bin-null.js
blob: 2ad75eb59940aa603d7aa7176feaa4a2bb867e06 (plain)
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
var fs = require('graceful-fs')
var path = require('path')

var mkdirp = require('mkdirp')
var test = require('tap').test

var common = require('../common-tap.js')

var pkg = common.pkg

var EXEC_OPTS = { cwd: pkg }

var parentPkg = {
  name: 'parent-package',
  version: '0.0.0',
  dependencies: {
    'child-package-a': 'file:./child-package-a',
    'child-package-b': 'file:./child-package-b'
  }
}

var childPkgA = {
  name: 'child-package-a',
  version: '0.0.0',
  bin: 'index.js'
}

var childPkgB = {
  name: 'child-package-b',
  version: '0.0.0',
  dependencies: {
    'grandchild-package': 'file:../grandchild-package'
  }
}

var grandchildPkg = {
  name: 'grandchild-package',
  version: '0.0.0',
  bin: null
}

var pkgs = [childPkgA, childPkgB, grandchildPkg]

test('setup', t => {
  mkdirp.sync(pkg)
  fs.writeFileSync(
    path.join(pkg, 'package.json'),
    JSON.stringify(parentPkg, null, 2)
  )
  pkgs.forEach(function (json) {
    var pkgPath = path.resolve(pkg, json.name)
    mkdirp.sync(pkgPath)
    fs.writeFileSync(
      path.join(pkgPath, 'package.json'),
      JSON.stringify(json, null, 2)
    )
  })
  fs.writeFileSync(
    path.join(pkg, childPkgA.name, 'index.js'),
    ''
  )
  t.end()
})

test('the grandchild has bin:null', function (t) {
  common.npm(['install'], EXEC_OPTS, function (err, code, stdout, stderr) {
    t.ifErr(err, 'npm link finished without error')
    t.equal(code, 0, 'exited ok')
    t.ok(stdout, 'output indicating success')
    t.notOk(stderr, 'no output stderr')
    t.end()
  })
})