]> granicus.if.org Git - pgbadger/commitdiff
FIX : bad copy-pasta / add better comments
authordamien clochard <damien@dalibo.com>
Mon, 15 Jan 2018 08:33:59 +0000 (09:33 +0100)
committerdamien clochard <damien@dalibo.com>
Mon, 15 Jan 2018 08:33:59 +0000 (09:33 +0100)
t/consistency.t

index 00efe1877d6d08b00c9cc7d294d05213df022895..bb59d1f9194f5f1a6cd1b8f0bc8d9f4a1f1f6e05 100644 (file)
@@ -6,13 +6,20 @@ IN=t/fixtures/light.postgres.log.bz2
 BIN=$BATS_TMPDIR/out.bin
 OUT=$BATS_TMPDIR/out.json
 OUT_FROM_BIN=$BATS_TMPDIR/out_from_bin.json
+# Generate report from plain-text log
 ./pgbadger $IN -o $OUT
+# Generate intermediate binary file
 ./pgbadger $IN  -o $BIN
+# Generate report from binary file
 ./pgbadger $BIN --format=binary -o $OUT_FROM_BIN
 }
 
+#
+# Assert that analyzing from a plain-text log and from the intermediate binary file  
+# will provide the exact same results
+#
+
 @test "Consistent count" {
-    # Assert out.html is not created in PWD.
     N=$(jq .database_info.postgres.count < $OUT)
     test $N -eq 629
     N=$(jq .database_info.postgres.count < $OUT_FROM_BIN)
@@ -21,7 +28,6 @@ OUT_FROM_BIN=$BATS_TMPDIR/out_from_bin.json
 
 
 @test "Consistent query_total" {
-    # Assert out.html is not created in PWD.
     N=$(jq .overall_stat.histogram.query_total < $OUT)
     test $N -eq 629
     N=$(jq .overall_stat.histogram.query_total < $OUT_FROM_BIN)
@@ -30,9 +36,8 @@ OUT_FROM_BIN=$BATS_TMPDIR/out_from_bin.json
 
 
 @test "Consistent peak.write" {
-    # Assert out.html is not created in PWD.
     N=$(jq '.overall_stat.peak."2017-09-06 08:49:19".write' < $OUT)
     test $N -eq 1
     N=$(jq '.overall_stat.peak."2017-09-06 08:49:19".write' < $OUT_FROM_BIN)
     test $N -eq 1
-}
\ No newline at end of file
+}