2012-08-28 12:57:39 -04:00
|
|
|
module Mutant
|
2013-02-02 10:56:48 -05:00
|
|
|
|
2012-09-15 18:51:47 -04:00
|
|
|
# Comandline parser
|
2013-02-02 10:56:48 -05:00
|
|
|
class CLI < CLIParser
|
2013-04-20 15:10:14 -04:00
|
|
|
include Adamantium::Flat, Equalizer.new(:config)
|
2012-08-28 12:57:39 -04:00
|
|
|
|
2012-08-28 13:43:15 -04:00
|
|
|
# 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)
|
2013-02-24 14:40:23 -05:00
|
|
|
config = new(*arguments).config
|
2013-02-02 10:32:13 -05:00
|
|
|
runner = Runner::Config.run(config)
|
|
|
|
runner.success? ? EXIT_SUCCESS : EXIT_FAILURE
|
2012-11-21 16:28:08 -05:00
|
|
|
rescue Error => exception
|
|
|
|
$stderr.puts(exception.message)
|
|
|
|
EXIT_FAILURE
|
|
|
|
end
|
|
|
|
|
2013-02-02 10:56:48 -05:00
|
|
|
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 ]
|
|
|
|
}.freeze
|
|
|
|
|
|
|
|
# Initialize objecct
|
2012-11-21 16:28:08 -05:00
|
|
|
#
|
2013-02-02 10:56:48 -05:00
|
|
|
# @param [Array<String>]
|
2012-11-21 16:28:08 -05:00
|
|
|
#
|
2013-02-02 10:56:48 -05:00
|
|
|
# @return [undefined]
|
2012-11-21 16:28:08 -05:00
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
2013-02-02 10:56:48 -05:00
|
|
|
def initialize(arguments)
|
|
|
|
@filters, @matchers = [], []
|
|
|
|
super(arguments)
|
|
|
|
strategy
|
|
|
|
matcher
|
2012-11-21 16:28:08 -05:00
|
|
|
end
|
|
|
|
|
2013-02-24 14:40:23 -05:00
|
|
|
# Return config
|
|
|
|
#
|
|
|
|
# @return [Config]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def config
|
|
|
|
Config.new(
|
|
|
|
:debug => debug?,
|
|
|
|
:matcher => matcher,
|
|
|
|
:filter => filter,
|
|
|
|
:strategy => strategy,
|
|
|
|
:reporter => reporter
|
|
|
|
)
|
|
|
|
end
|
|
|
|
memoize :config
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2012-12-10 18:17:19 -05:00
|
|
|
# Test for running in debug mode
|
|
|
|
#
|
|
|
|
# @return [true]
|
|
|
|
# if debug mode is active
|
|
|
|
#
|
|
|
|
# @return [false]
|
|
|
|
# otherwise
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def debug?
|
|
|
|
!!@debug
|
|
|
|
end
|
|
|
|
|
2012-11-21 16:28:08 -05:00
|
|
|
# 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 16:28:08 -05:00
|
|
|
#
|
2012-11-21 18:10:50 -05:00
|
|
|
# @return [Strategy]
|
2012-11-21 16:28:08 -05:00
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
2012-11-21 18:10:50 -05:00
|
|
|
def strategy
|
2013-04-20 14:55:37 -04:00
|
|
|
@strategy or raise(Error, 'No strategy was set!')
|
2012-12-10 18:17:19 -05:00
|
|
|
@strategy.new(self)
|
2012-08-28 12:57:39 -04:00
|
|
|
end
|
2012-12-10 18:17:19 -05:00
|
|
|
memoize :strategy
|
2012-08-28 12:57:39 -04:00
|
|
|
|
2012-11-21 16:28:08 -05:00
|
|
|
# Return reporter
|
2012-08-28 13:43:15 -04:00
|
|
|
#
|
2012-11-21 16:28:08 -05:00
|
|
|
# @return [Mutant::Reporter::CLI]
|
2012-08-28 13:43:15 -04:00
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
2012-11-21 16:28:08 -05:00
|
|
|
def reporter
|
2013-04-20 15:10:14 -04:00
|
|
|
Mutant::Reporter::CLI.new($stdout)
|
2012-08-28 12:57:39 -04:00
|
|
|
end
|
2012-11-21 16:28:08 -05:00
|
|
|
memoize :reporter
|
2012-08-28 12:57:39 -04:00
|
|
|
|
2013-02-02 10:56:48 -05:00
|
|
|
# Return matcher
|
2012-08-28 13:43:15 -04:00
|
|
|
#
|
2013-02-02 10:56:48 -05:00
|
|
|
# @return [Mutant::Matcher]
|
2012-08-28 13:43:15 -04:00
|
|
|
#
|
|
|
|
# @raise [CLI::Error]
|
2013-02-02 10:56:48 -05:00
|
|
|
# raises error when matcher is not given
|
2012-08-28 13:43:15 -04:00
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
2013-02-02 10:56:48 -05:00
|
|
|
def matcher
|
|
|
|
if @matchers.empty?
|
|
|
|
raise Error, 'No matchers given'
|
2012-08-28 12:57:39 -04:00
|
|
|
end
|
2013-02-02 10:56:48 -05:00
|
|
|
|
|
|
|
Mutant::Matcher::Chain.build(@matchers)
|
2012-08-28 12:57:39 -04:00
|
|
|
end
|
2013-02-02 10:56:48 -05:00
|
|
|
memoize :matcher
|
2012-08-28 12:57:39 -04:00
|
|
|
|
2012-08-28 13:43:15 -04:00
|
|
|
# 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
|
|
|
|
|
2012-08-28 13:43:15 -04:00
|
|
|
# Process matcher argument
|
2013-04-17 23:31:21 -04:00
|
|
|
#
|
2012-08-28 13:43:15 -04:00
|
|
|
# @return [undefined]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
2012-08-28 12:57:39 -04:00
|
|
|
def dispatch_matcher
|
|
|
|
argument = current_argument
|
|
|
|
consume(1)
|
2013-04-17 21:59:32 -04:00
|
|
|
matcher = Classifier.build(argument)
|
|
|
|
@matchers << matcher if matcher
|
2012-08-28 12:57:39 -04:00
|
|
|
end
|
|
|
|
|
2012-08-28 13:43:15 -04:00
|
|
|
# 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
|
|
|
|
|
2012-08-28 13:43:15 -04:00
|
|
|
# Add mutation filter
|
|
|
|
#
|
2012-12-12 16:31:14 -05:00
|
|
|
# @param [Class<Mutant::Filter>] klass
|
2012-08-28 13:43:15 -04:00
|
|
|
#
|
|
|
|
# @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
|
|
|
|
|
2012-12-10 18:17:19 -05:00
|
|
|
# Set debug mode
|
2012-11-21 18:10:50 -05:00
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
2012-12-10 18:17:19 -05:00
|
|
|
# @return [undefined]
|
2012-11-21 18:10:50 -05:00
|
|
|
#
|
2012-12-10 18:17:19 -05:00
|
|
|
def set_debug
|
2012-11-21 16:55:53 -05:00
|
|
|
consume(1)
|
2012-12-10 18:17:19 -05:00
|
|
|
@debug = true
|
2012-11-21 16:55:53 -05:00
|
|
|
end
|
|
|
|
|
2012-11-21 18:10:50 -05:00
|
|
|
# Set strategy
|
|
|
|
#
|
2012-12-12 16:31:14 -05:00
|
|
|
# @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
|