Skip pg_baseback long filename test if path too long on Windows
authorAndrew Dunstan <[email protected]>
Thu, 6 Jul 2023 16:27:40 +0000 (12:27 -0400)
committerAndrew Dunstan <[email protected]>
Thu, 6 Jul 2023 16:31:37 +0000 (12:31 -0400)
On Windows, it's sometimes difficult to create a file with a path longer
than 255 chars, and if it can be created it might not be seen by the
archiver. This can be triggered by the test for tar backups with
filenames greater than 100 bytes. So we skip that test if the path would
exceed 255.

Backpatch to all live branches.

Reviewed by Daniel Gustafsson

Discussion: https://postgr.es/m/666ac55b-3400-fb2c-2cea-0281bf36a53c@dunslane.net

src/bin/pg_basebackup/t/010_pg_basebackup.pl

index ad7564d81420c511d289d0d06979083ee7e28844..d6ae31a4a8b15e92d892e42d51c09ac4c35bdeb8 100644 (file)
@@ -202,21 +202,23 @@ $node->command_fails(
    [ 'pg_basebackup', '-D', "$tempdir/backup_foo", '-Fp', "-Tfoo" ],
    '-T with invalid format fails');
 
-# Tar format doesn't support filenames longer than 100 bytes.
-# Create the test file via a short name directory so it doesn't blow the
-# Windows path limit.
-my $lftmp = TestLib::tempdir_short;
-dir_symlink "$pgdata", "$lftmp/pgdata";
 my $superlongname = "superlongname_" . ("x" x 100);
-my $superlongpath = "$lftmp/pgdata/$superlongname";
+# Tar format doesn't support filenames longer than 100 bytes.
+SKIP:
+{
+   my $superlongpath = "$pgdata/$superlongname";
 
-open my $file, '>', "$superlongpath"
-  or die "unable to create file $superlongpath";
-close $file;
-$node->command_fails(
-   [ 'pg_basebackup', '-D', "$tempdir/tarbackup_l1", '-Ft' ],
-   'pg_basebackup tar with long name fails');
-unlink "$superlongpath";
+   skip "File path too long", 1
+     if $windows_os && length($superlongpath) > 255;
+
+   open my $file, '>', "$superlongpath"
+     or die "unable to create file $superlongpath";
+   close $file;
+   $node->command_fails(
+       [ 'pg_basebackup', '-D', "$tempdir/tarbackup_l1", '-Ft' ],
+       'pg_basebackup tar with long name fails');
+   unlink "$superlongpath";
+}
 
 # The following tests are for symlinks.