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

99 lines
2.8 KiB
Python
Raw Normal View History

2012-09-11 22:44:42 +02:00
import re
2015-01-15 00:53:15 +01:00
import pytest
2012-09-07 22:31:56 +02:00
from pip import __version__
2012-09-12 18:39:19 +02:00
from pip.commands.show import search_packages_info
2012-09-07 22:31:56 +02:00
def test_show(script):
2012-09-07 22:31:56 +02:00
"""
2012-09-12 18:39:19 +02:00
Test end to end test for show command.
2012-09-07 22:31:56 +02:00
"""
result = script.pip('show', 'pip')
2012-09-07 22:31:56 +02:00
lines = result.stdout.split('\n')
assert len(lines) == 17
2012-09-11 22:44:42 +02:00
assert lines[0] == '---', lines[0]
assert 'Name: pip' in lines
assert 'Version: %s' % __version__ in lines
assert any(line.startswith('Location: ') for line in lines)
assert 'Requires: ' in lines
2012-09-11 22:44:42 +02:00
def test_show_with_files_not_found(script, data):
2012-09-11 22:44:42 +02:00
"""
2012-09-12 18:39:19 +02:00
Test for show command with installed files listing enabled and
2012-09-11 22:44:42 +02:00
installed-files.txt not found.
"""
editable = data.packages.join('SetupPyUTF8')
script.pip('install', '-e', editable)
result = script.pip('show', '-f', 'SetupPyUTF8')
2012-09-11 22:44:42 +02:00
lines = result.stdout.split('\n')
assert len(lines) == 14
2012-09-08 23:31:59 +02:00
assert lines[0] == '---', lines[0]
assert 'Name: SetupPyUTF8' in lines
assert 'Version: 0.0.0' in lines
assert any(line.startswith('Location: ') for line in lines)
assert 'Requires: ' in lines
assert 'Files:' in lines
assert 'Cannot locate installed-files.txt' in lines
def test_show_with_files_from_wheel(script, data):
"""
Test that a wheel's files can be listed
"""
wheel_file = data.packages.join('simple.dist-0.1-py2.py3-none-any.whl')
script.pip('install', '--no-index', wheel_file)
result = script.pip('show', '-f', 'simple.dist')
lines = result.stdout.split('\n')
assert 'Name: simple.dist' in lines
assert 'Cannot locate installed-files.txt' not in lines[6], lines[6]
assert re.search(r"Files:\n( .+\n)+", result.stdout)
2015-01-15 00:53:15 +01:00
@pytest.mark.network
def test_show_with_all_files(script):
2012-09-11 22:44:42 +02:00
"""
2012-09-12 18:39:19 +02:00
Test listing all files in the show command.
2012-09-11 22:44:42 +02:00
"""
script.pip('install', 'initools==0.2')
result = script.pip('show', '--files', 'initools')
lines = result.stdout.split('\n')
assert 'Cannot locate installed-files.txt' not in lines[6], lines[6]
2012-09-11 22:44:42 +02:00
assert re.search(r"Files:\n( .+\n)+", result.stdout)
def test_missing_argument(script):
"""
2012-09-12 18:39:19 +02:00
Test show command with no arguments.
"""
result = script.pip('show', expect_error=True)
assert 'ERROR: Please provide a package name or names.' in result.stderr
def test_find_package_not_found():
"""
2012-09-08 23:31:59 +02:00
Test trying to get info about a nonexistent package.
"""
result = search_packages_info(['abcd3'])
assert len(list(result)) == 0
def test_search_any_case():
"""
Search for a package in any case.
"""
result = list(search_packages_info(['PIP']))
assert len(result) == 1
assert 'pip' == result[0]['name']
def test_more_than_one_package():
"""
Search for more than one package.
"""
result = list(search_packages_info(['Pip', 'pytest', 'Virtualenv']))
assert len(result) == 3