Class: Mutant::Mutation Private

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

Overview

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

Represent a mutated node with its subject

Direct Known Subclasses

Evil, Neutral

Defined Under Namespace

Classes: Evil, Neutral, Noop

Constant Summary collapse

CODE_DELIMITER =

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

"\0".freeze
CODE_RANGE =

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

(0..4).freeze

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.success?(test_result) ⇒ 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 reports



48
49
50
# File 'lib/mutant/mutation.rb', line 48

def self.success?(test_result)
  self::TEST_PASS_SUCCESS.equal?(test_result.passed)
end

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.

Mutation code



23
24
25
# File 'lib/mutant/mutation.rb', line 23

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.

Identification string



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

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

#insert(kernel) ⇒ self

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



57
58
59
60
61
62
63
64
65
66
# File 'lib/mutant/mutation.rb', line 57

def insert(kernel)
  subject.prepare
  Loader.call(
    binding: TOPLEVEL_BINDING,
    kernel:  kernel,
    node:    root,
    subject: subject
  )
  self
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.

Normalized original source



39
40
41
# File 'lib/mutant/mutation.rb', line 39

def original_source
  subject.source
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.

Normalized mutation source



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

def source
  Unparser.unparse(node)
end