Metrics

Code Coverage

pgBackRest aims to have complete function/branch/line coverage for the core C code in /src .
Function/line coverage is complete with no exceptions.
Branch coverage excludes branches inside macros and assert() calls. Macros have their own unit tests so they do not need to be tested everywhere they appear. Asserts are not expected to have complete branch coverage since they test cases that should always be true.
Directory Functions Branches Lines
build/common 17/17 (100.0%) 38/38 (100.0%) 206/206 (100.0%)
build/config 31/31 (100.0%) 462/462 (100.0%) 980/980 (100.0%)
build/error 6/6 (100.0%) 26/26 (100.0%) 78/78 (100.0%)
build/help 12/12 (100.0%) 128/128 (100.0%) 235/235 (100.0%)
build/postgres 8/8 (100.0%) 60/60 (100.0%) 151/151 (100.0%)
command 9/9 (100.0%) 72/72 (100.0%) 158/158 (100.0%)
command/annotate 1/1 (100.0%) 12/12 (100.0%) 33/33 (100.0%)
command/archive 13/13 (100.0%) 72/72 (100.0%) 220/220 (100.0%)
command/archive/get 9/9 (100.0%) 196/196 (100.0%) 468/468 (100.0%)
command/archive/push 12/12 (100.0%) 132/132 (100.0%) 411/411 (100.0%)
command/backup 50/50 (100.0%) 762/762 (100.0%) 1849/1849 (100.0%)
command/check 8/8 (100.0%) 62/62 (100.0%) 136/136 (100.0%)
command/control 4/4 (100.0%) 32/32 (100.0%) 60/60 (100.0%)
command/expire 10/10 (100.0%) 240/240 (100.0%) 398/398 (100.0%)
command/help 5/5 (100.0%) 134/134 (100.0%) 244/244 (100.0%)
command/info 13/13 (100.0%) 342/342 (100.0%) 706/706 (100.0%)
command/local 1/1 (100.0%) --- 7/7 (100.0%)
command/remote 1/1 (100.0%) 6/6 (100.0%) 21/21 (100.0%)
command/repo 9/9 (100.0%) 108/108 (100.0%) 235/235 (100.0%)
command/restore 34/34 (100.0%) 682/682 (100.0%) 1430/1430 (100.0%)
command/server 6/6 (100.0%) 24/24 (100.0%) 88/88 (100.0%)
command/stanza 5/5 (100.0%) 106/106 (100.0%) 135/135 (100.0%)
command/verify 21/21 (100.0%) 314/314 (100.0%) 757/757 (100.0%)
common 154/154 (100.0%) 640/640 (100.0%) 1972/1972 (100.0%)
common/compress 13/13 (100.0%) 24/24 (100.0%) 122/122 (100.0%)
common/compress/bz2 13/13 (100.0%) 20/20 (100.0%) 173/173 (100.0%)
common/compress/gz 13/13 (100.0%) 26/26 (100.0%) 174/174 (100.0%)
common/compress/lz4 15/15 (100.0%) 24/24 (100.0%) 179/179 (100.0%)
common/compress/zst 13/13 (100.0%) 12/12 (100.0%) 146/146 (100.0%)
common/crypto 32/32 (100.0%) 88/88 (100.0%) 540/540 (100.0%)
common/error 32/32 (100.0%) 54/54 (100.0%) 166/166 (100.0%)
common/io 58/58 (100.0%) 174/174 (100.0%) 724/724 (100.0%)
common/io/filter 31/31 (100.0%) 92/92 (100.0%) 385/385 (100.0%)
common/io/http 47/47 (100.0%) 248/248 (100.0%) 706/706 (100.0%)
common/io/socket 22/22 (100.0%) 34/34 (100.0%) 282/282 (100.0%)
common/io/tls 34/34 (100.0%) 98/98 (100.0%) 509/509 (100.0%)
common/type 320/320 (100.0%) 846/846 (100.0%) 4136/4136 (100.0%)
config 87/87 (100.0%) 932/932 (100.0%) 1796/1796 (100.0%)
db 24/24 (100.0%) 116/116 (100.0%) 442/442 (100.0%)
info 92/92 (100.0%) 940/940 (100.0%) 2482/2482 (100.0%)
postgres 32/32 (100.0%) 110/110 (100.0%) 392/392 (100.0%)
postgres/interface 1/1 (100.0%) --- 2/2 (100.0%)
protocol 55/55 (100.0%) 228/228 (100.0%) 962/962 (100.0%)
storage 53/53 (100.0%) 226/226 (100.0%) 809/809 (100.0%)
storage/azure 25/25 (100.0%) 110/110 (100.0%) 526/526 (100.0%)
storage/cifs 2/2 (100.0%) --- 18/18 (100.0%)
storage/gcs 32/32 (100.0%) 116/116 (100.0%) 654/654 (100.0%)
storage/posix 28/28 (100.0%) 167/168 (99.40%) 485/485 (100.0%)
storage/remote 35/35 (100.0%) 118/118 (100.0%) 802/802 (100.0%)
storage/s3 30/30 (100.0%) 142/142 (100.0%) 719/719 (100.0%)
storage/sftp 25/25 (100.0%) 348/348 (100.0%) 653/653 (100.0%)
TOTAL 1603/1603 (100.0%) 9943/9944 (99.99%) 29962/29962 (100.0%)
The C unit test modules in /test/src/module also have complete function/line coverage but are not included in the report.