mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-18 12:06:04 +00:00
5198b34f24
Co-authored-by: Pablo Santiago Blum de Aguiar <scorphus@gmail.com>
51 lines
1.7 KiB
Python
51 lines
1.7 KiB
Python
import pytest
|
|
from thefuck.rules.no_command import match, get_new_command
|
|
from thefuck.types import Command
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def get_all_executables(mocker):
|
|
mocker.patch('thefuck.rules.no_command.get_all_executables',
|
|
return_value=['vim', 'fsck', 'git', 'go', 'python'])
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def history_without_current(mocker):
|
|
return mocker.patch(
|
|
'thefuck.rules.no_command.get_valid_history_without_current',
|
|
return_value=['git commit'])
|
|
|
|
|
|
@pytest.mark.usefixtures('no_memoize')
|
|
@pytest.mark.parametrize('script, output', [
|
|
('vom file.py', 'vom: not found'),
|
|
('fucck', 'fucck: not found'),
|
|
('puthon', "'puthon' is not recognized as an internal or external command"),
|
|
('got commit', 'got: command not found'),
|
|
('gti commit -m "new commit"', 'gti: command not found')])
|
|
def test_match(mocker, script, output):
|
|
mocker.patch('thefuck.rules.no_command.which', return_value=None)
|
|
|
|
assert match(Command(script, output))
|
|
|
|
|
|
@pytest.mark.usefixtures('no_memoize')
|
|
@pytest.mark.parametrize('script, output, which', [
|
|
('qweqwe', 'qweqwe: not found', None),
|
|
('vom file.py', 'some text', None),
|
|
('vim file.py', 'vim: not found', 'vim')])
|
|
def test_not_match(mocker, script, output, which):
|
|
mocker.patch('thefuck.rules.no_command.which', return_value=which)
|
|
|
|
assert not match(Command(script, output))
|
|
|
|
|
|
@pytest.mark.usefixtures('no_memoize')
|
|
@pytest.mark.parametrize('script, result', [
|
|
('vom file.py', ['vim file.py']),
|
|
('fucck', ['fsck']),
|
|
('got commit', ['git commit', 'go commit']),
|
|
('gti commit -m "new commit"', ['git commit -m "new commit"'])])
|
|
def test_get_new_command(script, result):
|
|
assert get_new_command(Command(script, '')) == result
|