mirror of
https://github.com/nvbn/thefuck.git
synced 2025-02-07 05:31:18 +00:00
commit
cd1bee9cb0
@ -193,7 +193,8 @@ The Fuck has a few settings parameters, they can be changed in `~/.thefuck/setti
|
|||||||
|
|
||||||
* `rules` – list of enabled rules, by default all;
|
* `rules` – list of enabled rules, by default all;
|
||||||
* `require_confirmation` – require confirmation before running new command, by default `False`;
|
* `require_confirmation` – require confirmation before running new command, by default `False`;
|
||||||
* `wait_command` – max amount of time in seconds for getting previous command output.
|
* `wait_command` – max amount of time in seconds for getting previous command output;
|
||||||
|
* `no_colors` – disable colored output.
|
||||||
|
|
||||||
## Developing
|
## Developing
|
||||||
|
|
||||||
|
2
setup.py
2
setup.py
@ -15,6 +15,6 @@ setup(name='thefuck',
|
|||||||
'tests', 'release']),
|
'tests', 'release']),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
install_requires=['pathlib', 'psutil'],
|
install_requires=['pathlib', 'psutil', 'colorama'],
|
||||||
entry_points={'console_scripts': [
|
entry_points={'console_scripts': [
|
||||||
'thefuck = thefuck.main:main']})
|
'thefuck = thefuck.main:main']})
|
||||||
|
7
tests/test_logs.py
Normal file
7
tests/test_logs.py
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
from mock import Mock
|
||||||
|
from thefuck import logs
|
||||||
|
|
||||||
|
|
||||||
|
def test_color():
|
||||||
|
assert logs.color('red', Mock(no_colors=False)) == 'red'
|
||||||
|
assert logs.color('red', Mock(no_colors=True)) == ''
|
@ -69,11 +69,11 @@ def test_get_matched_rule(capsys):
|
|||||||
main.Rule('', lambda *_: False, None),
|
main.Rule('', lambda *_: False, None),
|
||||||
main.Rule('rule', Mock(side_effect=OSError('Denied')), None)]
|
main.Rule('rule', Mock(side_effect=OSError('Denied')), None)]
|
||||||
assert main.get_matched_rule(main.Command('ls', '', ''),
|
assert main.get_matched_rule(main.Command('ls', '', ''),
|
||||||
rules, None) is None
|
rules, Mock(no_colors=True)) is None
|
||||||
assert main.get_matched_rule(main.Command('cd ..', '', ''),
|
assert main.get_matched_rule(main.Command('cd ..', '', ''),
|
||||||
rules, None) == rules[0]
|
rules, Mock(no_colors=True)) == rules[0]
|
||||||
assert capsys.readouterr()[1].split('\n')[0]\
|
assert capsys.readouterr()[1].split('\n')[0]\
|
||||||
== '[WARN] rule: Traceback (most recent call last):'
|
== '[WARN] Rule rule:'
|
||||||
|
|
||||||
|
|
||||||
def test_run_rule(capsys):
|
def test_run_rule(capsys):
|
||||||
@ -93,9 +93,11 @@ def test_confirm(capsys):
|
|||||||
assert capsys.readouterr() == ('', 'command\n')
|
assert capsys.readouterr() == ('', 'command\n')
|
||||||
# When confirmation required and confirmed:
|
# When confirmation required and confirmed:
|
||||||
with patch('thefuck.main.sys.stdin.read', return_value='\n'):
|
with patch('thefuck.main.sys.stdin.read', return_value='\n'):
|
||||||
assert main.confirm('command', Mock(require_confirmation=True))
|
assert main.confirm('command', Mock(require_confirmation=True,
|
||||||
assert capsys.readouterr() == ('', 'command [Enter/Ctrl+C]')
|
no_colors=True))
|
||||||
|
assert capsys.readouterr() == ('', 'command [enter/ctrl+c]')
|
||||||
# When confirmation required and ctrl+c:
|
# When confirmation required and ctrl+c:
|
||||||
with patch('thefuck.main.sys.stdin.read', side_effect=KeyboardInterrupt):
|
with patch('thefuck.main.sys.stdin.read', side_effect=KeyboardInterrupt):
|
||||||
assert not main.confirm('command', Mock(require_confirmation=True))
|
assert not main.confirm('command', Mock(require_confirmation=True,
|
||||||
assert capsys.readouterr() == ('', 'command [Enter/Ctrl+C]Aborted\n')
|
no_colors=True))
|
||||||
|
assert capsys.readouterr() == ('', 'command [enter/ctrl+c]Aborted\n')
|
||||||
|
47
thefuck/logs.py
Normal file
47
thefuck/logs.py
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
import sys
|
||||||
|
from traceback import format_exception
|
||||||
|
import colorama
|
||||||
|
|
||||||
|
|
||||||
|
def color(color_, settings):
|
||||||
|
"""Utility for ability to disabling colored output."""
|
||||||
|
if settings.no_colors:
|
||||||
|
return ''
|
||||||
|
else:
|
||||||
|
return color_
|
||||||
|
|
||||||
|
|
||||||
|
def rule_failed(rule, exc_info, settings):
|
||||||
|
sys.stderr.write(
|
||||||
|
u'{warn}[WARN] Rule {name}:{reset}\n{trace}'
|
||||||
|
u'{warn}----------------------------{reset}\n\n'.format(
|
||||||
|
warn=color(colorama.Back.RED + colorama.Fore.WHITE
|
||||||
|
+ colorama.Style.BRIGHT, settings),
|
||||||
|
reset=color(colorama.Style.RESET_ALL, settings),
|
||||||
|
name=rule.name,
|
||||||
|
trace=''.join(format_exception(*exc_info))))
|
||||||
|
|
||||||
|
|
||||||
|
def show_command(new_command, settings):
|
||||||
|
sys.stderr.write('{bold}{command}{reset}\n'.format(
|
||||||
|
command=new_command,
|
||||||
|
bold=color(colorama.Style.BRIGHT, settings),
|
||||||
|
reset=color(colorama.Style.RESET_ALL, settings)))
|
||||||
|
|
||||||
|
|
||||||
|
def confirm_command(new_command, settings):
|
||||||
|
sys.stderr.write(
|
||||||
|
'{bold}{command}{reset} [{green}enter{reset}/{red}ctrl+c{reset}]'.format(
|
||||||
|
command=new_command,
|
||||||
|
bold=color(colorama.Style.BRIGHT, settings),
|
||||||
|
green=color(colorama.Fore.GREEN, settings),
|
||||||
|
red=color(colorama.Fore.RED, settings),
|
||||||
|
reset=color(colorama.Style.RESET_ALL, settings)))
|
||||||
|
sys.stderr.flush()
|
||||||
|
|
||||||
|
|
||||||
|
def failed(msg, settings):
|
||||||
|
sys.stderr.write('{red}{msg}{reset}\n'.format(
|
||||||
|
msg=msg,
|
||||||
|
red=color(colorama.Fore.RED, settings),
|
||||||
|
reset=color(colorama.Style.RESET_ALL, settings)))
|
@ -5,8 +5,9 @@ from os.path import expanduser
|
|||||||
from subprocess import Popen, PIPE
|
from subprocess import Popen, PIPE
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
from traceback import format_exception
|
|
||||||
from psutil import Process, TimeoutExpired
|
from psutil import Process, TimeoutExpired
|
||||||
|
import colorama
|
||||||
|
from thefuck import logs
|
||||||
|
|
||||||
|
|
||||||
Command = namedtuple('Command', ('script', 'stdout', 'stderr'))
|
Command = namedtuple('Command', ('script', 'stdout', 'stderr'))
|
||||||
@ -30,6 +31,7 @@ def get_settings(user_dir):
|
|||||||
settings.__dict__.setdefault('rules', None)
|
settings.__dict__.setdefault('rules', None)
|
||||||
settings.__dict__.setdefault('wait_command', 3)
|
settings.__dict__.setdefault('wait_command', 3)
|
||||||
settings.__dict__.setdefault('require_confirmation', False)
|
settings.__dict__.setdefault('require_confirmation', False)
|
||||||
|
settings.__dict__.setdefault('no_colors', False)
|
||||||
return settings
|
return settings
|
||||||
|
|
||||||
|
|
||||||
@ -100,23 +102,21 @@ def get_matched_rule(command, rules, settings):
|
|||||||
if rule.match(command, settings):
|
if rule.match(command, settings):
|
||||||
return rule
|
return rule
|
||||||
except Exception:
|
except Exception:
|
||||||
sys.stderr.write(u'[WARN] {}: {}---------------------\n\n'.format(
|
logs.rule_failed(rule, sys.exc_info(), settings)
|
||||||
rule.name, ''.join(format_exception(*sys.exc_info()))))
|
|
||||||
|
|
||||||
|
|
||||||
def confirm(new_command, settings):
|
def confirm(new_command, settings):
|
||||||
"""Returns `True` when running of new command confirmed."""
|
"""Returns `True` when running of new command confirmed."""
|
||||||
if not settings.require_confirmation:
|
if not settings.require_confirmation:
|
||||||
sys.stderr.write(new_command + '\n')
|
logs.show_command(new_command, settings)
|
||||||
return True
|
return True
|
||||||
|
|
||||||
sys.stderr.write(new_command + ' [Enter/Ctrl+C]')
|
logs.confirm_command(new_command, settings)
|
||||||
sys.stderr.flush()
|
|
||||||
try:
|
try:
|
||||||
sys.stdin.read(1)
|
sys.stdin.read(1)
|
||||||
return True
|
return True
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
sys.stderr.write('Aborted\n')
|
logs.failed('Aborted', settings)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
@ -133,13 +133,14 @@ def is_second_run(command):
|
|||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
colorama.init()
|
||||||
user_dir = setup_user_dir()
|
user_dir = setup_user_dir()
|
||||||
settings = get_settings(user_dir)
|
settings = get_settings(user_dir)
|
||||||
|
|
||||||
command = get_command(settings, sys.argv)
|
command = get_command(settings, sys.argv)
|
||||||
if command:
|
if command:
|
||||||
if is_second_run(command):
|
if is_second_run(command):
|
||||||
print("echo Can't fuck twice")
|
logs.failed("Can't fuck twice", settings)
|
||||||
return
|
return
|
||||||
|
|
||||||
rules = get_rules(user_dir, settings)
|
rules = get_rules(user_dir, settings)
|
||||||
@ -148,4 +149,4 @@ def main():
|
|||||||
run_rule(matched_rule, command, settings)
|
run_rule(matched_rule, command, settings)
|
||||||
return
|
return
|
||||||
|
|
||||||
print('echo No fuck given')
|
logs.failed('No fuck given', settings)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user