python-click/tests/test_arguments.py

316 lines
8.7 KiB
Python
Raw Normal View History

2014-10-16 20:40:34 +02:00
# -*- coding: utf-8 -*-
2020-07-21 08:23:42 +02:00
import sys
2019-01-07 17:51:19 +01:00
import pytest
2020-07-21 08:23:42 +02:00
2014-10-16 20:40:34 +02:00
import click
2015-12-04 16:51:02 +01:00
from click._compat import PY2
2020-07-21 08:23:42 +02:00
from click._compat import text_type
2014-10-16 20:40:34 +02:00
def test_nargs_star(runner):
@click.command()
2020-07-21 08:23:42 +02:00
@click.argument("src", nargs=-1)
@click.argument("dst")
2014-10-16 20:40:34 +02:00
def copy(src, dst):
2020-07-21 08:23:42 +02:00
click.echo("src={}".format("|".join(src)))
click.echo("dst={}".format(dst))
2014-10-16 20:40:34 +02:00
2020-07-21 08:23:42 +02:00
result = runner.invoke(copy, ["foo.txt", "bar.txt", "dir"])
2014-10-16 20:40:34 +02:00
assert not result.exception
2020-07-21 08:23:42 +02:00
assert result.output.splitlines() == ["src=foo.txt|bar.txt", "dst=dir"]
2014-10-16 20:40:34 +02:00
2015-12-04 16:51:02 +01:00
def test_nargs_default(runner):
2020-07-21 08:23:42 +02:00
with pytest.raises(TypeError, match="nargs=-1"):
2015-12-04 16:51:02 +01:00
@click.command()
2020-07-21 08:23:42 +02:00
@click.argument("src", nargs=-1, default=42)
2015-12-04 16:51:02 +01:00
def copy(src):
pass
2014-10-16 20:40:34 +02:00
def test_nargs_tup(runner):
@click.command()
2020-07-21 08:23:42 +02:00
@click.argument("name", nargs=1)
@click.argument("point", nargs=2, type=click.INT)
2014-10-16 20:40:34 +02:00
def copy(name, point):
2020-07-21 08:23:42 +02:00
click.echo("name={}".format(name))
click.echo("point={0[0]}/{0[1]}".format(point))
2014-10-16 20:40:34 +02:00
2020-07-21 08:23:42 +02:00
result = runner.invoke(copy, ["peter", "1", "2"])
2014-10-16 20:40:34 +02:00
assert not result.exception
2020-07-21 08:23:42 +02:00
assert result.output.splitlines() == ["name=peter", "point=1/2"]
2014-10-16 20:40:34 +02:00
2015-07-16 14:26:14 +02:00
def test_nargs_tup_composite(runner):
variations = [
dict(type=(str, int)),
dict(type=click.Tuple([str, int])),
dict(nargs=2, type=click.Tuple([str, int])),
dict(nargs=2, type=(str, int)),
]
for opts in variations:
2020-07-21 08:23:42 +02:00
2015-07-16 14:26:14 +02:00
@click.command()
2020-07-21 08:23:42 +02:00
@click.argument("item", **opts)
2015-07-16 14:26:14 +02:00
def copy(item):
2020-07-21 08:23:42 +02:00
click.echo("name={0[0]} id={0[1]:d}".format(item))
2015-07-16 14:26:14 +02:00
2020-07-21 08:23:42 +02:00
result = runner.invoke(copy, ["peter", "1"])
2015-07-16 14:26:14 +02:00
assert not result.exception
2020-07-21 08:23:42 +02:00
assert result.output.splitlines() == ["name=peter id=1"]
2015-07-16 14:26:14 +02:00
2014-10-16 20:40:34 +02:00
def test_nargs_err(runner):
@click.command()
2020-07-21 08:23:42 +02:00
@click.argument("x")
2014-10-16 20:40:34 +02:00
def copy(x):
click.echo(x)
2020-07-21 08:23:42 +02:00
result = runner.invoke(copy, ["foo"])
2014-10-16 20:40:34 +02:00
assert not result.exception
2020-07-21 08:23:42 +02:00
assert result.output == "foo\n"
2014-10-16 20:40:34 +02:00
2020-07-21 08:23:42 +02:00
result = runner.invoke(copy, ["foo", "bar"])
2014-10-16 20:40:34 +02:00
assert result.exit_code == 2
2020-07-21 08:23:42 +02:00
assert "Got unexpected extra argument (bar)" in result.output
def test_bytes_args(runner, monkeypatch):
@click.command()
@click.argument("arg")
def from_bytes(arg):
assert isinstance(
arg, text_type
), "UTF-8 encoded argument should be implicitly converted to Unicode"
# Simulate empty locale environment variables
if PY2:
monkeypatch.setattr(sys.stdin, "encoding", "ANSI_X3.4-1968")
monkeypatch.setattr(sys, "getfilesystemencoding", lambda: "ANSI_X3.4-1968")
monkeypatch.setattr(sys, "getdefaultencoding", lambda: "ascii")
else:
monkeypatch.setattr(sys.stdin, "encoding", "utf-8")
monkeypatch.setattr(sys, "getfilesystemencoding", lambda: "utf-8")
monkeypatch.setattr(sys, "getdefaultencoding", lambda: "utf-8")
runner.invoke(
from_bytes,
[u"Something outside of ASCII range: 林".encode("UTF-8")],
catch_exceptions=False,
)
2014-10-16 20:40:34 +02:00
def test_file_args(runner):
@click.command()
2020-07-21 08:23:42 +02:00
@click.argument("input", type=click.File("rb"))
@click.argument("output", type=click.File("wb"))
2014-10-16 20:40:34 +02:00
def inout(input, output):
while True:
chunk = input.read(1024)
if not chunk:
break
output.write(chunk)
with runner.isolated_filesystem():
2020-07-21 08:23:42 +02:00
result = runner.invoke(inout, ["-", "hello.txt"], input="Hey!")
assert result.output == ""
2014-10-16 20:40:34 +02:00
assert result.exit_code == 0
2020-07-21 08:23:42 +02:00
with open("hello.txt", "rb") as f:
assert f.read() == b"Hey!"
2014-10-16 20:40:34 +02:00
2020-07-21 08:23:42 +02:00
result = runner.invoke(inout, ["hello.txt", "-"])
assert result.output == "Hey!"
2014-10-16 20:40:34 +02:00
assert result.exit_code == 0
2016-04-06 18:13:57 +02:00
def test_path_args(runner):
@click.command()
2020-07-21 08:23:42 +02:00
@click.argument("input", type=click.Path(dir_okay=False, allow_dash=True))
2016-04-06 18:13:57 +02:00
def foo(input):
click.echo(input)
2020-07-21 08:23:42 +02:00
result = runner.invoke(foo, ["-"])
assert result.output == "-\n"
2016-04-06 18:13:57 +02:00
assert result.exit_code == 0
2014-10-16 20:40:34 +02:00
def test_file_atomics(runner):
@click.command()
2020-07-21 08:23:42 +02:00
@click.argument("output", type=click.File("wb", atomic=True))
2014-10-16 20:40:34 +02:00
def inout(output):
2020-07-21 08:23:42 +02:00
output.write(b"Foo bar baz\n")
2014-10-16 20:40:34 +02:00
output.flush()
2020-07-21 08:23:42 +02:00
with open(output.name, "rb") as f:
2014-10-16 20:40:34 +02:00
old_content = f.read()
2020-07-21 08:23:42 +02:00
assert old_content == b"OLD\n"
2014-10-16 20:40:34 +02:00
with runner.isolated_filesystem():
2020-07-21 08:23:42 +02:00
with open("foo.txt", "wb") as f:
f.write(b"OLD\n")
result = runner.invoke(inout, ["foo.txt"], input="Hey!", catch_exceptions=False)
assert result.output == ""
2014-10-16 20:40:34 +02:00
assert result.exit_code == 0
2020-07-21 08:23:42 +02:00
with open("foo.txt", "rb") as f:
assert f.read() == b"Foo bar baz\n"
2014-10-16 20:40:34 +02:00
def test_stdout_default(runner):
@click.command()
2020-07-21 08:23:42 +02:00
@click.argument("output", type=click.File("w"), default="-")
2014-10-16 20:40:34 +02:00
def inout(output):
2020-07-21 08:23:42 +02:00
output.write("Foo bar baz\n")
2014-10-16 20:40:34 +02:00
output.flush()
result = runner.invoke(inout, [])
assert not result.exception
2020-07-21 08:23:42 +02:00
assert result.output == "Foo bar baz\n"
2014-10-16 20:40:34 +02:00
def test_nargs_envvar(runner):
@click.command()
2020-07-21 08:23:42 +02:00
@click.option("--arg", nargs=2)
2014-10-16 20:40:34 +02:00
def cmd(arg):
2020-07-21 08:23:42 +02:00
click.echo("|".join(arg))
2014-10-16 20:40:34 +02:00
2020-07-21 08:23:42 +02:00
result = runner.invoke(
cmd, [], auto_envvar_prefix="TEST", env={"TEST_ARG": "foo bar"}
)
2014-10-16 20:40:34 +02:00
assert not result.exception
2020-07-21 08:23:42 +02:00
assert result.output == "foo|bar\n"
2014-10-16 20:40:34 +02:00
@click.command()
2020-07-21 08:23:42 +02:00
@click.option("--arg", envvar="X", nargs=2)
2014-10-16 20:40:34 +02:00
def cmd(arg):
2020-07-21 08:23:42 +02:00
click.echo("|".join(arg))
2014-10-16 20:40:34 +02:00
2020-07-21 08:23:42 +02:00
result = runner.invoke(cmd, [], env={"X": "foo bar"})
2014-10-16 20:40:34 +02:00
assert not result.exception
2020-07-21 08:23:42 +02:00
assert result.output == "foo|bar\n"
2014-10-16 20:40:34 +02:00
def test_empty_nargs(runner):
@click.command()
2020-07-21 08:23:42 +02:00
@click.argument("arg", nargs=-1)
2014-10-16 20:40:34 +02:00
def cmd(arg):
2020-07-21 08:23:42 +02:00
click.echo("arg:{}".format("|".join(arg)))
2014-10-16 20:40:34 +02:00
result = runner.invoke(cmd, [])
assert result.exit_code == 0
2020-07-21 08:23:42 +02:00
assert result.output == "arg:\n"
2014-10-16 20:40:34 +02:00
@click.command()
2020-07-21 08:23:42 +02:00
@click.argument("arg", nargs=-1, required=True)
2014-10-16 20:40:34 +02:00
def cmd2(arg):
2020-07-21 08:23:42 +02:00
click.echo("arg:{}".format("|".join(arg)))
2014-10-16 20:40:34 +02:00
result = runner.invoke(cmd2, [])
assert result.exit_code == 2
2020-07-21 08:23:42 +02:00
assert "Missing argument 'ARG...'" in result.output
2014-10-16 20:40:34 +02:00
def test_missing_arg(runner):
@click.command()
2020-07-21 08:23:42 +02:00
@click.argument("arg")
2014-10-16 20:40:34 +02:00
def cmd(arg):
2020-07-21 08:23:42 +02:00
click.echo("arg:{}".format(arg))
2014-10-16 20:40:34 +02:00
result = runner.invoke(cmd, [])
assert result.exit_code == 2
2020-07-21 08:23:42 +02:00
assert "Missing argument 'ARG'." in result.output
def test_missing_argument_string_cast():
ctx = click.Context(click.Command(""))
with pytest.raises(click.MissingParameter) as excinfo:
click.Argument(["a"], required=True).full_process_value(ctx, None)
assert str(excinfo.value) == "missing parameter: a"
2014-10-16 20:40:34 +02:00
def test_implicit_non_required(runner):
@click.command()
2020-07-21 08:23:42 +02:00
@click.argument("f", default="test")
2014-10-16 20:40:34 +02:00
def cli(f):
click.echo(f)
result = runner.invoke(cli, [])
assert result.exit_code == 0
2020-07-21 08:23:42 +02:00
assert result.output == "test\n"
2014-10-16 20:40:34 +02:00
def test_eat_options(runner):
@click.command()
2020-07-21 08:23:42 +02:00
@click.option("-f")
@click.argument("files", nargs=-1)
2014-10-16 20:40:34 +02:00
def cmd(f, files):
for filename in files:
click.echo(filename)
click.echo(f)
2020-07-21 08:23:42 +02:00
result = runner.invoke(cmd, ["--", "-foo", "bar"])
assert result.output.splitlines() == ["-foo", "bar", ""]
2014-10-16 20:40:34 +02:00
2020-07-21 08:23:42 +02:00
result = runner.invoke(cmd, ["-f", "-x", "--", "-foo", "bar"])
assert result.output.splitlines() == ["-foo", "bar", "-x"]
2015-07-16 14:26:14 +02:00
def test_nargs_star_ordering(runner):
@click.command()
2020-07-21 08:23:42 +02:00
@click.argument("a", nargs=-1)
@click.argument("b")
@click.argument("c")
2015-07-16 14:26:14 +02:00
def cmd(a, b, c):
for arg in (a, b, c):
click.echo(arg)
2020-07-21 08:23:42 +02:00
result = runner.invoke(cmd, ["a", "b", "c"])
assert result.output.splitlines() == ["(u'a',)" if PY2 else "('a',)", "b", "c"]
2015-07-16 14:26:14 +02:00
def test_nargs_specified_plus_star_ordering(runner):
@click.command()
2020-07-21 08:23:42 +02:00
@click.argument("a", nargs=-1)
@click.argument("b")
@click.argument("c", nargs=2)
2015-07-16 14:26:14 +02:00
def cmd(a, b, c):
for arg in (a, b, c):
click.echo(arg)
2020-07-21 08:23:42 +02:00
result = runner.invoke(cmd, ["a", "b", "c", "d", "e", "f"])
2015-07-16 14:26:14 +02:00
assert result.output.splitlines() == [
2020-07-21 08:23:42 +02:00
"(u'a', u'b', u'c')" if PY2 else "('a', 'b', 'c')",
"d",
"(u'e', u'f')" if PY2 else "('e', 'f')",
2015-07-16 14:26:14 +02:00
]
2015-12-04 16:51:02 +01:00
def test_defaults_for_nargs(runner):
@click.command()
2020-07-21 08:23:42 +02:00
@click.argument("a", nargs=2, type=int, default=(1, 2))
2015-12-04 16:51:02 +01:00
def cmd(a):
x, y = a
click.echo(x + y)
result = runner.invoke(cmd, [])
2020-07-21 08:23:42 +02:00
assert result.output.strip() == "3"
2015-12-04 16:51:02 +01:00
2020-07-21 08:23:42 +02:00
result = runner.invoke(cmd, ["3", "4"])
assert result.output.strip() == "7"
2015-12-04 16:51:02 +01:00
2020-07-21 08:23:42 +02:00
result = runner.invoke(cmd, ["3"])
2015-12-04 16:51:02 +01:00
assert result.exception is not None
2020-07-21 08:23:42 +02:00
assert "argument a takes 2 values" in result.output
2019-01-07 17:51:19 +01:00
def test_multiple_param_decls_not_allowed(runner):
with pytest.raises(TypeError):
2020-07-21 08:23:42 +02:00
2019-01-07 17:51:19 +01:00
@click.command()
2020-07-21 08:23:42 +02:00
@click.argument("x", click.Choice(["a", "b"]))
2019-01-07 17:51:19 +01:00
def copy(x):
click.echo(x)