123456789_123456789_123456789_123456789_123456789_

Class: SimpleCov::SourceFile

Relationships & Source Files
Namespace Children
Classes:
Inherits: Object
Defined in: lib/simplecov/source_file.rb,
lib/simplecov/source_file/branch.rb,
lib/simplecov/source_file/line.rb,
lib/simplecov/source_file/method.rb

Overview

Representation of a source file including it's coverage data, source code, source lines and featuring helpers to interpret that data.

Constant Summary

Class Method Summary

Instance Attribute Summary

Instance Method Summary

Constructor Details

.new(filename, coverage_data, loaded: true) ⇒ SourceFile

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 19

def initialize(filename, coverage_data, loaded: true)
  @filename = filename
  @coverage_data = coverage_data
  @loaded = loaded
end

Instance Attribute Details

#coverage_data (readonly)

The array of coverage data received from the Coverage.result

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 17

attr_reader :coverage_data

#filename (readonly)

The full path to this source file (e.g. /User/colszowka/projects/simplecov/lib/simplecov/source_file.rb)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 15

attr_reader :filename

#no_branches?Boolean (readonly)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 109

def no_branches?
  total_branches.empty?
end

#no_lines?Boolean (readonly)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 95

def no_lines?
  lines.empty? || (lines.length == never_lines.size)
end

#not_loaded?Boolean (readonly)

Whether this file was added via track_files but never loaded/required.

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 184

def not_loaded?
  !@loaded
end

Instance Method Details

#branch_coverage_statistics (private)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 405

def branch_coverage_statistics
  # Files added via track_files but never loaded/required have no branch
  # data. Report 0% instead of misleading 100% (see #902).
  return {branch: CoverageStatistics.new(covered: 0, missed: 0, percent: 0.0)} if not_loaded? && covered_branches.empty? && missed_branches.empty?

  {
    branch: CoverageStatistics.new(
      covered: covered_branches.size,
      missed:  missed_branches.size
    )
  }
end

#branches

Return all the branches inside current source file

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 105

def branches
  @branches ||= build_branches
end

#branches_coverage_percent

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 113

def branches_coverage_percent
  coverage_statistics[:branch]&.percent
end

#branches_for_line(line_number)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 149

def branches_for_line(line_number)
  branches_report.fetch(line_number, [])
end

#branches_report

Return hash with key of line number and branch coverage count as value

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 125

def branches_report
  @branches_report ||= build_branches_report
end

#build_branch(branch_data, hit_count, condition_start_line) (private)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 382

def build_branch(branch_data, hit_count, condition_start_line)
  type, _id, start_line, _start_col, end_line, _end_col = branch_data

  SourceFile::Branch.new(
    start_line: start_line,
    end_line:   end_line,
    coverage:   hit_count,
    inline:     start_line == condition_start_line,
    type:       type
  )
end

#build_branchesArray (private)

Call recursive method that transform our static hash to array of objects

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 292

def build_branches
  coverage_branch_data = coverage_data["branches"] || {}
  branches = coverage_branch_data.flat_map do |condition, coverage_branches|
    build_branches_from(condition, coverage_branches)
  end

  process_skipped_branches(branches)
end

#build_branches_from(condition, branches) (private)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 368

def build_branches_from(condition, branches)
  # the format handed in from the coverage data is like this:
  #
  #     [:then, 4, 6, 6, 6, 10]
  #
  # which is [type, id, start_line, start_col, end_line, end_col]
  _condition_type, _condition_id, condition_start_line, * = restore_ruby_data_structure(condition)

  branches.map do |branch_data, hit_count|
    branch_data = restore_ruby_data_structure(branch_data)
    build_branch(branch_data, hit_count, condition_start_line)
  end
end

#build_branches_reportHash (private)

Build full branches report Root branches represent the wrapper of all condition state that have inside the branches

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 281

def build_branches_report
  branches.reject(&:skipped?).each_with_object({}) do |branch, coverage_statistics|
    coverage_statistics[branch.report_line] ||= []
    coverage_statistics[branch.report_line] << branch.report
  end
end

#build_lines (private)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 254

def build_lines
  lines = src.map.with_index(1) do |src, i|
    SimpleCov::SourceFile::Line.new(src, i, coverage_data["lines"][i - 1])
  end
  process_skipped_lines(lines)
end

#build_methods (private)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 418

def build_methods
  coverage_data.fetch("methods", {}).map do |info, hit_count|
    info = restore_ruby_data_structure(info)
    SourceFile::Method.new(self, info, hit_count)
  end
end

#build_no_cov_chunks (private)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 195

def build_no_cov_chunks
  no_cov_lines = src.map.with_index(1).select { |line_src, _index| LinesClassifier.no_cov_line?(line_src) }

  # if we have an uneven number of nocovs we assume they go to the
  # end of the file, the source doesn't really matter
  # Can't deal with this within the each_slice due to differing
  # behavior in JRuby: jruby/jruby#6048
  no_cov_lines << ["", src.size] if no_cov_lines.size.odd?

  no_cov_lines.each_slice(2).map do |(_line_src_start, index_start), (_line_src_end, index_end)|
    index_start..index_end
  end
end

#coverage_statistics

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 38

def coverage_statistics
  @coverage_statistics ||=
    {
      **line_coverage_statistics,
      **branch_coverage_statistics,
      **method_coverage_statistics
    }
end

#covered_branchesArray

Select the covered branches Here we user tree schema because some conditions like case may have additional else that is not in declared inside the code but given by default by coverage report

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 136

def covered_branches
  @covered_branches ||= branches.select(&:covered?)
end

#covered_lines

Returns all covered lines as SourceFile::Line

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 55

def covered_lines
  @covered_lines ||= lines.select(&:covered?)
end

#covered_methods

Return all covered methods

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 170

def covered_methods
  @covered_methods ||= methods.select(&:covered?)
end

#covered_percent

The coverage for this file in percent. 0 if the file has no coverage lines

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 87

def covered_percent
  coverage_statistics[:line]&.percent
end

#covered_strength

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 91

def covered_strength
  coverage_statistics[:line]&.strength
end

#ensure_remove_undefs(file_lines) (private)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 243

def ensure_remove_undefs(file_lines)
  # invalid/undef replace are technically not really necessary but nice to
  # have and work around a JRuby incompatibility. Also moved here from
  # simplecov-html to have encoding shenaningans in one place. See #866
  # also setting these option on `file.set_encoding` doesn't seem to work
  # properly so it has to be done here.
  file_lines.each do |line|
    line.encode!("UTF-8", invalid: :replace, undef: :replace) unless line.encoding == Encoding::UTF_8
  end
end

#line(number)

Access SourceFile::Line source lines by line number

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 82

def line(number)
  lines[number - 1]
end

#line_coverage_statistics (private)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 394

def line_coverage_statistics
  {
    line: CoverageStatistics.new(
      total_strength: lines_strength,
      covered:  covered_lines.size,
      missed:   missed_lines.size,
      omitted:  never_lines.size
    )
  }
end

#line_with_missed_branch?(line_number) ⇒ Boolean

Check if any branches missing on given line number

Parameters:

  • line_number (Integer)
[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 160

def line_with_missed_branch?(line_number)
  branches_for_line(line_number).any? { |_type, count| count.zero? }
end

#lines Also known as: #source_lines

Returns all source lines for this file as instances of SourceFile::Line, and thus including coverage data. Aliased as :source_lines

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 49

def lines
  @lines ||= build_lines
end

#lines_of_code

Returns the number of relevant lines (covered + missed)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 77

def lines_of_code
  coverage_statistics[:line]&.total
end

#lines_strength (private)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 270

def lines_strength
  lines.sum { |line| line.coverage.to_i }
end

#load_source (private)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 209

def load_source
  lines = []
  # The default encoding is UTF-8
  File.open(filename, "rb:UTF-8") do |file|
    current_line = file.gets

    if shebang?(current_line)
      lines << current_line
      current_line = file.gets
    end

    read_lines(file, lines, current_line)
  end
end

#method_coverage_statistics (private)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 425

def method_coverage_statistics
  return {method: CoverageStatistics.new(covered: 0, missed: 0, percent: 0.0)} if not_loaded? && covered_methods.empty? && missed_methods.empty?

  {
    method: CoverageStatistics.new(
      covered: covered_methods.size,
      missed:  missed_methods.size
    )
  }
end

#methods

Return all methods detected in this source file

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 165

def methods
  @methods ||= build_methods
end

#methods_coverage_percent

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 179

def methods_coverage_percent
  coverage_statistics[:method]&.percent
end

#missed_branchesArray

Select the missed branches with coverage equal to zero

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 145

def missed_branches
  @missed_branches ||= branches.select(&:missed?)
end

#missed_lines

Returns all lines that should have been, but were not covered as instances of SourceFile::Line

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 61

def missed_lines
  @missed_lines ||= lines.select(&:missed?)
end

#missed_methods

Return all missed methods

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 175

def missed_methods
  @missed_methods ||= methods.select(&:missed?)
end

#never_lines

Returns all lines that are not relevant for coverage as SourceFile::Line instances

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 67

def never_lines
  @never_lines ||= lines.select(&:never?)
end

#no_cov_chunks (private)

no_cov_chunks is zero indexed to work directly with the array holding the lines

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 191

def no_cov_chunks
  @no_cov_chunks ||= build_no_cov_chunks
end

#parse_ruby_array_string(str) (private)

Parse a string like '[:if, 0, 3, 4, 3, 21]' or '["ClassName", :method1, 2, 2, 5, 5]' back into a Ruby array, handling integers, symbols, and quoted strings. -- StringScanner#scan requires Regexp on Ruby < 3.0

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 328

def parse_ruby_array_string(str) # rubocop:disable Metrics
  scanner = StringScanner.new(str.strip)
  scanner.skip(/\[/)
  elements = []

  until scanner.eos?
    scanner.skip(/\s*,?\s*/)
    break if scanner.scan(/\]/) || scanner.eos?

    if scanner.scan(/"/)
      elements << scan_quoted_string(scanner)
    elsif scanner.scan(/:(\w+[?!=]?)/)
      elements << scanner[1].to_sym
    elsif scanner.scan(/-?\d+/)
      elements << scanner.matched.to_i
    elsif scanner.scan(/[^,\]\s]+/)
      elements << scanner.matched
    else
      scanner.scan(/./)
    end
  end

  elements
end

#process_skipped_branches(branches) (private)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 301

def process_skipped_branches(branches)
  return branches if no_cov_chunks.empty?

  branches.each do |branch|
    branch.skipped! if no_cov_chunks.any? { |no_cov_chunk| branch.overlaps_with?(no_cov_chunk) }
  end

  branches
end

#process_skipped_lines(lines) (private)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 261

def process_skipped_lines(lines)
  # the array the lines are kept in is 0-based whereas the line numbers in the nocov
  # chunks are 1-based and are expected to be like this in other parts (and it's also
  # arguably more understandable)
  no_cov_chunks.each { |chunk| lines[(chunk.begin - 1)..(chunk.end - 1)].each(&:skipped!) }

  lines
end

#project_filename

The path to this source file relative to the projects directory

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 26

def project_filename
  @filename.delete_prefix(SimpleCov.root)
end

#read_lines(file, lines, current_line) (private)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 228

def read_lines(file, lines, current_line)
  return lines unless current_line

  set_encoding_based_on_magic_comment(file, current_line)
  lines.concat([current_line], ensure_remove_undefs(file.readlines))
end

#relevant_lines

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 99

def relevant_lines
  lines.size - never_lines.size - skipped_lines.size
end

#restore_ruby_data_structure(structure) (private)

Since we are dumping to and loading from JSON, and we have arrays as keys those don't make their way back to us intact e.g. just as a string.

This safely parses the string representation back to a Ruby array without using eval. See #801.

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 317

def restore_ruby_data_structure(structure)
  # Tests use the real data structures (except for integration tests) so no need to
  # put them through here.
  return structure if structure.is_a?(Array)

  parse_ruby_array_string(structure.to_s)
end

#scan_quoted_string(scanner) (private)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 353

def scan_quoted_string(scanner)
  string = +""
  until scanner.scan(/"/)
    if scanner.scan(/\\(.)/)
      string << scanner[1]
    elsif scanner.scan(/[^"\\]+/)
      string << scanner.matched
    else
      break
    end
  end
  string
end

#set_encoding_based_on_magic_comment(file, line) (private)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 235

def set_encoding_based_on_magic_comment(file, line)
  # Check for encoding magic comment
  # Encoding magic comment must be placed at first line except for shebang
  if (match = RUBY_FILE_ENCODING_MAGIC_COMMENT_REGEX.match(line))
    file.set_encoding(match[1], "UTF-8")
  end
end

#shebang?(line) ⇒ Boolean (private)

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 224

def shebang?(line)
  SHEBANG_REGEX.match?(line)
end

#skipped_lines

Returns all lines that were skipped as SourceFile::Line instances

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 72

def skipped_lines
  @skipped_lines ||= lines.select(&:skipped?)
end

#source

Alias for #src.

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 36

alias source src

#source_lines

Alias for #lines.

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 52

alias source_lines lines

#src Also known as: #source

The source code for this file. Aliased as :source

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 31

def src
  # We intentionally read source code lazily to
  # suppress reading unused source code.
  @src ||= load_source
end

#total_branches

Return the relevant branches to source file

[ GitHub ]

  
# File 'lib/simplecov/source_file.rb', line 119

def total_branches
  @total_branches ||= covered_branches + missed_branches
end