Commit 311a77d0 authored by Gabriel Mazetto's avatar Gabriel Mazetto

Refactor SimpleExecutor

parent 68327a42
...@@ -42,7 +42,7 @@ module SystemCheck ...@@ -42,7 +42,7 @@ module SystemCheck
# #
# @param [SystemCheck::BaseCheck] check_klass # @param [SystemCheck::BaseCheck] check_klass
def run_check(check_klass) def run_check(check_klass)
$stdout.print "#{check_klass.display_name} ... " print_display_name(check_klass)
check = check_klass.new check = check_klass.new
...@@ -59,17 +59,17 @@ module SystemCheck ...@@ -59,17 +59,17 @@ module SystemCheck
end end
if check.check? if check.check?
$stdout.puts check_klass.check_pass.color(:green) print_check_pass(check_klass)
else else
$stdout.puts check_klass.check_fail.color(:red) print_check_failure(check_klass)
if check.can_repair? if check.can_repair?
$stdout.print 'Trying to fix error automatically. ...' $stdout.print 'Trying to fix error automatically. ...'
if check.repair! if check.repair!
$stdout.puts 'Success'.color(:green) print_success
return return
else else
$stdout.puts 'Failed'.color(:red) print_failure
end end
end end
...@@ -81,6 +81,26 @@ module SystemCheck ...@@ -81,6 +81,26 @@ module SystemCheck
private private
def print_display_name(check_klass)
$stdout.print "#{check_klass.display_name} ... "
end
def print_check_pass(check_klass)
$stdout.puts check_klass.check_pass.color(:green)
end
def print_check_failure(check_klass)
$stdout.puts check_klass.check_fail.color(:red)
end
def print_success
$stdout.puts 'Success'.color(:green)
end
def print_failure
$stdout.puts 'Failed'.color(:red)
end
# Prints header content for the series of checks to be executed for this component # Prints header content for the series of checks to be executed for this component
# #
# @param [String] component name of the component relative to the checks being executed # @param [String] component name of the component relative to the checks being executed
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment