2015-12-16 08:07:31 +03:00
|
|
|
# frozen_string_literal: false
|
2010-02-02 16:58:56 +03:00
|
|
|
require_relative 'test_optparse'
|
2003-11-05 13:09:58 +03:00
|
|
|
|
|
|
|
class TestOptionParser::OptArg < TestOptionParser
|
|
|
|
def setup
|
|
|
|
super
|
|
|
|
@opt.def_option("-x[VAL]") {|x| @flag = x}
|
|
|
|
@opt.def_option("--option[=VAL]") {|x| @flag = x}
|
2012-01-16 11:42:01 +04:00
|
|
|
@opt.def_option("--regexp[=REGEXP]", Regexp) {|x| @reopt = x}
|
2016-10-14 11:20:26 +03:00
|
|
|
@opt.def_option "--with_underscore[=VAL]" do |x| @flag = x end
|
|
|
|
@opt.def_option "--with-hyphen[=VAL]" do |x| @flag = x end
|
2012-01-16 11:42:01 +04:00
|
|
|
@reopt = nil
|
2003-11-05 13:09:58 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_short
|
|
|
|
assert_equal(%w"", no_error {@opt.parse!(%w"-x")})
|
|
|
|
assert_equal(nil, @flag)
|
|
|
|
@flag = false
|
|
|
|
assert_equal(%w"foo", no_error {@opt.parse!(%w"-x foo")})
|
|
|
|
assert_equal(nil, @flag)
|
|
|
|
assert_equal(%w"", no_error {@opt.parse!(%w"-xfoo")})
|
|
|
|
assert_equal("foo", @flag)
|
|
|
|
assert_equal(%w"", no_error {@opt.parse!(%w"-x=")})
|
|
|
|
assert_equal("=", @flag)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_abbrev
|
|
|
|
assert_equal(%w"", no_error {@opt.parse!(%w"-o")})
|
|
|
|
assert_equal(nil, @flag)
|
|
|
|
@flag = false
|
|
|
|
assert_equal(%w"foo", no_error {@opt.parse!(%w"-o foo")})
|
|
|
|
assert_equal(nil, @flag)
|
|
|
|
assert_equal(%w"", no_error {@opt.parse!(%w"-ofoo")})
|
|
|
|
assert_equal("foo", @flag)
|
|
|
|
assert_equal(%w"", no_error {@opt.parse!(%w"-o=")})
|
|
|
|
assert_equal("=", @flag)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_long
|
|
|
|
assert_equal(%w"", no_error {@opt.parse!(%w"--opt")})
|
|
|
|
assert_equal(nil, @flag)
|
|
|
|
assert_equal(%w"foo", no_error {@opt.parse!(%w"--opt= foo")})
|
|
|
|
assert_equal("", @flag)
|
|
|
|
assert_equal(%w"", no_error {@opt.parse!(%w"--opt=foo")})
|
|
|
|
assert_equal("foo", @flag)
|
|
|
|
assert_equal(%w"foo", no_error {@opt.parse!(%w"--opt foo")})
|
|
|
|
assert_equal(nil, @flag)
|
|
|
|
end
|
2016-10-14 11:20:26 +03:00
|
|
|
|
|
|
|
def test_hyphenize
|
|
|
|
assert_equal(%w"", no_error {@opt.parse!(%w"--with_underscore=foo1")})
|
|
|
|
assert_equal("foo1", @flag)
|
|
|
|
assert_equal(%w"", no_error {@opt.parse!(%w"--with-underscore=foo2")})
|
|
|
|
assert_equal("foo2", @flag)
|
|
|
|
assert_equal(%w"", no_error {@opt.parse!(%w"--with-hyphen=foo3")})
|
|
|
|
assert_equal("foo3", @flag)
|
|
|
|
assert_equal(%w"", no_error {@opt.parse!(%w"--with_hyphen=foo4")})
|
|
|
|
assert_equal("foo4", @flag)
|
|
|
|
end
|
2003-11-05 13:09:58 +03:00
|
|
|
end
|