mutant 0.9.8 → 0.9.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (161) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yml +2 -2
  3. data/Changelog.md +6 -0
  4. data/README.md +63 -23
  5. data/config/reek.yml +1 -0
  6. data/lib/mutant.rb +4 -0
  7. data/lib/mutant/ast.rb +0 -9
  8. data/lib/mutant/ast/find_metaclass_containing.rb +48 -0
  9. data/lib/mutant/ast/meta/send.rb +0 -6
  10. data/lib/mutant/bootstrap.rb +0 -36
  11. data/lib/mutant/cli.rb +5 -49
  12. data/lib/mutant/color.rb +0 -3
  13. data/lib/mutant/config.rb +0 -8
  14. data/lib/mutant/context.rb +0 -3
  15. data/lib/mutant/diff.rb +0 -17
  16. data/lib/mutant/env.rb +0 -6
  17. data/lib/mutant/expression/method.rb +6 -6
  18. data/lib/mutant/expression/methods.rb +6 -6
  19. data/lib/mutant/expression/parser.rb +0 -6
  20. data/lib/mutant/integration.rb +0 -18
  21. data/lib/mutant/isolation/fork.rb +0 -22
  22. data/lib/mutant/license.rb +11 -0
  23. data/lib/mutant/matcher.rb +0 -14
  24. data/lib/mutant/matcher/config.rb +0 -11
  25. data/lib/mutant/matcher/method.rb +0 -31
  26. data/lib/mutant/matcher/method/instance.rb +0 -8
  27. data/lib/mutant/matcher/method/metaclass.rb +86 -0
  28. data/lib/mutant/matcher/method/singleton.rb +0 -25
  29. data/lib/mutant/matcher/methods.rb +17 -28
  30. data/lib/mutant/matcher/namespace.rb +0 -10
  31. data/lib/mutant/matcher/scope.rb +2 -4
  32. data/lib/mutant/meta/example/dsl.rb +0 -21
  33. data/lib/mutant/meta/example/verification.rb +0 -20
  34. data/lib/mutant/mutation.rb +0 -3
  35. data/lib/mutant/mutator.rb +1 -29
  36. data/lib/mutant/mutator/node.rb +1 -66
  37. data/lib/mutant/mutator/node/and_asgn.rb +0 -3
  38. data/lib/mutant/mutator/node/argument.rb +0 -15
  39. data/lib/mutant/mutator/node/arguments.rb +0 -20
  40. data/lib/mutant/mutator/node/begin.rb +0 -3
  41. data/lib/mutant/mutator/node/binary.rb +0 -23
  42. data/lib/mutant/mutator/node/block.rb +0 -15
  43. data/lib/mutant/mutator/node/break.rb +0 -3
  44. data/lib/mutant/mutator/node/case.rb +0 -9
  45. data/lib/mutant/mutator/node/class.rb +0 -3
  46. data/lib/mutant/mutator/node/conditional_loop.rb +0 -3
  47. data/lib/mutant/mutator/node/const.rb +0 -3
  48. data/lib/mutant/mutator/node/define.rb +0 -11
  49. data/lib/mutant/mutator/node/defined.rb +0 -3
  50. data/lib/mutant/mutator/node/dstr.rb +0 -3
  51. data/lib/mutant/mutator/node/dsym.rb +0 -3
  52. data/lib/mutant/mutator/node/generic.rb +0 -3
  53. data/lib/mutant/mutator/node/if.rb +0 -12
  54. data/lib/mutant/mutator/node/index.rb +0 -27
  55. data/lib/mutant/mutator/node/kwbegin.rb +0 -3
  56. data/lib/mutant/mutator/node/literal.rb +0 -3
  57. data/lib/mutant/mutator/node/literal/array.rb +0 -6
  58. data/lib/mutant/mutator/node/literal/boolean.rb +0 -4
  59. data/lib/mutant/mutator/node/literal/float.rb +0 -9
  60. data/lib/mutant/mutator/node/literal/hash.rb +0 -9
  61. data/lib/mutant/mutator/node/literal/integer.rb +0 -9
  62. data/lib/mutant/mutator/node/literal/nil.rb +0 -3
  63. data/lib/mutant/mutator/node/literal/range.rb +0 -6
  64. data/lib/mutant/mutator/node/literal/regex.rb +0 -6
  65. data/lib/mutant/mutator/node/literal/string.rb +0 -3
  66. data/lib/mutant/mutator/node/literal/symbol.rb +0 -3
  67. data/lib/mutant/mutator/node/masgn.rb +0 -3
  68. data/lib/mutant/mutator/node/match_current_line.rb +0 -3
  69. data/lib/mutant/mutator/node/mlhs.rb +0 -3
  70. data/lib/mutant/mutator/node/named_value/access.rb +2 -14
  71. data/lib/mutant/mutator/node/named_value/constant_assignment.rb +0 -9
  72. data/lib/mutant/mutator/node/named_value/variable_assignment.rb +0 -6
  73. data/lib/mutant/mutator/node/next.rb +0 -3
  74. data/lib/mutant/mutator/node/noop.rb +0 -3
  75. data/lib/mutant/mutator/node/nthref.rb +0 -3
  76. data/lib/mutant/mutator/node/op_asgn.rb +0 -3
  77. data/lib/mutant/mutator/node/or_asgn.rb +0 -3
  78. data/lib/mutant/mutator/node/procarg_zero.rb +0 -3
  79. data/lib/mutant/mutator/node/regopt.rb +0 -6
  80. data/lib/mutant/mutator/node/resbody.rb +0 -6
  81. data/lib/mutant/mutator/node/rescue.rb +2 -19
  82. data/lib/mutant/mutator/node/return.rb +0 -3
  83. data/lib/mutant/mutator/node/sclass.rb +20 -0
  84. data/lib/mutant/mutator/node/send.rb +2 -61
  85. data/lib/mutant/mutator/node/send/attribute_assignment.rb +0 -9
  86. data/lib/mutant/mutator/node/send/binary.rb +0 -11
  87. data/lib/mutant/mutator/node/send/conditional.rb +0 -3
  88. data/lib/mutant/mutator/node/splat.rb +0 -3
  89. data/lib/mutant/mutator/node/super.rb +0 -3
  90. data/lib/mutant/mutator/node/when.rb +0 -19
  91. data/lib/mutant/mutator/node/yield.rb +0 -3
  92. data/lib/mutant/mutator/node/zsuper.rb +0 -3
  93. data/lib/mutant/mutator/util/array.rb +0 -6
  94. data/lib/mutant/mutator/util/symbol.rb +0 -3
  95. data/lib/mutant/parallel.rb +0 -13
  96. data/lib/mutant/parallel/driver.rb +0 -10
  97. data/lib/mutant/parallel/worker.rb +0 -22
  98. data/lib/mutant/reporter/cli.rb +0 -5
  99. data/lib/mutant/reporter/cli/format.rb +0 -9
  100. data/lib/mutant/reporter/cli/printer.rb +0 -40
  101. data/lib/mutant/reporter/cli/printer/env_progress.rb +0 -15
  102. data/lib/mutant/reporter/cli/printer/isolation_result.rb +0 -18
  103. data/lib/mutant/reporter/cli/printer/mutation_progress_result.rb +0 -5
  104. data/lib/mutant/reporter/cli/printer/mutation_result.rb +0 -21
  105. data/lib/mutant/reporter/cli/printer/status_progressive.rb +0 -8
  106. data/lib/mutant/reporter/cli/printer/subject_progress.rb +0 -9
  107. data/lib/mutant/repository/diff.rb +1 -13
  108. data/lib/mutant/repository/diff/ranges.rb +0 -11
  109. data/lib/mutant/result.rb +0 -3
  110. data/lib/mutant/runner.rb +0 -18
  111. data/lib/mutant/runner/sink.rb +0 -5
  112. data/lib/mutant/subject.rb +0 -8
  113. data/lib/mutant/subject/method.rb +0 -3
  114. data/lib/mutant/subject/method/instance.rb +0 -5
  115. data/lib/mutant/subject/method/metaclass.rb +30 -0
  116. data/lib/mutant/transform.rb +0 -92
  117. data/lib/mutant/version.rb +1 -1
  118. data/lib/mutant/warnings.rb +0 -6
  119. data/lib/mutant/zombifier.rb +2 -34
  120. data/meta/and.rb +0 -2
  121. data/meta/array.rb +0 -3
  122. data/meta/begin.rb +0 -3
  123. data/meta/block.rb +0 -3
  124. data/meta/break.rb +0 -1
  125. data/meta/case.rb +0 -6
  126. data/meta/casgn.rb +0 -3
  127. data/meta/cvasgn.rb +0 -1
  128. data/meta/def.rb +0 -7
  129. data/meta/ensure.rb +0 -1
  130. data/meta/false.rb +0 -1
  131. data/meta/gvasgn.rb +0 -1
  132. data/meta/hash.rb +0 -4
  133. data/meta/if.rb +0 -5
  134. data/meta/ivasgn.rb +0 -1
  135. data/meta/kwbegin.rb +0 -1
  136. data/meta/lvasgn.rb +0 -1
  137. data/meta/match_current_line.rb +0 -1
  138. data/meta/next.rb +0 -1
  139. data/meta/or.rb +0 -2
  140. data/meta/regexp.rb +0 -1
  141. data/meta/rescue.rb +0 -6
  142. data/meta/sclass.rb +12 -0
  143. data/meta/send.rb +0 -4
  144. data/meta/true.rb +0 -1
  145. data/meta/until.rb +0 -1
  146. data/meta/while.rb +0 -2
  147. data/meta/yield.rb +0 -1
  148. data/mutant.sh +12 -0
  149. data/spec/unit/mutant/ast/find_metaclass_containing_spec.rb +64 -0
  150. data/spec/unit/mutant/expression/methods_spec.rb +7 -2
  151. data/spec/unit/mutant/license_spec.rb +15 -3
  152. data/spec/unit/mutant/matcher/method/metaclass_spec.rb +108 -0
  153. data/spec/unit/mutant/matcher/methods/metaclass_spec.rb +62 -0
  154. data/spec/unit/mutant/matcher/namespace_spec.rb +3 -1
  155. data/spec/unit/mutant/matcher/scope_spec.rb +11 -1
  156. data/spec/unit/mutant/meta/example_spec.rb +3 -3
  157. data/spec/unit/mutant/mutator/node_spec.rb +1 -6
  158. data/spec/unit/mutant/subject/method/metaclass_spec.rb +63 -0
  159. data/test_app/lib/test_app.rb +1 -0
  160. data/test_app/lib/test_app/metaclasses.rb +108 -0
  161. metadata +17 -2
@@ -35,18 +35,10 @@ module Mutant
35
35
 
36
36
  private
37
37
 
38
- # Object being printed
39
- #
40
- # @return [Result::Env]
41
38
  def object
42
39
  super().payload
43
40
  end
44
41
 
45
- # Mutations processed per second
46
- #
47
- # @return [Float]
48
- #
49
- # @api private
50
42
  def mutations_per_second
51
43
  amount_mutation_results / runtime
52
44
  end
@@ -32,9 +32,6 @@ module Mutant
32
32
 
33
33
  private
34
34
 
35
- # Print stats
36
- #
37
- # @return [undefined]
38
35
  def print_stats
39
36
  status(
40
37
  FORMAT,
@@ -47,16 +44,10 @@ module Mutant
47
44
  )
48
45
  end
49
46
 
50
- # Print progress bar finish
51
- #
52
- # @return [undefined]
53
47
  def print_progress_bar_finish
54
48
  puts(nil) unless amount_mutation_results.zero?
55
49
  end
56
50
 
57
- # Print mutation results
58
- #
59
- # @return [undefined]
60
51
  def print_mutation_results
61
52
  visit_collection(MutationProgressResult, object.mutation_results)
62
53
  end
@@ -29,10 +29,6 @@ module Mutant
29
29
 
30
30
  private
31
31
 
32
- # Touched paths
33
- #
34
- # @return [Hash{Pathname => Path}]
35
- #
36
32
  # rubocop:disable Metrics/MethodLength
37
33
  def touched_paths
38
34
  pathname = world.pathname
@@ -49,13 +45,8 @@ module Mutant
49
45
  .to_h
50
46
  end
51
47
  memoize :touched_paths
48
+ # rubocop:enable Metrics/MethodLength
52
49
 
53
- # Parse path
54
- #
55
- # @param [Pathname] work_dir
56
- # @param [String] line
57
- #
58
- # @return [Path]
59
50
  def parse_line(work_dir, line)
60
51
  match = FORMAT.match(line) or fail Error, "Invalid git diff-index line: #{line}"
61
52
 
@@ -88,9 +79,6 @@ module Mutant
88
79
 
89
80
  private
90
81
 
91
- # Ranges of hunks in the diff
92
- #
93
- # @return [Array<Range<Integer>>]
94
82
  def diff_ranges
95
83
  world
96
84
  .capture_stdout(%W[git diff --unified=0 #{to} -- #{path}])
@@ -18,11 +18,6 @@ module Mutant
18
18
  diff.lines.flat_map(&method(:parse_ranges)).to_set
19
19
  end
20
20
 
21
- # Parse ranges from line
22
- #
23
- # @param [String] line
24
- #
25
- # @return [Array<Range<Integer>>]
26
21
  def self.parse_ranges(line)
27
22
  match = REGEXP.match(line) or return EMPTY_ARRAY
28
23
 
@@ -34,12 +29,6 @@ module Mutant
34
29
  end
35
30
  private_class_method :parse_ranges
36
31
 
37
- # Construct a range from start point and offset
38
- #
39
- # @param [String] start
40
- # @param [String, nil] offset
41
- #
42
- # @return [Range<Integer>]
43
32
  def self.mk_range(start, offset)
44
33
  start = Integer(start)
45
34
 
@@ -193,9 +193,6 @@ module Mutant
193
193
 
194
194
  private
195
195
 
196
- # Killed mutation results
197
- #
198
- # @return [Array<Result::Mutation>]
199
196
  def killed_mutation_results
200
197
  mutation_results.select(&:success?)
201
198
  end
@@ -12,9 +12,6 @@ module Mutant
12
12
  Either::Right.new(run_mutation_analysis(env))
13
13
  end
14
14
 
15
- # Run mutation analysis
16
- #
17
- # @return [undefined]
18
15
  def self.run_mutation_analysis(env)
19
16
  reporter = reporter(env)
20
17
 
@@ -27,13 +24,6 @@ module Mutant
27
24
  end
28
25
  private_class_method :run_mutation_analysis
29
26
 
30
- # Run driver
31
- #
32
- # @param [Reporter] reporter
33
- # @param [Driver] driver
34
- #
35
- # @return [Object]
36
- # the last returned status payload
37
27
  def self.run_driver(reporter, driver)
38
28
  loop do
39
29
  status = driver.wait_timeout(reporter.delay)
@@ -43,9 +33,6 @@ module Mutant
43
33
  end
44
34
  private_class_method :run_driver
45
35
 
46
- # Configuration for parallel execution engine
47
- #
48
- # @return [Parallell::Config]
49
36
  def self.mutation_test_config(env)
50
37
  world = env.world
51
38
 
@@ -61,11 +48,6 @@ module Mutant
61
48
  end
62
49
  private_class_method :mutation_test_config
63
50
 
64
- # Reporter to use
65
- #
66
- # @param [Env] env
67
- #
68
- # @return [Reporter]
69
51
  def self.reporter(env)
70
52
  env.config.reporter
71
53
  end
@@ -51,11 +51,6 @@ module Mutant
51
51
 
52
52
  private
53
53
 
54
- # Return previous results
55
- #
56
- # @param [Subject]
57
- #
58
- # @return [Array<Result::Mutation>]
59
54
  def previous_mutation_results(subject)
60
55
  subject_result = @subject_results.fetch(subject) { return EMPTY_ARRAY }
61
56
  subject_result.mutation_results
@@ -79,18 +79,10 @@ module Mutant
79
79
 
80
80
  private
81
81
 
82
- # Neutral mutation
83
- #
84
- # @return [Mutation::Neutral]
85
82
  def neutral_mutation
86
83
  Mutation::Neutral.new(self, wrap_node(node))
87
84
  end
88
85
 
89
- # Wrap node into subject specific container
90
- #
91
- # @param [Parser::AST::Node] node
92
- #
93
- # @return [Parser::AST::Node]
94
86
  def wrap_node(node)
95
87
  node
96
88
  end
@@ -34,9 +34,6 @@ module Mutant
34
34
 
35
35
  private
36
36
 
37
- # The scope
38
- #
39
- # @return [Class, Module]
40
37
  def scope
41
38
  context.scope
42
39
  end
@@ -33,11 +33,6 @@ module Mutant
33
33
 
34
34
  private
35
35
 
36
- # Memoizer node for mutant
37
- #
38
- # @param [Parser::AST::Node] mutant
39
- #
40
- # @return [Parser::AST::Node]
41
36
  def wrap_node(mutant)
42
37
  s(:begin, mutant, s(:send, nil, :memoize, s(:args, s(:sym, name))))
43
38
  end
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mutant
4
+ class Subject
5
+ class Method
6
+ # Singleton method defined using metaclass syntax
7
+ # (class << self; def foo; end; end)
8
+ class Metaclass < self
9
+ include AST::Sexp
10
+
11
+ NAME_INDEX = 0
12
+ SYMBOL = '.'
13
+
14
+ # Prepare subject for mutation insertion
15
+ #
16
+ # @return [self]
17
+ def prepare
18
+ scope.singleton_class.public_send(:undef_method, name)
19
+ self
20
+ end
21
+
22
+ private
23
+
24
+ def wrap_node(mutant)
25
+ s(:sclass, AST::Nodes::N_SELF, mutant)
26
+ end
27
+ end # Metaclass
28
+ end # Method
29
+ end # Subject
30
+ end # Mutant
@@ -49,9 +49,6 @@ module Mutant
49
49
 
50
50
  private
51
51
 
52
- # Path representation to error
53
- #
54
- # @return [String]
55
52
  def path
56
53
  trace.map { |error| error.transform.slug }.reject(&:empty?).join('/')
57
54
  end
@@ -78,23 +75,6 @@ module Mutant
78
75
 
79
76
  private
80
77
 
81
- # Make error from curent context
82
- #
83
- # @param [Error, nil] cause
84
- # original error, if any
85
- #
86
- # @param [Object] input
87
- # input that ran into the error
88
- #
89
- # @param [String] message
90
- # human readable error message
91
- #
92
- # @param [Transform, nil]
93
- # transform that generated the error from input
94
- #
95
- # @return [Error]
96
- #
97
- # ignore :reek:LongParameterList
98
78
  def error(cause: nil, input:, message: nil)
99
79
  Error.new(
100
80
  cause: cause,
@@ -104,42 +84,18 @@ module Mutant
104
84
  )
105
85
  end
106
86
 
107
- # Lift error
108
- #
109
- # @param [Error]
110
- #
111
- # @return [Error]
112
87
  def lift_error(error)
113
88
  error.with(transform: self)
114
89
  end
115
90
 
116
- # Wrap error
117
- #
118
- # @param [Error]
119
- #
120
- # @return [Error]
121
91
  def wrap_error(error)
122
92
  error(cause: error, input: error.input)
123
93
  end
124
94
 
125
- # Create failure
126
- #
127
- # @param [Object] value
128
- #
129
- # @return [Either::Left]
130
- #
131
- # ignore :reek:UtilityFunction
132
95
  def failure(value)
133
96
  Either::Left.new(value)
134
97
  end
135
98
 
136
- # Create success
137
- #
138
- # @param [Object] value
139
- #
140
- # @return [Either::Right]
141
- #
142
- # ignore :reek:UtilityFunction
143
99
  def success(value)
144
100
  Either::Right.new(value)
145
101
  end
@@ -268,14 +224,6 @@ module Mutant
268
224
 
269
225
  private
270
226
 
271
- # Transform array
272
- #
273
- # @param [Array<Object>] input
274
- #
275
- # @return [Either<Error, Array<Object>]
276
- #
277
- # ignore :reek:NestedIterators
278
- #
279
227
  # rubocop:disable Metrics/MethodLength
280
228
  def run(input)
281
229
  output = []
@@ -357,31 +305,16 @@ module Mutant
357
305
 
358
306
  private
359
307
 
360
- # Transform hash
361
- #
362
- # @param [Hash] input
363
- #
364
- # @return [Either<Error, Hash>]
365
308
  def transform(input)
366
309
  transform_required(input).bind do |required|
367
310
  transform_optional(input).fmap(&required.method(:merge))
368
311
  end
369
312
  end
370
313
 
371
- # Transform required keys
372
- #
373
- # @param [Hash] input
374
- #
375
- # @return [Either<Error, Hash>]
376
314
  def transform_required(input)
377
315
  transform_keys(required, input)
378
316
  end
379
317
 
380
- # Transform optional keys
381
- #
382
- # @param [Hash] input
383
- #
384
- # @return [Either<Error, Hash>]
385
318
  def transform_optional(input)
386
319
  transform_keys(
387
320
  optional.select { |key| input.key?(key.value) },
@@ -389,13 +322,6 @@ module Mutant
389
322
  )
390
323
  end
391
324
 
392
- # Transform keys
393
- #
394
- # @param [Array<Transform::Hash::Key>] keys
395
- # @param [Hash] input
396
- #
397
- # @return [Either<Error, Hash>]
398
- #
399
325
  # ignore :reek:NestedIterators
400
326
  #
401
327
  # rubocop:disable Metrics/MethodLength
@@ -415,24 +341,12 @@ module Mutant
415
341
  end
416
342
  # rubocop:enable Metrics/MethodLength
417
343
 
418
- # Coerce key value under key specific transformer
419
- #
420
- # @param [Hash::Key] key
421
- # @param [Hash] input
422
- #
423
- # @return [Either<Error, Object>]
424
344
  def coerce_key(key, input)
425
345
  key.apply(input.fetch(key.value)).lmap do |error|
426
346
  error(input: input, cause: error)
427
347
  end
428
348
  end
429
349
 
430
- # Reject unexpected keys
431
- #
432
- # @param [Hash]
433
- #
434
- # @return [Either<Error, Object>]
435
- #
436
350
  # rubocop:disable Metrics/MethodLength
437
351
  def reject_keys(input)
438
352
  keys = input.keys
@@ -452,17 +366,11 @@ module Mutant
452
366
  end
453
367
  # rubocop:enable Metrics/MethodLength
454
368
 
455
- # Key values allowed to be present
456
- #
457
- # @return [Array<Object>]
458
369
  def allowed_keys
459
370
  required_keys + optional.map(&:value)
460
371
  end
461
372
  memoize :allowed_keys
462
373
 
463
- # Key values required to be present
464
- #
465
- # @return [Array<Object>]
466
374
  def required_keys
467
375
  required.map(&:value)
468
376
  end
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Mutant
4
4
  # Current mutant version
5
- VERSION = '0.9.8'
5
+ VERSION = '0.9.9'
6
6
  end # Mutant
@@ -92,9 +92,6 @@ module Mutant
92
92
 
93
93
  private
94
94
 
95
- # Hook called when capturing a warning
96
- #
97
- # @return [undefined]
98
95
  def capture(*arguments)
99
96
  if @disabled
100
97
  @original.call(*arguments)
@@ -103,9 +100,6 @@ module Mutant
103
100
  end
104
101
  end
105
102
 
106
- # Assert warnings capture does not call itself
107
- #
108
- # Its currently not supported nor intended to be supported.
109
103
  def assert_no_recursion
110
104
  fail RecursiveUseError unless @disabled
111
105
  end