simplecov 0.15.1 → 0.18.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +74 -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 +205 -104
- data/doc/alternate-formatters.md +20 -0
- data/lib/simplecov.rb +246 -52
- data/lib/simplecov/combine.rb +30 -0
- data/lib/simplecov/combine/branches_combiner.rb +32 -0
- data/lib/simplecov/combine/files_combiner.rb +25 -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 +79 -8
- data/lib/simplecov/defaults.rb +12 -81
- 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 +4 -0
- 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 +23 -4
- data/lib/simplecov/result_adapter.rb +30 -0
- data/lib/simplecov/result_merger.rb +14 -11
- data/lib/simplecov/simulate_coverage.rb +29 -0
- data/lib/simplecov/source_file.rb +222 -110
- data/lib/simplecov/source_file/branch.rb +106 -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
@@ -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,88 +1,24 @@
|
|
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
|
76
12
|
attr_reader :coverage
|
77
13
|
|
78
14
|
def initialize(filename, coverage)
|
79
|
-
@filename = filename
|
15
|
+
@filename = filename.to_s
|
80
16
|
@coverage = coverage
|
81
17
|
end
|
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,182 @@ 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
|
-
line.skipped!
|
188
|
-
end
|
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)
|
189
174
|
end
|
175
|
+
|
176
|
+
process_skipped_branches(branches)
|
190
177
|
end
|
191
178
|
|
192
|
-
|
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 or a symbol (currently keys are symbolized).
|
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
|
+
# as of right now the keys are still symbolized
|
203
|
+
# rubocop:disable Security/Eval
|
204
|
+
eval structure.to_s
|
205
|
+
# rubocop:enable Security/Eval
|
206
|
+
end
|
193
207
|
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
208
|
+
def build_branches_from(condition, branches)
|
209
|
+
# the format handed in from the coverage data is like this:
|
210
|
+
#
|
211
|
+
# [:then, 4, 6, 6, 6, 10]
|
212
|
+
#
|
213
|
+
# which is [type, id, start_line, start_col, end_line, end_col]
|
214
|
+
condition_type, condition_id, condition_start_line, * = restore_ruby_data_structure(condition)
|
215
|
+
|
216
|
+
branches
|
217
|
+
.map { |branch_data, hit_count| [restore_ruby_data_structure(branch_data), hit_count] }
|
218
|
+
.reject { |branch_data, _hit_count| ignore_branch?(branch_data, condition_type, condition_start_line) }
|
219
|
+
.map { |branch_data, hit_count| build_branch(branch_data, hit_count, condition_start_line, condition_id) }
|
220
|
+
end
|
221
|
+
|
222
|
+
def build_branch(branch_data, hit_count, condition_start_line, condition_id)
|
223
|
+
type, id, start_line, _start_col, end_line, _end_col = branch_data
|
224
|
+
|
225
|
+
SourceFile::Branch.new(
|
226
|
+
# rubocop these are keyword args please let me keep them, thank you
|
227
|
+
# rubocop:disable Style/HashSyntax
|
228
|
+
start_line: start_line,
|
229
|
+
end_line: end_line,
|
230
|
+
coverage: hit_count,
|
231
|
+
inline: start_line == condition_start_line,
|
232
|
+
positive: positive_branch?(condition_id, id, type)
|
233
|
+
# rubocop:enable Style/HashSyntax
|
234
|
+
)
|
235
|
+
end
|
236
|
+
|
237
|
+
def ignore_branch?(branch_data, condition_type, condition_start_line)
|
238
|
+
branch_type = branch_data[0]
|
239
|
+
branch_start_line = branch_data[2]
|
240
|
+
|
241
|
+
# branch coverage always reports case to be with an else branch even when
|
242
|
+
# there is no else branch to be covered, it's noticable by the reported start
|
243
|
+
# line being the same as that of the condition/case
|
244
|
+
condition_type == :case &&
|
245
|
+
branch_type == :else &&
|
246
|
+
condition_start_line == branch_start_line
|
247
|
+
end
|
248
|
+
|
249
|
+
#
|
250
|
+
# Branch is positive or negative.
|
251
|
+
# For `case` conditions, `when` always supposed as positive branch.
|
252
|
+
# For `if, else` conditions:
|
253
|
+
# coverage returns matrices ex: [:if, 0,..] => {[:then, 1,..], [:else, 2,..]},
|
254
|
+
# positive branch always has id equals to condition id incremented by 1.
|
255
|
+
#
|
256
|
+
# @return [Boolean]
|
257
|
+
#
|
258
|
+
def positive_branch?(condition_id, branch_id, branch_type)
|
259
|
+
return true if branch_type == :when
|
260
|
+
|
261
|
+
branch_id == (1 + condition_id)
|
262
|
+
end
|
263
|
+
|
264
|
+
#
|
265
|
+
# Select the covered branches
|
266
|
+
# Here we user tree schema because some conditions like case may have additional
|
267
|
+
# else that is not in declared inside the code but given by default by coverage report
|
268
|
+
#
|
269
|
+
# @return [Array]
|
270
|
+
#
|
271
|
+
def covered_branches
|
272
|
+
@covered_branches ||= branches.select(&:covered?)
|
273
|
+
end
|
274
|
+
|
275
|
+
#
|
276
|
+
# Select the missed branches with coverage equal to zero
|
277
|
+
#
|
278
|
+
# @return [Array]
|
279
|
+
#
|
280
|
+
def missed_branches
|
281
|
+
@missed_branches ||= branches.select(&:missed?)
|
282
|
+
end
|
283
|
+
|
284
|
+
def branches_for_line(line_number)
|
285
|
+
branches_report.fetch(line_number, [])
|
286
|
+
end
|
287
|
+
|
288
|
+
#
|
289
|
+
# Check if any branches missing on given line number
|
290
|
+
#
|
291
|
+
# @param [Integer] line_number
|
292
|
+
#
|
293
|
+
# @return [Boolean]
|
294
|
+
#
|
295
|
+
def line_with_missed_branch?(line_number)
|
296
|
+
branches_for_line(line_number).select { |count, _sign| count.zero? }.any?
|
297
|
+
end
|
298
|
+
|
299
|
+
#
|
300
|
+
# Build full branches report
|
301
|
+
# Root branches represent the wrapper of all condition state that
|
302
|
+
# have inside the branches
|
303
|
+
#
|
304
|
+
# @return [Hash]
|
305
|
+
#
|
306
|
+
def build_branches_report
|
307
|
+
branches.reject(&:skipped?).each_with_object({}) do |branch, coverage_statistics|
|
308
|
+
coverage_statistics[branch.report_line] ||= []
|
309
|
+
coverage_statistics[branch.report_line] << branch.report
|
310
|
+
end
|
199
311
|
end
|
200
312
|
end
|
201
313
|
end
|
@@ -0,0 +1,106 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module SimpleCov
|
4
|
+
class SourceFile
|
5
|
+
#
|
6
|
+
# Representing single branch that has been detected in coverage report.
|
7
|
+
# Give us support methods that handle needed calculations.
|
8
|
+
class Branch
|
9
|
+
attr_reader :start_line, :end_line, :coverage
|
10
|
+
|
11
|
+
# rubocop:disable Metrics/ParameterLists
|
12
|
+
def initialize(start_line:, end_line:, coverage:, inline:, positive:)
|
13
|
+
@start_line = start_line
|
14
|
+
@end_line = end_line
|
15
|
+
@coverage = coverage
|
16
|
+
@inline = inline
|
17
|
+
@positive = positive
|
18
|
+
@skipped = false
|
19
|
+
end
|
20
|
+
# rubocop:enable Metrics/ParameterLists
|
21
|
+
|
22
|
+
def inline?
|
23
|
+
@inline
|
24
|
+
end
|
25
|
+
|
26
|
+
def positive?
|
27
|
+
@positive
|
28
|
+
end
|
29
|
+
|
30
|
+
#
|
31
|
+
# Branch is negative
|
32
|
+
#
|
33
|
+
# @return [Boolean]
|
34
|
+
#
|
35
|
+
def negative?
|
36
|
+
!positive?
|
37
|
+
end
|
38
|
+
|
39
|
+
#
|
40
|
+
# Return true if there is relevant count defined > 0
|
41
|
+
#
|
42
|
+
# @return [Boolean]
|
43
|
+
#
|
44
|
+
def covered?
|
45
|
+
!skipped? && coverage.positive?
|
46
|
+
end
|
47
|
+
|
48
|
+
#
|
49
|
+
# Check if branche missed or not
|
50
|
+
#
|
51
|
+
# @return [Boolean]
|
52
|
+
#
|
53
|
+
def missed?
|
54
|
+
!skipped? && coverage.zero?
|
55
|
+
end
|
56
|
+
|
57
|
+
#
|
58
|
+
# Return the sign depends on branch is positive or negative
|
59
|
+
#
|
60
|
+
# @return [String]
|
61
|
+
#
|
62
|
+
def badge
|
63
|
+
positive? ? "+" : "-"
|
64
|
+
end
|
65
|
+
|
66
|
+
# The line on which we want to report the coverage
|
67
|
+
#
|
68
|
+
# Usually we choose the line above the start of the branch (so that it shows up
|
69
|
+
# at if/else) because that
|
70
|
+
# * highlights the condition
|
71
|
+
# * makes it distinguishable if the first line of the branch is an inline branch
|
72
|
+
# (see the nested_branches fixture)
|
73
|
+
#
|
74
|
+
def report_line
|
75
|
+
if inline?
|
76
|
+
start_line
|
77
|
+
else
|
78
|
+
start_line - 1
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
# Flags the branch as skipped
|
83
|
+
def skipped!
|
84
|
+
@skipped = true
|
85
|
+
end
|
86
|
+
|
87
|
+
# Returns true if the branch was marked skipped by virtue of nocov comments.
|
88
|
+
def skipped?
|
89
|
+
@skipped
|
90
|
+
end
|
91
|
+
|
92
|
+
def overlaps_with?(line_range)
|
93
|
+
start_line <= line_range.end && end_line >= line_range.begin
|
94
|
+
end
|
95
|
+
|
96
|
+
#
|
97
|
+
# Return array with coverage count and badge
|
98
|
+
#
|
99
|
+
# @return [Array]
|
100
|
+
#
|
101
|
+
def report
|
102
|
+
[coverage, badge]
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
106
|
+
end
|