Beispiel #1
0
def test_make_check_flags_with_archives_check_and_prefix_includes_prefix_flag(
):
    flags = module._make_check_flags(('archives', ), prefix='foo-')

    assert flags == ('--archives-only', '--prefix', 'foo-')
Beispiel #2
0
def test_make_check_flags_with_data_check_returns_flag():
    flags = module._make_check_flags(('data',))

    assert flags == ('--verify-data',)
Beispiel #3
0
def test_make_check_flags_with_all_checks_returns_default_flags():
    flags = module._make_check_flags(module.DEFAULT_CHECKS + ('extract', ))

    assert flags == ('--prefix', module.DEFAULT_PREFIX)
Beispiel #4
0
def test_make_check_flags_with_repository_check_and_last_omits_last_flag():
    flags = module._make_check_flags(('repository', ), check_last=3)

    assert flags == ('--repository-only', )
Beispiel #5
0
def test_make_check_flags_with_default_checks_and_last_returns_last_flag():
    flags = module._make_check_flags(module.DEFAULT_CHECKS, check_last=3)

    assert flags == ('--last', '3')
Beispiel #6
0
def test_make_check_flags_with_repository_check_returns_flag():
    flags = module._make_check_flags(('repository', ))

    assert flags == ('--repository-only', )
Beispiel #7
0
def test_make_check_flags_with_repository_check_and_prefix_omits_prefix_flag():
    flags = module._make_check_flags(('repository',), prefix='foo-')

    assert flags == ('--repository-only',)
Beispiel #8
0
def test_make_check_flags_with_all_checks_returns_no_flags():
    flags = module._make_check_flags(module.DEFAULT_CHECKS + ('extract', ))

    assert flags == ()
Beispiel #9
0
def test_make_check_flags_with_default_checks_and_last_includes_last_flag():
    flags = module._make_check_flags(module.DEFAULT_CHECKS, check_last=3)

    assert flags == ('--last', '3', '--prefix', module.DEFAULT_PREFIX)
Beispiel #10
0
def test_make_check_flags_with_archives_check_and_prefix_includes_prefix_flag():
    flags = module._make_check_flags(('archives',), prefix='foo-')

    assert flags == ('--archives-only', '--prefix', 'foo-')
Beispiel #11
0
def test_make_check_flags_with_repository_check_and_last_omits_last_flag():
    flags = module._make_check_flags(('repository',), check_last=3)

    assert flags == ('--repository-only',)
Beispiel #12
0
def test_make_check_flags_with_archives_check_and_last_includes_last_flag():
    flags = module._make_check_flags(('archives',), check_last=3)

    assert flags == ('--archives-only', '--last', '3', '--prefix', module.DEFAULT_PREFIX)
Beispiel #13
0
def test_make_check_flags_with_all_checks_returns_default_flags():
    flags = module._make_check_flags(module.DEFAULT_CHECKS + ('extract',))

    assert flags == ('--prefix', module.DEFAULT_PREFIX)
Beispiel #14
0
def test_make_check_flags_with_archives_check_and_empty_prefix_omits_prefix_flag(
):
    flags = module._make_check_flags(('archives', ), prefix='')

    assert flags == ('--archives-only', )
Beispiel #15
0
def test_make_check_flags_with_default_checks_and_prefix_includes_prefix_flag():
    flags = module._make_check_flags(module.DEFAULT_CHECKS, prefix='foo-')

    assert flags == ('--prefix', 'foo-')
Beispiel #16
0
def test_make_check_flags_with_default_checks_returns_no_flags():
    flags = module._make_check_flags(module.DEFAULT_CHECKS)

    assert flags == ()
Beispiel #17
0
def test_make_check_flags_with_checks_returns_flags():
    flags = module._make_check_flags(('repository',))

    assert flags == ('--repository-only',)
Beispiel #18
0
def test_make_check_flags_with_checks_and_last_returns_flags_including_last():
    flags = module._make_check_flags(('repository', ), check_last=3)

    assert flags == ('--repository-only', '--last', '3')
Beispiel #19
0
def test_make_check_flags_with_extract_check_does_not_make_extract_flag():
    flags = module._make_check_flags(('extract',))

    assert flags == ()
Beispiel #20
0
def test_make_check_flags_with_default_checks_and_prefix_includes_prefix_flag(
):
    flags = module._make_check_flags(module.DEFAULT_CHECKS, prefix='foo-')

    assert flags == ('--prefix', 'foo-')
Beispiel #21
0
def test_make_check_flags_with_default_checks_returns_no_flags():
    flags = module._make_check_flags(module.DEFAULT_CHECKS)

    assert flags == ()
Beispiel #22
0
def test_make_check_flags_with_extract_omits_extract_flag():
    flags = module._make_check_flags(('extract', ))

    assert flags == ()
Beispiel #23
0
def test_make_check_flags_with_checks_and_last_returns_flags_including_last():
    flags = module._make_check_flags(('repository',), check_last=3)

    assert flags == ('--repository-only', '--last', '3')
Beispiel #24
0
def test_make_check_flags_with_archives_check_and_last_includes_last_flag():
    flags = module._make_check_flags(('archives', ), check_last=3)

    assert flags == ('--archives-only', '--last', '3', '--prefix',
                     module.DEFAULT_PREFIX)
Beispiel #25
0
def test_make_check_flags_with_default_checks_and_last_returns_last_flag():
    flags = module._make_check_flags(module.DEFAULT_CHECKS, check_last=3)

    assert flags == ('--last', '3')
Beispiel #26
0
def test_make_check_flags_with_default_checks_and_last_includes_last_flag():
    flags = module._make_check_flags(module.DEFAULT_CHECKS, check_last=3)

    assert flags == ('--last', '3', '--prefix', module.DEFAULT_PREFIX)
Beispiel #27
0
def test_make_check_flags_with_default_checks_and_default_prefix_returns_default_flags(
):
    flags = module._make_check_flags(module.DEFAULT_CHECKS,
                                     prefix=module.DEFAULT_PREFIX)

    assert flags == ('--prefix', module.DEFAULT_PREFIX)
Beispiel #28
0
def test_make_check_flags_with_repository_check_and_prefix_omits_prefix_flag():
    flags = module._make_check_flags(('repository', ), prefix='foo-')

    assert flags == ('--repository-only', )
Beispiel #29
0
def test_make_check_flags_with_archives_check_returns_flag():
    flags = module._make_check_flags(('archives',))

    assert flags == ('--archives-only',)