free_mutant/lib/mutant/matcher/method.rb

144 lines
3 KiB
Ruby
Raw Normal View History

module Mutant
class Matcher
# Matcher for subjects that are a specific method
2012-08-09 23:07:22 +02:00
class Method < self
include Adamantium::Flat, Concord::Public.new(:env, :scope, :target_method)
include AST::NodePredicates, Equalizer.new(:identification)
2013-04-17 20:31:21 -07:00
# Methods within rbx kernel directory are precompiled and their source
# cannot be accessed via reading source location. Same for methods created by eval.
BLACKLIST = %r{\Akernel/|(eval)}.freeze
# Enumerate matches
#
# @return [Enumerable<Subject>]
# if no block given
#
# @return [self]
# otherwise
#
# @api private
2013-04-17 20:31:21 -07:00
#
def each
return to_enum unless block_given?
2012-12-07 23:27:21 +01:00
if !skip? && subject
yield subject
end
self
end
private
2014-06-15 19:27:57 +00:00
# Test if method should be skipped
#
2014-06-15 19:27:57 +00:00
# @return [Boolean]
#
# @api private
#
def skip?
location = source_location
if location.nil? || BLACKLIST.match(location.first)
env.warn(format('%s does not have valid source location unable to emit subject', target_method.inspect))
true
elsif matched_node_path.any?(&method(:n_block?))
env.warn(format('%s is defined from a 3rd party lib unable to emit subject', target_method.inspect))
true
else
false
end
end
# Return method name
#
# @return [String]
#
# @api private
#
def method_name
target_method.name
end
2012-12-07 23:27:21 +01:00
# Return context
#
2012-12-07 23:27:21 +01:00
# @return [Context::Scope]
#
# @api private
#
2012-12-07 23:27:21 +01:00
def context
Context::Scope.new(scope, source_path)
2012-12-07 23:27:21 +01:00
end
# Return full ast
#
# @return [Parser::AST::Node]
#
# @api private
#
def ast
env.cache.parse(source_path)
end
2012-08-14 12:26:56 +02:00
# Return path to source
#
# @return [String]
#
# @api private
#
2012-08-14 12:26:56 +02:00
def source_path
source_location.first
end
# Return source file line
#
# @return [Integer]
#
# @api private
#
2012-08-14 22:45:34 +02:00
def source_line
source_location.last
end
# Return source location
#
# @return [Array]
#
# @api private
#
def source_location
target_method.source_location
end
2012-08-01 18:34:03 +02:00
# Return subject
#
2012-08-01 18:34:03 +02:00
# @return [Subject]
# if there is a matched node
2012-08-01 18:34:03 +02:00
#
# @return [nil]
# otherwise
#
# @api private
#
2012-08-01 18:34:03 +02:00
def subject
node = matched_node_path.last
return unless node
self.class::SUBJECT_CLASS.new(env.config, context, node)
end
2012-08-01 18:34:03 +02:00
memoize :subject
# Return matched node path
#
# @return [Array<Parser::AST::Node>]
#
# @api private
#
def matched_node_path
AST.find_last_path(ast, &method(:match?))
end
memoize :matched_node_path
end # Method
end # Matcher
end # Mutant