summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/ls-depth-unmet.js
blob: 0386ab249decebe6bdb4056f278dd3359216f794 (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
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
var fs = require('graceful-fs')
var path = require('path')

var mkdirp = require('mkdirp')
var mr = require('npm-registry-mock')
var osenv = require('osenv')
var rimraf = require('rimraf')
var test = require('tap').test

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

var pkg = path.resolve(__dirname, 'ls-depth-unmet')

var EXEC_OPTS = { cwd: pkg }

var json = {
  name: 'ls-depth-umnet',
  author: 'Evan You',
  version: '0.0.0',
  dependencies: {
    'test-package-with-one-dep': '0.0.0',
    underscore: '1.5.1',
    optimist: '0.6.0'
  }
}

test('setup', function (t) {
  cleanup()
  mkdirp.sync(pkg)
  fs.writeFileSync(
    path.join(pkg, 'package.json'),
    JSON.stringify(json, null, 2)
  )
  mr({ port: common.port }, function (er, s) {
    common.npm(
      [
        '--registry', common.registry,
        'install', '--no-save', 'underscore@1.3.1', 'mkdirp', 'test-package-with-one-dep'
      ],
      EXEC_OPTS,
      function (er, c) {
        t.ifError(er, 'setup installation ran without issue')
        t.equal(c, 0)
        s.close()
        t.end()
      }
    )
  })
})

test('npm ls --depth=0', function (t) {
  common.npm(
    ['ls', '--depth=0'],
    EXEC_OPTS,
    function (er, c, out) {
      t.ifError(er, 'setup installation ran without issue')
      t.equal(c, 1, 'ls barfed')
      t.has(
        out,
        /UNMET DEPENDENCY optimist@0\.6\.0/,
        'output contains optimist@0.6.0 and labeled as unmet dependency'
      )
      t.has(
        out,
        /mkdirp@0\.3\.5 extraneous/,
        'output contains mkdirp@0.3.5 and labeled as extraneous'
      )
      t.has(
        out,
        /underscore@1\.3\.1 invalid/,
        'output contains underscore@1.3.1 and labeled as invalid'
      )
      t.has(
        out,
        /test-package-with-one-dep@0\.0\.0\n/,
        'output contains test-package-with-one-dep@0.0.0 and has no labels'
      )
      t.doesNotHave(
        out,
        /test-package@0\.0\.0/,
        'output does not contain test-package@0.0.0 which is at depth=1'
      )
      t.end()
    }
  )
})

test('npm ls --depth=1', function (t) {
  common.npm(
    ['ls', '--depth=1'],
    EXEC_OPTS,
    function (er, c, out) {
      t.ifError(er, 'setup installation ran without issue')
      t.equal(c, 1, 'ls barfed')
      t.has(
        out,
        /UNMET DEPENDENCY optimist@0\.6\.0/,
        'output contains optimist@0.6.0 and labeled as unmet dependency'
      )
      t.has(
        out,
        /mkdirp@0\.3\.5 extraneous/,
        'output contains mkdirp@0.3.5 and labeled as extraneous'
      )
      t.has(
        out,
        /underscore@1\.3\.1 invalid/,
        'output contains underscore@1.3.1 and labeled as invalid'
      )
      t.has(
        out,
        /test-package-with-one-dep@0\.0\.0\n/,
        'output contains test-package-with-one-dep@0.0.0 and has no labels'
      )
      t.has(
        out,
        /test-package@0\.0\.0/,
        'output contains test-package@0.0.0 which is at depth=1'
      )
      t.end()
    }
  )
})

test('npm ls --depth=Infinity', function (t) {
  // travis has a preconfigured depth=0, in general we can not depend
  // on the default value in all environments, so explictly set it here
  common.npm(
    ['ls', '--depth=Infinity'],
    EXEC_OPTS,
    function (er, c, out) {
      t.ifError(er, 'setup installation ran without issue')
      t.equal(c, 1, 'ls barfed')
      t.has(
        out,
        /UNMET DEPENDENCY optimist@0\.6\.0/,
        'output contains optimist@0.6.0 and labeled as unmet dependency'
      )
      t.has(
        out,
        /mkdirp@0\.3\.5 extraneous/,
        'output contains mkdirp@0.3.5 and labeled as extraneous'
      )
      t.has(
        out,
        /underscore@1\.3\.1 invalid/,
        'output contains underscore@1.3.1 and labeled as invalid'
      )
      t.has(
        out,
        /test-package-with-one-dep@0\.0\.0\n/,
        'output contains test-package-with-one-dep@0.0.0 and has no labels'
      )
      t.has(
        out,
        /test-package@0\.0\.0/,
        'output contains test-package@0.0.0 which is at depth=1'
      )
      t.end()
    }
  )
})

test('cleanup', function (t) {
  cleanup()
  t.end()
})

function cleanup () {
  process.chdir(osenv.tmpdir())
  rimraf.sync(pkg)
}