Ejemplo n.º 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-')
Ejemplo n.º 2
0
def test_make_check_flags_with_data_check_returns_flag():
    flags = module._make_check_flags(('data',))

    assert flags == ('--verify-data',)
Ejemplo n.º 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)
Ejemplo n.º 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', )
Ejemplo n.º 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')
Ejemplo n.º 6
0
def test_make_check_flags_with_repository_check_returns_flag():
    flags = module._make_check_flags(('repository', ))

    assert flags == ('--repository-only', )
Ejemplo n.º 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',)
Ejemplo n.º 8
0
def test_make_check_flags_with_all_checks_returns_no_flags():
    flags = module._make_check_flags(module.DEFAULT_CHECKS + ('extract', ))

    assert flags == ()
Ejemplo n.º 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)
Ejemplo n.º 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-')
Ejemplo n.º 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',)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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', )
Ejemplo n.º 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-')
Ejemplo n.º 16
0
def test_make_check_flags_with_default_checks_returns_no_flags():
    flags = module._make_check_flags(module.DEFAULT_CHECKS)

    assert flags == ()
Ejemplo n.º 17
0
def test_make_check_flags_with_checks_returns_flags():
    flags = module._make_check_flags(('repository',))

    assert flags == ('--repository-only',)
Ejemplo n.º 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')
Ejemplo n.º 19
0
def test_make_check_flags_with_extract_check_does_not_make_extract_flag():
    flags = module._make_check_flags(('extract',))

    assert flags == ()
Ejemplo n.º 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-')
Ejemplo n.º 21
0
def test_make_check_flags_with_default_checks_returns_no_flags():
    flags = module._make_check_flags(module.DEFAULT_CHECKS)

    assert flags == ()
Ejemplo n.º 22
0
def test_make_check_flags_with_extract_omits_extract_flag():
    flags = module._make_check_flags(('extract', ))

    assert flags == ()
Ejemplo n.º 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')
Ejemplo n.º 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)
Ejemplo n.º 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')
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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', )
Ejemplo n.º 29
0
def test_make_check_flags_with_archives_check_returns_flag():
    flags = module._make_check_flags(('archives',))

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