Project

General

Profile

ActionsLike0

Feature #9508

closed

Add method coverage and branch coverage metrics

Added by srawlins (Sam Rawlins) about 11 years ago. Updated about 6 years ago.

Status:
Closed
Target version:
-
[ruby-core:60637]

Description

Since the Coverage extension was introduced in Ruby 1.9, Ruby has had built-in line code coverage. Ruby should support more of the basic code coverage metrics [1]. I have a pull request on GitHub ( https://github.com/ruby/ruby/pull/511 ) to add Method Coverage (Function Coverage) and Branch Coverage. I'd love feedback to improve it.

Currently, with this feature, Coverage.result would look like:

{"/Users/sam/code/ruby/cov_method.rb" => {
  lines: [1, 2, 2, 20, nil, nil, 2, 2, 2, nil, 0, nil, nil, nil, 1, 0, nil, nil, 1, 1, nil, nil, 1],
  methods: {1=>2, 15=>0, 19=>1},
  branches: {8=>2, 11=>0}
}}

which includes

  • the current Ruby line coverage report,
  • as well as a method report (The method defined on line 1 was called 2 times; the method on line 15 was called 0 times; ...),
  • and a branch report (the branch on line 8 was called 2 times; the branch on line 11 was called 0 times).

Branches

Branches include the bodies of if, elsif, else, unless, and when statements, which are all tracked with this new feature. However, this feature is not aware of void bodies, for example:

if foo
  :ok
end

will report that only one branch exists in the file. It would be better to declare that there is a branch body on line 2, and a void branch body on line 3, or perhaps line 1. This would require the keys of the [:branch] Hash to be something other than line numbers. Perhaps label_no? Perhaps nd_type(node) paired with line or label_no?

More Coverage

I think that Statement Coverage, and Condition Coverage could be added to this feature, using the same techniques.

Caveats

I was not very clear on the bit-arrays used in ruby.h, and just used values for the new macros that seemed to work.

Also, I would much rather use Ranges to identify a branch, so that a Coverage analyzer like SimpleCov won't need any kind of Ruby parser to identify and highlight a full chunk of code as a tested branch, or a not tested branch. I'm trying to find how that could be implemented...

[1] Wikipedia has good definitions: http://en.wikipedia.org/wiki/Code_coverage


Files

pull-request-511.patch (26.7 KB) pull-request-511.patch srawlins (Sam Rawlins), 02/10/2014 06:27 PM
pull-request-511.patch (38.5 KB) pull-request-511.patch srawlins (Sam Rawlins), 02/21/2014 05:03 AM
pull-request-511.patch (57 KB) pull-request-511.patch srawlins (Sam Rawlins), 02/26/2014 03:19 AM

Related issues 1 (0 open1 closed)

Related to Ruby - Feature #13901: Add branch coverage ClosedActions

Updated by srawlins (Sam Rawlins) about 11 years ago

Updated by srawlins (Sam Rawlins) about 11 years ago

Updated by srawlins (Sam Rawlins) about 11 years ago

Updated by mame (Yusuke Endoh) almost 11 years ago

  • Status changed from Open to Feedback

Updated by mame (Yusuke Endoh) almost 11 years ago

  • Category set to core
  • Status changed from Feedback to Assigned
  • Assignee set to mame (Yusuke Endoh)
  • Target version set to 2.2.0
#26

Updated by naruse (Yui NARUSE) about 7 years ago

  • Target version deleted (2.2.0)
#27

Updated by mame (Yusuke Endoh) about 6 years ago

Updated by mame (Yusuke Endoh) about 6 years ago

  • Status changed from Assigned to Closed
ActionsLike0

Also available in: Atom PDF