simplecov 0.22.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +1058 -508
- data/doc/alternate-formatters.md +0 -5
- data/doc/commercial-services.md +5 -5
- data/exe/simplecov +11 -0
- data/lib/minitest/simplecov_plugin.rb +13 -5
- data/lib/simplecov/autostart.rb +11 -0
- data/lib/simplecov/cli/clean.rb +47 -0
- data/lib/simplecov/cli/coverage.rb +93 -0
- data/lib/simplecov/cli/diff.rb +152 -0
- data/lib/simplecov/cli/dotfile.rb +105 -0
- data/lib/simplecov/cli/merge.rb +118 -0
- data/lib/simplecov/cli/open.rb +50 -0
- data/lib/simplecov/cli/report.rb +89 -0
- data/lib/simplecov/cli/run.rb +36 -0
- data/lib/simplecov/cli/serve.rb +149 -0
- data/lib/simplecov/cli/uncovered.rb +108 -0
- data/lib/simplecov/cli.rb +150 -0
- data/lib/simplecov/color.rb +79 -0
- data/lib/simplecov/combine/branches_combiner.rb +28 -5
- data/lib/simplecov/combine/files_combiner.rb +47 -1
- data/lib/simplecov/combine/lines_combiner.rb +19 -17
- data/lib/simplecov/combine/methods_combiner.rb +49 -0
- data/lib/simplecov/combine/results_combiner.rb +7 -5
- data/lib/simplecov/command_guesser.rb +46 -32
- data/lib/simplecov/configuration/coverage.rb +175 -0
- data/lib/simplecov/configuration/coverage_criteria.rb +158 -0
- data/lib/simplecov/configuration/filters.rb +197 -0
- data/lib/simplecov/configuration/formatting.rb +129 -0
- data/lib/simplecov/configuration/ignored_entries.rb +63 -0
- data/lib/simplecov/configuration/merging.rb +164 -0
- data/lib/simplecov/configuration/thresholds.rb +178 -0
- data/lib/simplecov/configuration.rb +105 -412
- data/lib/simplecov/coverage_statistics.rb +15 -9
- data/lib/simplecov/coverage_violations.rb +149 -0
- data/lib/simplecov/defaults.rb +29 -22
- data/lib/simplecov/deprecation.rb +45 -0
- data/lib/simplecov/directive.rb +167 -0
- data/lib/simplecov/exit_codes/exit_code_handling.rb +8 -2
- data/lib/simplecov/exit_codes/maximum_coverage_drop_check.rb +19 -57
- data/lib/simplecov/exit_codes/maximum_overall_coverage_check.rb +45 -0
- data/lib/simplecov/exit_codes/minimum_coverage_by_file_check.rb +17 -27
- data/lib/simplecov/exit_codes/minimum_coverage_by_group_check.rb +41 -0
- data/lib/simplecov/exit_codes/minimum_overall_coverage_check.rb +38 -21
- data/lib/simplecov/exit_codes.rb +15 -0
- data/lib/simplecov/exit_handling.rb +158 -0
- data/lib/simplecov/file_list.rb +70 -19
- data/lib/simplecov/filter.rb +69 -24
- data/lib/simplecov/formatter/base.rb +102 -0
- data/lib/simplecov/formatter/html_formatter/public/application.css +1 -0
- data/lib/simplecov/formatter/html_formatter/public/application.js +18 -0
- data/lib/simplecov/formatter/html_formatter/public/favicon_green.png +0 -0
- data/lib/simplecov/formatter/html_formatter/public/favicon_red.png +0 -0
- data/lib/simplecov/formatter/html_formatter/public/favicon_yellow.png +0 -0
- data/lib/simplecov/formatter/html_formatter/public/index.html +56 -0
- data/lib/simplecov/formatter/html_formatter.rb +85 -0
- data/lib/simplecov/formatter/json_formatter/errors_formatter.rb +90 -0
- data/lib/simplecov/formatter/json_formatter/result_hash_formatter.rb +128 -0
- data/lib/simplecov/formatter/json_formatter/source_file_formatter.rb +99 -0
- data/lib/simplecov/formatter/json_formatter.rb +89 -0
- data/lib/simplecov/formatter/multi_formatter.rb +11 -7
- data/lib/simplecov/formatter/simple_formatter.rb +11 -11
- data/lib/simplecov/formatter.rb +4 -0
- data/lib/simplecov/last_run.rb +10 -3
- data/lib/simplecov/lines_classifier.rb +25 -13
- data/lib/simplecov/load_global_config.rb +9 -4
- data/lib/simplecov/parallel_adapters/base.rb +61 -0
- data/lib/simplecov/parallel_adapters/generic.rb +44 -0
- data/lib/simplecov/parallel_adapters/parallel_tests.rb +93 -0
- data/lib/simplecov/parallel_adapters.rb +83 -0
- data/lib/simplecov/parallel_coordination.rb +129 -0
- data/lib/simplecov/process.rb +52 -12
- data/lib/simplecov/profiles/bundler_filter.rb +1 -1
- data/lib/simplecov/profiles/hidden_filter.rb +1 -1
- data/lib/simplecov/profiles/rails.rb +24 -10
- data/lib/simplecov/profiles/root_filter.rb +6 -5
- data/lib/simplecov/profiles/strict.rb +32 -0
- data/lib/simplecov/profiles/test_frameworks.rb +1 -4
- data/lib/simplecov/profiles.rb +32 -3
- data/lib/simplecov/result/missing_source_files_reporter.rb +49 -0
- data/lib/simplecov/result/source_file_builder.rb +51 -0
- data/lib/simplecov/result.rb +108 -19
- data/lib/simplecov/result_adapter.rb +105 -8
- data/lib/simplecov/result_merger/legacy_format_adapter.rb +28 -0
- data/lib/simplecov/result_merger/resultset_file.rb +38 -0
- data/lib/simplecov/result_merger/resultset_store.rb +50 -0
- data/lib/simplecov/result_merger.rb +59 -91
- data/lib/simplecov/result_processing.rb +179 -0
- data/lib/simplecov/simulate_coverage.rb +54 -8
- data/lib/simplecov/source_file/branch.rb +1 -3
- data/lib/simplecov/source_file/branch_builder.rb +114 -0
- data/lib/simplecov/source_file/builder_context.rb +28 -0
- data/lib/simplecov/source_file/line.rb +9 -4
- data/lib/simplecov/source_file/line_builder.rb +43 -0
- data/lib/simplecov/source_file/method.rb +52 -0
- data/lib/simplecov/source_file/method_builder.rb +60 -0
- data/lib/simplecov/source_file/ruby_data_parser.rb +88 -0
- data/lib/simplecov/source_file/skip_chunks.rb +75 -0
- data/lib/simplecov/source_file/source_loader.rb +63 -0
- data/lib/simplecov/source_file/statistics.rb +57 -0
- data/lib/simplecov/source_file.rb +66 -232
- data/lib/simplecov/static_coverage_extractor/condition_folding.rb +49 -0
- data/lib/simplecov/static_coverage_extractor/location_conventions.rb +247 -0
- data/lib/simplecov/static_coverage_extractor/method_collector.rb +55 -0
- data/lib/simplecov/static_coverage_extractor/value_position.rb +82 -0
- data/lib/simplecov/static_coverage_extractor/visitor.rb +196 -0
- data/lib/simplecov/static_coverage_extractor.rb +110 -0
- data/lib/simplecov/useless_results_remover.rb +16 -7
- data/lib/simplecov/version.rb +1 -1
- data/lib/simplecov-html.rb +4 -0
- data/lib/simplecov.rb +178 -380
- data/lib/simplecov_json_formatter.rb +4 -0
- data/schemas/coverage-v1.0.schema.json +306 -0
- data/schemas/coverage.schema.json +306 -0
- data/sig/simplecov.rbs +1638 -0
- metadata +94 -57
- data/CHANGELOG.md +0 -191
- data/lib/simplecov/default_formatter.rb +0 -20
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Result-building façade: turns the raw `Coverage.result` hash into a
|
|
4
|
+
# `SimpleCov::Result`, applies filters and groups, drives merging
|
|
5
|
+
# across test suites via `SimpleCov::ResultMerger`, and exposes the
|
|
6
|
+
# `collate` entry point for stitching disparate resultsets together.
|
|
7
|
+
module SimpleCov
|
|
8
|
+
class << self
|
|
9
|
+
#
|
|
10
|
+
# Collate a series of SimpleCov result files into a single SimpleCov output.
|
|
11
|
+
#
|
|
12
|
+
# See README for usage. By default `collate` ignores the merge_timeout
|
|
13
|
+
# so all results in all files specified will be merged. Pass
|
|
14
|
+
# `ignore_timeout: false` to honor it.
|
|
15
|
+
#
|
|
16
|
+
def collate(result_filenames, profile = nil, ignore_timeout: true, &)
|
|
17
|
+
raise ArgumentError, "There are no reports to be merged" if result_filenames.empty?
|
|
18
|
+
|
|
19
|
+
initial_setup(profile, &)
|
|
20
|
+
|
|
21
|
+
# Use the ResultMerger to produce a single, merged result, ready to use.
|
|
22
|
+
@result = ResultMerger.merge_and_store(*result_filenames, ignore_timeout: ignore_timeout)
|
|
23
|
+
|
|
24
|
+
@collating_result = true
|
|
25
|
+
run_exit_tasks!
|
|
26
|
+
ensure
|
|
27
|
+
@collating_result = false
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
#
|
|
31
|
+
# Returns the result for the current coverage run, merging it across test suites
|
|
32
|
+
# from cache using SimpleCov::ResultMerger if use_merging is activated (default)
|
|
33
|
+
#
|
|
34
|
+
def result
|
|
35
|
+
return @result if result?
|
|
36
|
+
|
|
37
|
+
use_merging = merging
|
|
38
|
+
|
|
39
|
+
# Collect our coverage result. When merging is off there is no merge
|
|
40
|
+
# step, so this per-process result is the final one and reports any
|
|
41
|
+
# dropped source files; otherwise the merged result does the reporting.
|
|
42
|
+
process_coverage_result(report: !use_merging) if defined?(Coverage) && Coverage.running?
|
|
43
|
+
|
|
44
|
+
# If we're using merging of results, store the current result
|
|
45
|
+
# first (if there is one), then merge the results and return those
|
|
46
|
+
if use_merging
|
|
47
|
+
SimpleCov::ResultMerger.store_result(@result) if result?
|
|
48
|
+
return @result unless finalize_merge?
|
|
49
|
+
|
|
50
|
+
wait_for_other_processes
|
|
51
|
+
@result = SimpleCov::ResultMerger.merged_result
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
@result
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
# Returns nil if the result has not been computed, otherwise the result.
|
|
58
|
+
def result?
|
|
59
|
+
defined?(@result) && @result
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
# @api private — true while `SimpleCov.collate` is running its finalizer.
|
|
63
|
+
def collating_result?
|
|
64
|
+
defined?(@collating_result) && @collating_result
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
# Applies the configured filters to the given array of SimpleCov::SourceFile items
|
|
68
|
+
def filtered(files)
|
|
69
|
+
result = files.to_a.dup
|
|
70
|
+
filters.each do |filter|
|
|
71
|
+
result = result.reject { |source_file| filter.matches?(source_file) }
|
|
72
|
+
end
|
|
73
|
+
SimpleCov::FileList.new result
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
# Bin the given source files by group filter. `groups:` defaults to
|
|
77
|
+
# `SimpleCov.groups`; pass a Hash explicitly to bin against a
|
|
78
|
+
# different group config (e.g., the snapshot a Result captured at
|
|
79
|
+
# construction). Files matched by no group fall into the implicit
|
|
80
|
+
# "Ungrouped" bucket.
|
|
81
|
+
def grouped(files, groups: SimpleCov.groups)
|
|
82
|
+
return {} if groups.empty?
|
|
83
|
+
|
|
84
|
+
grouped = groups.transform_values do |filter|
|
|
85
|
+
SimpleCov::FileList.new(files.select { |source_file| filter.matches?(source_file) })
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
in_group = grouped_file_set(grouped)
|
|
89
|
+
ungrouped = files.reject { |source_file| in_group.include?(source_file) }
|
|
90
|
+
grouped["Ungrouped"] = SimpleCov::FileList.new(ungrouped) if ungrouped.any?
|
|
91
|
+
|
|
92
|
+
grouped
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
# Applies the profile of given name on SimpleCov configuration
|
|
96
|
+
def load_profile(name)
|
|
97
|
+
profiles.load(name)
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
# Clear out the previously cached .result. Primarily useful in testing.
|
|
101
|
+
def clear_result
|
|
102
|
+
@result = nil
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
# @api private — persist the per-criterion coverage percentages
|
|
106
|
+
# rounded down (see #679) so the next run can compute drift.
|
|
107
|
+
def write_last_run(result)
|
|
108
|
+
SimpleCov::LastRun.write(
|
|
109
|
+
result: result.coverage_statistics.transform_values { |stats| round_coverage(stats.percent) }
|
|
110
|
+
)
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
# @api private — round down to two decimals to be extra strict.
|
|
114
|
+
def round_coverage(coverage)
|
|
115
|
+
coverage.floor(2)
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
private
|
|
119
|
+
|
|
120
|
+
def initial_setup(profile, &block)
|
|
121
|
+
load_profile(profile) if profile
|
|
122
|
+
configure(&block) if block
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
def grouped_file_set(grouped)
|
|
126
|
+
grouped.values.each_with_object(Set.new) { |file_list, set| set.merge(file_list) }
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
# Finds files that were to be tracked but were not loaded, and
|
|
130
|
+
# initializes their line-by-line coverage to zero (or nil for
|
|
131
|
+
# comments / whitespace).
|
|
132
|
+
def add_not_loaded_files(result)
|
|
133
|
+
globs = unloaded_file_discovery_globs
|
|
134
|
+
return [result, Set.new] if globs.empty?
|
|
135
|
+
|
|
136
|
+
inject_unloaded_files(result.dup, discover_unloaded_paths(globs))
|
|
137
|
+
end
|
|
138
|
+
|
|
139
|
+
# Globs to expand on disk when injecting unloaded files into the
|
|
140
|
+
# result. Combines the legacy `track_files` glob (additive only)
|
|
141
|
+
# with every string glob declared via `cover` (also restrictive,
|
|
142
|
+
# but the restriction lives in `Result#apply_cover_filters!`).
|
|
143
|
+
def unloaded_file_discovery_globs
|
|
144
|
+
[tracked_files, *cover_globs].compact
|
|
145
|
+
end
|
|
146
|
+
|
|
147
|
+
# Expand the given globs relative to SimpleCov.root, not Dir.pwd —
|
|
148
|
+
# test runners that chdir (or CI scripts that invoke the suite
|
|
149
|
+
# from a subdir) would otherwise silently miss the unloaded-file
|
|
150
|
+
# injection and produce a different file set per environment. See
|
|
151
|
+
# issue #1106.
|
|
152
|
+
def discover_unloaded_paths(globs)
|
|
153
|
+
globs.flat_map { |glob| Dir.glob(glob, base: root) }.uniq
|
|
154
|
+
end
|
|
155
|
+
|
|
156
|
+
def inject_unloaded_files(result, candidate_paths)
|
|
157
|
+
not_loaded_files = candidate_paths.each_with_object(Set.new) do |file, set|
|
|
158
|
+
absolute_path = File.expand_path(file, root)
|
|
159
|
+
next if result.key?(absolute_path)
|
|
160
|
+
|
|
161
|
+
result[absolute_path] = SimulateCoverage.call(absolute_path)
|
|
162
|
+
set << absolute_path
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
[result, not_loaded_files]
|
|
166
|
+
end
|
|
167
|
+
|
|
168
|
+
# Run all the steps that handle processing the raw coverage result.
|
|
169
|
+
# `report:` is true only when this slice is the final result (merging
|
|
170
|
+
# off); with merging on the merged result reports dropped source files,
|
|
171
|
+
# so the per-process slice stays quiet to avoid one warning per worker.
|
|
172
|
+
def process_coverage_result(report:)
|
|
173
|
+
raw = SimpleCov::UselessResultsRemover.call(Coverage.result)
|
|
174
|
+
adapted = SimpleCov::ResultAdapter.call(raw)
|
|
175
|
+
result, not_loaded_files = add_not_loaded_files(adapted)
|
|
176
|
+
@result = SimpleCov::Result.new(result, not_loaded_files: not_loaded_files, report: report)
|
|
177
|
+
end
|
|
178
|
+
end
|
|
179
|
+
end
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
require_relative "static_coverage_extractor"
|
|
4
|
+
|
|
3
5
|
module SimpleCov
|
|
4
6
|
#
|
|
5
7
|
# Responsible for producing file coverage metrics.
|
|
@@ -8,22 +10,66 @@ module SimpleCov
|
|
|
8
10
|
module_function
|
|
9
11
|
|
|
10
12
|
#
|
|
11
|
-
# Simulate
|
|
12
|
-
#
|
|
13
|
+
# Simulate a file coverage report for a file that was tracked but never
|
|
14
|
+
# required. Returns the same hash shape as `Coverage.result` (lines,
|
|
15
|
+
# branches, methods).
|
|
16
|
+
#
|
|
17
|
+
# The line classification comes from `Coverage.line_stub` — the same
|
|
18
|
+
# classification the runtime would have produced if the file had been
|
|
19
|
+
# required — overlaid with SimpleCov's `# :nocov:` toggles and
|
|
20
|
+
# `# simplecov:disable line` directive ranges, which `Coverage` doesn't
|
|
21
|
+
# know about. This keeps "relevant lines" identical whether a file was
|
|
22
|
+
# loaded or just tracked, fixing the multi-line statement discrepancy
|
|
23
|
+
# in https://github.com/simplecov-ruby/simplecov/issues/654.
|
|
13
24
|
#
|
|
14
|
-
#
|
|
25
|
+
# Branches and methods are enumerated by static analysis (via
|
|
26
|
+
# `StaticCoverageExtractor`, which uses Prism). Earlier behavior left
|
|
27
|
+
# both as empty hashes, which made unloaded files invisible to the
|
|
28
|
+
# branch/method denominators while their lines DID count — so a
|
|
29
|
+
# `track_files`/`cover` glob that picked up files without specs
|
|
30
|
+
# silently inflated branch% relative to line%. See
|
|
31
|
+
# https://github.com/simplecov-ruby/simplecov/issues/1059. When Prism
|
|
32
|
+
# isn't loadable (Ruby < 3.3 without the prism gem) or the file
|
|
33
|
+
# can't be parsed, fall back to the old empty hashes — old behavior,
|
|
34
|
+
# old tradeoff.
|
|
15
35
|
#
|
|
16
36
|
# @return [Hash]
|
|
17
37
|
#
|
|
18
38
|
def call(absolute_path)
|
|
19
|
-
|
|
39
|
+
source_lines = read_lines(absolute_path)
|
|
40
|
+
lines = coverage_stub(absolute_path, source_lines) ||
|
|
41
|
+
LinesClassifier.new.classify(source_lines)
|
|
42
|
+
empty = {"branches" => {}, "methods" => {}} #: Hash[String, Hash[untyped, untyped]]
|
|
43
|
+
synthesized = StaticCoverageExtractor.call(source_lines.join) || empty
|
|
20
44
|
|
|
21
45
|
{
|
|
22
|
-
"lines" =>
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"branches" => {}
|
|
46
|
+
"lines" => lines,
|
|
47
|
+
"branches" => synthesized["branches"],
|
|
48
|
+
"methods" => synthesized["methods"]
|
|
26
49
|
}
|
|
27
50
|
end
|
|
51
|
+
|
|
52
|
+
def read_lines(path)
|
|
53
|
+
File.readlines(path)
|
|
54
|
+
rescue Errno::ENOENT
|
|
55
|
+
[]
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# Combine `Coverage.line_stub` (which gets multi-line statements right)
|
|
59
|
+
# with `LinesClassifier` (which knows about `# :nocov:` toggles and
|
|
60
|
+
# `# simplecov:disable line` ranges). Returns nil — and the caller
|
|
61
|
+
# falls back to `LinesClassifier` alone — when `Coverage` can't read
|
|
62
|
+
# or parse the file, or when the runtime doesn't expose `line_stub`
|
|
63
|
+
# (JRuby and TruffleRuby).
|
|
64
|
+
def coverage_stub(path, source_lines)
|
|
65
|
+
return nil unless Coverage.respond_to?(:line_stub)
|
|
66
|
+
|
|
67
|
+
stub = Coverage.line_stub(path)
|
|
68
|
+
classifier_output = LinesClassifier.new.classify(source_lines)
|
|
69
|
+
stub.each_index { |idx| stub[idx] = nil if classifier_output[idx].nil? }
|
|
70
|
+
stub
|
|
71
|
+
rescue Errno::ENOENT, SyntaxError
|
|
72
|
+
nil
|
|
73
|
+
end
|
|
28
74
|
end
|
|
29
75
|
end
|
|
@@ -8,7 +8,6 @@ module SimpleCov
|
|
|
8
8
|
class Branch
|
|
9
9
|
attr_reader :start_line, :end_line, :coverage, :type
|
|
10
10
|
|
|
11
|
-
# rubocop:disable Metrics/ParameterLists
|
|
12
11
|
def initialize(start_line:, end_line:, coverage:, inline:, type:)
|
|
13
12
|
@start_line = start_line
|
|
14
13
|
@end_line = end_line
|
|
@@ -17,7 +16,6 @@ module SimpleCov
|
|
|
17
16
|
@type = type
|
|
18
17
|
@skipped = false
|
|
19
18
|
end
|
|
20
|
-
# rubocop:enable Metrics/ParameterLists
|
|
21
19
|
|
|
22
20
|
def inline?
|
|
23
21
|
@inline
|
|
@@ -33,7 +31,7 @@ module SimpleCov
|
|
|
33
31
|
end
|
|
34
32
|
|
|
35
33
|
#
|
|
36
|
-
# Check if
|
|
34
|
+
# Check if branch missed or not
|
|
37
35
|
#
|
|
38
36
|
# @return [Boolean]
|
|
39
37
|
#
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module SimpleCov
|
|
4
|
+
class SourceFile
|
|
5
|
+
# Builds the `SourceFile::Branch` objects for a source file from
|
|
6
|
+
# the raw branch data Ruby's Coverage library reports. Applies the
|
|
7
|
+
# `ignore_branches :eval_generated` / `:implicit_else` filters and
|
|
8
|
+
# marks branches inside `# simplecov:disable` / `# :nocov:` chunks
|
|
9
|
+
# as skipped.
|
|
10
|
+
class BranchBuilder
|
|
11
|
+
def initialize(source_file)
|
|
12
|
+
@source_file = source_file
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def call
|
|
16
|
+
coverage_branch_data = @source_file.coverage_data["branches"] || {}
|
|
17
|
+
branches = coverage_branch_data.flat_map do |condition, coverage_branches|
|
|
18
|
+
next [] if eval_generated_condition_to_ignore?(condition)
|
|
19
|
+
|
|
20
|
+
build_branches_from(condition, coverage_branches)
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
process_skipped(branches)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
private
|
|
27
|
+
|
|
28
|
+
# Detect a Coverage-reported branch condition that originates from
|
|
29
|
+
# `eval`/`module_eval`/`class_eval`/`instance_eval` rather than from
|
|
30
|
+
# the file's literal source. Coverage attributes such branches to the
|
|
31
|
+
# caller's `__FILE__`/`__LINE__`, so a Rails `delegate :foo, to: :bar`
|
|
32
|
+
# call surfaces inside the source file as if there were branches at
|
|
33
|
+
# the `delegate` line. Prism never sees those branches in the static
|
|
34
|
+
# source, so a condition whose start_line isn't in the real-source
|
|
35
|
+
# branch set must be eval-generated. Only consulted when the user has
|
|
36
|
+
# opted in via `SimpleCov.ignore_branches :eval_generated`. See #1046.
|
|
37
|
+
def eval_generated_condition_to_ignore?(condition)
|
|
38
|
+
return false unless SimpleCov.ignored_branch?(:eval_generated)
|
|
39
|
+
|
|
40
|
+
positions = @source_file.real_source_positions
|
|
41
|
+
# simplecov:disable branch — nil branch fires only when Prism is unavailable
|
|
42
|
+
return false unless positions
|
|
43
|
+
|
|
44
|
+
# simplecov:enable branch
|
|
45
|
+
|
|
46
|
+
_type, _id, start_line, * = RubyDataParser.call(condition)
|
|
47
|
+
!positions[:branches].include?(start_line)
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
def build_branches_from(condition, branches)
|
|
51
|
+
# the format handed in from the coverage data is like this:
|
|
52
|
+
#
|
|
53
|
+
# [:then, 4, 6, 6, 6, 10]
|
|
54
|
+
#
|
|
55
|
+
# which is [type, id, start_line, start_col, end_line, end_col]
|
|
56
|
+
_condition_type, _condition_id, *condition_range = RubyDataParser.call(condition)
|
|
57
|
+
|
|
58
|
+
branches.filter_map do |branch_data, hit_count|
|
|
59
|
+
build_branch(RubyDataParser.call(branch_data), hit_count, condition_range)
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
def build_branch(branch_data, hit_count, condition_range)
|
|
64
|
+
type, _id, start_line, start_col, end_line, end_col = branch_data
|
|
65
|
+
return nil if implicit_else_to_ignore?(type, [start_line, start_col, end_line, end_col], condition_range)
|
|
66
|
+
|
|
67
|
+
SourceFile::Branch.new(
|
|
68
|
+
start_line: start_line,
|
|
69
|
+
end_line: end_line,
|
|
70
|
+
coverage: hit_count,
|
|
71
|
+
inline: start_line == condition_range.first,
|
|
72
|
+
type: type
|
|
73
|
+
)
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
# Detect synthetic `:else` branches that Ruby's Coverage library reports
|
|
77
|
+
# for constructs with no literal `else` keyword in source (`case/in` /
|
|
78
|
+
# `case/when` without else, `||=`, `&&=`, `if`/`unless` without else,
|
|
79
|
+
# and the postfix `return if cond` shape). The signal is structural:
|
|
80
|
+
# a synthetic else reuses its parent condition's *full source range*
|
|
81
|
+
# (start_line, start_col, end_line, end_col all identical), while an
|
|
82
|
+
# explicit `else` arm carries a narrower range — its own keyword/body
|
|
83
|
+
# position rather than the whole conditional. Comparing the full range
|
|
84
|
+
# (not just `start_line`) is what distinguishes a ternary's explicit
|
|
85
|
+
# else on the same line as the condition — `arg == 42 ? :yes : :no`,
|
|
86
|
+
# where the else's columns differ from the parent's — from a postfix
|
|
87
|
+
# `return if cond` where the synthetic else inherits the full range.
|
|
88
|
+
# Only consulted when the user has opted in via
|
|
89
|
+
# `SimpleCov.ignore_branches :implicit_else`. See #1033.
|
|
90
|
+
def implicit_else_to_ignore?(type, branch_range, condition_range)
|
|
91
|
+
return false unless type == :else
|
|
92
|
+
return false unless SimpleCov.ignored_branch?(:implicit_else)
|
|
93
|
+
|
|
94
|
+
branch_range == condition_range
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
def process_skipped(branches)
|
|
98
|
+
chunks = @source_file.skip_chunks_for(:branch)
|
|
99
|
+
return branches if chunks.empty?
|
|
100
|
+
|
|
101
|
+
# A non-inline branch's source range starts on its arm body (e.g. the
|
|
102
|
+
# `:yes` line of `if cond / :yes / else / :no / end`), but `report_line`
|
|
103
|
+
# is the condition line above it — that's where the user sees the
|
|
104
|
+
# branch in the report and where they would naturally place an inline
|
|
105
|
+
# `# simplecov:disable branch` directive. Honour both.
|
|
106
|
+
branches.each do |branch|
|
|
107
|
+
branch.skipped! if chunks.any? { |chunk| branch.overlaps_with?(chunk) || chunk.include?(branch.report_line) }
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
branches
|
|
111
|
+
end
|
|
112
|
+
end
|
|
113
|
+
end
|
|
114
|
+
end
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module SimpleCov
|
|
4
|
+
class SourceFile
|
|
5
|
+
# Helpers shared by the per-criterion builders (LineBuilder /
|
|
6
|
+
# BranchBuilder / MethodBuilder). Mixed into SourceFile so each
|
|
7
|
+
# builder can ask the file for its skip-chunk ranges and Prism-derived
|
|
8
|
+
# real source positions without duplicating the memoization.
|
|
9
|
+
module BuilderContext
|
|
10
|
+
# Skip-chunk lookup for the named criterion (`:line`, `:branch`,
|
|
11
|
+
# `:method`).
|
|
12
|
+
def skip_chunks_for(criterion)
|
|
13
|
+
(@skip_chunks ||= SkipChunks.new(filename, src)).for(criterion)
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
# Memoized set of real source positions (branch start lines, method
|
|
17
|
+
# name+line pairs) extracted via Prism. Returns nil when Prism is
|
|
18
|
+
# unavailable or parsing fails, signaling callers to keep every
|
|
19
|
+
# Coverage entry (no false drops). The `defined?` guard preserves a
|
|
20
|
+
# nil memoization across calls.
|
|
21
|
+
def real_source_positions
|
|
22
|
+
return @real_source_positions if defined?(@real_source_positions)
|
|
23
|
+
|
|
24
|
+
@real_source_positions = StaticCoverageExtractor.real_source_positions(src.join)
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
@@ -25,7 +25,9 @@ module SimpleCov
|
|
|
25
25
|
def initialize(src, line_number, coverage)
|
|
26
26
|
raise ArgumentError, "Only String accepted for source" unless src.is_a?(String)
|
|
27
27
|
raise ArgumentError, "Only Integer accepted for line_number" unless line_number.is_a?(Integer)
|
|
28
|
-
|
|
28
|
+
unless coverage.is_a?(Integer) || coverage.nil?
|
|
29
|
+
raise ArgumentError, "Only Integer and nil accepted for coverage"
|
|
30
|
+
end
|
|
29
31
|
|
|
30
32
|
@src = src
|
|
31
33
|
@line_number = line_number
|
|
@@ -35,12 +37,12 @@ module SimpleCov
|
|
|
35
37
|
|
|
36
38
|
# Returns true if this is a line that should have been covered, but was not
|
|
37
39
|
def missed?
|
|
38
|
-
!never? && !skipped? && coverage.zero?
|
|
40
|
+
!never? && !skipped? && coverage.to_i.zero?
|
|
39
41
|
end
|
|
40
42
|
|
|
41
43
|
# Returns true if this is a line that has been covered
|
|
42
44
|
def covered?
|
|
43
|
-
!never? && !skipped? && coverage.positive?
|
|
45
|
+
!never? && !skipped? && coverage.to_i.positive?
|
|
44
46
|
end
|
|
45
47
|
|
|
46
48
|
# Returns true if this line is not relevant for coverage
|
|
@@ -65,7 +67,10 @@ module SimpleCov
|
|
|
65
67
|
return "skipped" if skipped?
|
|
66
68
|
return "never" if never?
|
|
67
69
|
return "missed" if missed?
|
|
68
|
-
|
|
70
|
+
|
|
71
|
+
# simplecov:disable — defensive: covered? is the only state left after the three above
|
|
72
|
+
"covered" if covered?
|
|
73
|
+
# simplecov:enable
|
|
69
74
|
end
|
|
70
75
|
end
|
|
71
76
|
end
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module SimpleCov
|
|
4
|
+
class SourceFile
|
|
5
|
+
# Builds the `SourceFile::Line` objects for a source file from the
|
|
6
|
+
# raw line-coverage array. Each line carries its source text, its
|
|
7
|
+
# 1-based line number, and the Coverage hit count (or nil for
|
|
8
|
+
# never-counted lines). Applies `# simplecov:disable` /
|
|
9
|
+
# `# :nocov:` block ranges via `skipped!`.
|
|
10
|
+
class LineBuilder
|
|
11
|
+
def initialize(source_file)
|
|
12
|
+
@source_file = source_file
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def call
|
|
16
|
+
lines = build_lines
|
|
17
|
+
mark_skipped(lines, @source_file.skip_chunks_for(:line))
|
|
18
|
+
lines
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
private
|
|
22
|
+
|
|
23
|
+
# When `:line` coverage is disabled, the Ruby Coverage module
|
|
24
|
+
# doesn't emit "lines" data, so look up `nil` (never-counted) for
|
|
25
|
+
# every position. The source rows are still useful — e.g. for the
|
|
26
|
+
# HTML report's source view — even without per-line hits.
|
|
27
|
+
def build_lines
|
|
28
|
+
line_coverage = @source_file.coverage_data["lines"] || []
|
|
29
|
+
@source_file.src.map.with_index(1) do |src, i|
|
|
30
|
+
SourceFile::Line.new(src, i, line_coverage[i - 1])
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
# The array the lines are kept in is 0-based whereas the line
|
|
35
|
+
# numbers in the chunks are 1-based (more understandable elsewhere),
|
|
36
|
+
# so each range needs to be shifted down by one to slice into the
|
|
37
|
+
# `lines` array.
|
|
38
|
+
def mark_skipped(lines, chunks)
|
|
39
|
+
chunks.each { |chunk| lines[(chunk.begin - 1)..(chunk.end - 1)].each(&:skipped!) }
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
end
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module SimpleCov
|
|
4
|
+
class SourceFile
|
|
5
|
+
# Represents a single method detected in coverage data.
|
|
6
|
+
# Provides helpers similar to Branch for coverage status.
|
|
7
|
+
class Method
|
|
8
|
+
attr_reader :source_file, :coverage, :class_name, :method_name,
|
|
9
|
+
:start_line, :start_col, :end_line, :end_col
|
|
10
|
+
|
|
11
|
+
def initialize(source_file, info, coverage)
|
|
12
|
+
@source_file = source_file
|
|
13
|
+
@class_name, @method_name, @start_line, @start_col, @end_line, @end_col = info
|
|
14
|
+
@coverage = coverage
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def covered?
|
|
18
|
+
!skipped? && coverage.positive?
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def skipped?
|
|
22
|
+
return @skipped if defined?(@skipped)
|
|
23
|
+
|
|
24
|
+
@skipped = lines.all?(&:skipped?)
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
# Flag the method as skipped directly, without going through its lines.
|
|
28
|
+
def skipped!
|
|
29
|
+
@skipped = true
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
def missed?
|
|
33
|
+
!skipped? && coverage.zero?
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
def lines
|
|
37
|
+
@lines ||= start_line && end_line ? source_file.lines[(start_line - 1)..(end_line - 1)] || [] : []
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
# Whether this method's source range intersects the given inclusive line range.
|
|
41
|
+
def overlaps_with?(line_range)
|
|
42
|
+
return false unless start_line && end_line
|
|
43
|
+
|
|
44
|
+
start_line <= line_range.end && end_line >= line_range.begin
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
def to_s
|
|
48
|
+
"#{class_name}##{method_name}"
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
end
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module SimpleCov
|
|
4
|
+
class SourceFile
|
|
5
|
+
# Builds the `SourceFile::Method` objects for a source file from
|
|
6
|
+
# the raw method-coverage data. Applies the
|
|
7
|
+
# `ignore_methods :eval_generated` filter and marks methods inside
|
|
8
|
+
# `# simplecov:disable` / `# :nocov:` chunks as skipped.
|
|
9
|
+
class MethodBuilder
|
|
10
|
+
def initialize(source_file)
|
|
11
|
+
@source_file = source_file
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def call
|
|
15
|
+
none = {} #: Hash[untyped, Integer]
|
|
16
|
+
raw_methods = @source_file.coverage_data.fetch("methods", none)
|
|
17
|
+
methods = raw_methods.filter_map do |info, hit_count|
|
|
18
|
+
info = RubyDataParser.call(info)
|
|
19
|
+
next if eval_generated_to_ignore?(info)
|
|
20
|
+
|
|
21
|
+
SourceFile::Method.new(@source_file, info, hit_count)
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
process_skipped(methods)
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
private
|
|
28
|
+
|
|
29
|
+
# See `BranchBuilder#eval_generated_condition_to_ignore?` for the
|
|
30
|
+
# rationale. Coverage reports an eval'd `def` at the eval caller's
|
|
31
|
+
# line and name, so a method whose `(name, start_line)` is absent
|
|
32
|
+
# from the real-source `def` set is eval-generated. Only consulted
|
|
33
|
+
# when the user has opted in via
|
|
34
|
+
# `SimpleCov.ignore_methods :eval_generated`. See #1046.
|
|
35
|
+
def eval_generated_to_ignore?(info)
|
|
36
|
+
return false unless SimpleCov.ignored_method?(:eval_generated)
|
|
37
|
+
|
|
38
|
+
positions = @source_file.real_source_positions
|
|
39
|
+
# simplecov:disable branch — nil branch fires only when Prism is unavailable
|
|
40
|
+
return false unless positions
|
|
41
|
+
|
|
42
|
+
# simplecov:enable branch
|
|
43
|
+
|
|
44
|
+
_class_name, name, start_line, * = info
|
|
45
|
+
!positions[:methods].include?([name, start_line])
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
def process_skipped(methods)
|
|
49
|
+
chunks = @source_file.skip_chunks_for(:method)
|
|
50
|
+
return methods if chunks.empty?
|
|
51
|
+
|
|
52
|
+
methods.each do |method|
|
|
53
|
+
method.skipped! if chunks.any? { |chunk| method.overlaps_with?(chunk) }
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
methods
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
end
|