Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support gathering code coverage data for RPC tests with lcov #6813

Merged
merged 6 commits into from
Oct 26, 2015

Conversation

dexX7
Copy link
Contributor

@dexX7 dexX7 commented Oct 12, 2015

Bitcoin Core has a nice way to gather code coverage data, though it only runs the unit tests and (optionally) the BitcoinJ tests.

With this update, the RPC tests (via qa/pull-tester/rpc-tests.py) are also executed, when gathering code coverage data with make cov.

When cleaning, there were several leftovers, and only the coverage related files in src/ were removed, while the ones in the other dirs remained. The leftovers from tests are now also removed, whereby qa/tmp/ is related to the BitcoinJ tests, and cache/ is related to RPC tests.

Because Python is used to run the RPC tests, it is explicitly checked, whether Python is available.

The configuration option --enable-extended-rpc-tests may be used to enable extended RPC tests, and the configuration option --enable-comparison-tool-reorg-tests may be used to enable extended tests via BitcoinJ. Note that the extended tests can take some time.


How to:

Generating coverage data requires lcov, which may be installed with:

sudo apt-get install lcov

There are a few configuration options, but no further setup is necessary.

To include the BitcoinJ tests, get the test tool:

TOOL_URL=https://github.com/theuni/bitcoind-comparisontool/raw/master/pull-tests-8c6666f.jar
TOOL_HASH=a865332b3827abcde684ab79f5f43c083b0b6a4c97ff5508c79f29fee24f11cd
wget $TOOL_URL -O ./share/BitcoindComparisonTool.jar
echo "$TOOL_HASH  ./share/BitcoindComparisonTool.jar" | shasum --algorithm 256 --check

The coverage data can then be gathered with:

./autogen.sh
./configure --enable-lcov --with-comparison-tool=./share/BitcoindComparisonTool.jar
make
make cov

It runs the tests and generates two HTML reports:

  • test_bitcoin.coverage/index.html
  • total.coverage/index.html

Example report:

(only line and function coverage, no branch coverage, without extended tests)

@@ -88,12 +88,16 @@ qrc_*.cpp
# Qt creator
*.pro.user

# NetBeans
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ideally this should be ignored on the dev machine.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm very open to removing it (or other parts), but the precedence was basically the ignore of the Qt Creator project files.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm very open to removing it (or other parts), but the precedence was basically the ignore of the Qt Creator project files.

Yes, those should go too (also as we haven't supported qt creator builds since 0.9).

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm currently not at home, but later I can edit and remove the lines. But just for my understanding: isn't it pretty common to ignore project/editor specific files via the .gitignore?

As for the change:

- # Qt creator
- *.pro.user
- 
- # NetBeans
- nbproject/
- 

Anything else?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In closed-source environments in which everyone uses the same IDE that is common. In open source software, where everyone uses their own editors/IDE/tools, it is less common. Only you know what files your editor produces and this may change from version to version.
The canonical way to do this is thus to create your local gitignore. Add this to ~/.gitconfig:

[core]
    excludesfile = /home/.../.gitignore_global

Then put your favourite tool's excrement filenames in that file :-)
Another option is to use per-project .git/info/exclude. These are not committed either.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See #6878

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I removed the entry for Netbeans.

@laanwj laanwj added the Tests label Oct 13, 2015
@laanwj
Copy link
Member

laanwj commented Oct 13, 2015

Concept ACK - how does this relate to #6804 ?

@dexX7
Copy link
Contributor Author

dexX7 commented Oct 13, 2015

It's not yet clear to me where #6804 is going, so this may be complementary. #6804 seems like a very easy and fast way to get an understanding of what's covered by the RPC tests, while this PR is more heavy. Given that the lcov testing already exists, extending it to include RPC tests seems nevertheless reasonable in my opinion.

@jamesob
Copy link
Contributor

jamesob commented Oct 13, 2015

Agree that this is compatible with #6804; I think this sort of "industrial strength" coverage report is absolutely worth having, but an expedient and simple view into which (if any) RPC functions are going untested is valuable also. Lcov certainly provides a more exact notion of what is tested, but it takes a bit more work to tease out which RPC functions are untested; the simple binary coverage provided in #6804 answers that question immediately and unambiguously, despite being primitive.

#6804 may also make it easier to gate builds down the road based on RPC coverage -- if the list of untested RPC functions calculated is non-empty, we fail. I think this would be nice to do once we have tests in place for each RPC function, It's not immediately apparent to me how we'd do this with just lcov.

So again, I think both are valuable and compatible. What do you think, @dexX7 @laanwj?

@jonasschnelli
Copy link
Contributor

Concept ACK.
What about linking Travis builds with Coveralls (example: https://coveralls.io/github/jonasschnelli/libbtc)?

Not saying that high test coverage stands for quality. But it is a good indicator for people writing new code that they should write unit tests...

@dexX7
Copy link
Contributor Author

dexX7 commented Oct 15, 2015

@jamesob: based on what you posted in #6804, the list of uncovered RPCs is pretty large, and I agree, it's nice to have a quick overview. At some point it probably becomes less useful, if a binary outcome doesn't provide further insight (e.g. once all RPCs are rudimentary covered).

@jonasschnelli: this is an interesting idea. Some time ago I actually tried to combine make cov and cpp-coveralls, but I kinda failed, and unfortunally didn't dig deeper.

On a slightly related note: it looks like coveralls is run two times in your repo (Linux+clang, Linux+gcc), and if this is an issue for you, you may look into a custom script deployment, which supports expressive conditionals (I used it to deploy docs).

One question that arrises is about the extra build time, if coverage data were gathered via Travis + Coveralls. I haven't timed it, but I have the impressionen it takes significantly longer to go though the process, so this would be something to consider. I'd like, if it were nicely integrated though.

@jamesob
Copy link
Contributor

jamesob commented Oct 15, 2015

@dexX7 the console output itself certainly becomes less useful after all RPCs are covered, but I think the lasting value is the ability to easily fail a build if someone introduces a new RPC without writing tests that exercise it as a client.

Anyway, I'll fully defer to you and @laanwj as to whether or not we should proceed with #6804 as well. You guys have much more experience in this ecosystem than I do!

@laanwj
Copy link
Member

laanwj commented Oct 22, 2015

ACK. Works for me.

Until now there were quite a few leftovers, and only the coverage
related files in `src/` were cleaned, while the ones in the other dirs
remained. `qa/tmp/` is related to the BitcoinJ tests, and `cache/` is
related to RPC tests.
Because Python is (going to be) used to run the RPC tests, when
gathering coverage data with lcov, it is explicitly checked, whether
Python is really available.
When using lcov to gather code coverage data, the configuration option
`--enable-extended-rpc-tests` may be used to enable extended RPC tests.
The configuration option `--enable-comparison-tool-reorg-tests` may be
used to enable extended tests via BitcoinJ also for coverage testing.
The RPC tests (via `qa/pull-tester/rpc-tests.py`) are now executed,
when gathering code coverage data, for example with `make cov`.

Generating coverage data requires `lcov`, which can installed with:

    sudo apt-get install lcov

To also use the BitcoinJ tests, get the test tool:

    TOOL_URL=https://github.com/theuni/bitcoind-comparisontool/raw/master/pull-tests-8c6666f.jar
    TOOL_HASH=a865332b3827abcde684ab79f5f43c083b0b6a4c97ff5508c79f29fee24f11cd
    wget $TOOL_URL -O ./share/BitcoindComparisonTool.jar
    echo "$TOOL_HASH  ./share/BitcoindComparisonTool.jar" | shasum --algorithm 256 --check

The coverage data can be generated with:

    ./autogen.sh
    ./configure --enable-lcov --with-comparison-tool=./share/BitcoindComparisonTool.jar
    make
    make cov

Optionally the options `--enable-extended-rpc-tests` and
`--enable-comparison-tool-reorg-tests` may be used to enable more time
consuming tests.

It then runs the tests and generates two HTML reports:

 - test_bitcoin.coverage/index.html
 - total.coverage/index.html
@laanwj laanwj merged commit d80e3cb into bitcoin:master Oct 26, 2015
laanwj added a commit that referenced this pull request Oct 26, 2015
d80e3cb Support gathering of code coverage data for RPC tests (dexX7)
e3b5e6c Run extended BitcoinJ tests for coverage based on config (dexX7)
45d4ff0 Add config option to enable extended RPC tests for code coverage (dexX7)
8e3a27b Require Python for RPC tests, when using lcov (dexX7)
d425877 Remove coverage and test related files, when cleaning up (dexX7)
4d2a926 Ignore coverage data related and temporary test files (dexX7)
@Sjors
Copy link
Member

Sjors commented Nov 22, 2017

@jonasschnelli wrote:

What about linking Travis builds with Coveralls

I just noticed #11680 which reminded me of this. Is it worth making an issue / PR?

@maflcko
Copy link
Member

maflcko commented Nov 22, 2017

I am running nightly reports: https://marcofalke.github.io/btc_cov/

@bitcoin bitcoin locked as resolved and limited conversation to collaborators Sep 8, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants