mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-19 12:24:29 +00:00
67 lines
2.4 KiB
Python
67 lines
2.4 KiB
Python
import pytest
|
|
from mock import patch
|
|
from thefuck.rules import pacman
|
|
from thefuck.rules.pacman import match, get_new_command
|
|
from tests.utils import Command
|
|
|
|
|
|
pacman_cmd = getattr(pacman, 'pacman', 'pacman')
|
|
|
|
PKGFILE_OUTPUT_CONVERT = '''
|
|
extra/imagemagick 6.9.1.0-1\t/usr/bin/convert
|
|
'''
|
|
|
|
PKGFILE_OUTPUT_VIM = '''
|
|
extra/gvim 7.4.712-1 \t/usr/bin/vim
|
|
extra/gvim-python3 7.4.712-1\t/usr/bin/vim
|
|
extra/vim 7.4.712-1 \t/usr/bin/vim
|
|
extra/vim-minimal 7.4.712-1 \t/usr/bin/vim
|
|
extra/vim-python3 7.4.712-1 \t/usr/bin/vim
|
|
'''
|
|
|
|
|
|
@pytest.mark.skipif(not getattr(pacman, 'enabled_by_default', True),
|
|
reason='Skip if pacman is not available')
|
|
@pytest.mark.parametrize('command', [
|
|
Command(script='vim', stderr='vim: command not found')])
|
|
def test_match(command):
|
|
assert match(command, None)
|
|
|
|
|
|
@pytest.mark.parametrize('command, return_value', [
|
|
(Command(script='vim', stderr='vim: command not found'), PKGFILE_OUTPUT_VIM)])
|
|
@patch('thefuck.rules.pacman.subprocess')
|
|
@patch.multiple(pacman, create=True, pacman=pacman_cmd)
|
|
def test_match_mocked(subp_mock, command, return_value):
|
|
subp_mock.check_output.return_value = return_value
|
|
assert match(command, None)
|
|
assert subp_mock.check_output.called
|
|
|
|
|
|
@pytest.mark.parametrize('command', [
|
|
Command(script='vim', stderr=''), Command()])
|
|
def test_not_match(command):
|
|
assert not match(command, None)
|
|
|
|
|
|
@pytest.mark.skipif(not getattr(pacman, 'enabled_by_default', True),
|
|
reason='Skip if pacman is not available')
|
|
@pytest.mark.parametrize('command, new_command', [
|
|
(Command('vim'), '{} -S extra/gvim && vim'.format(pacman_cmd)),
|
|
(Command('convert'), '{} -S extra/imagemagick && convert'.format(pacman_cmd))])
|
|
def test_get_new_command(command, new_command, mocker):
|
|
assert get_new_command(command, None) == new_command
|
|
|
|
|
|
@pytest.mark.parametrize('command, new_command, return_value', [
|
|
(Command('vim'), '{} -S extra/gvim && vim'.format(pacman_cmd),
|
|
PKGFILE_OUTPUT_VIM),
|
|
(Command('convert'), '{} -S extra/imagemagick && convert'.format(pacman_cmd),
|
|
PKGFILE_OUTPUT_CONVERT)])
|
|
@patch('thefuck.rules.pacman.subprocess')
|
|
@patch.multiple(pacman, create=True, pacman=pacman_cmd)
|
|
def test_get_new_command_mocked(subp_mock, command, new_command, return_value):
|
|
subp_mock.check_output.return_value = return_value
|
|
assert get_new_command(command, None) == new_command
|
|
assert subp_mock.check_output.called
|