GithubHelp home page GithubHelp logo

Comments (11)

danielpalme avatar danielpalme commented on May 20, 2024 1

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

from reportgenerator.

RoadTrain avatar RoadTrain commented on May 20, 2024 1

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.

from reportgenerator.

danielpalme avatar danielpalme commented on May 20, 2024 1

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.

from reportgenerator.

RoadTrain avatar RoadTrain commented on May 20, 2024 1

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

from reportgenerator.

RoadTrain avatar RoadTrain commented on May 20, 2024

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))

from reportgenerator.

danielpalme avatar danielpalme commented on May 20, 2024

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?

from reportgenerator.

RoadTrain avatar RoadTrain commented on May 20, 2024

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?

from reportgenerator.

RoadTrain avatar RoadTrain commented on May 20, 2024

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.

from reportgenerator.

RoadTrain avatar RoadTrain commented on May 20, 2024

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.

from reportgenerator.

danielpalme avatar danielpalme commented on May 20, 2024

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

from reportgenerator.

danielpalme avatar danielpalme commented on May 20, 2024

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

from reportgenerator.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.