summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/outdated-remote.js
blob: b3990a382caa2e95fda5f59c5985adb6e9e46fd3 (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
'use strict'
const path = require('path')
const test = require('tap').test
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: common.newEnv().extend({
    npm_config_cache: cachedir,
    npm_config_tmp: tmpdir,
    npm_config_prefix: globaldir,
    npm_config_registry: common.registry,
    npm_config_loglevel: 'warn'
  })
}

const fixture = new Tacks(Dir({
  cache: Dir(),
  global: Dir(),
  tmp: Dir(),
  testdir: Dir({
    node_modules: Dir({
      'foo-http': Dir({
        'package.json': File({
          name: 'foo-http',
          version: '1.0.0'
        })
      }),
      'foo-https': Dir({
        'package.json': File({
          name: 'foo-https',
          version: '1.0.0'
        })
      })
    }),
    'package.json': File({
      name: 'outdated-remote',
      version: '1.0.0',
      dependencies: {
        'foo-http': 'http://example.com/foo.tar.gz',
        'foo-https': 'https://example.com/foo.tar.gz'
      }
    })
  })
}))

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

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

test('setup', t => {
  setup()
  return common.fakeRegistry.listen()
})

test('discovers new versions in outdated', t => {
  return common.npm(['outdated', '--json'], conf).then(([code, stdout, stderr]) => {
    t.is(code, 1, 'npm outdated completed successfully')
    t.comment(stdout.trim())
    t.comment(stderr.trim())
    const data = JSON.parse(stdout)
    t.same(data['foo-http'], {
      current: '1.0.0',
      wanted: 'remote',
      latest: 'remote',
      location: ''
    })
    t.same(data['foo-https'], {
      current: '1.0.0',
      wanted: 'remote',
      latest: 'remote',
      location: ''
    })
  })
})

test('cleanup', t => {
  common.fakeRegistry.close()
  cleanup()
  t.done()
})