free_mutant/lib/mutant/killer.rb

89 lines
1.4 KiB
Ruby
Raw Normal View History

2012-08-01 13:05:34 -04:00
module Mutant
# Abstract runner for mutant killers
class Killer
2012-10-15 08:36:15 -04:00
include Adamantium, AbstractClass
extend MethodObject
2012-08-01 13:05:34 -04:00
2012-08-16 13:26:15 -04:00
# Test for kill failure
2012-08-01 13:05:34 -04:00
#
# @return [true]
# returns true when mutant was killed
2012-08-01 13:05:34 -04:00
#
# @return [false]
# returns false otherwise
2012-08-01 13:05:34 -04:00
#
# @api private
#
def fail?
!@killed
end
2012-08-01 13:05:34 -04:00
# Return runtime of killer
2012-08-01 13:05:34 -04:00
#
# @return [Float]
2012-08-01 13:05:34 -04:00
#
# @api private
2012-08-01 13:05:34 -04:00
#
def runtime; @runtime; end
2012-08-01 13:05:34 -04:00
# Return original source
2012-08-01 13:05:34 -04:00
#
# @return [String]
2012-08-01 13:05:34 -04:00
#
2012-08-16 13:26:15 -04:00
# @api private
#
def original_source
mutation.original_source
end
# Return mutated source
2012-08-01 13:05:34 -04:00
#
# @return [String]
2012-08-01 13:05:34 -04:00
#
2012-08-16 13:26:15 -04:00
# @api private
#
def mutation_source
mutation.source
2012-08-01 13:05:34 -04:00
end
private
2012-08-16 13:26:15 -04:00
# Return mutation to kill
#
# @return [Mutation]
#
# @api private
#
def mutation; @mutation; end
2012-08-01 13:05:34 -04:00
2012-08-16 13:26:15 -04:00
# Initialize killer object
2012-08-01 13:05:34 -04:00
#
# @param [Mutation] mutation
2012-08-01 13:05:34 -04:00
#
# @return [undefined]
#
# @api private
#
def initialize(mutation)
@mutation = mutation
@mutation.insert
start_time = Time.now
2012-08-01 13:05:34 -04:00
@killed = run
end_time = Time.now
@runtime = end_time - start_time
2012-08-01 13:05:34 -04:00
end
# Run test
#
# @return [true]
# returns true when mutant was killed
#
# @return [false]
# returns false otherwise
#
# @api private
#
abstract_method :run
2012-08-01 13:05:34 -04:00
end
end