super_diff 0.5.3 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +46 -20
- data/lib/super_diff.rb +46 -7
- data/lib/super_diff/active_record.rb +7 -7
- data/lib/super_diff/active_record/differs/active_record_relation.rb +3 -13
- data/lib/super_diff/active_record/object_inspection.rb +2 -6
- data/lib/super_diff/active_record/object_inspection/inspection_tree_builders.rb +16 -0
- data/lib/super_diff/active_record/object_inspection/{inspectors → inspection_tree_builders}/active_record_model.rb +19 -20
- data/lib/super_diff/active_record/object_inspection/{inspectors → inspection_tree_builders}/active_record_relation.rb +9 -8
- data/lib/super_diff/active_record/operation_tree_flatteners.rb +10 -0
- data/lib/super_diff/active_record/operation_tree_flatteners/active_record_relation.rb +17 -0
- data/lib/super_diff/active_record/operation_trees/active_record_relation.rb +8 -7
- data/lib/super_diff/active_support.rb +8 -8
- data/lib/super_diff/active_support/differs/hash_with_indifferent_access.rb +3 -13
- data/lib/super_diff/active_support/object_inspection.rb +2 -6
- data/lib/super_diff/active_support/object_inspection/{inspectors.rb → inspection_tree_builders.rb} +2 -2
- data/lib/super_diff/active_support/object_inspection/inspection_tree_builders/hash_with_indifferent_access.rb +37 -0
- data/lib/super_diff/active_support/operation_tree_builders/hash_with_indifferent_access.rb +17 -0
- data/lib/super_diff/active_support/operation_tree_flatteners.rb +10 -0
- data/lib/super_diff/active_support/operation_tree_flatteners/hash_with_indifferent_access.rb +17 -0
- data/lib/super_diff/active_support/operation_trees/hash_with_indifferent_access.rb +4 -7
- data/lib/super_diff/colorized_document_extensions.rb +9 -6
- data/lib/super_diff/configuration.rb +102 -19
- data/lib/super_diff/csi.rb +1 -1
- data/lib/super_diff/csi/four_bit_color.rb +0 -2
- data/lib/super_diff/diff_formatters/collection.rb +2 -2
- data/lib/super_diff/diff_formatters/multiline_string.rb +4 -4
- data/lib/super_diff/differs/array.rb +1 -1
- data/lib/super_diff/differs/base.rb +3 -21
- data/lib/super_diff/differs/custom_object.rb +1 -1
- data/lib/super_diff/differs/default_object.rb +1 -1
- data/lib/super_diff/differs/hash.rb +1 -1
- data/lib/super_diff/differs/main.rb +1 -7
- data/lib/super_diff/differs/multiline_string.rb +1 -1
- data/lib/super_diff/differs/time_like.rb +1 -1
- data/lib/super_diff/equality_matchers/array.rb +4 -4
- data/lib/super_diff/equality_matchers/default.rb +4 -4
- data/lib/super_diff/equality_matchers/hash.rb +4 -4
- data/lib/super_diff/equality_matchers/multiline_string.rb +4 -4
- data/lib/super_diff/equality_matchers/primitive.rb +6 -9
- data/lib/super_diff/equality_matchers/singleline_string.rb +4 -4
- data/lib/super_diff/gem_version.rb +45 -0
- data/lib/super_diff/helpers.rb +52 -2
- data/lib/super_diff/line.rb +83 -0
- data/lib/super_diff/object_inspection.rb +12 -9
- data/lib/super_diff/object_inspection/inspection_tree.rb +183 -81
- data/lib/super_diff/object_inspection/inspection_tree_builders.rb +44 -0
- data/lib/super_diff/object_inspection/inspection_tree_builders/array.rb +38 -0
- data/lib/super_diff/object_inspection/inspection_tree_builders/base.rb +27 -0
- data/lib/super_diff/object_inspection/inspection_tree_builders/custom_object.rb +37 -0
- data/lib/super_diff/object_inspection/inspection_tree_builders/default_object.rb +63 -0
- data/lib/super_diff/object_inspection/{inspectors → inspection_tree_builders}/defaults.rb +1 -2
- data/lib/super_diff/object_inspection/inspection_tree_builders/hash.rb +46 -0
- data/lib/super_diff/object_inspection/{inspectors → inspection_tree_builders}/main.rb +5 -10
- data/lib/super_diff/object_inspection/inspection_tree_builders/primitive.rb +21 -0
- data/lib/super_diff/object_inspection/inspection_tree_builders/time_like.rb +64 -0
- data/lib/super_diff/object_inspection/nodes.rb +33 -32
- data/lib/super_diff/object_inspection/nodes/as_lines_when_rendering_to_lines.rb +97 -0
- data/lib/super_diff/object_inspection/nodes/as_prefix_when_rendering_to_lines.rb +27 -0
- data/lib/super_diff/object_inspection/nodes/as_prelude_when_rendering_to_lines.rb +27 -0
- data/lib/super_diff/object_inspection/nodes/as_single_line.rb +33 -0
- data/lib/super_diff/object_inspection/nodes/base.rb +55 -20
- data/lib/super_diff/object_inspection/nodes/inspection.rb +47 -7
- data/lib/super_diff/object_inspection/nodes/nesting.rb +16 -5
- data/lib/super_diff/object_inspection/nodes/only_when.rb +54 -0
- data/lib/super_diff/object_inspection/nodes/text.rb +16 -2
- data/lib/super_diff/object_inspection/nodes/when_empty.rb +21 -6
- data/lib/super_diff/object_inspection/nodes/when_non_empty.rb +20 -5
- data/lib/super_diff/object_inspection/nodes/when_rendering_to_lines.rb +27 -0
- data/lib/super_diff/object_inspection/nodes/when_rendering_to_string.rb +27 -0
- data/lib/super_diff/object_inspection/prefix_for_next_node.rb +6 -0
- data/lib/super_diff/object_inspection/prelude_for_next_node.rb +6 -0
- data/lib/super_diff/operation_tree_builders/array.rb +7 -10
- data/lib/super_diff/operation_tree_builders/base.rb +6 -6
- data/lib/super_diff/operation_tree_builders/custom_object.rb +5 -2
- data/lib/super_diff/operation_tree_builders/default_object.rb +1 -1
- data/lib/super_diff/operation_tree_builders/defaults.rb +1 -1
- data/lib/super_diff/operation_tree_builders/hash.rb +1 -8
- data/lib/super_diff/operation_tree_builders/multiline_string.rb +2 -6
- data/lib/super_diff/operation_tree_builders/time_like.rb +2 -2
- data/lib/super_diff/operation_tree_flatteners.rb +20 -0
- data/lib/super_diff/operation_tree_flatteners/array.rb +15 -0
- data/lib/super_diff/operation_tree_flatteners/base.rb +54 -0
- data/lib/super_diff/operation_tree_flatteners/collection.rb +139 -0
- data/lib/super_diff/operation_tree_flatteners/custom_object.rb +28 -0
- data/lib/super_diff/operation_tree_flatteners/default_object.rb +32 -0
- data/lib/super_diff/operation_tree_flatteners/hash.rb +41 -0
- data/lib/super_diff/operation_tree_flatteners/multiline_string.rb +17 -0
- data/lib/super_diff/operation_trees/array.rb +4 -7
- data/lib/super_diff/operation_trees/base.rb +39 -16
- data/lib/super_diff/operation_trees/custom_object.rb +4 -8
- data/lib/super_diff/operation_trees/default_object.rb +28 -13
- data/lib/super_diff/operation_trees/hash.rb +4 -7
- data/lib/super_diff/operation_trees/main.rb +1 -1
- data/lib/super_diff/operation_trees/multiline_string.rb +4 -7
- data/lib/super_diff/operations/binary_operation.rb +1 -6
- data/lib/super_diff/operations/unary_operation.rb +2 -30
- data/lib/super_diff/recursion_guard.rb +3 -3
- data/lib/super_diff/rspec.rb +41 -13
- data/lib/super_diff/rspec/differs/collection_including.rb +4 -2
- data/lib/super_diff/rspec/differs/hash_including.rb +4 -2
- data/lib/super_diff/rspec/matcher_text_builders/base.rb +7 -7
- data/lib/super_diff/rspec/matcher_text_builders/be_predicate.rb +6 -6
- data/lib/super_diff/rspec/matcher_text_builders/contain_exactly.rb +1 -1
- data/lib/super_diff/rspec/matcher_text_builders/have_predicate.rb +4 -4
- data/lib/super_diff/rspec/matcher_text_builders/raise_error.rb +1 -1
- data/lib/super_diff/rspec/matcher_text_builders/respond_to.rb +5 -5
- data/lib/super_diff/rspec/monkey_patches.rb +353 -306
- data/lib/super_diff/rspec/object_inspection.rb +4 -1
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders.rb +44 -0
- data/lib/super_diff/rspec/object_inspection/{inspectors → inspection_tree_builders}/collection_containing_exactly.rb +9 -8
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/collection_including.rb +34 -0
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/double.rb +103 -0
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/hash_including.rb +36 -0
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/instance_of.rb +26 -0
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/kind_of.rb +26 -0
- data/lib/super_diff/rspec/object_inspection/{inspectors → inspection_tree_builders}/object_having_attributes.rb +10 -12
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/primitive.rb +10 -0
- data/lib/super_diff/rspec/object_inspection/inspection_tree_builders/value_within.rb +33 -0
- data/lib/super_diff/rspec/operation_tree_builders/collection_containing_exactly.rb +12 -4
- data/lib/super_diff/rspec/operation_tree_builders/collection_including.rb +10 -3
- data/lib/super_diff/rspec/operation_tree_builders/hash_including.rb +10 -3
- data/lib/super_diff/tiered_lines.rb +4 -0
- data/lib/super_diff/tiered_lines_elider.rb +490 -0
- data/lib/super_diff/tiered_lines_formatter.rb +79 -0
- data/lib/super_diff/version.rb +1 -1
- data/spec/examples.txt +407 -5
- data/spec/integration/rails/active_support_spec.rb +19 -0
- data/spec/integration/rspec/be_falsey_matcher_spec.rb +10 -10
- data/spec/integration/rspec/be_matcher_spec.rb +100 -100
- data/spec/integration/rspec/be_nil_matcher_spec.rb +10 -10
- data/spec/integration/rspec/be_predicate_matcher_spec.rb +103 -103
- data/spec/integration/rspec/be_truthy_matcher_spec.rb +10 -10
- data/spec/integration/rspec/contain_exactly_matcher_spec.rb +113 -107
- data/spec/integration/rspec/eq_matcher_spec.rb +223 -277
- data/spec/integration/rspec/have_attributes_matcher_spec.rb +138 -129
- data/spec/integration/rspec/have_predicate_matcher_spec.rb +65 -65
- data/spec/integration/rspec/include_matcher_spec.rb +73 -73
- data/spec/integration/rspec/match_array_matcher_spec.rb +126 -119
- data/spec/integration/rspec/match_matcher_spec.rb +362 -274
- data/spec/integration/rspec/raise_error_matcher_spec.rb +86 -86
- data/spec/integration/rspec/respond_to_matcher_spec.rb +240 -240
- data/spec/integration/rspec/third_party_matcher_spec.rb +8 -8
- data/spec/integration/rspec/unhandled_errors_spec.rb +5 -5
- data/spec/spec_helper.rb +33 -13
- data/spec/support/command_runner.rb +15 -25
- data/spec/support/helpers.rb +21 -0
- data/spec/support/integration/helpers.rb +8 -2
- data/spec/support/integration/matchers/produce_output_when_run_matcher.rb +4 -4
- data/spec/support/integration/test_programs/base.rb +38 -10
- data/spec/support/integration/test_programs/rspec_active_record.rb +1 -1
- data/spec/support/integration/test_programs/rspec_active_support.rb +17 -0
- data/spec/support/integration/test_programs/rspec_rails.rb +1 -1
- data/spec/support/shared_examples/active_record.rb +109 -108
- data/spec/support/shared_examples/active_support.rb +65 -0
- data/spec/support/shared_examples/elided_diffs.rb +914 -0
- data/spec/support/shared_examples/hash_with_indifferent_access.rb +196 -232
- data/spec/support/unit/helpers.rb +15 -0
- data/spec/support/unit/matchers/match_output.rb +41 -0
- data/spec/unit/active_record/object_inspection_spec.rb +273 -0
- data/spec/unit/equality_matchers/main_spec.rb +445 -465
- data/spec/unit/helpers_spec.rb +61 -0
- data/spec/unit/operation_tree_flatteners/array_spec.rb +604 -0
- data/spec/unit/operation_tree_flatteners/custom_object_spec.rb +667 -0
- data/spec/unit/operation_tree_flatteners/default_object_spec.rb +687 -0
- data/spec/unit/operation_tree_flatteners/hash_spec.rb +632 -0
- data/spec/unit/operation_tree_flatteners/multiline_string_spec.rb +121 -0
- data/spec/unit/rspec/object_inspection_spec.rb +446 -0
- data/spec/unit/super_diff_spec.rb +1958 -0
- data/spec/unit/tiered_lines_elider_spec.rb +6356 -0
- data/spec/unit/tiered_lines_formatter_spec.rb +193 -0
- data/super_diff.gemspec +1 -1
- metadata +95 -50
- data/lib/super_diff/active_record/diff_formatters.rb +0 -10
- data/lib/super_diff/active_record/diff_formatters/active_record_relation.rb +0 -23
- data/lib/super_diff/active_record/object_inspection/inspectors.rb +0 -16
- data/lib/super_diff/active_support/diff_formatters.rb +0 -10
- data/lib/super_diff/active_support/diff_formatters/hash_with_indifferent_access.rb +0 -36
- data/lib/super_diff/active_support/object_inspection/inspectors/hash_with_indifferent_access.rb +0 -28
- data/lib/super_diff/diff_formatters.rb +0 -14
- data/lib/super_diff/diff_formatters/array.rb +0 -21
- data/lib/super_diff/diff_formatters/base.rb +0 -33
- data/lib/super_diff/diff_formatters/custom_object.rb +0 -30
- data/lib/super_diff/diff_formatters/default_object.rb +0 -46
- data/lib/super_diff/diff_formatters/defaults.rb +0 -10
- data/lib/super_diff/diff_formatters/hash.rb +0 -34
- data/lib/super_diff/diff_formatters/main.rb +0 -41
- data/lib/super_diff/object_inspection/inspectors.rb +0 -23
- data/lib/super_diff/object_inspection/inspectors/array.rb +0 -32
- data/lib/super_diff/object_inspection/inspectors/base.rb +0 -36
- data/lib/super_diff/object_inspection/inspectors/custom_object.rb +0 -37
- data/lib/super_diff/object_inspection/inspectors/default_object.rb +0 -61
- data/lib/super_diff/object_inspection/inspectors/hash.rb +0 -32
- data/lib/super_diff/object_inspection/inspectors/primitive.rb +0 -28
- data/lib/super_diff/object_inspection/inspectors/string.rb +0 -23
- data/lib/super_diff/object_inspection/inspectors/time_like.rb +0 -23
- data/lib/super_diff/object_inspection/nodes/break.rb +0 -15
- data/lib/super_diff/object_inspection/nodes/when_multiline.rb +0 -22
- data/lib/super_diff/object_inspection/nodes/when_singleline.rb +0 -24
- data/lib/super_diff/rspec/object_inspection/inspectors.rb +0 -40
- data/lib/super_diff/rspec/object_inspection/inspectors/collection_including.rb +0 -28
- data/lib/super_diff/rspec/object_inspection/inspectors/hash_including.rb +0 -31
- data/lib/super_diff/rspec/object_inspection/inspectors/instance_of.rb +0 -23
- data/lib/super_diff/rspec/object_inspection/inspectors/kind_of.rb +0 -23
- data/lib/super_diff/rspec/object_inspection/inspectors/primitive.rb +0 -13
- data/lib/super_diff/rspec/object_inspection/inspectors/value_within.rb +0 -29
- data/spec/support/object_id.rb +0 -27
- data/spec/support/ruby_versions.rb +0 -11
- data/spec/unit/object_inspection_spec.rb +0 -1168
@@ -0,0 +1,27 @@
|
|
1
|
+
module SuperDiff
|
2
|
+
module ObjectInspection
|
3
|
+
module Nodes
|
4
|
+
class AsPrefixWhenRenderingToLines < Base
|
5
|
+
def self.name
|
6
|
+
:as_prefix_when_rendering_to_lines
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.method_name
|
10
|
+
:as_prefix_when_rendering_to_lines
|
11
|
+
end
|
12
|
+
|
13
|
+
def render_to_string(object)
|
14
|
+
if block
|
15
|
+
render_to_string_in_subtree(object)
|
16
|
+
else
|
17
|
+
immediate_value.to_s
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def render_to_lines(object, **)
|
22
|
+
ObjectInspection::PrefixForNextNode.new(render_to_string(object))
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
module SuperDiff
|
2
|
+
module ObjectInspection
|
3
|
+
module Nodes
|
4
|
+
class AsPreludeWhenRenderingToLines < Base
|
5
|
+
def self.name
|
6
|
+
:as_prelude_when_rendering_to_lines
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.method_name
|
10
|
+
:as_prelude_when_rendering_to_lines
|
11
|
+
end
|
12
|
+
|
13
|
+
def render_to_string(object)
|
14
|
+
if block
|
15
|
+
render_to_string_in_subtree(object)
|
16
|
+
else
|
17
|
+
immediate_value.to_s
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def render_to_lines(object, **)
|
22
|
+
ObjectInspection::PreludeForNextNode.new(render_to_string(object))
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
module SuperDiff
|
2
|
+
module ObjectInspection
|
3
|
+
module Nodes
|
4
|
+
class AsSingleLine < Base
|
5
|
+
def self.node_name
|
6
|
+
:as_single_line
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.method_name
|
10
|
+
:as_single_line
|
11
|
+
end
|
12
|
+
|
13
|
+
def render_to_string(object)
|
14
|
+
if block
|
15
|
+
render_to_string_in_subtree(object)
|
16
|
+
else
|
17
|
+
immediate_value.to_s
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def render_to_lines(object, type:, indentation_level:)
|
22
|
+
[
|
23
|
+
SuperDiff::Line.new(
|
24
|
+
type: type,
|
25
|
+
indentation_level: indentation_level,
|
26
|
+
value: render_to_string(object),
|
27
|
+
),
|
28
|
+
]
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -2,7 +2,18 @@ module SuperDiff
|
|
2
2
|
module ObjectInspection
|
3
3
|
module Nodes
|
4
4
|
class Base
|
5
|
-
def
|
5
|
+
def self.node_name
|
6
|
+
unimplemented_class_method!
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.method_name
|
10
|
+
unimplemented_class_method!
|
11
|
+
end
|
12
|
+
|
13
|
+
include ImplementationChecks
|
14
|
+
extend ImplementationChecks
|
15
|
+
|
16
|
+
def initialize(tree, *args, **options, &block)
|
6
17
|
if !args.empty? && block
|
7
18
|
raise ArgumentError.new(
|
8
19
|
"You cannot provide both an immediate value and a lazy value. " +
|
@@ -13,35 +24,40 @@ module SuperDiff
|
|
13
24
|
@tree = tree
|
14
25
|
@immediate_value = args.first
|
15
26
|
@block = block
|
27
|
+
@options = options
|
16
28
|
end
|
17
29
|
|
18
30
|
def clone_with(
|
19
31
|
tree: @tree,
|
20
32
|
immediate_value: @immediate_value,
|
21
|
-
block: @block
|
33
|
+
block: @block,
|
34
|
+
**rest
|
22
35
|
)
|
23
36
|
if block
|
24
|
-
self.class.new(tree, &block)
|
37
|
+
self.class.new(tree, **options, **rest, &block)
|
25
38
|
else
|
26
|
-
self.class.new(tree, immediate_value)
|
39
|
+
self.class.new(tree, immediate_value, **options, **rest)
|
27
40
|
end
|
28
41
|
end
|
29
42
|
|
30
|
-
def
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
43
|
+
def render(object, preferably_as_lines:, **rest)
|
44
|
+
if options[:as_lines] || preferably_as_lines
|
45
|
+
render_to_lines(object, **rest)
|
46
|
+
else
|
47
|
+
render_to_string(object)
|
48
|
+
end
|
36
49
|
end
|
37
50
|
|
38
51
|
# rubocop:disable Lint/UnusedMethodArgument
|
39
|
-
def
|
52
|
+
def render_to_string(object)
|
40
53
|
# rubocop:enable Lint/UnusedMethodArgument
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
54
|
+
unimplemented_instance_method!
|
55
|
+
end
|
56
|
+
|
57
|
+
# rubocop:disable Lint/UnusedMethodArgument
|
58
|
+
def render_to_lines(object, type:, indentation_level:)
|
59
|
+
# rubocop:enable Lint/UnusedMethodArgument
|
60
|
+
unimplemented_instance_method!
|
45
61
|
end
|
46
62
|
|
47
63
|
def pretty_print(pp)
|
@@ -61,7 +77,7 @@ module SuperDiff
|
|
61
77
|
|
62
78
|
private
|
63
79
|
|
64
|
-
attr_reader :tree, :immediate_value, :block
|
80
|
+
attr_reader :tree, :immediate_value, :block, :options
|
65
81
|
|
66
82
|
def pretty_print_variables
|
67
83
|
if block
|
@@ -71,13 +87,32 @@ module SuperDiff
|
|
71
87
|
end
|
72
88
|
end
|
73
89
|
|
74
|
-
def
|
90
|
+
def evaluate_block(object)
|
91
|
+
tree.evaluate_block(object, &block)
|
92
|
+
end
|
93
|
+
|
94
|
+
def render_to_string_in_subtree(object)
|
75
95
|
subtree = InspectionTree.new
|
76
96
|
subtree.evaluate_block(object, &block)
|
77
|
-
subtree.
|
97
|
+
subtree.render_to_string(object)
|
98
|
+
end
|
99
|
+
|
100
|
+
def render_to_lines_in_subtree(
|
101
|
+
object,
|
102
|
+
type:,
|
103
|
+
indentation_level:,
|
104
|
+
disallowed_node_names: [],
|
105
|
+
**rest
|
106
|
+
)
|
107
|
+
subtree = InspectionTree.new(
|
108
|
+
disallowed_node_names: disallowed_node_names,
|
109
|
+
)
|
110
|
+
subtree.evaluate_block(object, &block)
|
111
|
+
subtree.render_to_lines(
|
78
112
|
object,
|
79
|
-
|
80
|
-
|
113
|
+
type: type,
|
114
|
+
indentation_level: indentation_level,
|
115
|
+
**rest,
|
81
116
|
)
|
82
117
|
end
|
83
118
|
end
|
@@ -2,19 +2,59 @@ module SuperDiff
|
|
2
2
|
module ObjectInspection
|
3
3
|
module Nodes
|
4
4
|
class Inspection < Base
|
5
|
-
def
|
5
|
+
def self.node_name
|
6
|
+
:inspection
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.method_name
|
10
|
+
:add_inspection_of
|
11
|
+
end
|
12
|
+
|
13
|
+
def render_to_string(object)
|
14
|
+
value =
|
15
|
+
if block
|
16
|
+
evaluate_block(object)
|
17
|
+
else
|
18
|
+
immediate_value
|
19
|
+
end
|
20
|
+
|
21
|
+
SuperDiff::RecursionGuard.
|
22
|
+
guarding_recursion_of(value) do |already_seen|
|
23
|
+
if already_seen
|
24
|
+
SuperDiff::RecursionGuard::PLACEHOLDER
|
25
|
+
else
|
26
|
+
SuperDiff.inspect_object(value, as_lines: false)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def render_to_lines(object, type:, indentation_level:)
|
6
32
|
value =
|
7
33
|
if block
|
8
|
-
|
34
|
+
evaluate_block(object)
|
9
35
|
else
|
10
36
|
immediate_value
|
11
37
|
end
|
12
38
|
|
13
|
-
SuperDiff::
|
14
|
-
value
|
15
|
-
|
16
|
-
|
17
|
-
|
39
|
+
SuperDiff::RecursionGuard.
|
40
|
+
guarding_recursion_of(value) do |already_seen|
|
41
|
+
if already_seen
|
42
|
+
[
|
43
|
+
SuperDiff::Line.new(
|
44
|
+
type: type,
|
45
|
+
indentation_level: indentation_level,
|
46
|
+
value: SuperDiff::RecursionGuard::PLACEHOLDER,
|
47
|
+
),
|
48
|
+
]
|
49
|
+
else
|
50
|
+
SuperDiff.inspect_object(
|
51
|
+
value,
|
52
|
+
as_lines: true,
|
53
|
+
type: type,
|
54
|
+
indentation_level: indentation_level,
|
55
|
+
)
|
56
|
+
end
|
57
|
+
end
|
18
58
|
end
|
19
59
|
end
|
20
60
|
end
|
@@ -2,12 +2,23 @@ module SuperDiff
|
|
2
2
|
module ObjectInspection
|
3
3
|
module Nodes
|
4
4
|
class Nesting < Base
|
5
|
-
def
|
6
|
-
|
5
|
+
def self.node_name
|
6
|
+
:nesting
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.method_name
|
10
|
+
:nested
|
11
|
+
end
|
12
|
+
|
13
|
+
def render_to_string(object)
|
14
|
+
render_to_string_in_subtree(object)
|
15
|
+
end
|
16
|
+
|
17
|
+
def render_to_lines(object, type:, indentation_level:)
|
18
|
+
render_to_lines_in_subtree(
|
7
19
|
object,
|
8
|
-
|
9
|
-
|
10
|
-
&block
|
20
|
+
type: type,
|
21
|
+
indentation_level: indentation_level + 1,
|
11
22
|
)
|
12
23
|
end
|
13
24
|
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
module SuperDiff
|
2
|
+
module ObjectInspection
|
3
|
+
module Nodes
|
4
|
+
class OnlyWhen < Base
|
5
|
+
def self.node_name
|
6
|
+
:only_when
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.method_name
|
10
|
+
:only_when
|
11
|
+
end
|
12
|
+
|
13
|
+
def initialize(tree, test, **options, &block)
|
14
|
+
@tree = tree
|
15
|
+
@test = test
|
16
|
+
@block = block
|
17
|
+
@options = options
|
18
|
+
end
|
19
|
+
|
20
|
+
def render_to_string(object)
|
21
|
+
if test_passes?
|
22
|
+
render_to_string_in_subtree(object)
|
23
|
+
else
|
24
|
+
""
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def render_to_lines(object, type:, indentation_level:)
|
29
|
+
if test_passes?
|
30
|
+
render_to_lines_in_subtree(
|
31
|
+
object,
|
32
|
+
type: type,
|
33
|
+
indentation_level: indentation_level,
|
34
|
+
)
|
35
|
+
else
|
36
|
+
[]
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
private
|
41
|
+
|
42
|
+
attr_reader :test
|
43
|
+
|
44
|
+
def test_passes?
|
45
|
+
if test.arity == 1
|
46
|
+
test.call(object)
|
47
|
+
else
|
48
|
+
test.call
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -2,13 +2,27 @@ module SuperDiff
|
|
2
2
|
module ObjectInspection
|
3
3
|
module Nodes
|
4
4
|
class Text < Base
|
5
|
-
def
|
5
|
+
def self.node_name
|
6
|
+
:text
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.method_name
|
10
|
+
:add_text
|
11
|
+
end
|
12
|
+
|
13
|
+
def render_to_string(object)
|
6
14
|
if block
|
7
|
-
|
15
|
+
evaluate_block(object).to_s
|
8
16
|
else
|
9
17
|
immediate_value.to_s
|
10
18
|
end
|
11
19
|
end
|
20
|
+
|
21
|
+
def render_to_lines(object, **)
|
22
|
+
# NOTE: This is a bit of a hack since it returns a string instead of a
|
23
|
+
# Line, but it is handled in InspectionTree (see UpdateTieredLines)
|
24
|
+
render_to_string(object)
|
25
|
+
end
|
12
26
|
end
|
13
27
|
end
|
14
28
|
end
|
@@ -2,16 +2,31 @@ module SuperDiff
|
|
2
2
|
module ObjectInspection
|
3
3
|
module Nodes
|
4
4
|
class WhenEmpty < Base
|
5
|
-
def
|
5
|
+
def self.node_name
|
6
|
+
:when_empty
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.method_name
|
10
|
+
:when_empty
|
11
|
+
end
|
12
|
+
|
13
|
+
def render_to_string(object)
|
6
14
|
if empty?(object)
|
7
|
-
|
15
|
+
render_to_string_in_subtree(object)
|
16
|
+
else
|
17
|
+
""
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def render_to_lines(object, type:, indentation_level:)
|
22
|
+
if empty?(object)
|
23
|
+
render_to_lines_in_subtree(
|
8
24
|
object,
|
9
|
-
|
10
|
-
|
11
|
-
&block
|
25
|
+
type: type,
|
26
|
+
indentation_level: indentation_level,
|
12
27
|
)
|
13
28
|
else
|
14
|
-
|
29
|
+
[]
|
15
30
|
end
|
16
31
|
end
|
17
32
|
|
@@ -2,15 +2,30 @@ module SuperDiff
|
|
2
2
|
module ObjectInspection
|
3
3
|
module Nodes
|
4
4
|
class WhenNonEmpty < Base
|
5
|
-
def
|
5
|
+
def self.node_name
|
6
|
+
:when_non_empty
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.method_name
|
10
|
+
:when_non_empty
|
11
|
+
end
|
12
|
+
|
13
|
+
def render_to_string(object)
|
6
14
|
if empty?(object)
|
7
15
|
""
|
8
16
|
else
|
9
|
-
|
17
|
+
render_to_string_in_subtree(object)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def render_to_lines(object, type:, indentation_level:)
|
22
|
+
if empty?(object)
|
23
|
+
[]
|
24
|
+
else
|
25
|
+
render_to_lines_in_subtree(
|
10
26
|
object,
|
11
|
-
|
12
|
-
|
13
|
-
&block
|
27
|
+
type: type,
|
28
|
+
indentation_level: indentation_level,
|
14
29
|
)
|
15
30
|
end
|
16
31
|
end
|