free_mutant/lib/mutant/cli.rb

263 lines
5.1 KiB
Ruby
Raw Normal View History

2012-08-28 12:57:39 -04:00
module Mutant
# Comandline parser
2012-08-28 12:57:39 -04:00
class CLI
include Adamantium::Flat, Equalizer.new(:matcher, :filter, :strategy, :reporter)
2012-08-28 12:57:39 -04:00
# Error raised when CLI argv is inalid
Error = Class.new(RuntimeError)
EXIT_FAILURE = 1
EXIT_SUCCESS = 0
OPTIONS = {
'--code' => [:add_filter, Mutation::Filter::Code ],
'--debug' => [:set_debug ],
'-d' => [:set_debug ],
'--rspec-unit' => [:set_strategy, Strategy::Rspec::Unit ],
'--rspec-full' => [:set_strategy, Strategy::Rspec::Full ],
'--rspec-dm2' => [:set_strategy, Strategy::Rspec::DM2 ],
'--static-fail' => [:set_strategy, Strategy::Static::Fail ],
'--static-success' => [:set_strategy, Strategy::Static::Success ]
}.freeze
OPTION_PATTERN = %r(\A-(?:-)?[a-zA-Z0-9\-]+\z).freeze
# Run cli with arguments
#
# @param [Array<String>] arguments
#
# @return [Fixnum]
# returns exit status
#
# @api private
#
2012-08-28 12:57:39 -04:00
def self.run(*arguments)
error = Runner.run(new(*arguments)).fail?
error ? EXIT_FAILURE : EXIT_SUCCESS
rescue Error => exception
$stderr.puts(exception.message)
EXIT_FAILURE
end
# Return matcher
#
# @return [Mutant::Matcher]
#
# @raise [CLI::Error]
# raises error when matcher is not given
#
# @api private
#
def matcher
if @matchers.empty?
raise Error, 'No matchers given'
end
Mutant::Matcher::Chain.build(@matchers)
end
memoize :matcher
# Test for running in debug mode
#
# @return [true]
# if debug mode is active
#
# @return [false]
# otherwise
#
# @api private
#
def debug?
!!@debug
end
# Return mutation filter
#
# @return [Mutant::Matcher]
#
# @api private
#
def filter
if @filters.empty?
Mutation::Filter::ALL
else
Mutation::Filter::Whitelist.new(@filters)
end
end
memoize :filter
2012-11-21 18:10:50 -05:00
# Return stratety
#
2012-11-21 18:10:50 -05:00
# @return [Strategy]
#
# @api private
#
2012-11-21 18:10:50 -05:00
def strategy
2013-01-14 08:13:39 -05:00
@strategy || raise(Error, 'No strategy was set!')
@strategy.new(self)
2012-08-28 12:57:39 -04:00
end
memoize :strategy
2012-08-28 12:57:39 -04:00
# Return reporter
#
# @return [Mutant::Reporter::CLI]
#
# @api private
#
def reporter
Mutant::Reporter::CLI.new(self)
2012-08-28 12:57:39 -04:00
end
memoize :reporter
2012-08-28 12:57:39 -04:00
private
# Initialize CLI
#
# @param [Array<String>] arguments
#
# @return [undefined]
#
# @api private
#
2012-08-28 12:57:39 -04:00
def initialize(arguments)
@filters, @matchers = [], []
@arguments, @index = arguments, 0
2012-08-28 12:57:39 -04:00
while @index < @arguments.length
dispatch
end
2012-11-21 18:10:50 -05:00
strategy
matcher
2012-08-28 12:57:39 -04:00
end
# Return option for argument with index
#
# @param [Fixnum] index
#
# @return [String]
#
# @api private
#
def option(index)
@arguments.fetch(index+1)
end
# Return current argument
#
# @return [String]
#
# @api private
#
2012-08-28 12:57:39 -04:00
def current_argument
@arguments.fetch(@index)
end
# Return current option value
#
# @return [String]
#
# @raise [CLI::Error]
# raises error when option is missing
#
# @api private
#
2012-08-28 12:57:39 -04:00
def current_option_value
@arguments.fetch(@index+1)
rescue IndexError
raise Error, "#{current_argument.inspect} is missing an argument"
2012-08-28 12:57:39 -04:00
end
# Process current argument
#
# @return [undefined]
#
# @api private
#
2012-08-28 12:57:39 -04:00
def dispatch
2012-11-21 18:10:50 -05:00
if OPTION_PATTERN =~ current_argument
2012-08-28 12:57:39 -04:00
dispatch_option
else
dispatch_matcher
end
end
# Move processed argument by amount
#
# @param [Fixnum] amount
# the amount of arguments to be consumed
#
# @return [undefined]
#
# @api private
#
2012-08-28 12:57:39 -04:00
def consume(amount)
@index += amount
end
# Process matcher argument
#
# @return [undefined]
#
# @api private
#
2012-08-28 12:57:39 -04:00
def dispatch_matcher
argument = current_argument
consume(1)
@matchers << Classifier.build(argument)
2012-08-28 12:57:39 -04:00
end
# Process option argument
#
# @return [Undefined]
#
# @api private
#
2012-08-28 12:57:39 -04:00
def dispatch_option
argument = current_argument
arguments = *OPTIONS.fetch(argument) do
raise Error, "Unknown option: #{argument.inspect}"
end
send(*arguments)
end
# Add mutation filter
#
# @param [Class<Mutant::Filter>] klass
#
# @return [undefined]
#
# @api private
#
2012-08-28 12:57:39 -04:00
def add_filter(klass)
@filters << klass.new(current_option_value)
consume(2)
end
# Set debug mode
2012-11-21 18:10:50 -05:00
#
# @api private
#
# @return [undefined]
2012-11-21 18:10:50 -05:00
#
def set_debug
consume(1)
@debug = true
end
2012-11-21 18:10:50 -05:00
# Set strategy
#
# @param [Strategy] strategy
2012-11-21 18:10:50 -05:00
#
# @api private
#
# @return [undefined]
#
def set_strategy(strategy)
consume(1)
@strategy = strategy
end
2012-08-28 12:57:39 -04:00
end
end