File size: 981 Bytes
be5030f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
'use strict'
const TestRunner = require('test-runner')
const commandLineArgs = require('../')
const a = require('assert')

const runner = new TestRunner()

runner.test('alias: one string alias', function () {
  const optionDefinitions = [
    { name: 'verbose', alias: 'v' }
  ]
  const argv = [ '-v' ]
  a.deepStrictEqual(commandLineArgs(optionDefinitions, { argv }), {
    verbose: null
  })
})

runner.test('alias: one boolean alias', function () {
  const optionDefinitions = [
    { name: 'dry-run', alias: 'd', type: Boolean }
  ]
  const argv = [ '-d' ]
  a.deepStrictEqual(commandLineArgs(optionDefinitions, { argv }), {
    'dry-run': true
  })
})

runner.test('alias: one boolean, one string', function () {
  const optionDefinitions = [
    { name: 'verbose', alias: 'v', type: Boolean },
    { name: 'colour', alias: 'c' }
  ]
  const argv = [ '-v', '-c' ]
  a.deepStrictEqual(commandLineArgs(optionDefinitions, { argv }), {
    verbose: true,
    colour: null
  })
})