aboutsummaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/install-save-prefix.js
blob: 0ce6e02fa115f901eaa2122ff867c7ebbe183aab (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
var common = require('../common-tap.js')
var test = require('tap').test
var npm = require('../../')
var osenv = require('osenv')
var path = require('path')
var fs = require('fs')
var rimraf = require('rimraf')
var mkdirp = require('mkdirp')
var pkg = path.join(__dirname, 'install-save-prefix')
var mr = require("npm-registry-mock")

test("setup", function (t) {
  mkdirp.sync(pkg)
  mkdirp.sync(path.resolve(pkg, 'node_modules'))
  process.chdir(pkg)
  t.end()
})

test('"npm install --save with default save-prefix should install local pkg versioned to allow minor updates', function(t) {
  resetPackageJSON(pkg)
  mr(common.port, function (s) {
    npm.load({
      cache: pkg + "/cache",
      loglevel: 'silent',
      registry: common.registry }, function(err) {
        t.ifError(err)
        npm.config.set('save', true)
        npm.commands.install(['underscore@1.3.1'], function(err) {
          t.ifError(err)
          var p = path.resolve(pkg, 'node_modules/underscore/package.json')
          t.ok(JSON.parse(fs.readFileSync(p)))
          var pkgJson = JSON.parse(fs.readFileSync(pkg + '/package.json', 'utf8'))
          t.deepEqual(pkgJson.dependencies, {
            'underscore': '^1.3.1'
          }, 'Underscore dependency should specify ^1.3.1')
          npm.config.set('save', undefined)
          s.close()
          t.end()
        })
      })
  })
})

test('"npm install --save-dev with default save-prefix should install local pkg to dev dependencies versioned to allow minor updates', function(t) {
  resetPackageJSON(pkg)
  mr(common.port, function (s) {
    npm.load({
      cache: pkg + "/cache",
      loglevel: 'silent',
      registry: common.registry }, function(err) {
        t.ifError(err)
        npm.config.set('save-dev', true)
        npm.commands.install(['underscore@1.3.1'], function(err) {
          t.ifError(err)
          var p = path.resolve(pkg, 'node_modules/underscore/package.json')
          t.ok(JSON.parse(fs.readFileSync(p)))
          var pkgJson = JSON.parse(fs.readFileSync(pkg + '/package.json', 'utf8'))
          t.deepEqual(pkgJson.devDependencies, {
            'underscore': '^1.3.1'
          }, 'Underscore devDependency should specify ^1.3.1')
          npm.config.set('save-dev', undefined)
          s.close()
          t.end()
        })
      })
  })
})

test('"npm install --save with "~" save-prefix should install local pkg versioned to allow patch updates', function(t) {
  resetPackageJSON(pkg)
  mr(common.port, function (s) {
    npm.load({
      cache: pkg + "/cache",
      loglevel: 'silent',
      registry: common.registry }, function(err) {
        t.ifError(err)
        npm.config.set('save', true)
        npm.config.set('save-prefix', '~')
        npm.commands.install(['underscore@1.3.1'], function(err) {
          t.ifError(err)
          var p = path.resolve(pkg, 'node_modules/underscore/package.json')
          t.ok(JSON.parse(fs.readFileSync(p)))
          var pkgJson = JSON.parse(fs.readFileSync(pkg + '/package.json', 'utf8'))
          t.deepEqual(pkgJson.dependencies, {
            'underscore': '~1.3.1'
          }, 'Underscore dependency should specify ~1.3.1')
          npm.config.set('save', undefined)
          npm.config.set('save-prefix', undefined)
          s.close()
          t.end()
        })
      })
  })
})

test('"npm install --save-dev with "~" save-prefix should install local pkg to dev dependencies versioned to allow patch updates', function(t) {
  resetPackageJSON(pkg)
  mr(common.port, function (s) {
    npm.load({
      cache: pkg + "/cache",
      loglevel: 'silent',
      registry: common.registry }, function(err) {
        t.ifError(err)
        npm.config.set('save-dev', true)
        npm.config.set('save-prefix', '~')
        npm.commands.install(['underscore@1.3.1'], function(err) {
          t.ifError(err)
          var p = path.resolve(pkg, 'node_modules/underscore/package.json')
          t.ok(JSON.parse(fs.readFileSync(p)))
          var pkgJson = JSON.parse(fs.readFileSync(pkg + '/package.json', 'utf8'))
          t.deepEqual(pkgJson.devDependencies, {
            'underscore': '~1.3.1'
          }, 'Underscore devDependency should specify ~1.3.1')
          npm.config.set('save-dev', undefined)
          npm.config.set('save-prefix', undefined)
          s.close()
          t.end()
        })
      })
  })
})

test('cleanup', function(t) {
  process.chdir(__dirname)
  rimraf.sync(path.resolve(pkg, 'node_modules'))
  rimraf.sync(path.resolve(pkg, 'cache'))
  resetPackageJSON(pkg)
  t.end()
})

function resetPackageJSON(pkg) {
  var pkgJson = JSON.parse(fs.readFileSync(pkg + '/package.json', 'utf8'))
  delete pkgJson.dependencies
  delete pkgJson.devDependencies
  delete pkgJson.optionalDependencies
  var json = JSON.stringify(pkgJson, null, 2) + "\n"
  fs.writeFileSync(pkg + '/package.json', json, "ascii")
}