2014-06-22 17:30:17 +03:00
|
|
|
#!/usr/bin/perl
|
|
|
|
####################################################################################################################################
|
2014-06-22 18:56:01 +03:00
|
|
|
# BackupTest.pl - Unit Tests for BackRest::File
|
2014-06-22 17:30:17 +03:00
|
|
|
####################################################################################################################################
|
2014-06-22 18:56:01 +03:00
|
|
|
package BackRestTest::BackupTest;
|
2014-06-22 17:30:17 +03:00
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# Perl includes
|
|
|
|
####################################################################################################################################
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
use Carp;
|
|
|
|
|
|
|
|
use File::Basename;
|
2014-07-16 05:32:41 +03:00
|
|
|
use File::Copy "cp";
|
2014-08-10 22:02:14 +03:00
|
|
|
use DBI;
|
2014-06-22 17:30:17 +03:00
|
|
|
|
|
|
|
use lib dirname($0) . "/../lib";
|
|
|
|
use BackRest::Utility;
|
|
|
|
use BackRest::File;
|
|
|
|
use BackRest::Remote;
|
|
|
|
|
2014-06-22 18:56:01 +03:00
|
|
|
use BackRestTest::CommonTest;
|
|
|
|
|
2014-06-22 17:30:17 +03:00
|
|
|
use Exporter qw(import);
|
2014-06-22 18:56:01 +03:00
|
|
|
our @EXPORT = qw(BackRestTestBackup_Test);
|
|
|
|
|
|
|
|
my $strTestPath;
|
|
|
|
my $strHost;
|
|
|
|
my $strUserBackRest;
|
2014-08-10 22:02:14 +03:00
|
|
|
my $hDb;
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# BackRestTestBackup_PgConnect
|
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestBackup_PgConnect
|
|
|
|
{
|
|
|
|
# Disconnect user session
|
|
|
|
BackRestTestBackup_PgDisconnect();
|
|
|
|
|
|
|
|
# Connect to the db (whether it is local or remote)
|
|
|
|
$hDb = DBI->connect('dbi:Pg:dbname=postgres;port=' . BackRestTestCommon_DbPortGet .
|
|
|
|
';host=' . BackRestTestCommon_DbPathGet(),
|
|
|
|
BackRestTestCommon_UserGet(),
|
|
|
|
undef,
|
|
|
|
{AutoCommit => 1, RaiseError => 1});
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# BackRestTestBackup_Disconnect
|
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestBackup_PgDisconnect
|
|
|
|
{
|
|
|
|
# Connect to the db (whether it is local or remote)
|
|
|
|
if (defined($hDb))
|
|
|
|
{
|
|
|
|
$hDb->disconnect;
|
|
|
|
undef($hDb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# BackRestTestBackup_PgExecute
|
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestBackup_PgExecute
|
|
|
|
{
|
|
|
|
my $strSql = shift;
|
2014-08-13 01:36:38 +03:00
|
|
|
my $bCheckpoint = shift;
|
2014-08-10 22:02:14 +03:00
|
|
|
|
2014-08-13 01:36:38 +03:00
|
|
|
# Log and execute the statement
|
2014-08-10 22:02:14 +03:00
|
|
|
&log(DEBUG, "SQL: ${strSql}");
|
|
|
|
my $hStatement = $hDb->prepare($strSql);
|
2014-08-13 01:36:38 +03:00
|
|
|
|
2014-08-10 22:02:14 +03:00
|
|
|
$hStatement->execute() or
|
|
|
|
confess &log(ERROR, "Unable to execute: ${strSql}");
|
2014-08-13 01:36:38 +03:00
|
|
|
|
2014-08-10 22:02:14 +03:00
|
|
|
$hStatement->finish();
|
|
|
|
|
2014-08-13 01:36:38 +03:00
|
|
|
# Perform a checkpoint if requested
|
|
|
|
if (defined($bCheckpoint) && $bCheckpoint)
|
2014-08-10 22:02:14 +03:00
|
|
|
{
|
2014-08-13 01:36:38 +03:00
|
|
|
BackRestTestBackup_PgExecute('checkpoint');
|
2014-08-10 22:02:14 +03:00
|
|
|
}
|
|
|
|
}
|
2014-06-22 18:56:01 +03:00
|
|
|
|
|
|
|
####################################################################################################################################
|
2014-06-29 17:53:39 +03:00
|
|
|
# BackRestTestBackup_ClusterStop
|
2014-06-22 18:56:01 +03:00
|
|
|
####################################################################################################################################
|
2014-06-29 17:53:39 +03:00
|
|
|
sub BackRestTestBackup_ClusterStop
|
2014-06-22 18:56:01 +03:00
|
|
|
{
|
|
|
|
my $strPath = shift;
|
2014-06-24 01:54:00 +03:00
|
|
|
|
2014-08-10 22:02:14 +03:00
|
|
|
# Disconnect user session
|
|
|
|
BackRestTestBackup_PgDisconnect();
|
|
|
|
|
|
|
|
# If postmaster process is running them stop the cluster
|
2014-06-22 18:56:01 +03:00
|
|
|
if (-e $strPath . "/postmaster.pid")
|
|
|
|
{
|
2014-08-11 04:22:17 +03:00
|
|
|
BackRestTestCommon_Execute(BackRestTestCommon_PgSqlBinPathGet() . "/pg_ctl stop -D $strPath -w -s -m fast");
|
2014-06-22 18:56:01 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-28 21:32:34 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
# BackRestTestBackup_ClusterRestart
|
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestBackup_ClusterRestart
|
|
|
|
{
|
|
|
|
my $strPath = BackRestTestCommon_DbCommonPathGet();
|
|
|
|
|
2014-08-10 22:02:14 +03:00
|
|
|
# Disconnect user session
|
|
|
|
BackRestTestBackup_PgDisconnect();
|
|
|
|
|
|
|
|
# If postmaster process is running them stop the cluster
|
2014-06-28 21:32:34 +03:00
|
|
|
if (-e $strPath . "/postmaster.pid")
|
|
|
|
{
|
2014-08-11 04:22:17 +03:00
|
|
|
BackRestTestCommon_Execute(BackRestTestCommon_PgSqlBinPathGet() . "/pg_ctl restart -D $strPath -w -s");
|
2014-06-28 21:32:34 +03:00
|
|
|
}
|
2014-08-10 22:02:14 +03:00
|
|
|
|
|
|
|
# Connect user session
|
|
|
|
BackRestTestBackup_PgConnect();
|
2014-06-28 21:32:34 +03:00
|
|
|
}
|
|
|
|
|
2014-06-22 18:56:01 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
# BackRestTestBackup_ClusterCreate
|
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestBackup_ClusterCreate
|
|
|
|
{
|
|
|
|
my $strPath = shift;
|
|
|
|
my $iPort = shift;
|
2014-06-24 01:54:00 +03:00
|
|
|
|
|
|
|
my $strArchive = BackRestTestCommon_CommandMainGet() . " --stanza=" . BackRestTestCommon_StanzaGet() .
|
2014-06-23 03:19:13 +03:00
|
|
|
" --config=" . BackRestTestCommon_DbPathGet() . "/pg_backrest.conf archive-push %p";
|
2014-06-22 17:30:17 +03:00
|
|
|
|
2014-08-11 04:22:17 +03:00
|
|
|
BackRestTestCommon_Execute(BackRestTestCommon_PgSqlBinPathGet() . "/initdb -D ${strPath} -A trust");
|
|
|
|
BackRestTestCommon_Execute(BackRestTestCommon_PgSqlBinPathGet() . "/pg_ctl start -o \"-c port=$iPort -c " .
|
|
|
|
"checkpoint_segments=1 -c wal_level=archive -c archive_mode=on -c archive_command='$strArchive' " .
|
2014-08-10 22:02:14 +03:00
|
|
|
"-c unix_socket_directories='" . BackRestTestCommon_DbPathGet() . "'\" " .
|
2014-07-03 02:15:21 +03:00
|
|
|
"-D $strPath -l $strPath/postgresql.log -w -s");
|
2014-08-10 22:02:14 +03:00
|
|
|
|
|
|
|
# Connect user session
|
|
|
|
BackRestTestBackup_PgConnect();
|
2014-06-22 18:56:01 +03:00
|
|
|
}
|
2014-06-22 17:30:17 +03:00
|
|
|
|
|
|
|
####################################################################################################################################
|
2014-06-29 17:53:39 +03:00
|
|
|
# BackRestTestBackup_Drop
|
2014-06-22 17:30:17 +03:00
|
|
|
####################################################################################################################################
|
2014-06-29 17:53:39 +03:00
|
|
|
sub BackRestTestBackup_Drop
|
2014-06-22 17:30:17 +03:00
|
|
|
{
|
2014-06-29 17:53:39 +03:00
|
|
|
# Stop the cluster if one is running
|
|
|
|
BackRestTestBackup_ClusterStop(BackRestTestCommon_DbCommonPathGet());
|
2014-06-22 17:30:17 +03:00
|
|
|
|
|
|
|
# Remove the backrest private directory
|
2014-06-29 17:53:39 +03:00
|
|
|
if (-e BackRestTestCommon_BackupPathGet())
|
2014-06-22 17:30:17 +03:00
|
|
|
{
|
2014-07-03 02:15:21 +03:00
|
|
|
BackRestTestCommon_Execute('rm -rf ' . BackRestTestCommon_BackupPathGet(), true, true);
|
2014-06-22 17:30:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
# Remove the test directory
|
2014-06-29 17:53:39 +03:00
|
|
|
system('rm -rf ' . BackRestTestCommon_TestPathGet()) == 0
|
|
|
|
or die 'unable to remove ' . BackRestTestCommon_TestPathGet() . 'path';
|
|
|
|
}
|
2014-06-22 17:30:17 +03:00
|
|
|
|
2014-06-29 17:53:39 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
# BackRestTestBackup_Create
|
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestBackup_Create
|
|
|
|
{
|
|
|
|
my $bRemote = shift;
|
2014-07-13 17:37:16 +03:00
|
|
|
my $bCluster = shift;
|
2014-06-22 18:56:01 +03:00
|
|
|
|
2014-06-29 17:53:39 +03:00
|
|
|
# Set defaults
|
|
|
|
$bRemote = defined($bRemote) ? $bRemote : false;
|
2014-07-13 17:37:16 +03:00
|
|
|
$bCluster = defined($bCluster) ? $bCluster : true;
|
2014-06-22 17:30:17 +03:00
|
|
|
|
2014-06-29 17:53:39 +03:00
|
|
|
# Drop the old test directory
|
|
|
|
BackRestTestBackup_Drop();
|
2014-06-24 01:54:00 +03:00
|
|
|
|
2014-06-29 17:53:39 +03:00
|
|
|
# Create the test directory
|
|
|
|
mkdir(BackRestTestCommon_TestPathGet(), oct('0770'))
|
|
|
|
or confess 'Unable to create ' . BackRestTestCommon_TestPathGet() . ' path';
|
2014-06-22 18:56:01 +03:00
|
|
|
|
2014-06-29 17:53:39 +03:00
|
|
|
# Create the db directory
|
|
|
|
mkdir(BackRestTestCommon_DbPathGet(), oct('0700'))
|
|
|
|
or confess 'Unable to create ' . BackRestTestCommon_DbPathGet() . ' path';
|
|
|
|
|
|
|
|
# Create the db/common directory
|
|
|
|
mkdir(BackRestTestCommon_DbCommonPathGet())
|
|
|
|
or confess 'Unable to create ' . BackRestTestCommon_DbCommonPathGet() . ' path';
|
|
|
|
|
|
|
|
# Create the archive directory
|
|
|
|
mkdir(BackRestTestCommon_ArchivePathGet(), oct('0700'))
|
|
|
|
or confess 'Unable to create ' . BackRestTestCommon_ArchivePathGet() . ' path';
|
|
|
|
|
|
|
|
# Create the backup directory
|
|
|
|
if ($bRemote)
|
|
|
|
{
|
2014-07-03 02:15:21 +03:00
|
|
|
BackRestTestCommon_Execute("mkdir -m 700 " . BackRestTestCommon_BackupPathGet(), true);
|
2014-06-29 17:53:39 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mkdir(BackRestTestCommon_BackupPathGet(), oct('0700'))
|
|
|
|
or confess 'Unable to create ' . BackRestTestCommon_BackupPathGet() . ' path';
|
2014-06-22 17:30:17 +03:00
|
|
|
}
|
2014-06-29 17:53:39 +03:00
|
|
|
|
|
|
|
# Create the cluster
|
2014-07-13 17:37:16 +03:00
|
|
|
if ($bCluster)
|
|
|
|
{
|
|
|
|
BackRestTestBackup_ClusterCreate(BackRestTestCommon_DbCommonPathGet(), BackRestTestCommon_DbPortGet());
|
|
|
|
}
|
2014-06-22 17:30:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
2014-06-22 18:56:01 +03:00
|
|
|
# BackRestTestBackup_Test
|
2014-06-22 17:30:17 +03:00
|
|
|
####################################################################################################################################
|
2014-06-22 18:56:01 +03:00
|
|
|
sub BackRestTestBackup_Test
|
2014-06-22 17:30:17 +03:00
|
|
|
{
|
|
|
|
my $strTest = shift;
|
|
|
|
|
|
|
|
# If no test was specified, then run them all
|
|
|
|
if (!defined($strTest))
|
|
|
|
{
|
|
|
|
$strTest = 'all';
|
|
|
|
}
|
|
|
|
|
2014-08-10 22:02:14 +03:00
|
|
|
# Setup global variables
|
|
|
|
$strTestPath = BackRestTestCommon_TestPathGet();
|
|
|
|
$strHost = BackRestTestCommon_HostGet();
|
|
|
|
$strUserBackRest = BackRestTestCommon_UserBackRestGet();
|
|
|
|
|
2014-06-22 17:30:17 +03:00
|
|
|
# Setup test variables
|
|
|
|
my $iRun;
|
2014-07-16 05:32:41 +03:00
|
|
|
my $bCreate;
|
2014-06-22 18:56:01 +03:00
|
|
|
my $strStanza = BackRestTestCommon_StanzaGet();
|
|
|
|
my $strGroup = BackRestTestCommon_GroupGet();
|
2014-08-10 22:02:14 +03:00
|
|
|
|
2014-07-17 02:15:56 +03:00
|
|
|
my $strArchiveChecksum = '1c7e00fd09b9dd11fc2966590b3e3274645dd031';
|
|
|
|
my $iArchiveMax = 3;
|
|
|
|
my $strXlogPath = BackRestTestCommon_DbCommonPathGet() . '/pg_xlog';
|
|
|
|
my $strArchiveTestFile = BackRestTestCommon_DataPathGet() . '/test.archive.bin';
|
2014-08-13 01:36:38 +03:00
|
|
|
my $iThreadMax = 4;
|
2014-06-22 17:30:17 +03:00
|
|
|
|
2014-06-22 18:56:01 +03:00
|
|
|
# Print test banner
|
|
|
|
&log(INFO, "BACKUP MODULE ******************************************************************");
|
2014-06-22 17:30:17 +03:00
|
|
|
|
2014-07-16 05:32:41 +03:00
|
|
|
#-------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
# Create remote
|
|
|
|
#-------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
my $oRemote = BackRest::Remote->new
|
|
|
|
(
|
|
|
|
strHost => $strHost,
|
|
|
|
strUser => $strUserBackRest,
|
|
|
|
strCommand => BackRestTestCommon_CommandRemoteGet()
|
|
|
|
);
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------------------------------------------------------------
|
2014-07-17 02:15:56 +03:00
|
|
|
# Test archive-push
|
2014-07-16 05:32:41 +03:00
|
|
|
#-------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
if ($strTest eq 'all' || $strTest eq 'archive-push')
|
2014-07-13 17:37:16 +03:00
|
|
|
{
|
|
|
|
$iRun = 0;
|
2014-07-16 05:32:41 +03:00
|
|
|
$bCreate = true;
|
|
|
|
my $oFile;
|
2014-07-13 17:37:16 +03:00
|
|
|
|
2014-07-17 02:15:56 +03:00
|
|
|
&log(INFO, "Test archive-push\n");
|
2014-07-13 17:37:16 +03:00
|
|
|
|
|
|
|
for (my $bRemote = false; $bRemote <= true; $bRemote++)
|
|
|
|
{
|
2014-07-16 05:32:41 +03:00
|
|
|
for (my $bCompress = false; $bCompress <= true; $bCompress++)
|
2014-07-13 17:37:16 +03:00
|
|
|
{
|
2014-07-16 05:32:41 +03:00
|
|
|
for (my $bChecksum = false; $bChecksum <= true; $bChecksum++)
|
|
|
|
{
|
|
|
|
for (my $bArchiveAsync = false; $bArchiveAsync <= $bRemote; $bArchiveAsync++)
|
|
|
|
{
|
|
|
|
for (my $bCompressAsync = false; $bCompressAsync <= true; $bCompressAsync++)
|
|
|
|
{
|
|
|
|
# Increment the run, log, and decide whether this unit test should be run
|
|
|
|
if (!BackRestTestCommon_Run(++$iRun,
|
|
|
|
"rmt ${bRemote}, cmp ${bCompress}, chk ${bChecksum}, " .
|
|
|
|
"arc_async ${bArchiveAsync}, cmp_async ${bCompressAsync}")) {next}
|
|
|
|
|
|
|
|
# Create the test directory
|
|
|
|
if ($bCreate)
|
|
|
|
{
|
|
|
|
# Create the file object
|
|
|
|
$oFile = (BackRest::File->new
|
|
|
|
(
|
|
|
|
strStanza => $strStanza,
|
|
|
|
strBackupPath => BackRestTestCommon_BackupPathGet(),
|
|
|
|
strRemote => $bRemote ? 'backup' : undef,
|
|
|
|
oRemote => $bRemote ? $oRemote : undef
|
|
|
|
))->clone();
|
|
|
|
|
|
|
|
BackRestTestBackup_Create($bRemote, false);
|
2014-07-17 02:15:56 +03:00
|
|
|
#
|
|
|
|
# # Create the db/common/pg_xlog directory
|
|
|
|
# mkdir($strXlogPath)
|
|
|
|
# or confess 'Unable to create ${strXlogPath} path';
|
2014-07-16 05:32:41 +03:00
|
|
|
|
|
|
|
$bCreate = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
BackRestTestCommon_ConfigCreate('db',
|
|
|
|
($bRemote ? REMOTE_BACKUP : undef),
|
|
|
|
$bCompress,
|
|
|
|
$bChecksum, # checksum
|
|
|
|
undef, # hardlink
|
|
|
|
undef, # thread-max
|
|
|
|
$bArchiveAsync,
|
|
|
|
$bCompressAsync);
|
|
|
|
|
|
|
|
my $strCommand = BackRestTestCommon_CommandMainGet() . ' --config=' . BackRestTestCommon_DbPathGet() .
|
|
|
|
"/pg_backrest.conf --stanza=db archive-push";
|
|
|
|
|
|
|
|
# Loop through backups
|
|
|
|
for (my $iBackup = 1; $iBackup <= 3; $iBackup++)
|
|
|
|
{
|
|
|
|
my $strArchiveFile;
|
|
|
|
|
|
|
|
# Loop through archive files
|
|
|
|
for (my $iArchive = 1; $iArchive <= $iArchiveMax; $iArchive++)
|
|
|
|
{
|
|
|
|
# Construct the archive filename
|
|
|
|
my $iArchiveNo = (($iBackup - 1) * $iArchiveMax + ($iArchive - 1)) + 1;
|
|
|
|
|
|
|
|
if ($iArchiveNo > 255)
|
|
|
|
{
|
|
|
|
confess "backup total * archive total cannot be greater than 255";
|
|
|
|
}
|
|
|
|
|
|
|
|
$strArchiveFile = uc(sprintf("0000000100000001%08x", $iArchiveNo));
|
|
|
|
|
|
|
|
&log(INFO, " backup " . sprintf("%02d", $iBackup) .
|
|
|
|
", archive " .sprintf("%02x", $iArchive) .
|
|
|
|
" - ${strArchiveFile}");
|
|
|
|
|
2014-07-17 02:15:56 +03:00
|
|
|
my $strSourceFile = "${strXlogPath}/${strArchiveFile}";
|
|
|
|
|
|
|
|
$oFile->copy(PATH_DB_ABSOLUTE, $strArchiveTestFile, # Source file
|
|
|
|
PATH_DB_ABSOLUTE, $strSourceFile, # Destination file
|
|
|
|
false, # Source is not compressed
|
|
|
|
false, # Destination is not compressed
|
|
|
|
undef, undef, undef, # Unused params
|
|
|
|
true); # Create path if it does not exist
|
2014-07-16 05:32:41 +03:00
|
|
|
|
2014-07-17 02:15:56 +03:00
|
|
|
BackRestTestCommon_Execute($strCommand . " ${strSourceFile}");
|
2014-07-16 05:32:41 +03:00
|
|
|
|
|
|
|
# Build the archive name to check for at the destination
|
|
|
|
my $strArchiveCheck = $strArchiveFile;
|
2014-07-13 17:37:16 +03:00
|
|
|
|
2014-07-16 05:32:41 +03:00
|
|
|
if ($bChecksum)
|
|
|
|
{
|
|
|
|
$strArchiveCheck .= "-${strArchiveChecksum}";
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($bCompress)
|
|
|
|
{
|
|
|
|
$strArchiveCheck .= ".gz";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$oFile->exists(PATH_BACKUP_ARCHIVE, $strArchiveCheck))
|
|
|
|
{
|
|
|
|
sleep(1);
|
|
|
|
|
|
|
|
if (!$oFile->exists(PATH_BACKUP_ARCHIVE, $strArchiveCheck))
|
|
|
|
{
|
|
|
|
confess "unable to find " . $oFile->path_get(PATH_BACKUP_ARCHIVE, $strArchiveCheck);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# !!! Need to put in tests for .backup files here
|
|
|
|
}
|
|
|
|
}
|
2014-07-13 17:37:16 +03:00
|
|
|
}
|
2014-07-16 05:32:41 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$bCreate = true;
|
|
|
|
}
|
2014-07-13 17:37:16 +03:00
|
|
|
|
2014-07-16 05:32:41 +03:00
|
|
|
if (BackRestTestCommon_Cleanup())
|
|
|
|
{
|
|
|
|
&log(INFO, 'cleanup');
|
|
|
|
BackRestTestBackup_Drop();
|
2014-07-13 17:37:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-17 02:15:56 +03:00
|
|
|
#-------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
# Test archive-get
|
|
|
|
#-------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
if ($strTest eq 'all' || $strTest eq 'archive-get')
|
|
|
|
{
|
|
|
|
$iRun = 0;
|
|
|
|
$bCreate = true;
|
|
|
|
my $oFile;
|
|
|
|
|
|
|
|
&log(INFO, "Test archive-get\n");
|
|
|
|
|
|
|
|
for (my $bRemote = false; $bRemote <= true; $bRemote++)
|
|
|
|
{
|
|
|
|
for (my $bCompress = false; $bCompress <= true; $bCompress++)
|
|
|
|
{
|
|
|
|
for (my $bChecksum = false; $bChecksum <= true; $bChecksum++)
|
|
|
|
{
|
|
|
|
# Increment the run, log, and decide whether this unit test should be run
|
|
|
|
if (!BackRestTestCommon_Run(++$iRun,
|
|
|
|
"rmt ${bRemote}, cmp ${bCompress}, chk ${bChecksum}")) {next}
|
|
|
|
|
|
|
|
# Create the test directory
|
|
|
|
if ($bCreate)
|
|
|
|
{
|
|
|
|
# Create the file object
|
|
|
|
$oFile = (BackRest::File->new
|
|
|
|
(
|
|
|
|
strStanza => $strStanza,
|
|
|
|
strBackupPath => BackRestTestCommon_BackupPathGet(),
|
|
|
|
strRemote => $bRemote ? 'backup' : undef,
|
|
|
|
oRemote => $bRemote ? $oRemote : undef
|
|
|
|
))->clone();
|
|
|
|
|
|
|
|
BackRestTestBackup_Create($bRemote, false);
|
|
|
|
|
|
|
|
# Create the db/common/pg_xlog directory
|
|
|
|
mkdir($strXlogPath)
|
|
|
|
or confess 'Unable to create ${strXlogPath} path';
|
|
|
|
|
|
|
|
$bCreate = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
BackRestTestCommon_ConfigCreate('db', # local
|
|
|
|
($bRemote ? REMOTE_BACKUP : undef), # remote
|
|
|
|
$bCompress, # compress
|
|
|
|
$bChecksum, # checksum
|
|
|
|
undef, # hardlink
|
|
|
|
undef, # thread-max
|
|
|
|
undef, # archive-async
|
|
|
|
undef); # compress-async
|
|
|
|
|
|
|
|
my $strCommand = BackRestTestCommon_CommandMainGet() . ' --config=' . BackRestTestCommon_DbPathGet() .
|
|
|
|
"/pg_backrest.conf --stanza=db archive-get";
|
|
|
|
|
|
|
|
# Loop through backups
|
|
|
|
my $strArchiveFile;
|
|
|
|
|
|
|
|
# Loop through archive files
|
|
|
|
for (my $iArchiveNo = 1; $iArchiveNo <= $iArchiveMax; $iArchiveNo++)
|
|
|
|
{
|
|
|
|
# Construct the archive filename
|
|
|
|
if ($iArchiveNo > 255)
|
|
|
|
{
|
|
|
|
confess "backup total * archive total cannot be greater than 255";
|
|
|
|
}
|
|
|
|
|
|
|
|
$strArchiveFile = uc(sprintf("0000000100000001%08x", $iArchiveNo));
|
|
|
|
|
|
|
|
&log(INFO, " archive " .sprintf("%02x", $iArchiveNo) .
|
|
|
|
" - ${strArchiveFile}");
|
|
|
|
|
|
|
|
my $strSourceFile = $strArchiveFile;
|
|
|
|
|
|
|
|
if ($bChecksum)
|
|
|
|
{
|
|
|
|
$strSourceFile .= "-${strArchiveChecksum}";
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($bCompress)
|
|
|
|
{
|
|
|
|
$strSourceFile .= ".gz";
|
|
|
|
}
|
|
|
|
|
|
|
|
$oFile->copy(PATH_DB_ABSOLUTE, $strArchiveTestFile, # Source file
|
|
|
|
PATH_BACKUP_ARCHIVE, $strSourceFile, # Destination file
|
|
|
|
false, # Source is not compressed
|
|
|
|
$bCompress, # Destination compress based on test
|
|
|
|
undef, undef, undef, # Unused params
|
|
|
|
true); # Create path if it does not exist
|
|
|
|
|
|
|
|
my $strDestinationFile = "${strXlogPath}/${strArchiveFile}";
|
|
|
|
|
|
|
|
BackRestTestCommon_Execute($strCommand . " ${strArchiveFile} ${strDestinationFile}");
|
|
|
|
|
|
|
|
# Check that the destination file exists
|
|
|
|
if ($oFile->exists(PATH_DB_ABSOLUTE, $strDestinationFile))
|
|
|
|
{
|
|
|
|
if ($oFile->hash(PATH_DB_ABSOLUTE, $strDestinationFile) ne $strArchiveChecksum)
|
|
|
|
{
|
|
|
|
confess "archive file hash does not match ${strArchiveChecksum}";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
confess 'archive file is not in destination';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$bCreate = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (BackRestTestCommon_Cleanup())
|
|
|
|
{
|
|
|
|
&log(INFO, 'cleanup');
|
|
|
|
BackRestTestBackup_Drop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-16 05:32:41 +03:00
|
|
|
#-------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
# Test full
|
|
|
|
#-------------------------------------------------------------------------------------------------------------------------------
|
2014-06-28 21:32:34 +03:00
|
|
|
if ($strTest eq 'all' || $strTest eq 'full')
|
|
|
|
{
|
|
|
|
$iRun = 0;
|
2014-07-16 05:32:41 +03:00
|
|
|
$bCreate = true;
|
2014-06-28 21:32:34 +03:00
|
|
|
|
|
|
|
&log(INFO, "Test Full Backup\n");
|
|
|
|
|
2014-06-29 17:53:39 +03:00
|
|
|
for (my $bRemote = false; $bRemote <= true; $bRemote++)
|
2014-07-13 02:03:39 +03:00
|
|
|
{
|
|
|
|
for (my $bLarge = false; $bLarge <= false; $bLarge++)
|
2014-06-28 21:32:34 +03:00
|
|
|
{
|
2014-07-17 03:28:47 +03:00
|
|
|
for (my $bCompress = false; $bCompress <= false; $bCompress++)
|
|
|
|
{
|
|
|
|
for (my $bChecksum = false; $bChecksum <= false; $bChecksum++)
|
2014-07-13 02:03:39 +03:00
|
|
|
{
|
2014-06-29 17:53:39 +03:00
|
|
|
for (my $bHardlink = false; $bHardlink <= true; $bHardlink++)
|
2014-07-17 03:28:47 +03:00
|
|
|
{
|
|
|
|
for (my $bArchiveAsync = false; $bArchiveAsync <= $bRemote; $bArchiveAsync++)
|
2014-06-28 21:32:34 +03:00
|
|
|
{
|
2014-07-16 05:32:41 +03:00
|
|
|
# Increment the run, log, and decide whether this unit test should be run
|
|
|
|
if (!BackRestTestCommon_Run(++$iRun,
|
2014-07-17 03:28:47 +03:00
|
|
|
"rmt ${bRemote}, lrg ${bLarge}, cmp ${bCompress}, chk ${bChecksum}, " .
|
|
|
|
"hardlink ${bHardlink}, arc_async ${bArchiveAsync}")) {next}
|
2014-06-28 21:32:34 +03:00
|
|
|
|
2014-07-16 05:32:41 +03:00
|
|
|
# Create the test directory
|
|
|
|
if ($bCreate)
|
2014-06-28 21:32:34 +03:00
|
|
|
{
|
2014-07-16 05:32:41 +03:00
|
|
|
BackRestTestBackup_Create($bRemote);
|
|
|
|
$bCreate = false;
|
2014-06-28 21:32:34 +03:00
|
|
|
}
|
|
|
|
|
2014-07-16 05:32:41 +03:00
|
|
|
# Create db config
|
2014-07-17 03:28:47 +03:00
|
|
|
BackRestTestCommon_ConfigCreate('db', # local
|
|
|
|
$bRemote ? REMOTE_BACKUP : undef, # remote
|
|
|
|
$bCompress, # compress
|
|
|
|
$bChecksum, # checksum
|
|
|
|
defined($bRemote) ? undef : $bHardlink, # hardlink
|
|
|
|
defined($bRemote) ? undef : $iThreadMax, # thread-max
|
|
|
|
$bArchiveAsync, # archive-async
|
|
|
|
undef); # compress-async
|
|
|
|
|
|
|
|
# Create backup config
|
2014-07-17 03:07:50 +03:00
|
|
|
if ($bRemote)
|
|
|
|
{
|
2014-07-17 03:28:47 +03:00
|
|
|
BackRestTestCommon_ConfigCreate('backup', # local
|
|
|
|
$bRemote ? REMOTE_DB : undef, # remote
|
|
|
|
$bCompress, # compress
|
|
|
|
$bChecksum, # checksum
|
|
|
|
$bHardlink, # hardlink
|
|
|
|
$iThreadMax, # thread-max
|
|
|
|
undef, # archive-async
|
|
|
|
undef); # compress-async
|
2014-07-17 03:07:50 +03:00
|
|
|
}
|
2014-06-28 21:32:34 +03:00
|
|
|
|
2014-08-10 22:02:14 +03:00
|
|
|
# Create the backup command
|
|
|
|
my $strCommand = BackRestTestCommon_CommandMainGet() . ' --config=' .
|
|
|
|
($bRemote ? BackRestTestCommon_BackupPathGet() : BackRestTestCommon_DbPathGet()) .
|
|
|
|
"/pg_backrest.conf --test --type=incr --stanza=${strStanza} backup";
|
|
|
|
|
|
|
|
|
|
|
|
# Run the full/incremental tests
|
2014-07-13 02:03:39 +03:00
|
|
|
for (my $iFull = 1; $iFull <= 1; $iFull++)
|
|
|
|
{
|
2014-06-28 21:32:34 +03:00
|
|
|
|
2014-08-14 16:40:20 +03:00
|
|
|
for (my $iIncr = 0; $iIncr <= 2; $iIncr++)
|
2014-08-10 22:02:14 +03:00
|
|
|
{
|
2014-08-11 04:22:17 +03:00
|
|
|
&log(INFO, " " . ($iIncr == 0 ? ("full " . sprintf("%02d", $iFull)) :
|
|
|
|
(" incr " . sprintf("%02d", $iIncr))));
|
2014-08-10 22:02:14 +03:00
|
|
|
|
2014-08-14 16:40:20 +03:00
|
|
|
# Create a table in each backup to check references
|
|
|
|
BackRestTestBackup_PgExecute("create table test_backup_${iIncr} (id int)", true);
|
|
|
|
|
|
|
|
# Create a table to be dropped to test missing file code
|
|
|
|
BackRestTestBackup_PgExecute('create table test_drop (id int)');
|
2014-06-29 17:53:39 +03:00
|
|
|
|
2014-08-10 22:02:14 +03:00
|
|
|
BackRestTestCommon_ExecuteBegin($strCommand, $bRemote);
|
|
|
|
|
|
|
|
if (BackRestTestCommon_ExecuteEnd(TEST_MANIFEST_BUILD))
|
|
|
|
{
|
2014-08-14 16:40:20 +03:00
|
|
|
BackRestTestBackup_PgExecute('drop table test_drop', true);
|
2014-08-10 22:02:14 +03:00
|
|
|
|
|
|
|
BackRestTestCommon_ExecuteEnd();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
confess &log(ERROR, 'test point ' . TEST_MANIFEST_BUILD . ' was not found');
|
|
|
|
}
|
2014-06-28 21:32:34 +03:00
|
|
|
}
|
2014-07-13 02:03:39 +03:00
|
|
|
}
|
|
|
|
}
|
2014-06-28 21:32:34 +03:00
|
|
|
}
|
2014-07-17 03:28:47 +03:00
|
|
|
}
|
|
|
|
}
|
2014-06-29 17:53:39 +03:00
|
|
|
|
2014-07-16 05:32:41 +03:00
|
|
|
$bCreate = true;
|
2014-06-28 21:32:34 +03:00
|
|
|
}
|
2014-07-13 02:03:39 +03:00
|
|
|
}
|
2014-06-22 18:56:01 +03:00
|
|
|
|
2014-07-16 05:32:41 +03:00
|
|
|
if (BackRestTestCommon_Cleanup())
|
|
|
|
{
|
|
|
|
&log(INFO, 'cleanup');
|
|
|
|
BackRestTestBackup_Drop();
|
|
|
|
}
|
|
|
|
}
|
2014-06-22 17:30:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|