Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xaizek/uncov
uncov(er) is a tool that collects and processes code coverage reports.
https://github.com/xaizek/uncov
agpl command-line-app command-line-tool coverage coverage-changes coverage-report coverage-reports cpp cpp11 gcov test-coverage web-interface
Last synced: 7 days ago
JSON representation
uncov(er) is a tool that collects and processes code coverage reports.
- Host: GitHub
- URL: https://github.com/xaizek/uncov
- Owner: xaizek
- License: agpl-3.0
- Created: 2017-01-09T17:12:18.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-08-08T13:43:19.000Z (3 months ago)
- Last Synced: 2024-11-01T01:22:03.939Z (14 days ago)
- Topics: agpl, command-line-app, command-line-tool, coverage, coverage-changes, coverage-report, coverage-reports, cpp, cpp11, gcov, test-coverage, web-interface
- Language: C++
- Homepage:
- Size: 1.93 MB
- Stars: 12
- Watchers: 7
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
**uncov**, _v0.5_, _2016 – 2024_
_This file last updated on 20 January, 2024_
1. [Description](#description)
2. [Supported Environment](#supported-environment)
3. [Usage/example/screenshots](#usage)
4. [Credits](#credits)
5. [License](#license)## Description ##
`uncov` is a tool that collects and processes coverage reports.
By storing history of coverage reports it allows one to view how code coverage
changes over time, compare changes that happened and view current state of the
coverage.The tool is deeply integrated with git repository of processed projects and thus
avoids generation of static reports. Data is bound to repository information,
but can be freely shared by several copies of the same repository (builds
referring to unavailable git objects just won't be accessible).Provided command-line interface should be familiar to most of git users and
helps to avoid switching to a browser to verify code coverage.It's also possible to display coverage information in a browser, say, on a CI
server. This makes uncov something like self-hosted coveralls.io analogue (but
note that Web-interface is secondary in this case and isn't feature complete).### Features ###
* Code highlighting.
* Comparison of coverage.
* Displaying parts of files that need attention with regard to coverage.
* Can be used from Vim via the plugin provided.
* Can be used on CI to display coverage in a browser (via Web-UI).### Structure ###
Storage management tool itself is language independent and is relying on
complementary tools to fetch and transform coverage data from language specific
coverage harness.Importer of coverage for C and C++ languages that collects data from `gcov` is
provided.### Adding support for a language ###
Support for other languages can be added by converting existing coverage tools
or even using them as is. The `new-json` subcommand accepts JSON that's used by
[coveralls.io][coveralls] API, all what's needed is to extract this JSON and
pipe it to `uncov new-json` (some tools might already have a command-line option
like `--dump`, others could be extended by adding it).### Status ###
Overall structure and basic elements are expected to remain in place, however
they aren't finalized and changes for the sake of improvement are possible.
Databases will be migrated if schema changes, so previously collected data won't
be lost.## Supported Environment ##
Expected to work in Unix-like environments.
### Prerequisites ###
* [GNU Make][make].
* C++11 compatible compiler.
* [Boost][boost], tested with 1.55 and 1.59, but older versions might work.
* [libgit2][libgit2].
* [libsqlite3][sqlite].
* libsource-highlight from [GNU Source-highlight][srchilite].
* [zlib][zlib].
* (optional) [tntnet][tntnet] for Web-UI.
* (optional) [pandoc][pandoc] for regenerating man page.
* (optional) [python][python] for collecting coverage for C and C++ using
deprecated `uncov-gcov` instead of a subcommand.### Ubuntu packages ###
```
apt install -y make clang zlib1g-dev libsqlite3-dev libboost1.74-all-dev libsource-highlight-dev libgit2-dev
# optionally, if you want to build Web-UI
apt install -y libcxxtools-dev libtntnet-dev`
# optionally, if you intent to edit docs/*/*.md
apt install -y pandoc
```## Usage ##
Using subcommand (should be faster and less problematic):
# drop coverage counters from previous run
find . -name '*.gcda' -delete
# << run tests here >>
# collect coverage (--capture-worktree automatically makes stray commit if
# worktree is dirty)
uncov new-gcovi --exclude tests/ --exclude web/ --capture-worktreeUsing deprecated Python script:
# reset coverage counters from previous runs
find . -name '*.gcda' -delete
# << run tests here >>
# generage coverage for every object file found (change "." to build root)
find . -name '*.o' -exec gcov -p {} +
# collect coverage (--capture-worktree automatically makes stray commit if
# worktree is dirty)
uncov-gcov --root . --no-gcov --capture-worktree --exclude tests | uncov new
# remove coverage reports
find . -name '*.gcov' -delete### Example ###
The easiest way of checking out `uncov` is by using it on itself (assuming that
you have just built it or just happen to have all the necessary development
dependencies).In root of the project run `make self-coverage` and then do
`release/uncov build` to see something similar to:![build](data/screenshots/example/build.png)
`release/uncov dirs` shows coverage per directory:
![dirs](data/screenshots/example/dirs.png)
`release/uncov changed` shows files which have their coverage changed:
![changed](data/screenshots/example/changed.png)
`release/uncov show src/SubCommand.cpp` shows annotated `src/SubCommand.cpp`
file:![show](data/screenshots/example/show.png)
When most of a file is covered, one probably wants to see just what's not yet
covered, this can be done with `release/uncov missed` command:![missed](data/screenshots/example/missed.png)
### More Screenshots ###
Not everything can be demonstrated by self-coverage example above, so here are
some other interesting things. List of latest builds (`uncov builds`):![builds](data/screenshots/builds.png)
Results of comparison (`uncov diff`):
![diff](data/screenshots/diff.png)
Annotated source code in Web-UI:
![Web-UI](data/screenshots/webui-file.png)
Annotated diff in Web-UI:
![Web-UI](data/screenshots/webui-diff.png)
### Web-UI Demo ###
Deployed Web-interface can be seen [here](http://cov.vifm.info/).
## Credits ##
* [LCOV][lcov] project is the source of useful ideas and primary source of
inspiration.
* [coveralls.io][coveralls] service is second project which significantly shaped
this tool.
* Code of `uncov-gcov` is based on [cpp-coveralls][cpp-coveralls].
* [gcov-marker.vim][vim-gcov-marker] was the source of idea of filling location
list with not covered lines in the plugin.## License ##
![AGPLv3](data/agplv3.png)
Version 3 of the GNU Affero General Public License.
[lcov]: http://ltp.sourceforge.net/coverage/lcov.php
[coveralls]: https://coveralls.io/
[cpp-coveralls]: https://github.com/eddyxu/cpp-coveralls
[make]: https://www.gnu.org/software/make/
[boost]: http://www.boost.org/
[libgit2]: https://libgit2.github.com/
[sqlite]: https://www.sqlite.org/
[srchilite]: https://www.gnu.org/software/src-highlite/
[zlib]: http://zlib.net/
[tntnet]: http://www.tntnet.org/
[pandoc]: http://pandoc.org/
[python]: https://www.python.org/
[vim-gcov-marker]: https://github.com/m42e/vim-gcov-marker