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%) 208/208 (100.0%)
build/config 30/30 (100.0%) 450/450 (100.0%) 956/956 (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 6/6 (100.0%) 52/52 (100.0%) 123/123 (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 47/47 (100.0%) 640/640 (100.0%) 1631/1631 (100.0%)
command/check 8/8 (100.0%) 62/62 (100.0%) 137/137 (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%) 397/397 (100.0%)
command/help 5/5 (100.0%) 132/132 (100.0%) 241/241 (100.0%)
command/info 12/12 (100.0%) 334/334 (100.0%) 686/686 (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 31/31 (100.0%) 648/648 (100.0%) 1315/1315 (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%) 758/758 (100.0%)
common 184/184 (100.0%) 692/692 (100.0%) 2117/2117 (100.0%)
common/compress 13/13 (100.0%) 24/24 (100.0%) 117/117 (100.0%)
common/compress/bz2 13/13 (100.0%) 20/20 (100.0%) 179/179 (100.0%)
common/compress/gz 13/13 (100.0%) 22/22 (100.0%) 171/171 (100.0%)
common/compress/lz4 15/15 (100.0%) 24/24 (100.0%) 182/182 (100.0%)
common/compress/zst 13/13 (100.0%) 12/12 (100.0%) 152/152 (100.0%)
common/crypto 27/27 (100.0%) 88/88 (100.0%) 494/494 (100.0%)
common/io 58/58 (100.0%) 182/182 (100.0%) 753/753 (100.0%)
common/io/filter 35/35 (100.0%) 106/106 (100.0%) 453/453 (100.0%)
common/io/http 47/47 (100.0%) 248/248 (100.0%) 722/722 (100.0%)
common/io/socket 22/22 (100.0%) 34/34 (100.0%) 291/291 (100.0%)
common/io/tls 34/34 (100.0%) 98/98 (100.0%) 518/518 (100.0%)
common/type 320/320 (100.0%) 840/840 (100.0%) 4167/4167 (100.0%)
config 85/85 (100.0%) 896/896 (100.0%) 1737/1737 (100.0%)
db 24/24 (100.0%) 116/116 (100.0%) 444/444 (100.0%)
info 91/91 (100.0%) 920/920 (100.0%) 2453/2453 (100.0%)
postgres 32/32 (100.0%) 106/106 (100.0%) 384/384 (100.0%)
postgres/interface 1/1 (100.0%) --- 2/2 (100.0%)
protocol 55/55 (100.0%) 230/230 (100.0%) 979/979 (100.0%)
storage 53/53 (100.0%) 226/226 (100.0%) 803/803 (100.0%)
storage/azure 25/25 (100.0%) 110/110 (100.0%) 533/533 (100.0%)
storage/cifs 2/2 (100.0%) --- 18/18 (100.0%)
storage/gcs 32/32 (100.0%) 116/116 (100.0%) 660/660 (100.0%)
storage/posix 26/26 (100.0%) 159/160 (99.38%) 485/485 (100.0%)
storage/remote 35/35 (100.0%) 118/118 (100.0%) 809/809 (100.0%)
storage/s3 30/30 (100.0%) 142/142 (100.0%) 726/726 (100.0%)
TOTAL 1560/1560 (100.0%) 9353/9354 (99.99%) 28950/28950 (100.0%)
The C unit test modules in /test/src/module also have complete function/line coverage but are not included in the report.