File size: 1,445 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
'use strict'
const TestRunner = require('test-runner')
const FlagOption = require('../../lib/option-flag')
const a = require('assert')

const runner = new TestRunner()

runner.test('type-boolean: single set', function () {
  const option = new FlagOption({ name: 'one', type: Boolean })

  option.set(undefined)
  a.strictEqual(option.get(), true)
})

runner.test('type-boolean: single set 2', function () {
  const option = new FlagOption({ name: 'one', type: Boolean })

  option.set('true')
  a.strictEqual(option.get(), true)
})

runner.test('type-boolean: set twice', function () {
  const option = new FlagOption({ name: 'one', type: Boolean })

  option.set(undefined)
  a.strictEqual(option.get(), true)
  a.throws(
    () => option.set('true'),
    err => err.name === 'ALREADY_SET'
  )
})

const origBoolean = Boolean

/* test in contexts which override the standard global Boolean constructor */
runner.test('type-boolean: global Boolean overridden', function () {
  function Boolean () {
    return origBoolean.apply(origBoolean, arguments)
  }

  const option = new FlagOption({ name: 'one', type: Boolean })

  option.set()
  a.strictEqual(option.get(), true)
})

runner.test('type-boolean-multiple: 1', function () {
  const option = new FlagOption({ name: 'one', type: Boolean, multiple: true })

  option.set(undefined)
  option.set(undefined)
  option.set(undefined)

  a.deepStrictEqual(option.get(), [ true, true, true ])
})