summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/auto-prune.js
blob: 8d129c4a83b21d8a6a066915c7c688b75af9dacd (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
'use strict'
const path = require('path')
const test = require('tap').test
const mr = require('npm-registry-mock')
const Tacks = require('tacks')
const File = Tacks.File
const Dir = Tacks.Dir
const common = require('../common-tap.js')

const basedir = common.pkg
const testdir = path.join(basedir, 'testdir')
const cachedir = path.join(basedir, 'cache')
const globaldir = path.join(basedir, 'global')
const tmpdir = path.join(basedir, 'tmp')

const conf = {
  cwd: testdir,
  env: Object.assign({}, process.env, {
    npm_config_cache: cachedir,
    npm_config_tmp: tmpdir,
    npm_config_prefix: globaldir,
    npm_config_registry: common.registry,
    npm_config_loglevel: 'warn'
  })
}

let server
const fixture = new Tacks(Dir({
  cache: Dir(),
  global: Dir(),
  tmp: Dir(),
  testdir: Dir({
    node_modules: Dir({
      minimist: Dir({
        'package.json': File({
          _integrity: 'sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=',
          _resolved: 'https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz',
          name: 'minimist',
          version: '0.0.8'
        })
      }),
      mkdirp: Dir({
        'package.json': File({
          _integrity: 'sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=',
          _resolved: 'https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz',
          dependencies: {
            minimist: '0.0.8'
          },
          name: 'mkdirp',
          version: '0.5.1'
        })
      }),
      null: Dir({
        'package.json': File({
          _integrity: 'sha1-WoIdUnAxMlyG06AasQFzKgkfoew=',
          _resolved: 'https://registry.npmjs.org/null/-/null-1.0.1.tgz',
          _spec: 'null',
          name: 'null',
          version: '1.0.1'
        })
      })
    }),
    'package-lock.json': File({
      name: 'with-lock',
      version: '1.0.0',
      lockfileVersion: 1,
      requires: true,
      dependencies: {
        minimist: {
          version: '0.0.8',
          resolved: 'https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz',
          integrity: 'sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0='
        },
        mkdirp: {
          version: '0.5.1',
          resolved: 'https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz',
          integrity: 'sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=',
          requires: {
            minimist: '0.0.8'
          }
        }
      }
    }),
    'package.json': File({
      name: 'with-lock',
      version: '1.0.0',
      dependencies: {
        mkdirp: '^0.5.1'
      }
    })
  })
}))

function setup () {
  cleanup()
  fixture.create(basedir)
}

function cleanup () {
  fixture.remove(basedir)
}

test('setup', function (t) {
  setup()
  mr({port: common.port, throwOnUnmatched: true}, function (err, s) {
    if (err) throw err
    server = s
    t.done()
  })
})

test('auto-prune w/ package-lock', function (t) {
  common.npm(['install', '--dry-run', '--json'], conf, function (err, code, stdout, stderr) {
    if (err) throw err
    t.is(code, 0, 'command ran ok')
    t.comment(stderr.trim())
    const result = JSON.parse(stdout)
    t.is(result.added.length, 0, 'nothing added')
    t.is(result.updated.length, 0, 'nothing updated')
    t.is(result.moved.length, 0, 'nothing moved')
    t.is(result.failed.length, 0, 'nothing failed')
    t.is(result.removed.length, 1, 'pruned 1')
    t.like(result, {'removed': [{'name': 'null'}]}, 'pruned the right one')
    t.done()
  })
})

test('auto-prune w/ --no-package-lock', function (t) {
  common.npm(['install', '--dry-run', '--json', '--no-package-lock'], conf, function (err, code, stdout, stderr) {
    if (err) throw err
    t.is(code, 0, 'command ran ok')
    t.comment(stderr.trim())
    const result = JSON.parse(stdout)
    t.is(result.added.length, 0, 'nothing added')
    t.is(result.updated.length, 0, 'nothing updated')
    t.is(result.moved.length, 0, 'nothing moved')
    t.is(result.failed.length, 0, 'nothing failed')
    t.is(result.removed.length, 0, 'nothing pruned')
    t.done()
  })
})

test('cleanup', function (t) {
  server.close()
  cleanup()
  t.done()
})