Class: Mutant::Mutation

Inherits:
Object
  • Object
show all
Includes:
AbstractType, Adamantium::Flat
Defined in:
lib/mutant/mutation.rb

Overview

Represent a mutated node with its subject

Direct Known Subclasses

Evil, Neutral, Noop

Defined Under Namespace

Classes: Evil, Neutral, Noop

Constant Summary collapse

CODE_DELIMITER =
"\0".freeze
CODE_RANGE =
(0..4).freeze

Instance Method Summary collapse

Instance Method Details

#codeString

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return mutation code

Returns:

  • (String)


54
55
56
# File 'lib/mutant/mutation.rb', line 54

def code
  sha1[CODE_RANGE]
end

#identificationString

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return identification

Returns:

  • (String)


43
44
45
# File 'lib/mutant/mutation.rb', line 43

def identification
  "#{self.class::SYMBOL}:#{subject.identification}:#{code}"
end

#insertself

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Insert mutated node

FIXME: Cache subject visibility in a better way! Ideally dont mutate it

implicitly. Also subject.public? should NOT be a public interface it
is a detail of method mutations.

Returns:

  • (self)


31
32
33
34
35
# File 'lib/mutant/mutation.rb', line 31

def insert
  subject.public?
  Loader::Eval.call(root, subject)
  self
end

#killed_by?(test_report) ⇒ Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Test if mutation is killed by test report

Parameters:

  • test_report (Report::Test)

Returns:

  • (Boolean)


88
89
90
# File 'lib/mutant/mutation.rb', line 88

def killed_by?(test_report)
  self.class::SHOULD_PASS.equal?(test_report.passed)
end

#original_sourceString

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return original source

Returns:

  • (String)


76
77
78
# File 'lib/mutant/mutation.rb', line 76

def original_source
  subject.source
end

#rootParser::AST::Node

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return mutated root node

Returns:

  • (Parser::AST::Node)


16
17
18
# File 'lib/mutant/mutation.rb', line 16

def root
  subject.root(node)
end

#sourceString

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return source

Returns:

  • (String)


65
66
67
# File 'lib/mutant/mutation.rb', line 65

def source
  Unparser.unparse(node)
end