summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/bugs.js
blob: 4d2ee37e132d1954dfe9ebceb251272f9608ee34 (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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
var common = require('../common-tap.js')
common.pendIfWindows('not working because Windows and shebangs')

var mr = require('npm-registry-mock')

var test = require('tap').test
var rimraf = require('rimraf')
var fs = require('fs')
var path = require('path')
var join = path.join
var outFile = path.join(__dirname, '/_output')

var opts = { cwd: __dirname }

test('setup', function (t) {
  var s = '#!/usr/bin/env bash\n' +
          'echo "$@" > ' + JSON.stringify(__dirname) + '/_output\n'
  fs.writeFileSync(join(__dirname, '/_script.sh'), s, 'ascii')
  fs.chmodSync(join(__dirname, '/_script.sh'), '0755')
  t.pass('made script')
  t.end()
})

test('npm bugs underscore', function (t) {
  mr({ port: common.port }, function (er, s) {
    common.npm(
      [
        'bugs', 'underscore',
        '--registry=' + common.registry,
        '--loglevel=silent',
        '--browser=' + join(__dirname, '/_script.sh')
      ],
      opts,
      function (err, code, stdout, stderr) {
        t.ifError(err, 'bugs ran without issue')
        t.notOk(stderr, 'should have no stderr')
        t.equal(code, 0, 'exit ok')
        var res = fs.readFileSync(outFile, 'ascii')
        s.close()
        t.equal(res, 'https://github.com/jashkenas/underscore/issues\n')
        rimraf.sync(outFile)
        t.end()
      }
    )
  })
})

test('npm bugs optimist - github (https://)', function (t) {
  mr({ port: common.port }, function (er, s) {
    common.npm(
      [
        'bugs', 'optimist',
        '--registry=' + common.registry,
        '--loglevel=silent',
        '--browser=' + join(__dirname, '/_script.sh')
      ],
      opts,
      function (err, code, stdout, stderr) {
        t.ifError(err, 'bugs ran without issue')
        t.notOk(stderr, 'should have no stderr')
        t.equal(code, 0, 'exit ok')
        var res = fs.readFileSync(outFile, 'ascii')
        s.close()
        t.equal(res, 'https://github.com/substack/node-optimist/issues\n')
        rimraf.sync(outFile)
        t.end()
      }
    )
  })
})

test('npm bugs npm-test-peer-deps - no repo', function (t) {
  mr({ port: common.port }, function (er, s) {
    common.npm(
      [
        'bugs', 'npm-test-peer-deps',
        '--registry=' + common.registry,
        '--loglevel=silent',
        '--browser=' + join(__dirname, '/_script.sh')
      ],
      opts,
      function (err, code, stdout, stderr) {
        t.ifError(err, 'bugs ran without issue')
        t.notOk(stderr, 'should have no stderr')
        t.equal(code, 0, 'exit ok')
        var res = fs.readFileSync(outFile, 'ascii')
        s.close()
        t.equal(res, 'https://www.npmjs.org/package/npm-test-peer-deps\n')
        rimraf.sync(outFile)
        t.end()
      }
    )
  })
})

test('npm bugs test-repo-url-http - non-github (http://)', function (t) {
  mr({ port: common.port }, function (er, s) {
    common.npm(
      [
        'bugs', 'test-repo-url-http',
        '--registry=' + common.registry,
        '--loglevel=silent',
        '--browser=' + join(__dirname, '/_script.sh')
      ],
      opts,
      function (err, code, stdout, stderr) {
        t.ifError(err, 'bugs ran without issue')
        t.notOk(stderr, 'should have no stderr')
        t.equal(code, 0, 'exit ok')
        var res = fs.readFileSync(outFile, 'ascii')
        s.close()
        t.equal(res, 'https://www.npmjs.org/package/test-repo-url-http\n')
        rimraf.sync(outFile)
        t.end()
      }
    )
  })
})

test('npm bugs test-repo-url-https - gitlab (https://)', function (t) {
  mr({ port: common.port }, function (er, s) {
    common.npm(
      [
        'bugs', 'test-repo-url-https',
        '--registry=' + common.registry,
        '--loglevel=silent',
        '--browser=' + join(__dirname, '/_script.sh')
      ],
      opts,
      function (err, code, stdout, stderr) {
        t.ifError(err, 'bugs ran without issue')
        t.notOk(stderr, 'should have no stderr')
        t.equal(code, 0, 'exit ok')
        var res = fs.readFileSync(outFile, 'ascii')
        s.close()
        t.equal(res, 'https://gitlab.com/evanlucas/test-repo-url-https/issues\n')
        rimraf.sync(outFile)
        t.end()
      }
    )
  })
})

test('npm bugs test-repo-url-ssh - gitlab (ssh://)', function (t) {
  mr({ port: common.port }, function (er, s) {
    common.npm(
      [
        'bugs', 'test-repo-url-ssh',
        '--registry=' + common.registry,
        '--loglevel=silent',
        '--browser=' + join(__dirname, '/_script.sh')
      ],
      opts,
      function (err, code, stdout, stderr) {
        t.ifError(err, 'bugs ran without issue')
        t.notOk(stderr, 'should have no stderr')
        t.equal(code, 0, 'exit ok')
        var res = fs.readFileSync(outFile, 'ascii')
        s.close()
        t.equal(res, 'https://gitlab.com/evanlucas/test-repo-url-ssh/issues\n')
        rimraf.sync(outFile)
        t.end()
      }
    )
  })
})

test('cleanup', function (t) {
  fs.unlinkSync(join(__dirname, '/_script.sh'))
  t.pass('cleaned up')
  t.end()
})