summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/registry.js
blob: 060d9b67b67fccfc7d445b0492a92f31423de72f (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
// Run all the tests in the `npm-registry-couchapp` suite
// This verifies that the server-side stuff still works.

var common = require("../common-tap")
var test = require("tap").test

var npmExec = require.resolve("../../bin/npm-cli.js")
var path = require("path")
var ca = path.resolve(__dirname, "../../node_modules/npm-registry-couchapp")

var which = require("which")

var v = process.versions.node.split(".").map(function (n) { return parseInt(n, 10) })
if (v[0] === 0 && v[1] < 10) {
  console.error(
    "WARNING: need a recent Node for npm-registry-couchapp tests to run, have",
    process.versions.node
  )
}
else {
  which("couchdb", function (er) {
    if (er) {
      console.error("WARNING: need couch to run test: " + er.message)
    }
    else {
      runTests()
    }
  })
}


function runTests () {
  var env = { TAP: 1 }
  for (var i in process.env) env[i] = process.env[i]
  env.npm = npmExec

  var opts = {
    cwd: ca,
    stdio: "inherit"
  }
  common.npm(["install"], opts, function (err, code) {
    if (err) { throw err }
    if (code) {
      return test("need install to work", function (t) {
        t.fail("install failed with: " + code)
        t.end()
      })

    } else {
      opts = {
        cwd: ca,
        env: env,
        stdio: "inherit"
      }
      common.npm(["test", "--", "-Rtap"], opts, function (err, code) {
        if (err) { throw err }
        if (code) {
          return test("need test to work", function (t) {
            t.fail("test failed with: " + code)
            t.end()
          })
        }
        opts = {
          cwd: ca,
          env: env,
          stdio: "inherit"
        }
        common.npm(["prune", "--production"], opts, function (err, code) {
          if (err) { throw err }
          process.exit(code || 0)
        })
      })
    }
  })
}