123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375 |
- from contextlib import contextmanager
- import pytest
- import click
- from click.core import ParameterSource
- from click.decorators import pass_meta_key
- def test_ensure_context_objects(runner):
- class Foo:
- def __init__(self):
- self.title = "default"
- pass_foo = click.make_pass_decorator(Foo, ensure=True)
- @click.group()
- @pass_foo
- def cli(foo):
- pass
- @cli.command()
- @pass_foo
- def test(foo):
- click.echo(foo.title)
- result = runner.invoke(cli, ["test"])
- assert not result.exception
- assert result.output == "default\n"
- def test_get_context_objects(runner):
- class Foo:
- def __init__(self):
- self.title = "default"
- pass_foo = click.make_pass_decorator(Foo, ensure=True)
- @click.group()
- @click.pass_context
- def cli(ctx):
- ctx.obj = Foo()
- ctx.obj.title = "test"
- @cli.command()
- @pass_foo
- def test(foo):
- click.echo(foo.title)
- result = runner.invoke(cli, ["test"])
- assert not result.exception
- assert result.output == "test\n"
- def test_get_context_objects_no_ensuring(runner):
- class Foo:
- def __init__(self):
- self.title = "default"
- pass_foo = click.make_pass_decorator(Foo)
- @click.group()
- @click.pass_context
- def cli(ctx):
- ctx.obj = Foo()
- ctx.obj.title = "test"
- @cli.command()
- @pass_foo
- def test(foo):
- click.echo(foo.title)
- result = runner.invoke(cli, ["test"])
- assert not result.exception
- assert result.output == "test\n"
- def test_get_context_objects_missing(runner):
- class Foo:
- pass
- pass_foo = click.make_pass_decorator(Foo)
- @click.group()
- @click.pass_context
- def cli(ctx):
- pass
- @cli.command()
- @pass_foo
- def test(foo):
- click.echo(foo.title)
- result = runner.invoke(cli, ["test"])
- assert result.exception is not None
- assert isinstance(result.exception, RuntimeError)
- assert (
- "Managed to invoke callback without a context object of type"
- " 'Foo' existing" in str(result.exception)
- )
- def test_multi_enter(runner):
- called = []
- @click.command()
- @click.pass_context
- def cli(ctx):
- def callback():
- called.append(True)
- ctx.call_on_close(callback)
- with ctx:
- pass
- assert not called
- result = runner.invoke(cli, [])
- assert result.exception is None
- assert called == [True]
- def test_global_context_object(runner):
- @click.command()
- @click.pass_context
- def cli(ctx):
- assert click.get_current_context() is ctx
- ctx.obj = "FOOBAR"
- assert click.get_current_context().obj == "FOOBAR"
- assert click.get_current_context(silent=True) is None
- runner.invoke(cli, [], catch_exceptions=False)
- assert click.get_current_context(silent=True) is None
- def test_context_meta(runner):
- LANG_KEY = f"{__name__}.lang"
- def set_language(value):
- click.get_current_context().meta[LANG_KEY] = value
- def get_language():
- return click.get_current_context().meta.get(LANG_KEY, "en_US")
- @click.command()
- @click.pass_context
- def cli(ctx):
- assert get_language() == "en_US"
- set_language("de_DE")
- assert get_language() == "de_DE"
- runner.invoke(cli, [], catch_exceptions=False)
- def test_make_pass_meta_decorator(runner):
- @click.group()
- @click.pass_context
- def cli(ctx):
- ctx.meta["value"] = "good"
- @cli.command()
- @pass_meta_key("value")
- def show(value):
- return value
- result = runner.invoke(cli, ["show"], standalone_mode=False)
- assert result.return_value == "good"
- def test_make_pass_meta_decorator_doc():
- pass_value = pass_meta_key("value")
- assert "the 'value' key from :attr:`click.Context.meta`" in pass_value.__doc__
- pass_value = pass_meta_key("value", doc_description="the test value")
- assert "passes the test value" in pass_value.__doc__
- def test_context_pushing():
- rv = []
- @click.command()
- def cli():
- pass
- ctx = click.Context(cli)
- @ctx.call_on_close
- def test_callback():
- rv.append(42)
- with ctx.scope(cleanup=False):
- # Internal
- assert ctx._depth == 2
- assert rv == []
- with ctx.scope():
- # Internal
- assert ctx._depth == 1
- assert rv == [42]
- def test_pass_obj(runner):
- @click.group()
- @click.pass_context
- def cli(ctx):
- ctx.obj = "test"
- @cli.command()
- @click.pass_obj
- def test(obj):
- click.echo(obj)
- result = runner.invoke(cli, ["test"])
- assert not result.exception
- assert result.output == "test\n"
- def test_close_before_pop(runner):
- called = []
- @click.command()
- @click.pass_context
- def cli(ctx):
- ctx.obj = "test"
- @ctx.call_on_close
- def foo():
- assert click.get_current_context().obj == "test"
- called.append(True)
- click.echo("aha!")
- result = runner.invoke(cli, [])
- assert not result.exception
- assert result.output == "aha!\n"
- assert called == [True]
- def test_with_resource():
- @contextmanager
- def manager():
- val = [1]
- yield val
- val[0] = 0
- ctx = click.Context(click.Command("test"))
- with ctx.scope():
- rv = ctx.with_resource(manager())
- assert rv[0] == 1
- assert rv == [0]
- def test_make_pass_decorator_args(runner):
- """
- Test to check that make_pass_decorator doesn't consume arguments based on
- invocation order.
- """
- class Foo:
- title = "foocmd"
- pass_foo = click.make_pass_decorator(Foo)
- @click.group()
- @click.pass_context
- def cli(ctx):
- ctx.obj = Foo()
- @cli.command()
- @click.pass_context
- @pass_foo
- def test1(foo, ctx):
- click.echo(foo.title)
- @cli.command()
- @pass_foo
- @click.pass_context
- def test2(ctx, foo):
- click.echo(foo.title)
- result = runner.invoke(cli, ["test1"])
- assert not result.exception
- assert result.output == "foocmd\n"
- result = runner.invoke(cli, ["test2"])
- assert not result.exception
- assert result.output == "foocmd\n"
- def test_propagate_show_default_setting(runner):
- """A context's ``show_default`` setting defaults to the value from
- the parent context.
- """
- group = click.Group(
- commands={
- "sub": click.Command("sub", params=[click.Option(["-a"], default="a")]),
- },
- context_settings={"show_default": True},
- )
- result = runner.invoke(group, ["sub", "--help"])
- assert "[default: a]" in result.output
- def test_exit_not_standalone():
- @click.command()
- @click.pass_context
- def cli(ctx):
- ctx.exit(1)
- assert cli.main([], "test_exit_not_standalone", standalone_mode=False) == 1
- @click.command()
- @click.pass_context
- def cli(ctx):
- ctx.exit(0)
- assert cli.main([], "test_exit_not_standalone", standalone_mode=False) == 0
- @pytest.mark.parametrize(
- ("option_args", "invoke_args", "expect"),
- [
- pytest.param({}, {}, ParameterSource.DEFAULT, id="default"),
- pytest.param(
- {},
- {"default_map": {"option": 1}},
- ParameterSource.DEFAULT_MAP,
- id="default_map",
- ),
- pytest.param(
- {},
- {"args": ["-o", "1"]},
- ParameterSource.COMMANDLINE,
- id="commandline short",
- ),
- pytest.param(
- {},
- {"args": ["--option", "1"]},
- ParameterSource.COMMANDLINE,
- id="commandline long",
- ),
- pytest.param(
- {},
- {"auto_envvar_prefix": "TEST", "env": {"TEST_OPTION": "1"}},
- ParameterSource.ENVIRONMENT,
- id="environment auto",
- ),
- pytest.param(
- {"envvar": "NAME"},
- {"env": {"NAME": "1"}},
- ParameterSource.ENVIRONMENT,
- id="environment manual",
- ),
- ],
- )
- def test_parameter_source(runner, option_args, invoke_args, expect):
- @click.command()
- @click.pass_context
- @click.option("-o", "--option", default=1, **option_args)
- def cli(ctx, option):
- return ctx.get_parameter_source("option")
- rv = runner.invoke(cli, standalone_mode=False, **invoke_args)
- assert rv.return_value == expect
- def test_propagate_opt_prefixes():
- parent = click.Context(click.Command("test"))
- parent._opt_prefixes = {"-", "--", "!"}
- ctx = click.Context(click.Command("test2"), parent=parent)
- assert ctx._opt_prefixes == {"-", "--", "!"}
|