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

pull dexX7 wants to merge 6 commits into bitcoin:master from dexX7:btc-test-lcov-rpc changing 4 files +45 −7
  1. dexX7 commented at 10:10 PM on October 12, 2015: contributor

    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)

  2. in .gitignore:None in 5e75bae983 outdated
      87 | @@ -88,12 +88,16 @@ qrc_*.cpp
      88 |  # Qt creator
      89 |  *.pro.user
      90 |  
      91 | +# NetBeans
    


    fanquake commented at 8:09 AM on October 13, 2015:

    Ideally this should be ignored on the dev machine.


    dexX7 commented at 10:26 AM on October 13, 2015:

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


    laanwj commented at 11:17 AM on October 20, 2015:

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


    dexX7 commented at 11:00 AM on October 22, 2015:

    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?


    laanwj commented at 10:27 AM on October 23, 2015:

    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.


    laanwj commented at 10:35 AM on October 23, 2015:

    See #6878


    dexX7 commented at 9:02 PM on October 24, 2015:

    I removed the entry for Netbeans.

  3. laanwj added the label Tests on Oct 13, 2015
  4. laanwj commented at 9:45 AM on October 13, 2015: member

    Concept ACK - how does this relate to #6804 ?

  5. dexX7 commented at 10:24 AM on October 13, 2015: contributor

    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.

  6. jamesob commented at 4:44 PM on October 13, 2015: member

    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?

  7. jonasschnelli commented at 6:32 PM on October 13, 2015: 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...

  8. dexX7 force-pushed on Oct 15, 2015
  9. dexX7 commented at 1:11 PM on October 15, 2015: contributor

    @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.

  10. jamesob commented at 3:51 PM on October 15, 2015: member

    @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!

  11. laanwj commented at 10:48 AM on October 22, 2015: member

    ACK. Works for me.

  12. Ignore coverage data related and temporary test files 4d2a926cb4
  13. Remove coverage and test related files, when cleaning up
    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.
    d425877557
  14. Require Python for RPC tests, when using lcov
    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.
    8e3a27bbbf
  15. Add config option to enable extended RPC tests for code coverage
    When using lcov to gather code coverage data, the configuration option
    `--enable-extended-rpc-tests` may be used to enable extended RPC tests.
    45d4ff0c20
  16. Run extended BitcoinJ tests for coverage based on config
    The configuration option `--enable-comparison-tool-reorg-tests` may be
    used to enable extended tests via BitcoinJ also for coverage testing.
    e3b5e6c39c
  17. Support gathering of code coverage data for RPC tests
    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
    d80e3cbece
  18. dexX7 force-pushed on Oct 23, 2015
  19. laanwj merged this on Oct 26, 2015
  20. laanwj closed this on Oct 26, 2015

  21. laanwj referenced this in commit 5242bb32c7 on Oct 26, 2015
  22. Sjors commented at 2:01 PM on November 22, 2017: member

    @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?

  23. MarcoFalke commented at 2:43 PM on November 22, 2017: member

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

  24. MarcoFalke locked this on Sep 8, 2021

github-metadata-mirror

This is a metadata mirror of the GitHub repository bitcoin/bitcoin. This site is not affiliated with GitHub. Content is generated from a GitHub metadata backup.
generated: 2026-04-13 18:15 UTC

This site is hosted by @0xB10C
More mirrored repositories can be found on mirror.b10c.me