summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/uninstall-in-reverse.js
blob: e5c7a80c7eefef5931203f605b0027b8c022de4d (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
'use strict'
var test = require('tap').test
var requireInject = require('require-inject')
var log = require('npmlog')

/*
The remove actions need to happen in the opposite of their normally defined
order. That is, they need to go shallow -> deep.
*/

var removed = []
var npm = requireInject.installGlobally('../../lib/npm.js', {
  '../../lib/install/action/remove.js': function (staging, pkg, log, next) {
    removed.push(pkg.package.name)
    next()
  }
})

test('setup', function (t) {
  npm.load(function () {
    t.pass('npm loaded')
    t.end()
  })
})

test('abc', function (t) {
  var Installer = require('../../lib/install.js').Installer
  var inst = new Installer(__dirname, false, [])
  inst.progress = {executeActions: log}
  inst.todo = [
    ['remove', {package: {name: 'first'}}],
    ['remove', {package: {name: 'second'}}]
  ]
  inst.executeActions(function () {
    t.isDeeply(removed, ['second', 'first'])
    t.end()
  })
})