2015-07-10 17:58:41 +03:00
|
|
|
import pytest
|
2015-07-20 21:04:49 +03:00
|
|
|
from thefuck.rules.no_command import match, get_new_command
|
2015-07-10 17:58:41 +03:00
|
|
|
from tests.utils import Command
|
2015-04-08 19:00:03 +02:00
|
|
|
|
|
|
|
|
2015-07-10 17:58:41 +03:00
|
|
|
@pytest.fixture(autouse=True)
|
2015-07-20 21:04:49 +03:00
|
|
|
def get_all_executables(mocker):
|
|
|
|
mocker.patch('thefuck.rules.no_command.get_all_executables',
|
2016-03-13 15:10:37 +03:00
|
|
|
return_value=['vim', 'fsck', 'git', 'go'])
|
|
|
|
|
|
|
|
|
|
|
|
@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, stderr', [
|
|
|
|
('vom file.py', 'vom: not found'),
|
|
|
|
('fucck', 'fucck: not found'),
|
|
|
|
('got commit', 'got: command not found')])
|
|
|
|
def test_match(script, stderr):
|
|
|
|
assert match(Command(script, stderr=stderr))
|
2015-04-08 19:00:03 +02:00
|
|
|
|
|
|
|
|
2015-07-10 17:58:41 +03:00
|
|
|
@pytest.mark.usefixtures('no_memoize')
|
2016-03-13 15:10:37 +03:00
|
|
|
@pytest.mark.parametrize('script, stderr', [
|
|
|
|
('qweqwe', 'qweqwe: not found'),
|
|
|
|
('vom file.py', 'some text')])
|
|
|
|
def test_not_match(script, stderr):
|
|
|
|
assert not match(Command(script, stderr=stderr))
|
2015-06-10 20:53:35 -03:00
|
|
|
|
|
|
|
|
2015-07-10 17:58:41 +03:00
|
|
|
@pytest.mark.usefixtures('no_memoize')
|
2016-03-13 15:10:37 +03:00
|
|
|
@pytest.mark.parametrize('script, result', [
|
|
|
|
('vom file.py', ['vim file.py']),
|
|
|
|
('fucck', ['fsck']),
|
|
|
|
('got commit', ['git commit', 'go commit'])])
|
|
|
|
def test_get_new_command(script, result):
|
|
|
|
assert get_new_command(Command(script)) == result
|