Exemplo n.º 1
0
def test_ParserFiller_fill_parser_input_checks(mocker):
    parser = argparse.ArgumentParser()
    SC = attr.make_class(
        "SC", {
            "y":
            attr.ib(default=True,
                    metadata={
                        METADATA_ARGPARSER: {
                            'action': 'store_bool',
                            'help': 'some help'
                        }
                    },
                    type=int)
        })
    add_args_m = mocker.patch.object(parser, 'add_argument', autospec=True)
    ParserFiller.fill_parser(SC, parser)
    expected_calls = [
        call('--y',
             action='store_const',
             const=True,
             default=True,
             dest='y',
             help='enable some help',
             metavar='INT'),
        call('--noy',
             action='store_const',
             const=False,
             default=False,
             dest='y',
             help='disable some help',
             metavar='INT')
    ]
    add_args_m.assert_has_calls(expected_calls)
    assert add_args_m.call_count == len(expected_calls)
Exemplo n.º 2
0
def test_ParserFiller_fill_parser_with_no_metadata_argparser():
    parser = argparse.ArgumentParser()
    SC = attr.make_class("SC", {"y": attr.ib(default=123, type=int)})
    ParserFiller.fill_parser(SC, parser)

    with pytest.raises(SystemExit) as excinfo:
        parser.parse_args(['--y', 'some-value'])

    assert excinfo.value.code == 2
Exemplo n.º 3
0
def test_ParserFiller_fill_parser_with_no_action_in_metadata():
    parser = argparse.ArgumentParser()
    SC = attr.make_class(
        "SC", {
            "y":
            attr.ib(default=123,
                    metadata={METADATA_ARGPARSER: {
                        'help': 'some help'
                    }},
                    type=int)
        })
    ParserFiller.fill_parser(SC, parser)
    args = parser.parse_args(['--y', 'some-value'])
    assert args.y == 'some-value'
Exemplo n.º 4
0
def test_ParserFiller_extract_positional_args_default_is_not_NOTHING():
    SC = attr.make_class(
        "SC", {
            "x":
            attr.ib(default=123,
                    metadata={METADATA_ARGPARSER: {
                        'help': 'some help'
                    }},
                    type=int)
        })
    ret = ParserFiller.extract_positional_args(SC, attr.fields_dict(SC))
    assert ret == ([], attr.fields_dict(SC))
Exemplo n.º 5
0
def test_ParserFiller_extract_positional_args_happy_path():
    SC = attr.make_class(
        "SC", {
            "x":
            attr.ib(metadata={
                METADATA_ARGPARSER: {
                    'action': 'store_bool',
                    'help': 'some help'
                }
            },
                    type=int)
        })
    ret = ParserFiller.extract_positional_args(SC, attr.fields_dict(SC))
    assert ret == ([attr.fields(SC).x], {})
Exemplo n.º 6
0
def test_ParserFiller_fill_parser_when_action_is_store_bool():
    parser = argparse.ArgumentParser()
    SC = attr.make_class(
        "SC", {
            "y":
            attr.ib(default=123,
                    metadata={
                        METADATA_ARGPARSER: {
                            'action': 'store_bool',
                            'help': 'some help'
                        }
                    },
                    type=int)
        })
    ParserFiller.fill_parser(SC, parser)
    args = parser.parse_args(['--y', '--noy'])
    assert not args.y

    args = parser.parse_args(['--y'])
    assert args.y

    args = parser.parse_args(['--noy'])
    assert not args.y
Exemplo n.º 7
0
def test_ParserFiller_extract_positional_args_no_metadata_argparser():
    SC = attr.make_class("SC",
                         {"x": attr.ib(type=int, repr=False, init=False)})
    ret = ParserFiller.extract_positional_args(SC, attr.fields_dict(SC))
    assert ret == ([], attr.fields_dict(SC))