Make new authentication test case more robust.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 5 Sep 2020 01:01:59 +0000 (21:01 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 5 Sep 2020 01:01:59 +0000 (21:01 -0400)
I happened to notice that the new test case I added in b55b4dad9
falls over if one runs "make check" repeatedly; though not in branches
after v10.  That's because it was assuming that tmp_check/pgpass
wouldn't exist already.  However, it's only been since v11 that the
Makefiles forcibly remove all of tmp_check/ before starting a TAP run.
This fix to unlink the file is therefore strictly necessary only in
v10 ... but it seems wisest to do it across the board, rather than
let the test rely on external logic to get the conditions right.

src/test/authentication/t/001_password.pl

index 909003560b6acbd9353f594824f9f33cfce9ea4c..80b4b965c49ca888c010fe289c48ec3fd98a9c5d 100644 (file)
@@ -106,6 +106,7 @@ delete $ENV{"PGPASSWORD"};
 delete $ENV{"PGCHANNELBINDING"};
 $ENV{"PGPASSFILE"} = $pgpassfile;
 
+unlink($pgpassfile);
 append_to_file($pgpassfile, qq!
 # This very long comment is just here to exercise handling of long lines in the file. This very long comment is just here to exercise handling of long lines in the file. This very long comment is just here to exercise handling of long lines in the file. This very long comment is just here to exercise handling of long lines in the file. This very long comment is just here to exercise handling of long lines in the file.
 *:*:postgres:scram_role:pass:this is not part of the password.