mutant 0.9.6 → 0.9.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +121 -0
- data/.rubocop.yml +203 -0
- data/Changelog.md +26 -0
- data/Gemfile +0 -7
- data/Gemfile.lock +27 -87
- data/Gemfile.shared +7 -0
- data/README.md +88 -27
- data/config/reek.yml +1 -0
- data/lib/mutant.rb +4 -2
- data/lib/mutant/ast.rb +0 -9
- data/lib/mutant/ast/find_metaclass_containing.rb +48 -0
- data/lib/mutant/ast/meta/send.rb +0 -6
- data/lib/mutant/bootstrap.rb +0 -36
- data/lib/mutant/cli.rb +5 -49
- data/lib/mutant/config.rb +0 -8
- data/lib/mutant/context.rb +0 -3
- data/lib/mutant/env.rb +0 -6
- data/lib/mutant/expression/method.rb +6 -6
- data/lib/mutant/expression/methods.rb +6 -6
- data/lib/mutant/expression/parser.rb +0 -6
- data/lib/mutant/integration.rb +0 -18
- data/lib/mutant/isolation/fork.rb +0 -22
- data/lib/mutant/license.rb +11 -0
- data/lib/mutant/matcher.rb +0 -14
- data/lib/mutant/matcher/config.rb +0 -11
- data/lib/mutant/matcher/method.rb +0 -31
- data/lib/mutant/matcher/method/instance.rb +0 -8
- data/lib/mutant/matcher/method/metaclass.rb +86 -0
- data/lib/mutant/matcher/method/singleton.rb +0 -25
- data/lib/mutant/matcher/methods.rb +17 -28
- data/lib/mutant/matcher/namespace.rb +0 -10
- data/lib/mutant/matcher/scope.rb +2 -4
- data/lib/mutant/meta/example/dsl.rb +0 -21
- data/lib/mutant/meta/example/verification.rb +0 -20
- data/lib/mutant/mutation.rb +0 -3
- data/lib/mutant/mutator.rb +1 -29
- data/lib/mutant/mutator/node.rb +1 -66
- data/lib/mutant/mutator/node/and_asgn.rb +0 -3
- data/lib/mutant/mutator/node/argument.rb +0 -15
- data/lib/mutant/mutator/node/arguments.rb +0 -20
- data/lib/mutant/mutator/node/begin.rb +0 -3
- data/lib/mutant/mutator/node/binary.rb +0 -23
- data/lib/mutant/mutator/node/block.rb +0 -15
- data/lib/mutant/mutator/node/break.rb +0 -3
- data/lib/mutant/mutator/node/case.rb +0 -9
- data/lib/mutant/mutator/node/class.rb +0 -3
- data/lib/mutant/mutator/node/conditional_loop.rb +0 -3
- data/lib/mutant/mutator/node/const.rb +0 -3
- data/lib/mutant/mutator/node/define.rb +0 -11
- data/lib/mutant/mutator/node/defined.rb +0 -3
- data/lib/mutant/mutator/node/dstr.rb +0 -3
- data/lib/mutant/mutator/node/dsym.rb +0 -3
- data/lib/mutant/mutator/node/generic.rb +0 -67
- data/lib/mutant/mutator/node/if.rb +0 -12
- data/lib/mutant/mutator/node/index.rb +0 -27
- data/lib/mutant/mutator/node/kwbegin.rb +0 -3
- data/lib/mutant/mutator/node/literal.rb +0 -3
- data/lib/mutant/mutator/node/literal/array.rb +0 -6
- data/lib/mutant/mutator/node/literal/boolean.rb +0 -4
- data/lib/mutant/mutator/node/literal/float.rb +0 -9
- data/lib/mutant/mutator/node/literal/hash.rb +0 -9
- data/lib/mutant/mutator/node/literal/integer.rb +0 -9
- data/lib/mutant/mutator/node/literal/nil.rb +0 -3
- data/lib/mutant/mutator/node/literal/range.rb +4 -7
- data/lib/mutant/mutator/node/literal/regex.rb +0 -6
- data/lib/mutant/mutator/node/literal/string.rb +0 -3
- data/lib/mutant/mutator/node/literal/symbol.rb +0 -3
- data/lib/mutant/mutator/node/masgn.rb +0 -3
- data/lib/mutant/mutator/node/match_current_line.rb +0 -3
- data/lib/mutant/mutator/node/mlhs.rb +0 -3
- data/lib/mutant/mutator/node/named_value/access.rb +2 -14
- data/lib/mutant/mutator/node/named_value/constant_assignment.rb +0 -9
- data/lib/mutant/mutator/node/named_value/variable_assignment.rb +0 -6
- data/lib/mutant/mutator/node/next.rb +0 -3
- data/lib/mutant/mutator/node/noop.rb +0 -3
- data/lib/mutant/mutator/node/nthref.rb +0 -3
- data/lib/mutant/mutator/node/op_asgn.rb +0 -3
- data/lib/mutant/mutator/node/or_asgn.rb +0 -3
- data/lib/mutant/mutator/node/procarg_zero.rb +0 -3
- data/lib/mutant/mutator/node/regopt.rb +0 -6
- data/lib/mutant/mutator/node/resbody.rb +0 -6
- data/lib/mutant/mutator/node/rescue.rb +2 -19
- data/lib/mutant/mutator/node/return.rb +0 -3
- data/lib/mutant/mutator/node/sclass.rb +20 -0
- data/lib/mutant/mutator/node/send.rb +2 -61
- data/lib/mutant/mutator/node/send/attribute_assignment.rb +0 -9
- data/lib/mutant/mutator/node/send/binary.rb +0 -11
- data/lib/mutant/mutator/node/send/conditional.rb +0 -3
- data/lib/mutant/mutator/node/splat.rb +0 -3
- data/lib/mutant/mutator/node/super.rb +0 -3
- data/lib/mutant/mutator/node/when.rb +0 -19
- data/lib/mutant/mutator/node/yield.rb +0 -3
- data/lib/mutant/mutator/node/zsuper.rb +0 -3
- data/lib/mutant/mutator/util/array.rb +0 -6
- data/lib/mutant/mutator/util/symbol.rb +0 -3
- data/lib/mutant/parallel.rb +0 -13
- data/lib/mutant/parallel/driver.rb +0 -10
- data/lib/mutant/parallel/worker.rb +0 -22
- data/lib/mutant/registry.rb +2 -7
- data/lib/mutant/reporter/cli.rb +0 -5
- data/lib/mutant/reporter/cli/format.rb +0 -9
- data/lib/mutant/reporter/cli/printer.rb +2 -42
- data/lib/mutant/reporter/cli/printer/env_progress.rb +0 -15
- data/lib/mutant/reporter/cli/printer/isolation_result.rb +0 -18
- data/lib/mutant/reporter/cli/printer/mutation_progress_result.rb +0 -5
- data/lib/mutant/reporter/cli/printer/mutation_result.rb +1 -22
- data/lib/mutant/reporter/cli/printer/status_progressive.rb +0 -8
- data/lib/mutant/reporter/cli/printer/subject_progress.rb +0 -9
- data/lib/mutant/repository/diff.rb +1 -13
- data/lib/mutant/repository/diff/ranges.rb +0 -11
- data/lib/mutant/result.rb +0 -3
- data/lib/mutant/runner.rb +0 -18
- data/lib/mutant/runner/sink.rb +0 -5
- data/lib/mutant/subject.rb +0 -8
- data/lib/mutant/subject/method.rb +0 -3
- data/lib/mutant/subject/method/instance.rb +40 -6
- data/lib/mutant/subject/method/metaclass.rb +30 -0
- data/lib/mutant/transform.rb +0 -92
- data/lib/mutant/version.rb +1 -1
- data/lib/mutant/warnings.rb +0 -6
- data/lib/mutant/zombifier.rb +2 -34
- data/meta/and.rb +0 -2
- data/meta/array.rb +0 -3
- data/meta/begin.rb +0 -3
- data/meta/block.rb +0 -3
- data/meta/break.rb +0 -1
- data/meta/case.rb +0 -6
- data/meta/casgn.rb +0 -3
- data/meta/cvasgn.rb +0 -1
- data/meta/def.rb +0 -7
- data/meta/ensure.rb +0 -1
- data/meta/false.rb +0 -1
- data/meta/gvasgn.rb +0 -1
- data/meta/hash.rb +0 -4
- data/meta/if.rb +0 -5
- data/meta/ivasgn.rb +0 -1
- data/meta/kwbegin.rb +0 -1
- data/meta/lvasgn.rb +0 -1
- data/meta/match_current_line.rb +0 -1
- data/meta/next.rb +0 -1
- data/meta/or.rb +0 -2
- data/meta/range.rb +24 -0
- data/meta/regexp.rb +0 -1
- data/meta/rescue.rb +0 -6
- data/meta/sclass.rb +12 -0
- data/meta/send.rb +0 -4
- data/meta/true.rb +0 -1
- data/meta/until.rb +0 -1
- data/meta/while.rb +0 -2
- data/meta/yield.rb +0 -1
- data/mutant.gemspec +7 -4
- data/mutant.sh +12 -0
- data/spec/spec_helper.rb +37 -22
- data/spec/unit/mutant/ast/find_metaclass_containing_spec.rb +64 -0
- data/spec/unit/mutant/expression/methods_spec.rb +7 -2
- data/spec/unit/mutant/license_spec.rb +15 -3
- data/spec/unit/mutant/matcher/method/metaclass_spec.rb +108 -0
- data/spec/unit/mutant/matcher/methods/metaclass_spec.rb +62 -0
- data/spec/unit/mutant/matcher/namespace_spec.rb +3 -1
- data/spec/unit/mutant/matcher/scope_spec.rb +11 -1
- data/spec/unit/mutant/meta/example_spec.rb +3 -3
- data/spec/unit/mutant/mutator/node_spec.rb +1 -6
- data/spec/unit/mutant/registry_spec.rb +52 -25
- data/spec/unit/mutant/reporter/cli/printer/env_result_spec.rb +1 -1
- data/spec/unit/mutant/reporter/cli/printer/mutation_progress_result_spec.rb +2 -2
- data/spec/unit/mutant/reporter/cli/printer/mutation_result_spec.rb +12 -12
- data/spec/unit/mutant/reporter/cli/printer/subject_result_spec.rb +1 -1
- data/spec/unit/mutant/reporter/cli/printer_spec.rb +4 -4
- data/spec/unit/mutant/reporter/cli_spec.rb +1 -1
- data/spec/unit/mutant/subject/method/instance_spec.rb +117 -22
- data/spec/unit/mutant/subject/method/metaclass_spec.rb +63 -0
- data/test_app/Gemfile.minitest +2 -0
- data/test_app/lib/test_app.rb +5 -0
- data/test_app/lib/test_app/metaclasses.rb +108 -0
- metadata +74 -25
- data/.circleci/config.yml +0 -53
- data/config/rubocop.yml +0 -205
- data/lib/mutant/color.rb +0 -43
- data/lib/mutant/diff.rb +0 -114
- data/spec/shared/base_behavior.rb +0 -45
- data/spec/support/test_app.rb +0 -7
- data/spec/support/warnings.yml +0 -6
- data/spec/unit/mutant/diff_spec.rb +0 -189
@@ -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
|
|
data/lib/mutant/result.rb
CHANGED
data/lib/mutant/runner.rb
CHANGED
@@ -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
|
data/lib/mutant/runner/sink.rb
CHANGED
@@ -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
|
data/lib/mutant/subject.rb
CHANGED
@@ -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
|
@@ -23,23 +23,57 @@ module Mutant
|
|
23
23
|
class Memoized < self
|
24
24
|
include AST::Sexp
|
25
25
|
|
26
|
+
FREEZER_OPTION_VALUES = {
|
27
|
+
Adamantium::Freezer::Deep => :deep,
|
28
|
+
Adamantium::Freezer::Flat => :flat,
|
29
|
+
Adamantium::Freezer::Noop => :noop
|
30
|
+
}.freeze
|
31
|
+
|
32
|
+
private_constant(*constants(false))
|
33
|
+
|
26
34
|
# Prepare subject for mutation insertion
|
27
35
|
#
|
28
36
|
# @return [self]
|
29
37
|
def prepare
|
30
|
-
|
38
|
+
memory.delete(name)
|
31
39
|
super()
|
32
40
|
end
|
33
41
|
|
34
42
|
private
|
35
43
|
|
36
|
-
|
44
|
+
def wrap_node(mutant)
|
45
|
+
s(:begin, mutant, s(:send, nil, :memoize, s(:args, s(:sym, name), *options)))
|
46
|
+
end
|
47
|
+
|
48
|
+
# The optional AST node for adamantium memoization options
|
37
49
|
#
|
38
|
-
# @
|
50
|
+
# @return [Array(Parser::AST::Node), nil]
|
51
|
+
def options
|
52
|
+
# rubocop:disable Style/GuardClause
|
53
|
+
if FREEZER_OPTION_VALUES.key?(freezer)
|
54
|
+
[
|
55
|
+
s(:hash,
|
56
|
+
s(:pair,
|
57
|
+
s(:sym, :freezer),
|
58
|
+
s(:sym, FREEZER_OPTION_VALUES.fetch(freezer))))
|
59
|
+
]
|
60
|
+
end
|
61
|
+
# rubocop:enable Style/GuardClause
|
62
|
+
end
|
63
|
+
|
64
|
+
# The freezer used for memoization
|
39
65
|
#
|
40
|
-
# @return [
|
41
|
-
def
|
42
|
-
|
66
|
+
# @return [Object]
|
67
|
+
def freezer
|
68
|
+
memory.fetch(name).instance_variable_get(:@freezer)
|
69
|
+
end
|
70
|
+
memoize :freezer, freezer: :noop
|
71
|
+
|
72
|
+
# The memory used for memoization
|
73
|
+
#
|
74
|
+
# @return [ThreadSafe::Cache]
|
75
|
+
def memory
|
76
|
+
scope.__send__(:memoized_methods).instance_variable_get(:@memory)
|
43
77
|
end
|
44
78
|
|
45
79
|
end # Memoized
|
@@ -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
|
data/lib/mutant/transform.rb
CHANGED
@@ -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
|