源码分析 | 使用 gcov 和 lcov 测试 PostgreSQL 代码覆盖率

本文首发于 2016-03-30 15:34:34
引言 通常我们评判一个 test case 好坏的标准之一是代码的覆盖率,一个好的 test case 应该覆盖到所有的代码。
那么问题来了,我们怎么知道这个 test case 有没有覆盖到所有的代码呢?
以 PostgreSQL 为例,我们看看如何检测 C 语言程序的代码覆盖率。
C 代码覆盖率测试,需要用到 gcc 的配套工具gcov,还有一个可视化工具lcov
1. 安装依赖 首先需要安装依赖 gcov 和 lcov 。
gcov 在 gcc 包中已经包含了,lcov 是 ltp 的一个 gcov 扩展插件,用来产生HTML报告。
sudo apt install lcov

2. 编译、安装 PG 2.1. 编译选项介绍 首先介绍一下 PostgreSQL 的编译选项 --enable-coverage
--enable-coveragebuild with coverage testing instrumentation

【源码分析 | 使用 gcov 和 lcov 测试 PostgreSQL 代码覆盖率】这个编译项对应gcc的两个参数:-fprofile-arcs-ftest-coverage
# enable code coverage if --enable-coverage if test "$enable_coverage" = yes; then if test "$GCC" = yes; then CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage" else as_fn_error $? "--enable-coverage is supported only when using GCC" "$LINENO" 5 fi fi

通过man gcc查看这两个参数的含义:
-fprofile-arcs Add code so that program flow arcs are instrumented.During execution the program records how many times each branch and call is executed and how many times it is taken or returns.When the compiled program exits it saves this data to a file called auxname.gcda for each source file.The data may be used for profile-directed optimizations (-fbranch-probabilities), or for test coverage analysis (-ftest-coverage).Each object file's auxname is generated from the name of the output file, if explicitly specified and it is not the final executable, otherwise it is the basename of the source file.In both cases any suffix is removed (e.g. foo.gcda for input file dir/foo.c, or dir/foo.gcda for output file specified as -o dir/foo.o).--coverage This option is used to compile and link code instrumented for coverage analysis.The option is a synonym for -fprofile-arcs -ftest-coverage (when compiling) and -lgcov (when linking). See the documentation for those options for more details.*Compile the source files with -fprofile-arcs plus optimization and code generation options.For test coverage analysis, use the additional -ftest-coverage option.You do not need to profile every source file in a program.*Link your object files with -lgcov or -fprofile-arcs (the latter implies the former).*Run the program on a representative workload to generate the arc profile information.This may be repeated any number of times.You can run concurrent instances of your program, and provided that the file system supports locking, the data files will be correctly updated.Also "fork" calls are detected and correctly handled (double counting will not happen).*For profile-directed optimizations, compile the source files again with the same optimization and code generation options plus -fbranch-probabilities.*For test coverage analysis, use gcov to produce human readable information from the .gcno and .gcda files.Refer to the gcov documentation for further information.With -fprofile-arcs, for each function of your program GCC creates a program flow graph, then finds a spanning tree for the graph.Only arcs that are not on the spanning tree have to be instrumented: the compiler adds code to count the number of times that these arcs are executed.When an arc is the only exit or only entrance to a block, the instrumentation code can be added to the block; otherwise, a new basic block must be created to hold the instrumentation code.-ftest-coverage Produce a notes file that the gcov code-coverage utility can use to show program coverage.Each source file's note file is called auxname.gcno.Refer to the -fprofile-arcs option above for a description of auxname and instructions on how to generate test coverage data.Coverage data matches the source files more closely if you do not optimize.

-fprofile-arcs:
-fprofile-arcs 用于产生 .c 文件对应的 .gcda 文件,.gcda 文件可以被用于 profile 驱动的优化,或者结合 gcov 来做代码覆盖分析。
编译时尽量不要使用 -O 优化,这样代码覆盖数据 .gcda 才能尽可能和代码接近。
当代码被调用时,.gcda 文件中对应的计数器会被修改,记录代码被调用的次数。
-ftest-coverage:
-ftest-coverage 这个选项用于产生 .c 文件的 .gcno 文件。这个文件生成后不会被修改。结合 .gcda,可以分析测试代码覆盖率。
2.2. 编译安装
./configure --prefix=/opt/pgsql9.4.4 --with-pgport=1921 --with-perl --with-python --with-tcl --with-openssl --with-pam --with-ldap --with-libxml --with-libxslt --enable-thread-safety --enable-debug --enable-dtrace --enable-coveragegmake world && gmake install-world

安装好后,我们会发现在源码目录中多了一些.gcda和.gcno的文件,每个.c文件都会对应这两个文件:
postgres@wslu-> ll total 1.3M -rw-r--r-- 1 postgres postgres22K Jun 10 03:29 gistbuildbuffers.c -rw------- 1 postgres postgres 1.6K Sep7 14:42 gistbuildbuffers.gcda -rw-r--r-- 1 postgres postgres15K Sep7 14:38 gistbuildbuffers.gcno -rw-r--r-- 1 postgres postgres70K Sep7 14:38 gistbuildbuffers.o -rw-r--r-- 1 postgres postgres37K Jun 10 03:29 gistbuild.c -rw------- 1 postgres postgres 2.2K Sep7 14:42 gistbuild.gcda -rw-r--r-- 1 postgres postgres20K Sep7 14:38 gistbuild.gcno -rw-r--r-- 1 postgres postgres92K Sep7 14:38 gistbuild.o -rw-r--r-- 1 postgres postgres43K Jun 10 03:29 gist.c -rw------- 1 postgres postgres 3.1K Sep7 14:42 gist.gcda -rw-r--r-- 1 postgres postgres29K Sep7 14:38 gist.gcno -rw-r--r-- 1 postgres postgres16K Jun 10 03:29 gistget.c -rw------- 1 postgres postgres 1.3K Sep7 14:42 gistget.gcda -rw-r--r-- 1 postgres postgres13K Sep7 14:38 gistget.gcno -rw-r--r-- 1 postgres postgres74K Sep7 14:38 gistget.o -rw-r--r-- 1 postgres postgres 101K Sep7 14:38 gist.o -rw-r--r-- 1 postgres postgres39K Jun 10 03:29 gistproc.c -rw------- 1 postgres postgres 3.1K Sep7 14:42 gistproc.gcda -rw-r--r-- 1 postgres postgres31K Sep7 14:38 gistproc.gcno -rw-r--r-- 1 postgres postgres79K Sep7 14:38 gistproc.o -rw-r--r-- 1 postgres postgres 9.1K Jun 10 03:29 gistscan.c -rw------- 1 postgres postgres848 Sep7 14:42 gistscan.gcda -rw-r--r-- 1 postgres postgres 6.7K Sep7 14:38 gistscan.gcno -rw-r--r-- 1 postgres postgres60K Sep7 14:38 gistscan.o -rw-r--r-- 1 postgres postgres24K Jun 10 03:29 gistsplit.c -rw------- 1 postgres postgres 1.5K Sep7 14:42 gistsplit.gcda -rw-r--r-- 1 postgres postgres15K Sep7 14:38 gistsplit.gcno -rw-r--r-- 1 postgres postgres68K Sep7 14:38 gistsplit.o -rw-r--r-- 1 postgres postgres21K Jun 10 03:29 gistutil.c -rw------- 1 postgres postgres 2.2K Sep7 14:42 gistutil.gcda -rw-r--r-- 1 postgres postgres20K Sep7 14:38 gistutil.gcno -rw-r--r-- 1 postgres postgres84K Sep7 14:38 gistutil.o -rw-r--r-- 1 postgres postgres 7.1K Jun 10 03:29 gistvacuum.c -rw------- 1 postgres postgres784 Sep7 14:42 gistvacuum.gcda -rw-r--r-- 1 postgres postgres 7.3K Sep7 14:38 gistvacuum.gcno -rw-r--r-- 1 postgres postgres56K Sep7 14:38 gistvacuum.o -rw-r--r-- 1 postgres postgres14K Jun 10 03:29 gistxlog.c -rw------- 1 postgres postgres 1.2K Sep7 14:42 gistxlog.gcda -rw-r--r-- 1 postgres postgres12K Sep7 14:38 gistxlog.gcno -rw-r--r-- 1 postgres postgres50K Sep7 14:38 gistxlog.o -rw-r--r-- 1 postgres postgres538 Jun 10 03:29 Makefile -rw-r--r-- 1 postgres postgres357 Sep7 14:38 objfiles.txt -rw-r--r-- 1 postgres postgres20K Jun 10 03:29 READMEpostgres@wslu-> pwd /opt/soft_bak/postgresql-9.4.4/src/backend/access/gist

注意事项:
源码文件目录的权限需要改为数据库启动用户的权限,否则无法修改 .gcda 的值,也就无法获取代码被调用的次数了。
root@wslu-> chown -R postgres:postgres /opt/soft_bak/postgresql-9.4.4

接下来我们看看文件的变化,以 dbsize.c 中的两个获取 pg_database_size 的 C 函数为例:
postgres@wslu-> ls -la|grep dbsize -rw-r--r--1 postgres postgres19342 Jun 10 03:29 dbsize.c -rw-------1 postgres postgres2664 Sep7 15:01 dbsize.gcda -rw-r--r--1 postgres postgres23272 Sep7 14:38 dbsize.gcno -rw-r--r--1 postgres postgres89624 Sep7 14:38 dbsize.o

调用一次:
postgres@wslu-> psql psql (9.4.4) Type "help" for help. postgres=# select pg_database_size(oid) from pg_database; pg_database_size ------------------ 6898180 6889988 24742560 6898180 6898180 6898180 (6 rows) postgres=# \q

再次查看:
postgres@wslu-> ls -la|grep dbsize -rw-r--r--1 postgres postgres19342 Jun 10 03:29 dbsize.c -rw-------1 postgres postgres2664 Sep7 15:12 dbsize.gcda -rw-r--r--1 postgres postgres23272 Sep7 14:38 dbsize.gcno -rw-r--r--1 postgres postgres89624 Sep7 14:38 dbsize.o

dbsize.gcda 文件的修改时间发送了变化,说明刚才我们调用pg_database_size(oid) 时,调用了 dbsize.c 中的代码。对应的行计数器会发生变化。
3. 生成 HTML 报告
$ mkdir html $ cd html$ lcov --directory /opt/soft_bak/postgresql-9.4.4 --capture --output-file ./app.info # 如果你不需要所有的代码,修改以上目录即可,譬如只看 contrib 下面的代码覆盖率。$ genhtml ./app.info postgres@wslu-> ll total 3.7M drwxrwxr-x 12 postgres postgres 4.0K Sep7 15:02 access -rw-rw-r--1 postgres postgres141 Sep7 15:02 amber.png -rw-rw-r--1 postgres postgres 3.4M Sep7 15:02 app.info drwxrwxr-x2 postgres postgres 4.0K Sep7 15:02 bootstrap drwxrwxr-x2 postgres postgres 4.0K Sep7 15:02 catalog drwxrwxr-x2 postgres postgres 4.0K Sep7 15:02 commands -rw-rw-r--1 postgres postgres141 Sep7 15:02 emerald.png drwxrwxr-x2 postgres postgres12K Sep7 15:02 executor drwxrwxr-x2 postgres postgres 4.0K Sep7 15:02 foreign -rw-rw-r--1 postgres postgres 9.7K Sep7 15:02 gcov.css -rw-rw-r--1 postgres postgres167 Sep7 15:02 glass.png -rw-rw-r--1 postgres postgres57K Sep7 15:02 index.html -rw-rw-r--1 postgres postgres57K Sep7 15:02 index-sort-f.html -rw-rw-r--1 postgres postgres57K Sep7 15:02 index-sort-l.html drwxrwxr-x2 postgres postgres 4.0K Sep7 15:02 lib drwxrwxr-x2 postgres postgres 4.0K Sep7 15:02 libpq drwxrwxr-x2 postgres postgres 4.0K Sep7 15:02 main drwxrwxr-x2 postgres postgres 4.0K Sep7 15:02 nodes drwxrwxr-x3 postgres postgres 4.0K Sep7 15:02 opt drwxrwxr-x7 postgres postgres 4.0K Sep7 15:02 optimizer drwxrwxr-x2 postgres postgres 4.0K Sep7 15:02 parser drwxrwxr-x2 postgres postgres 4.0K Sep7 15:02 port drwxrwxr-x2 postgres postgres 4.0K Sep7 15:02 postmaster drwxrwxr-x2 postgres postgres 4.0K Sep7 15:02 regex drwxrwxr-x3 postgres postgres 4.0K Sep7 15:02 replication drwxrwxr-x2 postgres postgres 4.0K Sep7 15:02 rewrite -rw-rw-r--1 postgres postgres141 Sep7 15:02 ruby.png drwxrwxr-x3 postgres postgres 4.0K Sep7 15:02 snowball -rw-rw-r--1 postgres postgres141 Sep7 15:02 snow.png drwxrwxr-x 10 postgres postgres 4.0K Sep7 15:02 storage drwxrwxr-x2 postgres postgres 4.0K Sep7 15:02 tcop drwxrwxr-x2 postgres postgres 4.0K Sep7 15:02 tsearch -rw-rw-r--1 postgres postgres117 Sep7 15:02 updown.png drwxrwxr-x3 postgres postgres 4.0K Sep7 15:02 usr drwxrwxr-x 14 postgres postgres 4.0K Sep7 15:02 utils

4. 查看报告 浏览器中打开 index.html 即可查看。
后记 PostgreSQL 其实已经在 Makefile 提供了生成代码覆盖 HTML 的 target 。
[root@wslu postgresql-9.4.4]# make coverage-html

产生的html目录如下:
[root@wslu postgresql-9.4.4]# cd coverage [root@wslu coverage]# ll total 224 -rw-r--r--1 root root141 Sep7 19:17 amber.png -rw-r--r--1 root root141 Sep7 19:17 emerald.png -rw-r--r--1 root root9893 Sep7 19:17 gcov.css -rw-r--r--1 root root167 Sep7 19:17 glass.png -rw-r--r--1 root root 58737 Sep7 19:18 index.html -rw-r--r--1 root root 58730 Sep7 19:18 index-sort-f.html -rw-r--r--1 root root 58730 Sep7 19:18 index-sort-l.html -rw-r--r--1 root root141 Sep7 19:17 ruby.png -rw-r--r--1 root root141 Sep7 19:17 snow.png drwxr-xr-x 11 root root4096 Sep7 19:18 src -rw-r--r--1 root root117 Sep7 19:17 updown.png drwxr-xr-x3 root root4096 Sep7 19:18 usr

每次对代码改动后,执行完 make check 或其他回归测试手段后,就可以执行 make coverage-html 了。
参考链接
  1. Magus Test Archive
  2. lcov
  3. lcov readme
  4. GitHub - linux-test-project/ltp: Linux Test Project http://linux-test-project.github.io/
  5. Gcov (Using the GNU Compiler Collection (GCC))
  6. CodeCoverage - PostgreSQL wiki
  7. PostgreSQL: Documentation: devel: 33.5. Test Coverage Examination
欢迎关注我的微信公众号【数据库内核】:分享主流开源数据库和存储引擎相关技术。
源码分析 | 使用 gcov 和 lcov 测试 PostgreSQL 代码覆盖率
文章图片

标题 网址
GitHub https://dbkernel.github.io
知乎 https://www.zhihu.com/people/...
思否(SegmentFault) https://segmentfault.com/u/db...
掘金 https://juejin.im/user/5e9d3e...
开源中国(oschina) https://my.oschina.net/dbkernel
博客园(cnblogs) https://www.cnblogs.com/dbkernel

    推荐阅读