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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
|
local Parser = require "argparse"
getmetatable(Parser()).error = function(_, msg) error(msg) end
describe("tests related to options", function()
describe("passing correct options", function()
it("handles no options passed correctly", function()
local parser = Parser()
parser:option "-s" "--server"
local args = parser:parse({})
assert.same({}, args)
end)
it("handles one option correctly", function()
local parser = Parser()
parser:option "-s" "--server"
local args = parser:parse({"--server", "foo"})
assert.same({server = "foo"}, args)
end)
it("normalizes default target", function()
local parser = Parser()
parser:option "--from-server"
local args = parser:parse({"--from-server", "foo"})
assert.same({from_server = "foo"}, args)
end)
it("handles non-standard charset", function()
local parser = Parser()
parser:option "/s"
parser:flag "/?"
local args = parser:parse{"/s", "foo", "/?"}
assert.same({s = "foo", ["?"] = true}, args)
end)
it("handles GNU-style long options", function()
local parser = Parser()
parser:option "-s" "--server"
local args = parser:parse({"--server=foo"})
assert.same({server = "foo"}, args)
end)
it("handles GNU-style long options even when it could take more arguments", function()
local parser = Parser()
parser:option "-s" "--server" {
args = "*"
}
local args = parser:parse({"--server=foo"})
assert.same({server = {"foo"}}, args)
end)
it("handles GNU-style long options for multi-argument options", function()
local parser = Parser()
parser:option "-s" "--server" {
args = "1-2"
}
local args = parser:parse({"--server=foo", "bar"})
assert.same({server = {"foo", "bar"}}, args)
end)
it("handles short option correctly", function()
local parser = Parser()
parser:option "-s" "--server"
local args = parser:parse({"-s", "foo"})
assert.same({server = "foo"}, args)
end)
it("handles flag correctly", function()
local parser = Parser()
parser:flag "-q" "--quiet"
local args = parser:parse({"--quiet"})
assert.same({quiet = true}, args)
args = parser:parse({})
assert.same({}, args)
end)
it("handles combined flags correctly", function()
local parser = Parser()
parser:flag "-q" "--quiet"
parser:flag "-f" "--fast"
local args = parser:parse({"-qf"})
assert.same({quiet = true, fast = true}, args)
end)
it("handles short options without space between option and argument", function()
local parser = Parser()
parser:option "-s" "--server"
local args = parser:parse({"-sfoo"})
assert.same({server = "foo"}, args)
end)
it("handles flags combined with short option correctly", function()
local parser = Parser()
parser:flag "-q" "--quiet"
parser:option "-s" "--server"
local args = parser:parse({"-qsfoo"})
assert.same({quiet = true, server = "foo"}, args)
end)
it("interprets extra option arguments as positional arguments", function()
local parser = Parser()
parser:argument "input"
:args "2+"
parser:option "-s" "--server"
local args = parser:parse{"foo", "-sFROM", "bar"}
assert.same({input = {"foo", "bar"}, server = "FROM"}, args)
end)
it("does not interpret extra option arguments as other option's arguments", function()
local parser = Parser()
parser:argument "output"
parser:option "--input"
:args "+"
parser:option "-s" "--server"
local args = parser:parse{"--input", "foo", "-sFROM", "bar"}
assert.same({input = {"foo"}, server = "FROM", output = "bar"}, args)
end)
it("does not pass arguments to options after double hyphen", function()
local parser = Parser()
parser:argument "input"
:args "?"
parser:option "--exclude"
:args "*"
local args = parser:parse{"--exclude", "--", "foo"}
assert.same({input = "foo", exclude = {}}, args)
end)
it("does not interpret options if disabled", function()
local parser = Parser()
parser:handle_options(false)
parser:argument "input"
:args "*"
parser:option "-f" "--foo"
:args "*"
local args = parser:parse{"bar", "-f", "--foo" , "bar"}
assert.same({input = {"bar", "-f", "--foo" , "bar"}}, args)
end)
it("allows using -- as an option", function()
local parser = Parser()
parser:flag "--unrelated"
parser:option "--"
:args "*"
:target "tail"
local args = parser:parse{"--", "foo", "--unrelated", "bar"}
assert.same({tail = {"foo", "--unrelated", "bar"}}, args)
end)
it("handles hidden option aliases", function()
local parser = Parser()
parser:option "--server"
:hidden_name "--from"
local args = parser:parse{"--from", "foo"}
assert.same({server = "foo"}, args)
end)
describe("Special chars set", function()
it("handles windows-style options", function()
local parser = Parser()
:add_help(false)
parser:option "\\I"
:count "*"
:target "include"
local args = parser:parse{"\\I", "src", "\\I", "misc"}
assert.same({include = {"src", "misc"}}, args)
end)
it("corrects charset in commands", function()
local parser = Parser "name"
:add_help(false)
parser:flag "-v" "--verbose"
:count "*"
parser:command "deep"
:add_help(false)
:option "/s"
local args = parser:parse{"-v", "deep", "/s", "foo", "-vv"}
assert.same({verbose = 3, deep = true, s = "foo"}, args)
end)
end)
describe("Options with optional argument", function()
it("handles emptiness correctly", function()
local parser = Parser()
parser:option("-p --password", "Secure password for special security", nil, nil, "?")
local args = parser:parse({})
assert.same({}, args)
end)
it("handles option without argument correctly", function()
local parser = Parser()
parser:option "-p" "--password" {
args = "?"
}
local args = parser:parse({"-p"})
assert.same({password = {}}, args)
end)
it("handles option with argument correctly", function()
local parser = Parser()
parser:option "-p" "--password" {
args = "?"
}
local args = parser:parse({"-p", "password"})
assert.same({password = {"password"}}, args)
end)
end)
it("handles multi-argument options correctly", function()
local parser = Parser()
parser:option "--pair" {
args = 2
}
local args = parser:parse({"--pair", "Alice", "Bob"})
assert.same({pair = {"Alice", "Bob"}}, args)
end)
describe("Multi-count options", function()
it("handles multi-count option correctly", function()
local parser = Parser()
parser:option "-e" "--exclude" {
count = "*"
}
local args = parser:parse({"-efoo", "--exclude=bar", "-e", "baz"})
assert.same({exclude = {"foo", "bar", "baz"}}, args)
end)
it("handles not used multi-count option correctly", function()
local parser = Parser()
parser:option "-e" "--exclude" {
count = "*"
}
local args = parser:parse({})
assert.same({exclude = {}}, args)
end)
it("handles multi-count multi-argument option correctly", function()
local parser = Parser()
parser:option "-e" "--exclude" {
count = "*",
args = 2
}
local args = parser:parse({"-e", "Alice", "Bob", "-e", "Emma", "Jacob"})
assert.same({exclude = {{"Alice", "Bob"}, {"Emma", "Jacob"}}}, args)
end)
it("handles multi-count flag correctly", function()
local parser = Parser()
parser:flag "-q" "--quiet" {
count = "*"
}
local args = parser:parse({"-qq", "--quiet"})
assert.same({quiet = 3}, args)
end)
it("overwrites old invocations", function()
local parser = Parser()
parser:option "-u" "--user" {
count = "0-2"
}
local args = parser:parse({"-uAlice", "--user=Bob", "--user", "John"})
assert.same({user = {"Bob", "John"}}, args)
end)
it("handles not used multi-count flag correctly", function()
local parser = Parser()
parser:flag "-q" "--quiet" {
count = "*"
}
local args = parser:parse({})
assert.same({quiet = 0}, args)
end)
end)
end)
describe("passing incorrect options", function()
it("handles lack of required argument correctly", function()
local parser = Parser()
parser:option "-s" "--server"
assert.has_error(function() parser:parse{"--server"} end, "option '--server' requires an argument")
assert.has_error(function() parser:parse{"-s"} end, "option '-s' requires an argument")
end)
it("handles unknown options correctly", function()
local parser = Parser()
:add_help(false)
parser:option "--option"
assert.has_error(function() parser:parse{"--server"} end, "unknown option '--server'")
assert.has_error(function() parser:parse{"--server=localhost"} end, "unknown option '--server'")
assert.has_error(function() parser:parse{"-s"} end, "unknown option '-s'")
assert.has_error(function() parser:parse{"-slocalhost"} end, "unknown option '-s'")
end)
it("handles too many arguments correctly", function()
local parser = Parser()
parser:option "-s" "--server"
assert.has_error(function()
parser:parse{"-sfoo", "bar"}
end, "too many arguments")
end)
it("handles invalid argument choices correctly", function()
local parse = Parser()
parse:option "-s" "--server" {
choices = {"foo", "bar", "baz"}
}
assert.has_error(function()
parse:parse{"-slocalhost"}
end, "argument for option '-s' must be one of 'foo', 'bar', 'baz'")
end)
it("doesn't accept GNU-like long options when it doesn't need arguments", function()
local parser = Parser()
parser:flag "-q" "--quiet"
assert.has_error(function()
parser:parse{"--quiet=very_quiet"}
end, "option '--quiet' does not take arguments")
end)
it("handles too many invocations correctly", function()
local parser = Parser()
parser:flag "-q" "--quiet" {
count = 1,
overwrite = false
}
assert.has_error(function()
parser:parse{"-qq"}
end, "option '-q' must be used 1 time")
end)
it("handles too few invocations correctly", function()
local parser = Parser()
parser:option "-f" "--foo" {
count = "3-4"
}
assert.has_error(function()
parser:parse{"-fFOO", "--foo=BAR"}
end, "option '--foo' must be used at least 3 times")
assert.has_error(
function() parser:parse{}
end, "missing option '-f'")
end)
end)
end)
|