summaryrefslogtreecommitdiff
path: root/test/optparse/test_kwargs.rb
blob: 68fe207a2c6eaec3079f40e24159b543ef426915 (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
# frozen_string_literal: false
require 'test/unit'
require 'optparse'
require 'optparse/kwargs'

class TestOptionParser < Test::Unit::TestCase
end
class TestOptionParser::KwArg < Test::Unit::TestCase
  class K
    def initialize(host:, port: 8080)
      @host = host
      @port = port
    end
  end

  class DummyOutput < String
    alias write <<
  end
  def assert_no_error(*args)
    $stderr, stderr = DummyOutput.new, $stderr
    assert_nothing_raised(*args) {return yield}
  ensure
    stderr, $stderr = $stderr, stderr
    $!.backtrace.delete_if {|e| /\A#{Regexp.quote(__FILE__)}:#{__LINE__-2}/o =~ e} if $!
    assert_empty(stderr)
  end
  alias no_error assert_no_error

  def test_kwarg
    opt = OptionParser.new
    options = opt.define_by_keywords({}, K.instance_method(:initialize),
                                     port: [Integer])
    assert_raise(OptionParser::MissingArgument) {opt.parse!(%w"--host")}
    assert_nothing_raised {opt.parse!(%w"--host=localhost")}
    assert_equal("localhost", options[:host])
    assert_nothing_raised {opt.parse!(%w"--port")}
    assert_nothing_raised {opt.parse!(%w"--port=80")}
    assert_equal(80, options[:port])
  end
end