simplecov 0.15.1 → 0.18.0.beta3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +98 -1
- data/CODE_OF_CONDUCT.md +76 -0
- data/CONTRIBUTING.md +12 -9
- data/ISSUE_TEMPLATE.md +23 -0
- data/{MIT-LICENSE → LICENSE} +0 -0
- data/README.md +300 -115
- data/doc/alternate-formatters.md +20 -0
- data/lib/simplecov.rb +298 -45
- data/lib/simplecov/combine.rb +30 -0
- data/lib/simplecov/combine/branches_combiner.rb +32 -0
- data/lib/simplecov/combine/files_combiner.rb +24 -0
- data/lib/simplecov/combine/lines_combiner.rb +43 -0
- data/lib/simplecov/combine/results_combiner.rb +60 -0
- data/lib/simplecov/command_guesser.rb +8 -3
- data/lib/simplecov/configuration.rb +95 -8
- data/lib/simplecov/defaults.rb +13 -80
- data/lib/simplecov/exit_codes.rb +2 -0
- data/lib/simplecov/file_list.rb +32 -3
- data/lib/simplecov/filter.rb +5 -2
- data/lib/simplecov/formatter.rb +2 -0
- data/lib/simplecov/formatter/multi_formatter.rb +4 -2
- data/lib/simplecov/formatter/simple_formatter.rb +6 -4
- data/lib/simplecov/last_run.rb +5 -1
- data/lib/simplecov/lines_classifier.rb +21 -5
- data/lib/simplecov/load_global_config.rb +2 -0
- data/lib/simplecov/no_defaults.rb +2 -0
- data/lib/simplecov/profiles.rb +11 -7
- data/lib/simplecov/profiles/bundler_filter.rb +5 -0
- data/lib/simplecov/profiles/hidden_filter.rb +5 -0
- data/lib/simplecov/profiles/rails.rb +18 -0
- data/lib/simplecov/profiles/root_filter.rb +10 -0
- data/lib/simplecov/profiles/test_frameworks.rb +8 -0
- data/lib/simplecov/result.rb +41 -6
- data/lib/simplecov/result_adapter.rb +30 -0
- data/lib/simplecov/result_merger.rb +20 -11
- data/lib/simplecov/simulate_coverage.rb +29 -0
- data/lib/simplecov/source_file.rb +190 -109
- data/lib/simplecov/source_file/branch.rb +84 -0
- data/lib/simplecov/source_file/line.rb +72 -0
- data/lib/simplecov/useless_results_remover.rb +16 -0
- data/lib/simplecov/version.rb +3 -1
- metadata +44 -162
- data/.gitignore +0 -31
- data/.rspec +0 -3
- data/.rubocop.yml +0 -88
- data/.travis.yml +0 -29
- data/.yardopts +0 -1
- data/Gemfile +0 -38
- data/Rakefile +0 -39
- data/cucumber.yml +0 -13
- data/features/config_autoload.feature +0 -46
- data/features/config_command_name.feature +0 -45
- data/features/config_coverage_dir.feature +0 -33
- data/features/config_deactivate_merging.feature +0 -42
- data/features/config_formatters.feature +0 -77
- data/features/config_merge_timeout.feature +0 -39
- data/features/config_nocov_token.feature +0 -79
- data/features/config_profiles.feature +0 -44
- data/features/config_project_name.feature +0 -27
- data/features/config_styles.feature +0 -121
- data/features/config_tracked_files.feature +0 -29
- data/features/config_tracked_files_relevant_lines.feature +0 -31
- data/features/cucumber_basic.feature +0 -29
- data/features/maximum_coverage_drop.feature +0 -89
- data/features/merging_test_unit_and_rspec.feature +0 -44
- data/features/minimum_coverage.feature +0 -59
- data/features/refuse_coverage_drop.feature +0 -95
- data/features/rspec_basic.feature +0 -32
- data/features/rspec_fails_on_initialization.feature +0 -14
- data/features/rspec_groups_and_filters_basic.feature +0 -29
- data/features/rspec_groups_and_filters_complex.feature +0 -37
- data/features/rspec_groups_using_filter_class.feature +0 -41
- data/features/rspec_without_simplecov.feature +0 -20
- data/features/skipping_code_blocks_manually.feature +0 -70
- data/features/step_definitions/html_steps.rb +0 -44
- data/features/step_definitions/simplecov_steps.rb +0 -68
- data/features/step_definitions/transformers.rb +0 -13
- data/features/step_definitions/web_steps.rb +0 -64
- data/features/support/aruba_freedom_patch.rb +0 -53
- data/features/support/env.rb +0 -50
- data/features/test_unit_basic.feature +0 -34
- data/features/test_unit_groups_and_filters_basic.feature +0 -29
- data/features/test_unit_groups_and_filters_complex.feature +0 -35
- data/features/test_unit_groups_using_filter_class.feature +0 -40
- data/features/test_unit_without_simplecov.feature +0 -20
- data/features/unicode_compatiblity.feature +0 -67
- data/lib/simplecov/jruby_fix.rb +0 -42
- data/lib/simplecov/railtie.rb +0 -7
- data/lib/simplecov/railties/tasks.rake +0 -11
- data/lib/simplecov/raw_coverage.rb +0 -39
- data/simplecov.gemspec +0 -27
- data/spec/1_8_fallbacks_spec.rb +0 -31
- data/spec/command_guesser_spec.rb +0 -48
- data/spec/config_loader_spec.rb +0 -14
- data/spec/configuration_spec.rb +0 -35
- data/spec/defaults_spec.rb +0 -41
- data/spec/deleted_source_spec.rb +0 -12
- data/spec/faked_project/Gemfile +0 -6
- data/spec/faked_project/Rakefile +0 -8
- data/spec/faked_project/cucumber.yml +0 -13
- data/spec/faked_project/features/step_definitions/my_steps.rb +0 -22
- data/spec/faked_project/features/support/env.rb +0 -12
- data/spec/faked_project/features/test_stuff.feature +0 -6
- data/spec/faked_project/lib/faked_project.rb +0 -11
- data/spec/faked_project/lib/faked_project/framework_specific.rb +0 -18
- data/spec/faked_project/lib/faked_project/meta_magic.rb +0 -24
- data/spec/faked_project/lib/faked_project/some_class.rb +0 -28
- data/spec/faked_project/lib/faked_project/untested_class.rb +0 -11
- data/spec/faked_project/spec/faked_spec.rb +0 -11
- data/spec/faked_project/spec/forking_spec.rb +0 -8
- data/spec/faked_project/spec/meta_magic_spec.rb +0 -15
- data/spec/faked_project/spec/some_class_spec.rb +0 -13
- data/spec/faked_project/spec/spec_helper.rb +0 -11
- data/spec/faked_project/test/faked_test.rb +0 -11
- data/spec/faked_project/test/meta_magic_test.rb +0 -13
- data/spec/faked_project/test/some_class_test.rb +0 -15
- data/spec/faked_project/test/test_helper.rb +0 -12
- data/spec/file_list_spec.rb +0 -50
- data/spec/filters_spec.rb +0 -202
- data/spec/fixtures/app/controllers/sample_controller.rb +0 -10
- data/spec/fixtures/app/models/user.rb +0 -10
- data/spec/fixtures/deleted_source_sample.rb +0 -15
- data/spec/fixtures/frameworks/rspec_bad.rb +0 -9
- data/spec/fixtures/frameworks/rspec_good.rb +0 -9
- data/spec/fixtures/frameworks/testunit_bad.rb +0 -9
- data/spec/fixtures/frameworks/testunit_good.rb +0 -9
- data/spec/fixtures/iso-8859.rb +0 -3
- data/spec/fixtures/never.rb +0 -2
- data/spec/fixtures/resultset1.rb +0 -4
- data/spec/fixtures/resultset2.rb +0 -4
- data/spec/fixtures/sample.rb +0 -16
- data/spec/fixtures/skipped.rb +0 -4
- data/spec/fixtures/skipped_and_executed.rb +0 -8
- data/spec/fixtures/utf-8.rb +0 -3
- data/spec/helper.rb +0 -26
- data/spec/last_run_spec.rb +0 -48
- data/spec/lines_classifier_spec.rb +0 -103
- data/spec/multi_formatter_spec.rb +0 -20
- data/spec/raw_coverage_spec.rb +0 -92
- data/spec/result_merger_spec.rb +0 -171
- data/spec/result_spec.rb +0 -209
- data/spec/return_codes_spec.rb +0 -34
- data/spec/simplecov_spec.rb +0 -109
- data/spec/source_file_line_spec.rb +0 -155
- data/spec/source_file_spec.rb +0 -145
- data/spec/support/fail_rspec_on_ruby_warning.rb +0 -75
@@ -1,11 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require "json"
|
2
4
|
|
3
|
-
#
|
4
|
-
# Singleton that is responsible for caching, loading and merging
|
5
|
-
# SimpleCov::Results into a single result for coverage analysis based
|
6
|
-
# upon multiple test suites.
|
7
|
-
#
|
8
5
|
module SimpleCov
|
6
|
+
#
|
7
|
+
# Singleton that is responsible for caching, loading and merging
|
8
|
+
# SimpleCov::Results into a single result for coverage analysis based
|
9
|
+
# upon multiple test suites.
|
10
|
+
#
|
9
11
|
module ResultMerger
|
10
12
|
class << self
|
11
13
|
# The path to the .resultset.json cache file
|
@@ -25,7 +27,7 @@ module SimpleCov
|
|
25
27
|
if data
|
26
28
|
begin
|
27
29
|
JSON.parse(data) || {}
|
28
|
-
rescue
|
30
|
+
rescue StandardError
|
29
31
|
{}
|
30
32
|
end
|
31
33
|
else
|
@@ -38,8 +40,10 @@ module SimpleCov
|
|
38
40
|
def stored_data
|
39
41
|
synchronize_resultset do
|
40
42
|
return unless File.exist?(resultset_path)
|
43
|
+
|
41
44
|
data = File.read(resultset_path)
|
42
45
|
return if data.nil? || data.length < 2
|
46
|
+
|
43
47
|
data
|
44
48
|
end
|
45
49
|
end
|
@@ -53,19 +57,24 @@ module SimpleCov
|
|
53
57
|
resultset.each do |command_name, data|
|
54
58
|
result = SimpleCov::Result.from_hash(command_name => data)
|
55
59
|
# Only add result if the timeout is above the configured threshold
|
56
|
-
if (Time.now - result.created_at) < SimpleCov.merge_timeout
|
57
|
-
results << result
|
58
|
-
end
|
60
|
+
results << result if (Time.now - result.created_at) < SimpleCov.merge_timeout
|
59
61
|
end
|
60
62
|
results
|
61
63
|
end
|
62
64
|
|
65
|
+
def merge_and_store(*results)
|
66
|
+
result = merge_results(*results)
|
67
|
+
store_result(result) if result
|
68
|
+
result
|
69
|
+
end
|
70
|
+
|
63
71
|
# Merge two or more SimpleCov::Results into a new one with merged
|
64
72
|
# coverage data and the command_name for the result consisting of a join
|
65
73
|
# on all source result's names
|
66
74
|
def merge_results(*results)
|
67
|
-
|
68
|
-
|
75
|
+
parsed_results = JSON.parse(JSON.dump(results.map(&:original_result)))
|
76
|
+
combined_result = SimpleCov::Combine::ResultsCombiner.combine(*parsed_results)
|
77
|
+
result = SimpleCov::Result.new(combined_result)
|
69
78
|
# Specify the command name
|
70
79
|
result.command_name = results.map(&:command_name).sort.join(", ")
|
71
80
|
result
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module SimpleCov
|
4
|
+
#
|
5
|
+
# Responsible for producing file coverage metrics.
|
6
|
+
#
|
7
|
+
module SimulateCoverage
|
8
|
+
module_function
|
9
|
+
|
10
|
+
#
|
11
|
+
# Simulate normal file coverage report on
|
12
|
+
# ruby 2.5 and return similar hash with lines and branches keys
|
13
|
+
#
|
14
|
+
# Happens when a file wasn't required but still tracked.
|
15
|
+
#
|
16
|
+
# @return [Hash]
|
17
|
+
#
|
18
|
+
def call(absolute_path)
|
19
|
+
lines = File.foreach(absolute_path)
|
20
|
+
|
21
|
+
{
|
22
|
+
"lines" => LinesClassifier.new.classify(lines),
|
23
|
+
# we don't want to parse branches ourselves...
|
24
|
+
# requiring files can have side effects and we don't want to trigger that
|
25
|
+
"branches" => {}
|
26
|
+
}
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -1,75 +1,11 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module SimpleCov
|
2
4
|
#
|
3
5
|
# Representation of a source file including it's coverage data, source code,
|
4
6
|
# source lines and featuring helpers to interpret that data.
|
5
7
|
#
|
6
8
|
class SourceFile
|
7
|
-
# Representation of a single line in a source file including
|
8
|
-
# this specific line's source code, line_number and code coverage,
|
9
|
-
# with the coverage being either nil (coverage not applicable, e.g. comment
|
10
|
-
# line), 0 (line not covered) or >1 (the amount of times the line was
|
11
|
-
# executed)
|
12
|
-
class Line
|
13
|
-
# The source code for this line. Aliased as :source
|
14
|
-
attr_reader :src
|
15
|
-
# The line number in the source file. Aliased as :line, :number
|
16
|
-
attr_reader :line_number
|
17
|
-
# The coverage data for this line: either nil (never), 0 (missed) or >=1 (times covered)
|
18
|
-
attr_reader :coverage
|
19
|
-
# Whether this line was skipped
|
20
|
-
attr_reader :skipped
|
21
|
-
|
22
|
-
# Lets grab some fancy aliases, shall we?
|
23
|
-
alias source src
|
24
|
-
alias line line_number
|
25
|
-
alias number line_number
|
26
|
-
|
27
|
-
def initialize(src, line_number, coverage)
|
28
|
-
raise ArgumentError, "Only String accepted for source" unless src.is_a?(String)
|
29
|
-
raise ArgumentError, "Only Integer accepted for line_number" unless line_number.is_a?(Integer)
|
30
|
-
raise ArgumentError, "Only Integer and nil accepted for coverage" unless coverage.is_a?(Integer) || coverage.nil?
|
31
|
-
@src = src
|
32
|
-
@line_number = line_number
|
33
|
-
@coverage = coverage
|
34
|
-
@skipped = false
|
35
|
-
end
|
36
|
-
|
37
|
-
# Returns true if this is a line that should have been covered, but was not
|
38
|
-
def missed?
|
39
|
-
!never? && !skipped? && coverage.zero?
|
40
|
-
end
|
41
|
-
|
42
|
-
# Returns true if this is a line that has been covered
|
43
|
-
def covered?
|
44
|
-
!never? && !skipped? && coverage > 0
|
45
|
-
end
|
46
|
-
|
47
|
-
# Returns true if this line is not relevant for coverage
|
48
|
-
def never?
|
49
|
-
!skipped? && coverage.nil?
|
50
|
-
end
|
51
|
-
|
52
|
-
# Flags this line as skipped
|
53
|
-
def skipped!
|
54
|
-
@skipped = true
|
55
|
-
end
|
56
|
-
|
57
|
-
# Returns true if this line was skipped, false otherwise. Lines are skipped if they are wrapped with
|
58
|
-
# # :nocov: comment lines.
|
59
|
-
def skipped?
|
60
|
-
!!skipped
|
61
|
-
end
|
62
|
-
|
63
|
-
# The status of this line - either covered, missed, skipped or never. Useful i.e. for direct use
|
64
|
-
# as a css class in report generation
|
65
|
-
def status
|
66
|
-
return "skipped" if skipped?
|
67
|
-
return "never" if never?
|
68
|
-
return "missed" if missed?
|
69
|
-
return "covered" if covered?
|
70
|
-
end
|
71
|
-
end
|
72
|
-
|
73
9
|
# The full path to this source file (e.g. /User/colszowka/projects/simplecov/lib/simplecov/source_file.rb)
|
74
10
|
attr_reader :filename
|
75
11
|
# The array of coverage data received from the Coverage.result
|
@@ -82,7 +18,7 @@ module SimpleCov
|
|
82
18
|
|
83
19
|
# The path to this source file relative to the projects directory
|
84
20
|
def project_filename
|
85
|
-
@filename.sub(
|
21
|
+
@filename.sub(Regexp.new("^#{Regexp.escape(SimpleCov.root)}"), "")
|
86
22
|
end
|
87
23
|
|
88
24
|
# The source code for this file. Aliased as :source
|
@@ -100,19 +36,68 @@ module SimpleCov
|
|
100
36
|
end
|
101
37
|
alias source_lines lines
|
102
38
|
|
103
|
-
|
104
|
-
|
39
|
+
# Returns all covered lines as SimpleCov::SourceFile::Line
|
40
|
+
def covered_lines
|
41
|
+
@covered_lines ||= lines.select(&:covered?)
|
42
|
+
end
|
105
43
|
|
44
|
+
# Returns all lines that should have been, but were not covered
|
45
|
+
# as instances of SimpleCov::SourceFile::Line
|
46
|
+
def missed_lines
|
47
|
+
@missed_lines ||= lines.select(&:missed?)
|
48
|
+
end
|
49
|
+
|
50
|
+
# Returns all lines that are not relevant for coverage as
|
51
|
+
# SimpleCov::SourceFile::Line instances
|
52
|
+
def never_lines
|
53
|
+
@never_lines ||= lines.select(&:never?)
|
54
|
+
end
|
55
|
+
|
56
|
+
# Returns all lines that were skipped as SimpleCov::SourceFile::Line instances
|
57
|
+
def skipped_lines
|
58
|
+
@skipped_lines ||= lines.select(&:skipped?)
|
59
|
+
end
|
60
|
+
|
61
|
+
# Returns the number of relevant lines (covered + missed)
|
62
|
+
def lines_of_code
|
63
|
+
covered_lines.size + missed_lines.size
|
64
|
+
end
|
65
|
+
|
66
|
+
def build_lines
|
67
|
+
coverage_exceeding_source_warn if coverage["lines"].size > src.size
|
106
68
|
lines = src.map.with_index(1) do |src, i|
|
107
|
-
SimpleCov::SourceFile::Line.new(src, i, coverage[i - 1])
|
69
|
+
SimpleCov::SourceFile::Line.new(src, i, coverage["lines"][i - 1])
|
108
70
|
end
|
109
|
-
|
110
71
|
process_skipped_lines(lines)
|
111
72
|
end
|
112
73
|
|
74
|
+
# no_cov_chunks is zero indexed to work directly with the array holding the lines
|
75
|
+
def no_cov_chunks
|
76
|
+
@no_cov_chunks ||= build_no_cov_chunks
|
77
|
+
end
|
78
|
+
|
79
|
+
def build_no_cov_chunks
|
80
|
+
no_cov_lines = src.map.with_index(1).select { |line, _index| LinesClassifier.no_cov_line?(line) }
|
81
|
+
|
82
|
+
warn "uneven number of nocov comments detected" if no_cov_lines.size.odd?
|
83
|
+
|
84
|
+
no_cov_lines.each_slice(2).map do |(_line_start, index_start), (_line_end, index_end)|
|
85
|
+
index_start..index_end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
def process_skipped_lines(lines)
|
90
|
+
# the array the lines are kept in is 0-based whereas the line numbers in the nocov
|
91
|
+
# chunks are 1-based and are expected to be like this in other parts (and it's also
|
92
|
+
# arguably more understandable)
|
93
|
+
no_cov_chunks.each { |chunk| lines[(chunk.begin - 1)..(chunk.end - 1)].each(&:skipped!) }
|
94
|
+
|
95
|
+
lines
|
96
|
+
end
|
97
|
+
|
113
98
|
# Warning to identify condition from Issue #56
|
114
99
|
def coverage_exceeding_source_warn
|
115
|
-
|
100
|
+
warn "Warning: coverage data provided by Coverage [#{coverage['lines'].size}] exceeds number of lines in #{filename} [#{src.size}]"
|
116
101
|
end
|
117
102
|
|
118
103
|
# Access SimpleCov::SourceFile::Line source lines by line number
|
@@ -120,7 +105,7 @@ module SimpleCov
|
|
120
105
|
lines[number - 1]
|
121
106
|
end
|
122
107
|
|
123
|
-
# The coverage for this file in percent. 0 if the file has no
|
108
|
+
# The coverage for this file in percent. 0 if the file has no coverage lines
|
124
109
|
def covered_percent
|
125
110
|
return 100.0 if no_lines?
|
126
111
|
|
@@ -132,7 +117,7 @@ module SimpleCov
|
|
132
117
|
def covered_strength
|
133
118
|
return 0.0 if relevant_lines.zero?
|
134
119
|
|
135
|
-
|
120
|
+
(lines_strength / relevant_lines.to_f).round(1)
|
136
121
|
end
|
137
122
|
|
138
123
|
def no_lines?
|
@@ -147,55 +132,151 @@ module SimpleCov
|
|
147
132
|
lines.size - never_lines.size - skipped_lines.size
|
148
133
|
end
|
149
134
|
|
150
|
-
#
|
151
|
-
|
152
|
-
|
135
|
+
#
|
136
|
+
# Return all the branches inside current source file
|
137
|
+
def branches
|
138
|
+
@branches ||= build_branches
|
153
139
|
end
|
154
140
|
|
155
|
-
|
156
|
-
|
157
|
-
def missed_lines
|
158
|
-
@missed_lines ||= lines.select(&:missed?)
|
141
|
+
def no_branches?
|
142
|
+
total_branches.empty?
|
159
143
|
end
|
160
144
|
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
145
|
+
def branches_coverage_percent
|
146
|
+
return 100.0 if no_branches?
|
147
|
+
return 0.0 if covered_branches.empty?
|
148
|
+
|
149
|
+
Float(covered_branches.size * 100.0 / total_branches.size.to_f)
|
165
150
|
end
|
166
151
|
|
167
|
-
#
|
168
|
-
|
169
|
-
|
152
|
+
#
|
153
|
+
# Return the relevant branches to source file
|
154
|
+
def total_branches
|
155
|
+
covered_branches + missed_branches
|
170
156
|
end
|
171
157
|
|
172
|
-
#
|
173
|
-
|
174
|
-
|
158
|
+
#
|
159
|
+
# Return hash with key of line number and branch coverage count as value
|
160
|
+
def branches_report
|
161
|
+
@branches_report ||= build_branches_report
|
175
162
|
end
|
176
163
|
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
164
|
+
## Related to source file branches statistics
|
165
|
+
|
166
|
+
#
|
167
|
+
# Call recursive method that transform our static hash to array of objects
|
168
|
+
# @return [Array]
|
169
|
+
#
|
170
|
+
def build_branches
|
171
|
+
coverage_branch_data = coverage.fetch("branches", {})
|
172
|
+
branches = coverage_branch_data.flat_map do |condition, coverage_branches|
|
173
|
+
build_branches_from(condition, coverage_branches)
|
174
|
+
end
|
175
|
+
|
176
|
+
process_skipped_branches(branches)
|
177
|
+
end
|
178
|
+
|
179
|
+
def process_skipped_branches(branches)
|
180
|
+
return branches if no_cov_chunks.empty?
|
181
|
+
|
182
|
+
branches.each do |branch|
|
183
|
+
branch.skipped! if no_cov_chunks.any? { |no_cov_chunk| branch.overlaps_with?(no_cov_chunk) }
|
184
|
+
end
|
185
|
+
|
186
|
+
branches
|
187
|
+
end
|
188
|
+
|
189
|
+
# Since we are dumping to and loading from JSON, and we have arrays as keys those
|
190
|
+
# don't make their way back to us intact e.g. just as a string
|
191
|
+
#
|
192
|
+
# We should probably do something different here, but as it stands these are
|
193
|
+
# our data structures that we write so eval isn't _too_ bad.
|
194
|
+
#
|
195
|
+
# See #801
|
196
|
+
#
|
197
|
+
def restore_ruby_data_structure(structure)
|
198
|
+
# Tests use the real data structures (except for integration tests) so no need to
|
199
|
+
# put them through here.
|
200
|
+
return structure if structure.is_a?(Array)
|
201
|
+
|
202
|
+
# rubocop:disable Security/Eval
|
203
|
+
eval structure
|
204
|
+
# rubocop:enable Security/Eval
|
205
|
+
end
|
206
|
+
|
207
|
+
def build_branches_from(condition, branches)
|
208
|
+
# the format handed in from the coverage data is like this:
|
209
|
+
#
|
210
|
+
# [:then, 4, 6, 6, 6, 10]
|
211
|
+
#
|
212
|
+
# which is [type, id, start_line, start_col, end_line, end_col]
|
213
|
+
_condition_type, _condition_id, condition_start_line, * = restore_ruby_data_structure(condition)
|
214
|
+
|
215
|
+
branches.map do |branch_data, hit_count|
|
216
|
+
branch_data = restore_ruby_data_structure(branch_data)
|
217
|
+
build_branch(branch_data, hit_count, condition_start_line)
|
189
218
|
end
|
190
219
|
end
|
191
220
|
|
192
|
-
|
221
|
+
def build_branch(branch_data, hit_count, condition_start_line)
|
222
|
+
type, _id, start_line, _start_col, end_line, _end_col = branch_data
|
223
|
+
|
224
|
+
SourceFile::Branch.new(
|
225
|
+
start_line: start_line,
|
226
|
+
end_line: end_line,
|
227
|
+
coverage: hit_count,
|
228
|
+
inline: start_line == condition_start_line,
|
229
|
+
type: type
|
230
|
+
)
|
231
|
+
end
|
232
|
+
|
233
|
+
#
|
234
|
+
# Select the covered branches
|
235
|
+
# Here we user tree schema because some conditions like case may have additional
|
236
|
+
# else that is not in declared inside the code but given by default by coverage report
|
237
|
+
#
|
238
|
+
# @return [Array]
|
239
|
+
#
|
240
|
+
def covered_branches
|
241
|
+
@covered_branches ||= branches.select(&:covered?)
|
242
|
+
end
|
243
|
+
|
244
|
+
#
|
245
|
+
# Select the missed branches with coverage equal to zero
|
246
|
+
#
|
247
|
+
# @return [Array]
|
248
|
+
#
|
249
|
+
def missed_branches
|
250
|
+
@missed_branches ||= branches.select(&:missed?)
|
251
|
+
end
|
252
|
+
|
253
|
+
def branches_for_line(line_number)
|
254
|
+
branches_report.fetch(line_number, [])
|
255
|
+
end
|
193
256
|
|
194
|
-
#
|
195
|
-
#
|
196
|
-
|
197
|
-
|
198
|
-
|
257
|
+
#
|
258
|
+
# Check if any branches missing on given line number
|
259
|
+
#
|
260
|
+
# @param [Integer] line_number
|
261
|
+
#
|
262
|
+
# @return [Boolean]
|
263
|
+
#
|
264
|
+
def line_with_missed_branch?(line_number)
|
265
|
+
branches_for_line(line_number).select { |_type, count| count.zero? }.any?
|
266
|
+
end
|
267
|
+
|
268
|
+
#
|
269
|
+
# Build full branches report
|
270
|
+
# Root branches represent the wrapper of all condition state that
|
271
|
+
# have inside the branches
|
272
|
+
#
|
273
|
+
# @return [Hash]
|
274
|
+
#
|
275
|
+
def build_branches_report
|
276
|
+
branches.reject(&:skipped?).each_with_object({}) do |branch, coverage_statistics|
|
277
|
+
coverage_statistics[branch.report_line] ||= []
|
278
|
+
coverage_statistics[branch.report_line] << branch.report
|
279
|
+
end
|
199
280
|
end
|
200
281
|
end
|
201
282
|
end
|