summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/ci-with-local-dependency.js
blob: 376dc978181537b5997ef0720572d358fba75474 (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
const fs = require('graceful-fs')
const path = require('path')

const mkdirp = require('mkdirp')
const t = require('tap')

const common = require('../common-tap.js')

const pkg = common.pkg + '/package'

const EXEC_OPTS = {
  cwd: pkg,
  stdio: [0, 1, 2],
  env: common.newEnv().extend({
    npm_config_registry: common.registry
  })
}

const localDependencyJson = {
  name: 'local-dependency',
  version: '0.0.0',
  dependencies: {
    'test-package': '0.0.0'
  }
}

const dependentJson = {
  name: 'dependent',
  version: '0.0.0',
  dependencies: {
    'local-dependency': '../local-dependency'
  }
}

const target = path.resolve(pkg, '../local-dependency')
const mr = require('npm-registry-mock')
let server
t.teardown(() => {
  if (server) {
    server.close()
  }
})

t.test('setup', function (t) {
  mkdirp.sync(target)
  fs.writeFileSync(
    path.join(target, 'package.json'),
    JSON.stringify(localDependencyJson, null, 2)
  )
  mkdirp.sync(pkg)
  fs.writeFileSync(
    path.join(pkg, 'package.json'),
    JSON.stringify(dependentJson, null, 2)
  )
  mr({ port: common.port }, (er, s) => {
    if (er) {
      throw er
    }
    server = s
    t.end()
  })
})

t.test('\'npm install\' should install local pkg from sub path', function (t) {
  common.npm(['install', '--loglevel=silent'], EXEC_OPTS, function (err, code) {
    if (err) throw err
    t.equal(code, 0, 'npm install exited with code')
    t.ok(fs.statSync(path.resolve(pkg, 'node_modules/local-dependency/package.json')).isFile(), 'local dependency package.json exists')
    t.ok(fs.statSync(path.resolve(pkg, 'node_modules/local-dependency/node_modules/test-package')).isDirectory(), 'transitive dependency installed')
    t.end()
  })
})

t.test('\'npm ci\' should work', function (t) {
  common.npm(['ci', '--loglevel=silent'], EXEC_OPTS, function (err, code) {
    if (err) throw err
    t.equal(code, 0, 'npm install exited with code')
    t.ok(fs.statSync(path.resolve(pkg, 'node_modules/local-dependency/package.json')).isFile(), 'local dependency package.json exists')
    t.ok(fs.statSync(path.resolve(pkg, 'node_modules/local-dependency/node_modules/test-package')).isDirectory(), 'transitive dependency installed')
    t.end()
  })
})