Giter Site home page Giter Site logo

marklam / altcover Goto Github PK

View Code? Open in Web Editor NEW

This project forked from stevegilham/altcover

0.0 1.0 0.0 7.32 MB

Cross-platform coverage gathering and processing tool set for .net/.net core and Mono

License: MIT License

F# 87.50% C# 3.21% XSLT 2.22% PowerShell 2.44% HTML 4.64%

altcover's Introduction

altcover

Instrumenting coverage tool for .net (framework 2.0+ and core) and Mono, reimplemented and extended almost beyond recognition from dot-net-coverage, plus a set of related utilities for processing the results from this and from other programs producing similar output formats.

Never mind the fluff -- how do I get started?

Start with the Quick Start guide

The latest releases can be downloaded from releases, but the easiest (and most automated) way is through the nuget packages.

What's in the box?

For Mono, .net framework and .net core, except as noted

  • AltCover, a command-line tool for recording code coverage (including dotnet and global tool versions)
  • MSBuild tasks to drive the tool, including dotnet test integration
  • An API for the above functionality, with Fake and Cake integration
  • A PowerShell module for PowerShell 5.1 and PowerShell Core 6+ containing a cmdlet that drives the tool, and other cmdlets for manipulating coverage reports
  • A coverage visualizer tool

NuGet Packages

Why altcover?

As the name suggests, it's an alternative coverage approach. Rather than working by hooking the .net profiling API at run-time, it works by weaving the same sort of extra IL into the assemblies of interest ahead of execution. This means that it should work pretty much everywhere, whatever your platform, so long as the executing process has write access to the results file. You can even mix-and-match between platforms used to instrument and those under test.

In particular, while instrumenting .net core assemblies "just works" with this approach, it also supports Mono, as long as suitable .mdb (or .pdb, in recent versions) symbols are available. One major limitation here is that the .mdb format only stores the start location in the source of any code sequence point, and not the end; consequently any nicely coloured reports that take that information into account may show a bit strangely.

Why altcover? -- the back-story of why it was ever a thing

Back in 2010, the new .net version finally removed the deprecated profiling APIs that the free NCover 1.5.x series relied upon. The first version of AltCover was written to both fill a gap in functionality, and to give me an excuse for a ground-up F# project to work on. As such, it saw real production use for about a year and a half, until OpenCover reached a point where it could be used for .net4/x64 work (and I could find time to adapt everything downstream that consumed NCover format input).

Fast forwards to autumn 2017, and I get the chance to dust the project off, with the intention of saying that it worked on Mono, too -- and realise that it's déja vu all over again, because .net core didn't yet have profiler based coverage tools either, and the same approach would work there as well.

Other notes

  1. On old-fashioned .net framework, the ProcessExit event handling window of ~2s is sufficient for processing significant bodies of code under test (several 10s of kloc, as observed in production back in the '10-'11 timeframe); under dotnet test the vstest.console process imposes a 100ms guillotine, even though .net Core imposes no time-limit of its own. This is about enough time to fill in an NCover report for a program of no more than 1kloc, hence the development of a "write it all promptly to file and post-process" Runner mode. With version 5.3 and above, the dotnet test integration now hooks the VSTest in-process data collection, allowing an indefinite window to write collected data from memory, thus removing the file I/O bottleneck.

  2. Under Mono on non-Windows platforms the default values of --debug:full or --debug:pdbonly generate no symbols from F# projects -- and without symbols, such assemblies cannot be instrumented. Unlike with C# projects, where the substitution appears to be automatic, to use the necessary --debug:portable option involves explicitly hand editing the old-school .fsproj file to have <DebugType>portable</DebugType>.

Continuous Integration

Build AppVeyor Build status Test status Build history Travis Build status Build history
Unit Test coverage Coveralls Coverage Status

Usage

See the Wiki page for details

Roadmap

See the current project and long term research items for details; though ad hoc items not in the projects will get added as inspiration or need arise.

All To do and On Hold items are implicitly up for grabs and Help Wanted; most of the current project items are XML manipulation or GUI programming.

I am considering retiring the legacy framework/Mono support after the release of .net 5, contingent on having suitable replacements for Framework-only static analysis tools.

Building

Tooling

All platforms

It is assumed that the following are available

.net core SDK 3.1.201 (dotnet) -- try https://www.microsoft.com/net/download
PowerShell Core 7.0.0 or later (pwsh) -- try https://github.com/powershell/powershell

The build may target netstandard2.0 or netcoreapp2.x, but does not need any pre-3.1 runtimes to be installed.

Windows

You will need Visual Studio VS2019 (Community Edition) v16.5.3 or later with F# language support (or just the associated build tools and your editor of choice). The NUnit3 Test Runner will simplify the basic in-IDE development cycle. Note that some of the unit tests expect that the separate build of test assemblies under Mono, full .net framework and .net core has taken place; there will be around 20 failures when running the unit tests in Visual Studio from clean when those expected assemblies are not found.

For GTK# support, the GTK# latest 2.12 install is expected -- try https://www.mono-project.com/download/stable/#download-win -- while the latest releases of the GTK#3 libraries will download the native support if the expected version is not detected.

In preparation for the .net 5 unification, on Windows, the default full build uses new-style projects under altcover.core.sln with a few test/helper old-style projects built from MCS.sln; and the build for release only needs these.

*nix

It is assumed that mono (version 6.8.x) and dotnet are on the PATH already, and everything is built from the command line, with your favourite editor used for coding.

Bootstrapping

Start by setting up with dotnet tool restore; this sets up local tools including dotnet fake. Then dotnet fake run ./Build/setup.fsx to do the rest of the set-up.

Normal builds

Running dotnet fake run ./Build/build.fsx performs a full build/test/package process.

Use dotnet fake run ./Build/build.fsx --target <targetname> to run to a specific target.

If the build fails

If there's a passing build on the CI servers for this commit, then it's likely to be one of the intermittent build failures that can arise from the tooling used. The standard remedy is to try again.

Unit Tests

The tests in the AltCover.Test project are ordered in the same dependency order as the code within the AltCover project (the later Runner tests aside). While working on any given layer, it would make sense to comment out all the tests for later files so as to show what is and isn't being covered by explicit testing, rather than merely being cascaded through.

Thanks to

  • AppVeyor for allowing free build CI services for Open Source projects
  • travis-ci for allowing free build CI services for Open Source projects
  • Coveralls for allowing free services for Open Source projects

altcover's People

Contributors

jasongin avatar stevegilham avatar

Watchers

 avatar

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.