free_mutant/lib/mutant/cli.rb

233 lines
4.5 KiB
Ruby
Raw Normal View History

require 'optparse'
2012-08-28 12:57:39 -04:00
module Mutant
# Comandline parser
class CLI
include Adamantium::Flat, Equalizer.new(:config)
2012-08-28 12:57:39 -04:00
2013-06-13 13:10:34 -04:00
# Error raised when CLI argv is invalid
Error = Class.new(RuntimeError)
EXIT_FAILURE = 1
EXIT_SUCCESS = 0
# Run cli with arguments
#
# @param [Array<String>] arguments
#
# @return [Fixnum]
# returns exit status
#
# @api private
#
def self.run(arguments)
config = new(arguments).config
runner = Runner::Config.run(config)
runner.success? ? EXIT_SUCCESS : EXIT_FAILURE
rescue Error => exception
$stderr.puts(exception.message)
EXIT_FAILURE
end
# Initialize objecct
#
# @param [Array<String>]
#
# @return [undefined]
#
# @api private
#
def initialize(arguments=[])
@filters, @matchers = [], []
parse(arguments)
strategy
matcher
end
# Return config
#
# @return [Config]
#
# @api private
#
def config
Config.new(
:debug => debug?,
:matcher => matcher,
:filter => filter,
:strategy => strategy,
:reporter => reporter
)
end
memoize :config
private
# 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-04-20 14:55:37 -04:00
@strategy or 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
Reporter::CLI.new($stdout)
2012-08-28 12:57:39 -04:00
end
memoize :reporter
2012-08-28 12:57:39 -04:00
# 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'
2012-08-28 12:57:39 -04:00
end
Matcher::Chain.build(@matchers)
2012-08-28 12:57:39 -04:00
end
memoize :matcher
2012-08-28 12:57:39 -04:00
# Add mutation filter
#
# @param [Class<Mutant::Filter>] klass
#
# @param [String] filter
#
# @return [undefined]
#
# @api private
#
def add_filter(klass,filter)
@filters << klass.new(filter)
2012-08-28 12:57:39 -04:00
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
@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)
@strategy = strategy
end
# Parses the command-line options.
#
# @param [Array<String>] arguments
# Command-line options and arguments to be parsed.
#
# @raise [Error]
# An error occurred while parsing the options.
#
# @api private
#
def parse(arguments)
opts = OptionParser.new do |opts|
opts.banner = 'usage: mutant STRATEGY [options] MATCHERS ...'
opts.separator ''
opts.separator 'Strategies:'
2013-05-15 04:25:33 -04:00
opts.on('--rspec-unit', 'executes all specs under ./spec/unit') do
set_strategy Strategy::Rspec::Unit
end
2013-05-15 04:25:33 -04:00
opts.on('--rspec-full', 'executes all specs under ./spec') do
set_strategy Strategy::Rspec::Full
end
2013-05-15 04:25:33 -04:00
opts.on('--rspec-dm2', 'executes spec/unit/namespace/class/method_spec.rb') do
set_strategy Strategy::Rspec::DM2
end
opts.separator ''
opts.separator 'Options:'
2013-05-15 04:25:33 -04:00
opts.on('--code FILTER', 'Adds a code filter') do |filter|
add_filter Mutation::Filter::Code, filter
end
2013-05-15 04:25:33 -04:00
opts.on('-d','--debug', 'Enable debugging output') do
set_debug
end
2013-05-15 04:25:33 -04:00
opts.on_tail('-h', '--help', 'Show this message') do
puts opts
exit
end
end
matchers = begin
opts.parse!(arguments)
2013-05-15 04:35:13 -04:00
rescue OptionParser::ParseError => error
raise(Error, error.message, error.backtrace)
end
matchers.each do |pattern|
matcher = Classifier.build(pattern)
@matchers << matcher if matcher
end
end
2012-08-28 12:57:39 -04:00
end
end