Skip to content

Commit 7451796

Browse files
committed
Remove dependency of bats and jq for the test suite, they are replaced
with Test::Simple and JSON::XS. Add more tests especially for incremental mode and input from stdin that was broken in release 10.0. Thanks a lot to Etienne Bersac who have initiate the pgbadger test suite and added the contributing on pgBadger documentation.
1 parent 76aefeb commit 7451796

8 files changed

+114
-90
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Install debian packages
1111
command: >
1212
apt update -y &&
13-
apt install -y --no-install-recommends bats git jq libjson-xs-perl openssh-client
13+
apt install -y --no-install-recommends git libjson-xs-perl openssh-client
1414
- checkout
1515
- run:
1616
name: Executing tests

HACKING.md

+33-8
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,43 @@
11
# Contributing on pgBadger
22

3-
Thanks for your attention on pgBadger !
3+
Thanks for your attention on pgBadger ! You need Perl Module JSON::XS
4+
to run the full test suite. You can install it on a Debian like system
5+
using:
46

5-
pgBadger has a TAP compatible test suite executed by `prove(1)` on CI. You can
6-
write tests in many language including perl and bash.
7+
sudo apt-get install libjson-xs-perl
8+
9+
or in RPM like system using:
10+
11+
sudo yum install perl-JSON-XS
12+
13+
pgBadger has a TAP compatible test suite executed by `prove`:
714

8-
$ apt install bats
9-
...
1015
$ prove
11-
t/basics.t .. ok
12-
t/syntax.t .. ok
16+
t/01_lint.t ......... ok
17+
t/02_basics.t ....... ok
18+
t/03_consistency.t .. ok
1319
All tests successful.
14-
Files=2, Tests=4, 2 wallclock secs ( 0.02 usr 0.00 sys + 2.38 cusr 0.04 csys = 2.44 CPU)
20+
Files=3, Tests=13, 6 wallclock secs ( 0.01 usr 0.01 sys + 5.31 cusr 0.16 csys = 5.49 CPU)
1521
Result: PASS
1622
$
1723

24+
or if you prefer to run test manually:
25+
26+
$ perl Makefile.PL && make test
27+
Checking if your kit is complete...
28+
Looks good
29+
Generating a Unix-style Makefile
30+
Writing Makefile for pgBadger
31+
Writing MYMETA.yml and MYMETA.json
32+
cp pgbadger blib/script/pgbadger
33+
"/usr/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/pgbadger
34+
PERL_DL_NONLAZY=1 "/usr/bin/perl" "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef *Test::Harness::Switches; test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
35+
t/01_lint.t ......... ok
36+
t/02_basics.t ....... ok
37+
t/03_consistency.t .. ok
38+
All tests successful.
39+
Files=3, Tests=13, 6 wallclock secs ( 0.03 usr 0.00 sys + 5.39 cusr 0.14 csys = 5.56 CPU)
40+
Result: PASS
41+
$ make clean && rm Makefile.old
42+
1843
Please contribute a regression test when you fix a bug or add a feature. Thanks!

t/01_lint.t

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
use Test::Simple tests => 2;
2+
3+
my $ret = `perl -wc pgbadger 2>&1`;
4+
ok( $? == 0, "PERL syntax check");
5+
6+
$ret = `podchecker doc/*.pod 2>&1`;
7+
ok( $? == 0, "pod syntax check");
8+

t/02_basics.t

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
use Test::Simple tests => 8;
2+
3+
my $LOG = 't/fixtures/light.postgres.log.bz2';
4+
my $BIN = 't/fixtures/light.postgres.bin';
5+
my $JSON = 't/out.json';
6+
7+
my $ret = `perl pgbadger --help`;
8+
ok( $? == 0, "Inline help");
9+
10+
$ret = `perl pgbadger -q -o - $LOG`;
11+
ok( $? == 0 && length($ret) > 0, "Light log report to stdout");
12+
13+
`rm -f out.html`;
14+
$ret = `perl pgbadger -q --outdir '.' $LOG`;
15+
ok( $? == 0 && -e "out.html", "Light log report to HTML");
16+
17+
$ret = `perl pgbadger -q -o $BIN $LOG`;
18+
ok( $? == 0 && -e "$BIN", "Light log to binary");
19+
20+
`rm -f $JSON`;
21+
$ret = `perl pgbadger -q -o $JSON --format binary $BIN`;
22+
$ret = `cat $JSON | perl -pe 's/.*"SELECT":(\\d+),.*/\$1/'`;
23+
ok( $? == 0 && $ret > 0, "From binary to JSON");
24+
25+
`mkdir t/test_incr/`;
26+
$ret = `perl pgbadger -q -O t/test_incr -I --extra-files $LOG`;
27+
ok( $? == 0 && -e "t/test_incr/2017/09/06/index.html"
28+
&& -e "t/test_incr/2017/week-37/index.html", "Incremental mode report");
29+
$ret = `grep 'src="../../../.*/bootstrap.min.js"' t/test_incr/2017/09/06/index.html`;
30+
ok( $? == 0 && substr($ret, 32, 14) eq 'src="../../../', "Ressources files in incremental mode");
31+
32+
`rm -f $JSON`;
33+
$ret = `bunzip2 -c $LOG | perl pgbadger -q -o $JSON -`;
34+
$ret = `cat $JSON | perl -pe 's/.*"SELECT":(\\d+),.*/\$1/'`;
35+
ok( $? == 0 && $ret > 0, "Light log from STDIN");
36+
37+
# Remove files generated during the tests
38+
`rm -f out.html`;
39+
`rm -r $JSON`;
40+
`rm -f $BIN`;
41+
`rm -rf t/test_incr/`;
42+

t/03_consistency.t

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
use Test::Simple tests => 5;
2+
use JSON::XS;
3+
4+
my $json = new JSON::XS;
5+
6+
my $LOG = 't/fixtures/light.postgres.log.bz2';
7+
my $BIN = 'out.bin';
8+
my $OUT = 'out.json';
9+
10+
my $ret = `perl pgbadger -q -o $BIN $LOG`;
11+
ok( $? == 0, "Generate intermediate binary file from log");
12+
13+
$ret = `perl pgbadger -q -o $OUT --format binary $BIN`;
14+
ok( $? == 0, "Generate json report from binary file");
15+
16+
`rm -f $BIN`;
17+
18+
my $json_ref = $json->decode(`cat $OUT`);
19+
20+
#
21+
# Assert that analyzing json file provide the right results
22+
#
23+
ok( $json_ref->{database_info}{postgres}{count} == 629, "Consistent count");
24+
25+
ok( $json_ref->{overall_stat}{histogram}{query_total} == 629, "Consistent query_total");
26+
27+
ok( $json_ref->{overall_stat}{peak}{"2017-09-06 08:48:45"}{write} == 1, "Consistent peak write");
28+
29+
`rm -f $OUT`;
30+

t/basics.t

-29
This file was deleted.

t/consistency.t

-43
This file was deleted.

t/lint.t

-9
This file was deleted.

0 commit comments

Comments
 (0)