danielpalme / ReportGenerator

ReportGenerator converts coverage reports generated by coverlet, OpenCover, dotCover, Visual Studio, NCover, Cobertura, JaCoCo, Clover, gcov or lcov into human readable reports in various formats.

Home Page:https://reportgenerator.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Visual Studio .coveragexml: ReportGenerator ignores compiler-generated classes

RoadTrain opened this issue · comments

Describe the bug
Hi!
When class methods contain local functions, the .net compiler (roslyn-era) generates separate classes for them. These classes (and their methods) are ignored by ReportGenerator, while there can be a lot of logic in them. The main problem is that line and block coverages of these local functions is lost in the generated report. We have classes which mainly consist of local functions, and the coverage metrics are very off for them, compared to what Visual Studio shows.

I have found a very similar issue which was closed without resolution #120.

To Reproduce
I have attached a sample hand-crafted coveragexml where class MyScenario contains both a class method and two local functions and a resulting report. Line numbers are off but it doesn't matter because you can still see the main problem -- compiler-generated classes are ignored.
vs_issue_sample.zip

Thanks for the detailed description and the sample.
I will have a look as soon as possible.

After taking a quick glance at the code, I can see two things:

  1. Currently there's a special case for compiler-generated iterator methods:
    if (methodKeyName.Contains("MoveNext()"))
  2. Lambdas (and consequently local functions) are excluded (which dates back to the initial import in 2015):
    || LambdaMethodNameRegex.IsMatch(fullName))

I just found time to have a closer look. Sorry for the delay.

The main problem is that line and block coverages of these local functions is lost in the generated report. We have classes which mainly consist of local functions, and the coverage metrics are very off for them, compared to what Visual Studio shows.

Compiler generated classes are not listed on the summary page, that's correct. But the relevant lines are processed within the corresponding parent class.
In your example the summary report only shows the classes MyLogic and MyScenario.
But if you look into the MyScenario report, you will see that all coverable lines are considered. Even the block with line 729-738, which belongs to a compiler generated class.

  1. Currently there's a special case for compiler-generated iterator methods:

Yes, but that's just a naming thing. The name MoveNext is not very helpful, instead the "correct" method name is retrieved.

  1. Lambdas (and consequently local functions) are excluded

Yes, but only in the list of methods and their metrics. This does not affect the overall code coverage.

Does this help? I'm I missing something?

The main issue we had is the 'Blocks covered' method metric which was incorrect (i.e. apparently not including compiler-generated local functions). It seems to me that the Lines metric is calculated correctly indeed.

Can you take a look at how it's calculated? Maybe the same 'aggregation' logic is missing for block coverage?

And what about properties? They are excluded from the report too, do they count towards line metrics like compiler-generated methods do? In theory, property getters/setters can (and often do) have some logic in them, so they should count towards line/block coverage metrics.

We have been digging further, and now I'm not sure there's a problem with the library. Please put this on hold, I'll be back with a verdict shortly.

So our current understanding is that including lambda/local functions in total metrics (as suggested by me) is incorrect because they are already included by Visual Studio coverage. So the premise of this bug report is false, sorry for that.

They only thing that we would like to have is the ability to "see" these functions, i.e. be able to extract their metadata with ReportGenerator.Core library to show them on our dashboard, without affecting metrics.

They only thing that we would like to have is the ability to "see" these functions, i.e. be able to extract their metadata with ReportGenerator.Core library to show them on our dashboard, without affecting metrics.

I will see what I can do. Will come back to you as soon as possible.

I think I have found a solution. Will publish a new release in the next days.

Release 5.1.26 is now available. Could you please test if this works for you?

Thanks! I will test it in the following days and come back.