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
|
const t = require('tap')
const npm = require('../../../lib/npm.js')
t.test('usage', t => {
t.afterEach((cb) => {
npm.config.set('viewer', null)
npm.config.set('long', false)
npm.config.set('userconfig', '/some/config/file/.npmrc')
cb()
})
const { dirname } = require('path')
const basedir = dirname(dirname(dirname(__dirname)))
t.cleanSnapshot = str => str.split(basedir).join('{BASEDIR}')
.split(require('../../../package.json').version).join('{VERSION}')
npm.load(err => {
if (err)
throw err
npm.config.set('viewer', null)
npm.config.set('long', false)
npm.config.set('userconfig', '/some/config/file/.npmrc')
t.test('basic usage', t => {
t.matchSnapshot(npm.usage)
t.end()
})
t.test('with browser', t => {
npm.config.set('viewer', 'browser')
t.matchSnapshot(npm.usage)
t.end()
})
t.test('with long', t => {
npm.config.set('long', true)
t.matchSnapshot(npm.usage)
t.end()
})
t.test('set process.stdout.columns', t => {
const { columns } = process.stdout
t.teardown(() => {
Object.defineProperty(process.stdout, 'columns', {
value: columns,
enumerable: true,
configurable: true,
writable: true,
})
})
const cases = [0, 90]
for (const cols of cases) {
t.test(`columns=${cols}`, t => {
Object.defineProperty(process.stdout, 'columns', {
value: cols,
enumerable: true,
configurable: true,
writable: true,
})
t.matchSnapshot(npm.usage)
t.end()
})
}
t.end()
})
t.end()
})
})
|