| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577 | import collectionsimport pytestfrom flexmock import flexmockfrom borgmatic.commands import arguments as moduledef test_get_subaction_parsers_with_no_subactions_returns_empty_result():    assert module.get_subaction_parsers(flexmock(_subparsers=None)) == {}def test_get_subaction_parsers_with_subactions_returns_one_entry_per_subaction():    foo_parser = flexmock()    bar_parser = flexmock()    baz_parser = flexmock()    assert module.get_subaction_parsers(        flexmock(            _subparsers=flexmock(                _group_actions=(                    flexmock(choices={'foo': foo_parser, 'bar': bar_parser}),                    flexmock(choices={'baz': baz_parser}),                )            )        )    ) == {'foo': foo_parser, 'bar': bar_parser, 'baz': baz_parser}def test_get_subactions_for_actions_with_no_subactions_returns_empty_result():    assert module.get_subactions_for_actions({'action': flexmock(_subparsers=None)}) == {}def test_get_subactions_for_actions_with_subactions_returns_one_entry_per_action():    assert module.get_subactions_for_actions(        {            'action': flexmock(                _subparsers=flexmock(                    _group_actions=(                        flexmock(choices={'foo': flexmock(), 'bar': flexmock()}),                        flexmock(choices={'baz': flexmock()}),                    )                )            ),            'other': flexmock(                _subparsers=flexmock(_group_actions=(flexmock(choices={'quux': flexmock()}),))            ),        }    ) == {'action': ('foo', 'bar', 'baz'), 'other': ('quux',)}def test_omit_values_colliding_with_action_names_drops_action_names_that_have_been_parsed_as_values():    assert module.omit_values_colliding_with_action_names(        ('check', '--only', 'extract', '--some-list', 'borg'),        {'check': flexmock(only='extract', some_list=['borg'])},    ) == ('check', '--only', '--some-list')def test_omit_values_colliding_twice_with_action_names_drops_action_names_that_have_been_parsed_as_values():    assert module.omit_values_colliding_with_action_names(        ('config', 'bootstrap', '--local-path', '--remote-path', 'borg'),        {'bootstrap': flexmock(local_path='borg', remote_path='borg')},    ) == ('config', 'bootstrap', '--local-path', '--remote-path')def test_parse_and_record_action_arguments_without_action_name_leaves_arguments_untouched():    unparsed_arguments = ('--foo', '--bar')    flexmock(module).should_receive('omit_values_colliding_with_action_names').and_return(        unparsed_arguments    )    assert (        module.parse_and_record_action_arguments(            unparsed_arguments, flexmock(), flexmock(), 'action'        )        == unparsed_arguments    )def test_parse_and_record_action_arguments_updates_parsed_arguments_and_returns_remaining():    unparsed_arguments = ('action', '--foo', '--bar', '--verbosity', '1')    other_parsed_arguments = flexmock()    parsed_arguments = {'other': other_parsed_arguments}    action_parsed_arguments = flexmock()    flexmock(module).should_receive('omit_values_colliding_with_action_names').and_return(        unparsed_arguments    )    action_parser = flexmock()    flexmock(action_parser).should_receive('parse_known_args').and_return(        action_parsed_arguments, ('action', '--verbosity', '1')    )    assert module.parse_and_record_action_arguments(        unparsed_arguments, parsed_arguments, action_parser, 'action'    ) == ('--verbosity', '1')    assert parsed_arguments == {'other': other_parsed_arguments, 'action': action_parsed_arguments}def test_parse_and_record_action_arguments_with_alias_updates_canonical_parsed_arguments():    unparsed_arguments = ('action', '--foo', '--bar', '--verbosity', '1')    other_parsed_arguments = flexmock()    parsed_arguments = {'other': other_parsed_arguments}    action_parsed_arguments = flexmock()    flexmock(module).should_receive('omit_values_colliding_with_action_names').and_return(        unparsed_arguments    )    action_parser = flexmock()    flexmock(action_parser).should_receive('parse_known_args').and_return(        action_parsed_arguments, ('action', '--verbosity', '1')    )    assert module.parse_and_record_action_arguments(        unparsed_arguments, parsed_arguments, action_parser, 'action', canonical_name='doit'    ) == ('--verbosity', '1')    assert parsed_arguments == {'other': other_parsed_arguments, 'doit': action_parsed_arguments}def test_parse_and_record_action_arguments_with_borg_action_consumes_arguments_after_action_name():    unparsed_arguments = ('--verbosity', '1', 'borg', 'list')    parsed_arguments = {}    borg_parsed_arguments = flexmock(options=flexmock())    flexmock(module).should_receive('omit_values_colliding_with_action_names').and_return(        unparsed_arguments    )    borg_parser = flexmock()    flexmock(borg_parser).should_receive('parse_known_args').and_return(        borg_parsed_arguments, ('--verbosity', '1', 'borg', 'list')    )    assert module.parse_and_record_action_arguments(        unparsed_arguments,        parsed_arguments,        borg_parser,        'borg',    ) == ('--verbosity', '1')    assert parsed_arguments == {'borg': borg_parsed_arguments}    assert borg_parsed_arguments.options == ('list',)@pytest.mark.parametrize(    'argument, expected',    [        ('--foo', True),        ('foo', False),        (33, False),    ],)def test_argument_is_flag_only_for_string_starting_with_double_dash(argument, expected):    assert module.argument_is_flag(argument) == expected@pytest.mark.parametrize(    'arguments, expected',    [        # Ending with a valueless flag.        (            ('--foo', '--bar', 33, '--baz'),            (                ('--foo',),                ('--bar', 33),                ('--baz',),            ),        ),        # Ending with a flag and its corresponding value.        (            ('--foo', '--bar', 33, '--baz', '--quux', 'thing'),            (('--foo',), ('--bar', 33), ('--baz',), ('--quux', 'thing')),        ),        # Starting with an action name.        (            ('check', '--foo', '--bar', 33, '--baz'),            (                ('check',),                ('--foo',),                ('--bar', 33),                ('--baz',),            ),        ),        # Action name that one could mistake for a flag value.        (('--progress', 'list'), (('--progress',), ('list',))),        # No arguments.        ((), ()),    ],)def test_group_arguments_with_values_returns_flags_with_corresponding_values(arguments, expected):    flexmock(module).should_receive('argument_is_flag').with_args('--foo').and_return(True)    flexmock(module).should_receive('argument_is_flag').with_args('--bar').and_return(True)    flexmock(module).should_receive('argument_is_flag').with_args('--baz').and_return(True)    flexmock(module).should_receive('argument_is_flag').with_args('--quux').and_return(True)    flexmock(module).should_receive('argument_is_flag').with_args('--progress').and_return(True)    flexmock(module).should_receive('argument_is_flag').with_args(33).and_return(False)    flexmock(module).should_receive('argument_is_flag').with_args('thing').and_return(False)    flexmock(module).should_receive('argument_is_flag').with_args('check').and_return(False)    flexmock(module).should_receive('argument_is_flag').with_args('list').and_return(False)    assert module.group_arguments_with_values(arguments) == expected@pytest.mark.parametrize(    'arguments, grouped_arguments, expected',    [        # An unparsable flag remaining from each parsed action.        (            (                ('--latest', 'archive', 'prune', 'extract', 'list', '--flag'),                ('--latest', 'archive', 'check', 'extract', 'list', '--flag'),                ('prune', 'check', 'list', '--flag'),                ('prune', 'check', 'extract', '--flag'),            ),            (                (                    ('--latest',),                    ('archive',),                    ('prune',),                    ('extract',),                    ('list',),                    ('--flag',),                ),                (                    ('--latest',),                    ('archive',),                    ('check',),                    ('extract',),                    ('list',),                    ('--flag',),                ),                (('prune',), ('check',), ('list',), ('--flag',)),                (('prune',), ('check',), ('extract',), ('--flag',)),            ),            ('--flag',),        ),        # No unparsable flags remaining.        (            (                ('--archive', 'archive', 'prune', 'extract', 'list'),                ('--archive', 'archive', 'check', 'extract', 'list'),                ('prune', 'check', 'list'),                ('prune', 'check', 'extract'),            ),            (                (                    (                        '--archive',                        'archive',                    ),                    ('prune',),                    ('extract',),                    ('list',),                ),                (                    (                        '--archive',                        'archive',                    ),                    ('check',),                    ('extract',),                    ('list',),                ),                (('prune',), ('check',), ('list',)),                (('prune',), ('check',), ('extract',)),            ),            (),        ),        # No unparsable flags remaining, but some values in common.        (            (                ('--verbosity', '5', 'archive', 'prune', 'extract', 'list'),                ('--last', '5', 'archive', 'check', 'extract', 'list'),                ('prune', 'check', 'list', '--last', '5'),                ('prune', 'check', '--verbosity', '5', 'extract'),            ),            (                (('--verbosity', '5'), ('archive',), ('prune',), ('extract',), ('list',)),                (                    (                        '--last',                        '5',                    ),                    ('archive',),                    ('check',),                    ('extract',),                    ('list',),                ),                (('prune',), ('check',), ('list',), ('--last', '5')),                (                    ('prune',),                    ('check',),                    (                        '--verbosity',                        '5',                    ),                    ('extract',),                ),            ),            (),        ),        # No flags.        ((), (), ()),    ],)def test_get_unparsable_arguments_returns_remaining_arguments_that_no_action_can_parse(    arguments, grouped_arguments, expected):    for action_arguments, grouped_action_arguments in zip(arguments, grouped_arguments):        flexmock(module).should_receive('group_arguments_with_values').with_args(            action_arguments        ).and_return(grouped_action_arguments)    assert module.get_unparsable_arguments(arguments) == expecteddef test_parse_arguments_for_actions_consumes_action_arguments_after_action_name():    action_namespace = flexmock(foo=True)    remaining = flexmock()    flexmock(module).should_receive('get_subaction_parsers').and_return({})    flexmock(module).should_receive('parse_and_record_action_arguments').replace_with(        lambda unparsed, parsed, parser, action, canonical=None: parsed.update(            {action: action_namespace}        )        or remaining    )    flexmock(module).should_receive('get_subactions_for_actions').and_return({})    action_parsers = {'action': flexmock(), 'other': flexmock()}    global_namespace = flexmock(config_paths=[])    global_parser = flexmock()    global_parser.should_receive('parse_known_args').and_return((global_namespace, ()))    arguments, remaining_action_arguments = module.parse_arguments_for_actions(        ('action', '--foo', 'true'), action_parsers, global_parser    )    assert arguments == {'global': global_namespace, 'action': action_namespace}    assert remaining_action_arguments == (remaining, ())def test_parse_arguments_for_actions_consumes_action_arguments_with_alias():    action_namespace = flexmock(foo=True)    remaining = flexmock()    flexmock(module).should_receive('get_subaction_parsers').and_return({})    flexmock(module).should_receive('parse_and_record_action_arguments').replace_with(        lambda unparsed, parsed, parser, action, canonical=None: parsed.update(            {canonical or action: action_namespace}        )        or remaining    )    flexmock(module).should_receive('get_subactions_for_actions').and_return({})    action_parsers = {        'action': flexmock(),        '-a': flexmock(),        'other': flexmock(),        '-o': flexmock(),    }    global_namespace = flexmock(config_paths=[])    global_parser = flexmock()    global_parser.should_receive('parse_known_args').and_return((global_namespace, ()))    flexmock(module).ACTION_ALIASES = {'action': ['-a'], 'other': ['-o']}    arguments, remaining_action_arguments = module.parse_arguments_for_actions(        ('-a', '--foo', 'true'), action_parsers, global_parser    )    assert arguments == {'global': global_namespace, 'action': action_namespace}    assert remaining_action_arguments == (remaining, ())def test_parse_arguments_for_actions_consumes_multiple_action_arguments():    action_namespace = flexmock(foo=True)    other_namespace = flexmock(bar=3)    flexmock(module).should_receive('get_subaction_parsers').and_return({})    flexmock(module).should_receive('parse_and_record_action_arguments').replace_with(        lambda unparsed, parsed, parser, action, canonical=None: parsed.update(            {action: action_namespace if action == 'action' else other_namespace}        )        or ()    ).and_return(('other', '--bar', '3')).and_return('action', '--foo', 'true')    flexmock(module).should_receive('get_subactions_for_actions').and_return({})    action_parsers = {        'action': flexmock(),        'other': flexmock(),    }    global_namespace = flexmock(config_paths=[])    global_parser = flexmock()    global_parser.should_receive('parse_known_args').and_return((global_namespace, ()))    arguments, remaining_action_arguments = module.parse_arguments_for_actions(        ('action', '--foo', 'true', 'other', '--bar', '3'), action_parsers, global_parser    )    assert arguments == {        'global': global_namespace,        'action': action_namespace,        'other': other_namespace,    }    assert remaining_action_arguments == ((), (), ())def test_parse_arguments_for_actions_respects_command_line_action_ordering():    other_namespace = flexmock()    action_namespace = flexmock(foo=True)    flexmock(module).should_receive('get_subaction_parsers').and_return({})    flexmock(module).should_receive('parse_and_record_action_arguments').replace_with(        lambda unparsed, parsed, parser, action, canonical=None: parsed.update(            {action: other_namespace if action == 'other' else action_namespace}        )        or ()    ).and_return(('action',)).and_return(('other', '--foo', 'true'))    flexmock(module).should_receive('get_subactions_for_actions').and_return({})    action_parsers = {        'action': flexmock(),        'other': flexmock(),    }    global_namespace = flexmock(config_paths=[])    global_parser = flexmock()    global_parser.should_receive('parse_known_args').and_return((global_namespace, ()))    arguments, remaining_action_arguments = module.parse_arguments_for_actions(        ('other', '--foo', 'true', 'action'), action_parsers, global_parser    )    assert arguments == collections.OrderedDict(        [('other', other_namespace), ('action', action_namespace), ('global', global_namespace)]    )    assert remaining_action_arguments == ((), (), ())def test_parse_arguments_for_actions_applies_default_action_parsers():    global_namespace = flexmock(config_paths=[])    namespaces = {        'global': global_namespace,        'prune': flexmock(),        'compact': flexmock(),        'create': flexmock(progress=True),        'check': flexmock(),    }    flexmock(module).should_receive('get_subaction_parsers').and_return({})    flexmock(module).should_receive('parse_and_record_action_arguments').replace_with(        lambda unparsed, parsed, parser, action, canonical=None: parsed.update(            {action: namespaces.get(action)}        )        or ()    ).and_return(())    flexmock(module).should_receive('get_subactions_for_actions').and_return({})    action_parsers = {        'prune': flexmock(),        'compact': flexmock(),        'create': flexmock(),        'check': flexmock(),        'other': flexmock(),    }    global_parser = flexmock()    global_parser.should_receive('parse_known_args').and_return((global_namespace, ()))    arguments, remaining_action_arguments = module.parse_arguments_for_actions(        ('--progress'), action_parsers, global_parser    )    assert arguments == namespaces    assert remaining_action_arguments == ((), (), (), (), ())def test_parse_arguments_for_actions_consumes_global_arguments():    action_namespace = flexmock()    flexmock(module).should_receive('get_subaction_parsers').and_return({})    flexmock(module).should_receive('parse_and_record_action_arguments').replace_with(        lambda unparsed, parsed, parser, action, canonical=None: parsed.update(            {action: action_namespace}        )        or ('--verbosity', 'lots')    )    flexmock(module).should_receive('get_subactions_for_actions').and_return({})    action_parsers = {        'action': flexmock(),        'other': flexmock(),    }    global_namespace = flexmock(config_paths=[])    global_parser = flexmock()    global_parser.should_receive('parse_known_args').and_return((global_namespace, ()))    arguments, remaining_action_arguments = module.parse_arguments_for_actions(        ('action', '--verbosity', 'lots'), action_parsers, global_parser    )    assert arguments == {'global': global_namespace, 'action': action_namespace}    assert remaining_action_arguments == (('--verbosity', 'lots'), ())def test_parse_arguments_for_actions_passes_through_unknown_arguments_before_action_name():    action_namespace = flexmock()    flexmock(module).should_receive('get_subaction_parsers').and_return({})    flexmock(module).should_receive('parse_and_record_action_arguments').replace_with(        lambda unparsed, parsed, parser, action, canonical=None: parsed.update(            {action: action_namespace}        )        or ('--wtf', 'yes')    )    flexmock(module).should_receive('get_subactions_for_actions').and_return({})    action_parsers = {        'action': flexmock(),        'other': flexmock(),    }    global_namespace = flexmock(config_paths=[])    global_parser = flexmock()    global_parser.should_receive('parse_known_args').and_return((global_namespace, ()))    arguments, remaining_action_arguments = module.parse_arguments_for_actions(        ('--wtf', 'yes', 'action'), action_parsers, global_parser    )    assert arguments == {'global': global_namespace, 'action': action_namespace}    assert remaining_action_arguments == (('--wtf', 'yes'), ())def test_parse_arguments_for_actions_passes_through_unknown_arguments_after_action_name():    action_namespace = flexmock()    flexmock(module).should_receive('get_subaction_parsers').and_return({})    flexmock(module).should_receive('parse_and_record_action_arguments').replace_with(        lambda unparsed, parsed, parser, action, canonical=None: parsed.update(            {action: action_namespace}        )        or ('--wtf', 'yes')    )    flexmock(module).should_receive('get_subactions_for_actions').and_return({})    action_parsers = {        'action': flexmock(),        'other': flexmock(),    }    global_namespace = flexmock(config_paths=[])    global_parser = flexmock()    global_parser.should_receive('parse_known_args').and_return((global_namespace, ()))    arguments, remaining_action_arguments = module.parse_arguments_for_actions(        ('action', '--wtf', 'yes'), action_parsers, global_parser    )    assert arguments == {'global': global_namespace, 'action': action_namespace}    assert remaining_action_arguments == (('--wtf', 'yes'), ())def test_parse_arguments_for_actions_with_borg_action_skips_other_action_parsers():    action_namespace = flexmock(options=[])    flexmock(module).should_receive('get_subaction_parsers').and_return({})    flexmock(module).should_receive('parse_and_record_action_arguments').replace_with(        lambda unparsed, parsed, parser, action, canonical=None: parsed.update(            {action: action_namespace}        )        or ()    ).and_return(())    flexmock(module).should_receive('get_subactions_for_actions').and_return({})    action_parsers = {        'borg': flexmock(),        'list': flexmock(),    }    global_namespace = flexmock(config_paths=[])    global_parser = flexmock()    global_parser.should_receive('parse_known_args').and_return((global_namespace, ()))    arguments, remaining_action_arguments = module.parse_arguments_for_actions(        ('borg', 'list'), action_parsers, global_parser    )    assert arguments == {'global': global_namespace, 'borg': action_namespace}    assert remaining_action_arguments == ((), ())def test_parse_arguments_for_actions_raises_error_when_no_action_is_specified():    flexmock(module).should_receive('get_subaction_parsers').and_return({'bootstrap': [flexmock()]})    flexmock(module).should_receive('parse_and_record_action_arguments').and_return(flexmock())    flexmock(module).should_receive('get_subactions_for_actions').and_return(        {'config': ['bootstrap']}    )    action_parsers = {'config': flexmock()}    global_parser = flexmock()    global_parser.should_receive('parse_known_args').and_return((flexmock(), ()))    with pytest.raises(ValueError):        module.parse_arguments_for_actions(('config',), action_parsers, global_parser)
 |