1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00
pip/tests/functional/test_debug.py

66 lines
1.5 KiB
Python
Raw Normal View History

2019-06-23 17:54:38 +02:00
import pytest
from pip._internal import pep425tags
@pytest.mark.parametrize('expected_text', [
'sys.executable: ',
'sys.getdefaultencoding: ',
'sys.getfilesystemencoding: ',
'locale.getpreferredencoding: ',
'sys.platform: ',
'sys.implementation:',
])
def test_debug(script, expected_text):
"""
Check that certain strings are present in the output.
"""
args = ['debug']
result = script.pip(*args, allow_stderr_warning=True)
stdout = result.stdout
assert expected_text in stdout
2019-06-23 17:54:38 +02:00
@pytest.mark.parametrize(
'args',
[
[],
['--verbose'],
]
)
def test_debug__tags(script, args):
2019-06-23 17:54:38 +02:00
"""
Check the compatible tag output.
2019-06-23 17:54:38 +02:00
"""
args = ['debug'] + args
result = script.pip(*args, allow_stderr_warning=True)
2019-06-23 17:54:38 +02:00
stdout = result.stdout
tags = pep425tags.get_supported()
expected_tag_header = 'Compatible tags: {}'.format(len(tags))
assert expected_tag_header in stdout
show_verbose_note = '--verbose' not in args
assert (
'...\n [First 10 tags shown. Pass --verbose to show all.]' in stdout
) == show_verbose_note
@pytest.mark.parametrize(
'args, expected',
[
(['--python-version', '3.7'], "(target: version_info='3.7')"),
]
)
def test_debug__target_options(script, args, expected):
"""
Check passing target-related options.
"""
args = ['debug'] + args
result = script.pip(*args, allow_stderr_warning=True)
2019-06-23 17:54:38 +02:00
stdout = result.stdout
assert 'Compatible tags: ' in stdout
assert expected in stdout