2014-06-22 17:30:17 +03:00
|
|
|
#!/usr/bin/perl
|
|
|
|
####################################################################################################################################
|
|
|
|
# CommonTest.pm - Common globals used for testing
|
|
|
|
####################################################################################################################################
|
|
|
|
package BackRestTest::CommonTest;
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# Perl includes
|
|
|
|
####################################################################################################################################
|
|
|
|
use strict;
|
2015-03-03 07:57:20 +02:00
|
|
|
use warnings FATAL => qw(all);
|
|
|
|
use Carp qw(confess);
|
2014-06-22 17:30:17 +03:00
|
|
|
|
|
|
|
use File::Basename;
|
2014-10-16 20:22:34 +03:00
|
|
|
use File::Path qw(remove_tree);
|
2014-06-22 17:30:17 +03:00
|
|
|
use Cwd 'abs_path';
|
2014-07-03 02:15:21 +03:00
|
|
|
use IPC::Open3;
|
2014-09-18 18:28:23 +03:00
|
|
|
use POSIX ':sys_wait_h';
|
2014-07-27 21:03:21 +03:00
|
|
|
use IO::Select;
|
2015-01-22 01:37:49 +02:00
|
|
|
use File::Copy qw(move);
|
2014-06-22 17:30:17 +03:00
|
|
|
|
2014-09-18 18:28:23 +03:00
|
|
|
use lib dirname($0) . '/../lib';
|
2014-06-22 18:56:01 +03:00
|
|
|
use BackRest::Utility;
|
2014-12-24 01:52:38 +02:00
|
|
|
use BackRest::Remote;
|
2014-06-22 21:51:28 +03:00
|
|
|
use BackRest::File;
|
2015-01-23 03:11:33 +02:00
|
|
|
use BackRest::Manifest;
|
2014-06-22 18:56:01 +03:00
|
|
|
|
2014-06-22 17:30:17 +03:00
|
|
|
use Exporter qw(import);
|
2015-03-12 18:15:19 +02:00
|
|
|
our @EXPORT = qw(BackRestTestCommon_Create BackRestTestCommon_Drop BackRestTestCommon_Setup BackRestTestCommon_ExecuteBegin
|
|
|
|
BackRestTestCommon_ExecuteEnd BackRestTestCommon_Execute BackRestTestCommon_ExecuteBackRest
|
2014-12-21 17:11:17 +02:00
|
|
|
BackRestTestCommon_PathCreate BackRestTestCommon_PathMode BackRestTestCommon_PathRemove
|
2015-01-22 17:54:02 +02:00
|
|
|
BackRestTestCommon_FileCreate BackRestTestCommon_FileRemove BackRestTestCommon_PathCopy BackRestTestCommon_PathMove
|
2015-01-31 20:48:09 +02:00
|
|
|
BackRestTestCommon_ConfigCreate BackRestTestCommon_ConfigRemap BackRestTestCommon_ConfigRecovery
|
|
|
|
BackRestTestCommon_Run BackRestTestCommon_Cleanup BackRestTestCommon_PgSqlBinPathGet
|
|
|
|
BackRestTestCommon_StanzaGet BackRestTestCommon_CommandMainGet BackRestTestCommon_CommandRemoteGet
|
|
|
|
BackRestTestCommon_HostGet BackRestTestCommon_UserGet BackRestTestCommon_GroupGet
|
|
|
|
BackRestTestCommon_UserBackRestGet BackRestTestCommon_TestPathGet BackRestTestCommon_DataPathGet
|
2015-03-12 18:15:19 +02:00
|
|
|
BackRestTestCommon_RepoPathGet BackRestTestCommon_LocalPathGet BackRestTestCommon_DbPathGet
|
|
|
|
BackRestTestCommon_DbCommonPathGet BackRestTestCommon_ClusterStop BackRestTestCommon_DbTablespacePathGet
|
|
|
|
BackRestTestCommon_DbPortGet);
|
2014-06-22 17:30:17 +03:00
|
|
|
|
2014-08-11 04:22:17 +03:00
|
|
|
my $strPgSqlBin;
|
2014-06-22 17:30:17 +03:00
|
|
|
my $strCommonStanza;
|
2014-06-22 21:51:28 +03:00
|
|
|
my $strCommonCommandMain;
|
2014-06-22 17:30:17 +03:00
|
|
|
my $strCommonCommandRemote;
|
2014-06-22 21:51:28 +03:00
|
|
|
my $strCommonCommandPsql;
|
2014-06-22 17:30:17 +03:00
|
|
|
my $strCommonHost;
|
|
|
|
my $strCommonUser;
|
|
|
|
my $strCommonGroup;
|
|
|
|
my $strCommonUserBackRest;
|
|
|
|
my $strCommonTestPath;
|
2014-07-13 16:13:19 +03:00
|
|
|
my $strCommonDataPath;
|
2015-03-12 18:15:19 +02:00
|
|
|
my $strCommonRepoPath;
|
|
|
|
my $strCommonLocalPath;
|
2014-06-22 21:51:28 +03:00
|
|
|
my $strCommonDbPath;
|
|
|
|
my $strCommonDbCommonPath;
|
2014-09-20 00:51:51 +03:00
|
|
|
my $strCommonDbTablespacePath;
|
2014-06-22 18:56:01 +03:00
|
|
|
my $iCommonDbPort;
|
2014-07-16 05:32:41 +03:00
|
|
|
my $iModuleTestRun;
|
|
|
|
my $bDryRun;
|
|
|
|
my $bNoCleanup;
|
|
|
|
|
2014-08-10 22:02:14 +03:00
|
|
|
# Execution globals
|
|
|
|
my $strErrorLog;
|
|
|
|
my $hError;
|
|
|
|
my $strOutLog;
|
|
|
|
my $hOut;
|
|
|
|
my $pId;
|
|
|
|
my $strCommand;
|
|
|
|
|
2015-03-12 18:15:19 +02:00
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# BackRestTestCommon_ClusterStop
|
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestCommon_ClusterStop
|
|
|
|
{
|
|
|
|
my $strPath = shift;
|
|
|
|
my $bImmediate = shift;
|
|
|
|
|
|
|
|
# Set default
|
|
|
|
$strPath = defined($strPath) ? $strPath : BackRestTestCommon_DbCommonPathGet();
|
|
|
|
$bImmediate = defined($bImmediate) ? $bImmediate : false;
|
|
|
|
|
|
|
|
# If postmaster process is running then stop the cluster
|
|
|
|
if (-e $strPath . '/postmaster.pid')
|
|
|
|
{
|
|
|
|
BackRestTestCommon_Execute(BackRestTestCommon_PgSqlBinPathGet() . "/pg_ctl stop -D ${strPath} -w -s -m " .
|
|
|
|
($bImmediate ? 'immediate' : 'fast'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# BackRestTestCommon_Drop
|
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestCommon_Drop
|
|
|
|
{
|
|
|
|
# Drop the cluster if it exists
|
|
|
|
BackRestTestCommon_ClusterStop(BackRestTestCommon_DbCommonPathGet(), true);
|
|
|
|
|
|
|
|
# Remove the backrest private directory
|
|
|
|
while (-e BackRestTestCommon_RepoPathGet())
|
|
|
|
{
|
|
|
|
BackRestTestCommon_PathRemove(BackRestTestCommon_RepoPathGet(), true, true);
|
|
|
|
BackRestTestCommon_PathRemove(BackRestTestCommon_RepoPathGet(), false, true);
|
|
|
|
hsleep(.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
# Remove the test directory
|
|
|
|
BackRestTestCommon_PathRemove(BackRestTestCommon_TestPathGet());
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# BackRestTestCommon_Create
|
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestCommon_Create
|
|
|
|
{
|
|
|
|
# Create the test directory
|
|
|
|
BackRestTestCommon_PathCreate(BackRestTestCommon_TestPathGet(), '0770');
|
|
|
|
}
|
|
|
|
|
2014-07-16 05:32:41 +03:00
|
|
|
####################################################################################################################################
|
2014-10-16 02:11:09 +03:00
|
|
|
# BackRestTestCommon_Run
|
2014-07-16 05:32:41 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestCommon_Run
|
|
|
|
{
|
|
|
|
my $iRun = shift;
|
|
|
|
my $strLog = shift;
|
|
|
|
|
|
|
|
if (defined($iModuleTestRun) && $iModuleTestRun != $iRun)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-09-18 18:28:23 +03:00
|
|
|
&log(INFO, 'run ' . sprintf('%03d', $iRun) . ' - ' . $strLog);
|
2014-07-16 05:32:41 +03:00
|
|
|
|
|
|
|
if ($bDryRun)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
2014-10-16 02:11:09 +03:00
|
|
|
# BackRestTestCommon_Cleanup
|
2014-07-16 05:32:41 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestCommon_Cleanup
|
|
|
|
{
|
|
|
|
return !$bNoCleanup && !$bDryRun;
|
|
|
|
}
|
2014-06-22 18:56:01 +03:00
|
|
|
|
|
|
|
####################################################################################################################################
|
2014-10-16 02:11:09 +03:00
|
|
|
# BackRestTestCommon_ExecuteBegin
|
2014-06-22 18:56:01 +03:00
|
|
|
####################################################################################################################################
|
2014-08-10 22:02:14 +03:00
|
|
|
sub BackRestTestCommon_ExecuteBegin
|
2014-07-03 01:58:38 +03:00
|
|
|
{
|
2014-08-10 22:02:14 +03:00
|
|
|
my $strCommandParam = shift;
|
2014-07-03 01:58:38 +03:00
|
|
|
my $bRemote = shift;
|
|
|
|
|
|
|
|
# Set defaults
|
|
|
|
$bRemote = defined($bRemote) ? $bRemote : false;
|
|
|
|
|
|
|
|
if ($bRemote)
|
|
|
|
{
|
2014-08-10 22:02:14 +03:00
|
|
|
$strCommand = "ssh ${strCommonUserBackRest}\@${strCommonHost} '${strCommandParam}'";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$strCommand = $strCommandParam;
|
2014-07-03 01:58:38 +03:00
|
|
|
}
|
|
|
|
|
2014-08-10 22:02:14 +03:00
|
|
|
$strErrorLog = '';
|
|
|
|
$hError = undef;
|
|
|
|
$strOutLog = '';
|
|
|
|
$hOut = undef;
|
2014-07-12 17:26:51 +03:00
|
|
|
|
2014-10-02 17:55:38 +03:00
|
|
|
&log(DEBUG, "executing command: ${strCommand}");
|
|
|
|
|
2014-07-28 01:13:23 +03:00
|
|
|
# Execute the command
|
2014-08-10 22:02:14 +03:00
|
|
|
$pId = open3(undef, $hOut, $hError, $strCommand);
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
2014-10-16 02:11:09 +03:00
|
|
|
# BackRestTestCommon_ExecuteEnd
|
2014-08-10 22:02:14 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestCommon_ExecuteEnd
|
|
|
|
{
|
|
|
|
my $strTest = shift;
|
|
|
|
my $bSuppressError = shift;
|
2015-01-03 19:56:44 +02:00
|
|
|
my $bShowOutput = shift;
|
2015-01-24 01:28:39 +02:00
|
|
|
my $iExpectedExitStatus = shift;
|
2014-08-10 22:02:14 +03:00
|
|
|
|
|
|
|
# Set defaults
|
|
|
|
$bSuppressError = defined($bSuppressError) ? $bSuppressError : false;
|
2015-01-03 19:56:44 +02:00
|
|
|
$bShowOutput = defined($bShowOutput) ? $bShowOutput : false;
|
2014-07-28 01:13:23 +03:00
|
|
|
|
|
|
|
# Create select objects
|
2014-07-27 21:03:21 +03:00
|
|
|
my $oErrorSelect = IO::Select->new();
|
|
|
|
$oErrorSelect->add($hError);
|
|
|
|
my $oOutSelect = IO::Select->new();
|
|
|
|
$oOutSelect->add($hOut);
|
2014-07-03 02:15:21 +03:00
|
|
|
|
2014-07-28 01:13:23 +03:00
|
|
|
# While the process is running drain the stdout and stderr streams
|
2014-07-27 21:03:21 +03:00
|
|
|
while(waitpid($pId, WNOHANG) == 0)
|
2014-07-03 01:58:38 +03:00
|
|
|
{
|
2014-07-28 01:13:23 +03:00
|
|
|
# Drain the stderr stream
|
2014-07-27 21:03:21 +03:00
|
|
|
if ($oErrorSelect->can_read(.1))
|
2014-07-12 17:26:51 +03:00
|
|
|
{
|
2014-07-27 21:03:21 +03:00
|
|
|
while (my $strLine = readline($hError))
|
|
|
|
{
|
|
|
|
$strErrorLog .= $strLine;
|
|
|
|
}
|
2014-07-12 17:26:51 +03:00
|
|
|
}
|
|
|
|
|
2014-07-28 01:13:23 +03:00
|
|
|
# Drain the stdout stream
|
2014-07-27 21:03:21 +03:00
|
|
|
if ($oOutSelect->can_read(.1))
|
|
|
|
{
|
|
|
|
while (my $strLine = readline($hOut))
|
|
|
|
{
|
|
|
|
$strOutLog .= $strLine;
|
2014-08-10 22:02:14 +03:00
|
|
|
|
|
|
|
if (defined($strTest) && test_check($strLine, $strTest))
|
|
|
|
{
|
|
|
|
&log(DEBUG, "Found test ${strTest}");
|
|
|
|
return true;
|
|
|
|
}
|
2014-07-27 21:03:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-28 01:13:23 +03:00
|
|
|
# Check the exit status and output an error if needed
|
2014-07-27 21:03:21 +03:00
|
|
|
my $iExitStatus = ${^CHILD_ERROR_NATIVE} >> 8;
|
|
|
|
|
2015-01-24 01:28:39 +02:00
|
|
|
if (defined($iExpectedExitStatus) && $iExitStatus == $iExpectedExitStatus)
|
|
|
|
{
|
|
|
|
return $iExitStatus;
|
|
|
|
}
|
|
|
|
|
2015-03-04 04:21:07 +02:00
|
|
|
if ($iExitStatus != 0 || (defined($iExpectedExitStatus) && $iExitStatus != $iExpectedExitStatus))
|
2014-07-27 21:03:21 +03:00
|
|
|
{
|
2014-10-08 20:54:31 +03:00
|
|
|
if ($bSuppressError)
|
|
|
|
{
|
|
|
|
&log(DEBUG, "suppressed error was ${iExitStatus}");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-01-24 01:28:39 +02:00
|
|
|
confess &log(ERROR, "command '${strCommand}' returned " . $iExitStatus .
|
|
|
|
(defined($iExpectedExitStatus) ? ", but ${iExpectedExitStatus} was expected" : '') . "\n" .
|
2014-10-08 20:54:31 +03:00
|
|
|
($strOutLog ne '' ? "STDOUT:\n${strOutLog}" : '') .
|
|
|
|
($strErrorLog ne '' ? "STDERR:\n${strErrorLog}" : ''));
|
|
|
|
}
|
2014-10-02 17:55:38 +03:00
|
|
|
}
|
2014-08-10 22:02:14 +03:00
|
|
|
|
2015-01-03 19:56:44 +02:00
|
|
|
if ($bShowOutput)
|
|
|
|
{
|
|
|
|
print "output:\n${strOutLog}\n";
|
|
|
|
}
|
|
|
|
|
2015-01-23 00:43:19 +02:00
|
|
|
if (defined($strTest))
|
|
|
|
{
|
|
|
|
confess &log(ASSERT, "test point ${strTest} was not found");
|
|
|
|
}
|
|
|
|
|
2014-08-10 22:02:14 +03:00
|
|
|
$hError = undef;
|
|
|
|
$hOut = undef;
|
|
|
|
|
2014-10-02 17:55:38 +03:00
|
|
|
return $iExitStatus;
|
2014-08-10 22:02:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
2014-10-16 02:11:09 +03:00
|
|
|
# BackRestTestCommon_Execute
|
2014-08-10 22:02:14 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestCommon_Execute
|
|
|
|
{
|
|
|
|
my $strCommand = shift;
|
|
|
|
my $bRemote = shift;
|
|
|
|
my $bSuppressError = shift;
|
2015-01-03 19:56:44 +02:00
|
|
|
my $bShowOutput = shift;
|
2015-01-24 01:28:39 +02:00
|
|
|
my $iExpectedExitStatus = shift;
|
2014-08-10 22:02:14 +03:00
|
|
|
|
|
|
|
BackRestTestCommon_ExecuteBegin($strCommand, $bRemote);
|
2015-01-24 01:28:39 +02:00
|
|
|
return BackRestTestCommon_ExecuteEnd(undef, $bSuppressError, $bShowOutput, $iExpectedExitStatus);
|
2014-06-22 18:56:01 +03:00
|
|
|
}
|
|
|
|
|
2014-10-16 02:11:09 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
# BackRestTestCommon_PathCreate
|
|
|
|
#
|
|
|
|
# Create a path and set mode.
|
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestCommon_PathCreate
|
|
|
|
{
|
|
|
|
my $strPath = shift;
|
|
|
|
my $strMode = shift;
|
|
|
|
|
|
|
|
# Create the path
|
|
|
|
mkdir($strPath)
|
2015-01-22 01:37:49 +02:00
|
|
|
or confess "unable to create ${strPath} path";
|
2014-10-16 02:11:09 +03:00
|
|
|
|
2015-03-23 23:17:43 +02:00
|
|
|
# Set the mode
|
2014-10-16 02:11:09 +03:00
|
|
|
chmod(oct(defined($strMode) ? $strMode : '0700'), $strPath)
|
|
|
|
or confess 'unable to set mode ${strMode} for ${strPath}';
|
|
|
|
}
|
|
|
|
|
2014-12-21 17:11:17 +02:00
|
|
|
####################################################################################################################################
|
|
|
|
# BackRestTestCommon_PathMode
|
|
|
|
#
|
|
|
|
# Set mode of an existing path.
|
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestCommon_PathMode
|
|
|
|
{
|
|
|
|
my $strPath = shift;
|
|
|
|
my $strMode = shift;
|
|
|
|
|
2015-03-23 23:17:43 +02:00
|
|
|
# Set the mode
|
2014-12-21 17:11:17 +02:00
|
|
|
chmod(oct($strMode), $strPath)
|
|
|
|
or confess 'unable to set mode ${strMode} for ${strPath}';
|
|
|
|
}
|
|
|
|
|
2014-10-16 20:22:34 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
# BackRestTestCommon_PathRemove
|
|
|
|
#
|
|
|
|
# Remove a path and all subpaths.
|
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestCommon_PathRemove
|
|
|
|
{
|
|
|
|
my $strPath = shift;
|
|
|
|
my $bRemote = shift;
|
|
|
|
my $bSuppressError = shift;
|
|
|
|
|
|
|
|
BackRestTestCommon_Execute('rm -rf ' . $strPath, $bRemote, $bSuppressError);
|
|
|
|
|
|
|
|
# remove_tree($strPath, {result => \my $oError});
|
|
|
|
#
|
|
|
|
# if (@$oError)
|
|
|
|
# {
|
|
|
|
# my $strMessage = "error(s) occurred while removing ${strPath}:";
|
|
|
|
#
|
|
|
|
# for my $strFile (@$oError)
|
|
|
|
# {
|
|
|
|
# $strMessage .= "\nunable to remove: " . $strFile;
|
|
|
|
# }
|
|
|
|
#
|
|
|
|
# confess $strMessage;
|
|
|
|
# }
|
|
|
|
}
|
|
|
|
|
2014-10-16 02:11:09 +03:00
|
|
|
####################################################################################################################################
|
2015-01-22 01:37:49 +02:00
|
|
|
# BackRestTestCommon_PathCopy
|
|
|
|
#
|
|
|
|
# Copy a path.
|
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestCommon_PathCopy
|
|
|
|
{
|
|
|
|
my $strSourcePath = shift;
|
|
|
|
my $strDestinationPath = shift;
|
|
|
|
my $bRemote = shift;
|
|
|
|
my $bSuppressError = shift;
|
|
|
|
|
|
|
|
BackRestTestCommon_Execute("cp -rp ${strSourcePath} ${strDestinationPath}", $bRemote, $bSuppressError);
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
2015-01-22 17:54:02 +02:00
|
|
|
# BackRestTestCommon_PathMove
|
|
|
|
#
|
|
|
|
# Copy a path.
|
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestCommon_PathMove
|
|
|
|
{
|
|
|
|
my $strSourcePath = shift;
|
|
|
|
my $strDestinationPath = shift;
|
|
|
|
my $bRemote = shift;
|
|
|
|
my $bSuppressError = shift;
|
|
|
|
|
|
|
|
BackRestTestCommon_PathCopy($strSourcePath, $strDestinationPath, $bRemote, $bSuppressError);
|
|
|
|
BackRestTestCommon_PathRemove($strSourcePath, $bRemote, $bSuppressError);
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
2014-10-16 02:11:09 +03:00
|
|
|
# BackRestTestCommon_FileCreate
|
|
|
|
#
|
|
|
|
# Create a file specifying content, mode, and time.
|
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestCommon_FileCreate
|
|
|
|
{
|
|
|
|
my $strFile = shift;
|
|
|
|
my $strContent = shift;
|
|
|
|
my $lTime = shift;
|
2014-10-18 20:25:20 +03:00
|
|
|
my $strMode = shift;
|
2014-10-16 02:11:09 +03:00
|
|
|
|
|
|
|
# Open the file and save strContent to it
|
|
|
|
my $hFile = shift;
|
|
|
|
|
|
|
|
open($hFile, '>', $strFile)
|
|
|
|
or confess "unable to open ${strFile} for writing";
|
|
|
|
|
|
|
|
syswrite($hFile, $strContent)
|
2014-10-20 18:44:36 +03:00
|
|
|
or confess "unable to write to ${strFile}: $!";
|
2014-10-16 02:11:09 +03:00
|
|
|
|
|
|
|
close($hFile);
|
|
|
|
|
|
|
|
# Set the time
|
|
|
|
if (defined($lTime))
|
|
|
|
{
|
|
|
|
utime($lTime, $lTime, $strFile)
|
|
|
|
or confess 'unable to set time ${lTime} for ${strPath}';
|
|
|
|
}
|
|
|
|
|
2015-03-23 23:17:43 +02:00
|
|
|
# Set the mode
|
2014-10-16 02:11:09 +03:00
|
|
|
chmod(oct(defined($strMode) ? $strMode : '0600'), $strFile)
|
|
|
|
or confess 'unable to set mode ${strMode} for ${strFile}';
|
|
|
|
}
|
|
|
|
|
2014-10-20 18:44:36 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
# BackRestTestCommon_FileRemove
|
|
|
|
#
|
|
|
|
# Remove a file.
|
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestCommon_FileRemove
|
|
|
|
{
|
|
|
|
my $strFile = shift;
|
|
|
|
|
|
|
|
unlink($strFile)
|
|
|
|
or confess "unable to remove ${strFile}: $!";
|
|
|
|
}
|
|
|
|
|
2014-06-22 17:30:17 +03:00
|
|
|
####################################################################################################################################
|
2014-06-22 17:54:31 +03:00
|
|
|
# BackRestTestCommon_Setup
|
2014-06-22 17:30:17 +03:00
|
|
|
####################################################################################################################################
|
2014-06-22 17:54:31 +03:00
|
|
|
sub BackRestTestCommon_Setup
|
2014-06-22 17:30:17 +03:00
|
|
|
{
|
2014-08-11 04:22:17 +03:00
|
|
|
my $strTestPathParam = shift;
|
|
|
|
my $strPgSqlBinParam = shift;
|
2014-07-16 05:32:41 +03:00
|
|
|
my $iModuleTestRunParam = shift;
|
|
|
|
my $bDryRunParam = shift;
|
|
|
|
my $bNoCleanupParam = shift;
|
|
|
|
|
2014-07-27 21:03:21 +03:00
|
|
|
my $strBasePath = dirname(dirname(abs_path($0)));
|
|
|
|
|
2014-08-11 04:22:17 +03:00
|
|
|
$strPgSqlBin = $strPgSqlBinParam;
|
|
|
|
|
2014-09-18 18:28:23 +03:00
|
|
|
$strCommonStanza = 'db';
|
2014-06-22 21:51:28 +03:00
|
|
|
$strCommonHost = '127.0.0.1';
|
2014-06-22 17:30:17 +03:00
|
|
|
$strCommonUser = getpwuid($<);
|
|
|
|
$strCommonGroup = getgrgid($();
|
|
|
|
$strCommonUserBackRest = 'backrest';
|
2014-08-10 22:02:14 +03:00
|
|
|
|
2014-08-11 04:22:17 +03:00
|
|
|
if (defined($strTestPathParam))
|
|
|
|
{
|
|
|
|
$strCommonTestPath = $strTestPathParam;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$strCommonTestPath = "${strBasePath}/test/test";
|
|
|
|
}
|
|
|
|
|
2014-07-27 21:03:21 +03:00
|
|
|
$strCommonDataPath = "${strBasePath}/test/data";
|
2015-03-12 18:15:19 +02:00
|
|
|
$strCommonRepoPath = "${strCommonTestPath}/backrest";
|
|
|
|
$strCommonLocalPath = "${strCommonTestPath}/local";
|
2014-06-22 21:51:28 +03:00
|
|
|
$strCommonDbPath = "${strCommonTestPath}/db";
|
|
|
|
$strCommonDbCommonPath = "${strCommonTestPath}/db/common";
|
2014-09-20 00:51:51 +03:00
|
|
|
$strCommonDbTablespacePath = "${strCommonTestPath}/db/tablespace";
|
2014-08-10 22:02:14 +03:00
|
|
|
|
|
|
|
$strCommonCommandMain = "${strBasePath}/bin/pg_backrest.pl";
|
|
|
|
$strCommonCommandRemote = "${strBasePath}/bin/pg_backrest_remote.pl";
|
2014-08-11 04:22:17 +03:00
|
|
|
$strCommonCommandPsql = "${strPgSqlBin}/psql -X %option% -h ${strCommonDbPath}";
|
2014-08-10 22:02:14 +03:00
|
|
|
|
2014-06-22 18:56:01 +03:00
|
|
|
$iCommonDbPort = 6543;
|
2014-07-16 05:32:41 +03:00
|
|
|
$iModuleTestRun = $iModuleTestRunParam;
|
|
|
|
$bDryRun = $bDryRunParam;
|
|
|
|
$bNoCleanup = $bNoCleanupParam;
|
2014-06-22 17:30:17 +03:00
|
|
|
}
|
|
|
|
|
2015-01-23 02:04:55 +02:00
|
|
|
####################################################################################################################################
|
|
|
|
# BackRestTestCommon_ConfigRemap
|
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestCommon_ConfigRemap
|
|
|
|
{
|
|
|
|
my $oRemapHashRef = shift;
|
|
|
|
my $oManifestRef = shift;
|
2015-01-23 03:55:16 +02:00
|
|
|
my $bRemote = shift;
|
2015-01-23 02:04:55 +02:00
|
|
|
|
|
|
|
# Create config filename
|
|
|
|
my $strConfigFile = BackRestTestCommon_DbPathGet() . '/pg_backrest.conf';
|
|
|
|
my $strStanza = BackRestTestCommon_StanzaGet();
|
|
|
|
|
|
|
|
# Load Config file
|
|
|
|
my %oConfig;
|
|
|
|
ini_load($strConfigFile, \%oConfig);
|
|
|
|
|
2015-01-23 03:55:16 +02:00
|
|
|
# Load remote config file
|
|
|
|
my %oRemoteConfig;
|
|
|
|
my $strRemoteConfigFile = BackRestTestCommon_TestPathGet() . '/pg_backrest.conf.remote';
|
|
|
|
|
|
|
|
if ($bRemote)
|
|
|
|
{
|
2015-03-12 18:15:19 +02:00
|
|
|
BackRestTestCommon_Execute("mv " . BackRestTestCommon_RepoPathGet() . "/pg_backrest.conf ${strRemoteConfigFile}", true);
|
2015-01-23 03:55:16 +02:00
|
|
|
ini_load($strRemoteConfigFile, \%oRemoteConfig);
|
|
|
|
}
|
|
|
|
|
2015-01-23 02:04:55 +02:00
|
|
|
# Rewrite remap section
|
2015-03-12 18:15:19 +02:00
|
|
|
delete($oConfig{"${strStanza}:restore:tablespace-map"});
|
2015-01-23 02:04:55 +02:00
|
|
|
|
|
|
|
foreach my $strRemap (sort(keys $oRemapHashRef))
|
|
|
|
{
|
2015-01-23 03:11:33 +02:00
|
|
|
my $strRemapPath = ${$oRemapHashRef}{$strRemap};
|
|
|
|
|
2015-01-23 02:04:55 +02:00
|
|
|
if ($strRemap eq 'base')
|
|
|
|
{
|
2015-03-12 18:15:19 +02:00
|
|
|
$oConfig{$strStanza}{'db-path'} = $strRemapPath;
|
2015-01-23 03:11:33 +02:00
|
|
|
${$oManifestRef}{'backup:path'}{base} = $strRemapPath;
|
2015-01-23 03:55:16 +02:00
|
|
|
|
|
|
|
if ($bRemote)
|
|
|
|
{
|
2015-03-12 18:15:19 +02:00
|
|
|
$oRemoteConfig{$strStanza}{'db-path'} = $strRemapPath;
|
2015-01-23 03:55:16 +02:00
|
|
|
}
|
2015-01-23 02:04:55 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-03-12 18:15:19 +02:00
|
|
|
$oConfig{"${strStanza}:restore:tablespace-map"}{$strRemap} = $strRemapPath;
|
2015-01-23 03:11:33 +02:00
|
|
|
|
|
|
|
${$oManifestRef}{'backup:path'}{"tablespace:${strRemap}"} = $strRemapPath;
|
|
|
|
${$oManifestRef}{'backup:tablespace'}{$strRemap}{'path'} = $strRemapPath;
|
|
|
|
${$oManifestRef}{'base:link'}{"pg_tblspc/${strRemap}"}{'link_destination'} = $strRemapPath;
|
2015-01-23 02:04:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Resave the config file
|
|
|
|
ini_save($strConfigFile, \%oConfig);
|
2015-01-23 03:55:16 +02:00
|
|
|
|
|
|
|
# Load remote config file
|
|
|
|
if ($bRemote)
|
|
|
|
{
|
|
|
|
ini_save($strRemoteConfigFile, \%oRemoteConfig);
|
2015-03-12 18:15:19 +02:00
|
|
|
BackRestTestCommon_Execute("mv ${strRemoteConfigFile} " . BackRestTestCommon_RepoPathGet() . '/pg_backrest.conf', true);
|
2015-01-23 03:55:16 +02:00
|
|
|
}
|
2015-01-23 02:04:55 +02:00
|
|
|
}
|
2015-03-04 04:21:07 +02:00
|
|
|
|
2015-01-31 20:48:09 +02:00
|
|
|
####################################################################################################################################
|
|
|
|
# BackRestTestCommon_ConfigRecovery
|
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestCommon_ConfigRecovery
|
|
|
|
{
|
|
|
|
my $oRecoveryHashRef = shift;
|
|
|
|
my $bRemote = shift;
|
|
|
|
|
|
|
|
# Create config filename
|
|
|
|
my $strConfigFile = BackRestTestCommon_DbPathGet() . '/pg_backrest.conf';
|
|
|
|
my $strStanza = BackRestTestCommon_StanzaGet();
|
|
|
|
|
|
|
|
# Load Config file
|
|
|
|
my %oConfig;
|
|
|
|
ini_load($strConfigFile, \%oConfig);
|
|
|
|
|
|
|
|
# Load remote config file
|
|
|
|
my %oRemoteConfig;
|
|
|
|
my $strRemoteConfigFile = BackRestTestCommon_TestPathGet() . '/pg_backrest.conf.remote';
|
|
|
|
|
|
|
|
if ($bRemote)
|
|
|
|
{
|
2015-03-12 18:15:19 +02:00
|
|
|
BackRestTestCommon_Execute("mv " . BackRestTestCommon_RepoPathGet() . "/pg_backrest.conf ${strRemoteConfigFile}", true);
|
2015-01-31 20:48:09 +02:00
|
|
|
ini_load($strRemoteConfigFile, \%oRemoteConfig);
|
|
|
|
}
|
|
|
|
|
|
|
|
# Rewrite remap section
|
|
|
|
delete($oConfig{"${strStanza}:recovery:option"});
|
|
|
|
|
|
|
|
foreach my $strOption (sort(keys $oRecoveryHashRef))
|
|
|
|
{
|
|
|
|
$oConfig{"${strStanza}:recovery:option"}{$strOption} = ${$oRecoveryHashRef}{$strOption};
|
|
|
|
}
|
|
|
|
|
|
|
|
# Resave the config file
|
|
|
|
ini_save($strConfigFile, \%oConfig);
|
|
|
|
|
|
|
|
# Load remote config file
|
|
|
|
if ($bRemote)
|
|
|
|
{
|
|
|
|
ini_save($strRemoteConfigFile, \%oRemoteConfig);
|
2015-03-12 18:15:19 +02:00
|
|
|
BackRestTestCommon_Execute("mv ${strRemoteConfigFile} " . BackRestTestCommon_RepoPathGet() . '/pg_backrest.conf', true);
|
2015-01-31 20:48:09 +02:00
|
|
|
}
|
|
|
|
}
|
2015-01-23 02:04:55 +02:00
|
|
|
|
2014-06-22 21:51:28 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
# BackRestTestCommon_ConfigCreate
|
|
|
|
####################################################################################################################################
|
|
|
|
sub BackRestTestCommon_ConfigCreate
|
|
|
|
{
|
2014-06-22 23:05:00 +03:00
|
|
|
my $strLocal = shift;
|
2014-06-22 21:51:28 +03:00
|
|
|
my $strRemote = shift;
|
2014-07-16 05:32:41 +03:00
|
|
|
my $bCompress = shift;
|
|
|
|
my $bChecksum = shift;
|
|
|
|
my $bHardlink = shift;
|
|
|
|
my $iThreadMax = shift;
|
2015-03-12 18:15:19 +02:00
|
|
|
my $bArchiveAsync = shift;
|
2014-07-16 05:32:41 +03:00
|
|
|
my $bCompressAsync = shift;
|
2014-06-24 01:54:00 +03:00
|
|
|
|
2014-06-22 21:51:28 +03:00
|
|
|
my %oParamHash;
|
|
|
|
|
2014-07-17 03:07:50 +03:00
|
|
|
if (defined($strRemote))
|
|
|
|
{
|
2015-03-12 18:15:19 +02:00
|
|
|
$oParamHash{'global:command'}{'command-remote'} = $strCommonCommandRemote;
|
2014-07-17 03:07:50 +03:00
|
|
|
}
|
|
|
|
|
2015-03-12 18:15:19 +02:00
|
|
|
$oParamHash{'global:command'}{'command-psql'} = $strCommonCommandPsql;
|
2014-06-22 21:51:28 +03:00
|
|
|
|
2014-12-24 01:52:38 +02:00
|
|
|
if (defined($strRemote) && $strRemote eq BACKUP)
|
2014-06-22 21:51:28 +03:00
|
|
|
{
|
2015-03-12 18:15:19 +02:00
|
|
|
$oParamHash{'global:backup'}{'backup-host'} = $strCommonHost;
|
|
|
|
$oParamHash{'global:backup'}{'backup-user'} = $strCommonUserBackRest;
|
2014-06-22 21:51:28 +03:00
|
|
|
}
|
2014-12-24 01:52:38 +02:00
|
|
|
elsif (defined($strRemote) && $strRemote eq DB)
|
2014-06-22 21:51:28 +03:00
|
|
|
{
|
2015-03-12 18:15:19 +02:00
|
|
|
$oParamHash{$strCommonStanza}{'db-host'} = $strCommonHost;
|
|
|
|
$oParamHash{$strCommonStanza}{'db-user'} = $strCommonUser;
|
2014-06-22 23:05:00 +03:00
|
|
|
}
|
2014-06-24 01:54:00 +03:00
|
|
|
|
2015-03-12 18:15:19 +02:00
|
|
|
$oParamHash{'global:log'}{'log-level-console'} = 'error';
|
|
|
|
$oParamHash{'global:log'}{'log-level-file'} = 'trace';
|
2014-07-17 03:07:50 +03:00
|
|
|
|
2014-12-24 01:52:38 +02:00
|
|
|
if ($strLocal eq BACKUP)
|
2014-10-19 23:30:16 +03:00
|
|
|
{
|
2015-03-12 18:15:19 +02:00
|
|
|
$oParamHash{'global:general'}{'repo-path'} = $strCommonRepoPath;
|
2014-10-19 23:30:16 +03:00
|
|
|
}
|
2014-12-24 01:52:38 +02:00
|
|
|
elsif ($strLocal eq DB)
|
2014-06-22 23:05:00 +03:00
|
|
|
{
|
2014-07-17 03:07:50 +03:00
|
|
|
if (defined($strRemote))
|
|
|
|
{
|
|
|
|
$oParamHash{'global:log'}{'level-console'} = 'trace';
|
2014-12-24 01:52:38 +02:00
|
|
|
|
2015-03-12 18:15:19 +02:00
|
|
|
if ($bArchiveAsync)
|
2014-12-24 01:52:38 +02:00
|
|
|
{
|
2015-03-12 18:15:19 +02:00
|
|
|
$oParamHash{'global:archive'}{path} = BackRestTestCommon_LocalPathGet();
|
2014-12-24 01:52:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$oParamHash{'global:restore'}{'thread-max'} = $iThreadMax;
|
2015-03-12 18:15:19 +02:00
|
|
|
|
|
|
|
$oParamHash{'global:general'}{'repo-remote-path'} = $strCommonRepoPath;
|
|
|
|
$oParamHash{'global:general'}{'repo-path'} = $strCommonLocalPath;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$oParamHash{'global:general'}{'repo-path'} = $strCommonRepoPath;
|
2014-07-17 03:07:50 +03:00
|
|
|
}
|
2014-07-16 05:32:41 +03:00
|
|
|
|
2015-03-12 18:15:19 +02:00
|
|
|
if ($bArchiveAsync)
|
2014-07-16 05:32:41 +03:00
|
|
|
{
|
2015-03-12 18:15:19 +02:00
|
|
|
$oParamHash{'global:archive'}{'archive-async'} = 'y';
|
2014-07-16 05:32:41 +03:00
|
|
|
|
|
|
|
if (!$bCompressAsync)
|
|
|
|
{
|
|
|
|
$oParamHash{'global:archive'}{'compress_async'} = 'n';
|
|
|
|
}
|
|
|
|
}
|
2014-06-22 23:05:00 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
confess "invalid local type ${strLocal}";
|
|
|
|
}
|
2014-06-22 21:51:28 +03:00
|
|
|
|
2014-12-24 01:52:38 +02:00
|
|
|
if (($strLocal eq BACKUP) || ($strLocal eq DB && !defined($strRemote)))
|
2014-07-17 03:07:50 +03:00
|
|
|
{
|
2015-03-12 18:15:19 +02:00
|
|
|
$oParamHash{'db:command'}{'command-psql-option'} = "--port=${iCommonDbPort}";
|
2014-12-24 01:52:38 +02:00
|
|
|
$oParamHash{'global:backup'}{'thread-max'} = $iThreadMax;
|
|
|
|
|
2015-03-12 18:15:19 +02:00
|
|
|
if (defined($bHardlink) && $bHardlink)
|
2014-12-24 01:52:38 +02:00
|
|
|
{
|
2015-03-12 18:15:19 +02:00
|
|
|
$oParamHash{'global:backup'}{'hardlink'} = 'y';
|
2014-12-24 01:52:38 +02:00
|
|
|
}
|
2014-07-17 03:07:50 +03:00
|
|
|
}
|
|
|
|
|
2014-07-16 05:32:41 +03:00
|
|
|
if (defined($bCompress) && !$bCompress)
|
|
|
|
{
|
2015-03-23 21:45:25 +02:00
|
|
|
$oParamHash{'global:general'}{'compress'} = 'n';
|
2014-07-16 05:32:41 +03:00
|
|
|
}
|
|
|
|
|
2015-03-01 03:31:56 +02:00
|
|
|
# if (defined($bChecksum) && $bChecksum)
|
|
|
|
# {
|
|
|
|
# $oParamHash{'global:backup'}{'checksum'} = 'y';
|
|
|
|
# }
|
2014-07-13 02:03:39 +03:00
|
|
|
|
2015-03-12 18:15:19 +02:00
|
|
|
$oParamHash{$strCommonStanza}{'db-path'} = $strCommonDbCommonPath;
|
2014-06-24 01:54:00 +03:00
|
|
|
|
2014-06-29 17:53:39 +03:00
|
|
|
# Write out the configuration file
|
|
|
|
my $strFile = BackRestTestCommon_TestPathGet() . '/pg_backrest.conf';
|
2014-12-16 00:20:42 +02:00
|
|
|
ini_save($strFile, \%oParamHash);
|
2014-06-24 01:54:00 +03:00
|
|
|
|
2014-06-29 17:53:39 +03:00
|
|
|
# Move the configuration file based on local
|
|
|
|
if ($strLocal eq 'db')
|
|
|
|
{
|
|
|
|
rename($strFile, BackRestTestCommon_DbPathGet() . '/pg_backrest.conf')
|
|
|
|
or die "unable to move ${strFile} to " . BackRestTestCommon_DbPathGet() . '/pg_backrest.conf path';
|
|
|
|
}
|
|
|
|
elsif ($strLocal eq 'backup' && !defined($strRemote))
|
|
|
|
{
|
2015-03-12 18:15:19 +02:00
|
|
|
rename($strFile, BackRestTestCommon_RepoPathGet() . '/pg_backrest.conf')
|
|
|
|
or die "unable to move ${strFile} to " . BackRestTestCommon_RepoPathGet() . '/pg_backrest.conf path';
|
2014-06-29 17:53:39 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-03-12 18:15:19 +02:00
|
|
|
BackRestTestCommon_Execute("mv ${strFile} " . BackRestTestCommon_RepoPathGet() . '/pg_backrest.conf', true);
|
2014-06-29 17:53:39 +03:00
|
|
|
}
|
2014-06-22 21:51:28 +03:00
|
|
|
}
|
|
|
|
|
2014-06-22 17:30:17 +03:00
|
|
|
####################################################################################################################################
|
|
|
|
# Get Methods
|
|
|
|
####################################################################################################################################
|
2014-08-11 04:22:17 +03:00
|
|
|
sub BackRestTestCommon_PgSqlBinPathGet
|
|
|
|
{
|
|
|
|
return $strPgSqlBin;
|
|
|
|
}
|
|
|
|
|
2014-06-22 17:54:31 +03:00
|
|
|
sub BackRestTestCommon_StanzaGet
|
2014-06-22 17:30:17 +03:00
|
|
|
{
|
|
|
|
return $strCommonStanza;
|
|
|
|
}
|
|
|
|
|
2014-06-22 21:51:28 +03:00
|
|
|
sub BackRestTestCommon_CommandMainGet
|
|
|
|
{
|
|
|
|
return $strCommonCommandMain;
|
|
|
|
}
|
|
|
|
|
2014-06-22 17:54:31 +03:00
|
|
|
sub BackRestTestCommon_CommandRemoteGet
|
2014-06-22 17:30:17 +03:00
|
|
|
{
|
|
|
|
return $strCommonCommandRemote;
|
|
|
|
}
|
|
|
|
|
2014-06-22 17:54:31 +03:00
|
|
|
sub BackRestTestCommon_HostGet
|
2014-06-22 17:30:17 +03:00
|
|
|
{
|
|
|
|
return $strCommonHost;
|
|
|
|
}
|
|
|
|
|
2014-06-22 17:54:31 +03:00
|
|
|
sub BackRestTestCommon_UserGet
|
2014-06-22 17:30:17 +03:00
|
|
|
{
|
|
|
|
return $strCommonUser;
|
|
|
|
}
|
|
|
|
|
2014-06-22 17:54:31 +03:00
|
|
|
sub BackRestTestCommon_GroupGet
|
2014-06-22 17:30:17 +03:00
|
|
|
{
|
|
|
|
return $strCommonGroup;
|
|
|
|
}
|
|
|
|
|
2014-06-22 17:54:31 +03:00
|
|
|
sub BackRestTestCommon_UserBackRestGet
|
2014-06-22 17:30:17 +03:00
|
|
|
{
|
|
|
|
return $strCommonUserBackRest;
|
|
|
|
}
|
|
|
|
|
2014-06-22 17:54:31 +03:00
|
|
|
sub BackRestTestCommon_TestPathGet
|
2014-06-22 17:30:17 +03:00
|
|
|
{
|
|
|
|
return $strCommonTestPath;
|
|
|
|
}
|
|
|
|
|
2014-07-13 16:13:19 +03:00
|
|
|
sub BackRestTestCommon_DataPathGet
|
|
|
|
{
|
|
|
|
return $strCommonDataPath;
|
|
|
|
}
|
|
|
|
|
2015-03-12 18:15:19 +02:00
|
|
|
sub BackRestTestCommon_RepoPathGet
|
2014-06-22 21:51:28 +03:00
|
|
|
{
|
2015-03-12 18:15:19 +02:00
|
|
|
return $strCommonRepoPath;
|
2014-06-22 21:51:28 +03:00
|
|
|
}
|
|
|
|
|
2015-03-12 18:15:19 +02:00
|
|
|
sub BackRestTestCommon_LocalPathGet
|
2014-06-29 17:53:39 +03:00
|
|
|
{
|
2015-03-12 18:15:19 +02:00
|
|
|
return $strCommonLocalPath;
|
2014-06-29 17:53:39 +03:00
|
|
|
}
|
|
|
|
|
2014-06-22 21:51:28 +03:00
|
|
|
sub BackRestTestCommon_DbPathGet
|
|
|
|
{
|
|
|
|
return $strCommonDbPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub BackRestTestCommon_DbCommonPathGet
|
|
|
|
{
|
2015-01-23 03:11:33 +02:00
|
|
|
my $iIndex = shift;
|
|
|
|
|
|
|
|
return $strCommonDbCommonPath . (defined($iIndex) ? "-${iIndex}" : '');
|
2014-06-22 21:51:28 +03:00
|
|
|
}
|
|
|
|
|
2014-09-20 00:51:51 +03:00
|
|
|
sub BackRestTestCommon_DbTablespacePathGet
|
|
|
|
{
|
2015-01-23 03:11:33 +02:00
|
|
|
my $iTablespace = shift;
|
|
|
|
my $iIndex = shift;
|
|
|
|
|
|
|
|
return $strCommonDbTablespacePath . (defined($iTablespace) ? "/ts${iTablespace}" . (defined($iIndex) ? "-${iIndex}" : '') : '');
|
2014-09-20 00:51:51 +03:00
|
|
|
}
|
|
|
|
|
2014-06-22 18:56:01 +03:00
|
|
|
sub BackRestTestCommon_DbPortGet
|
|
|
|
{
|
|
|
|
return $iCommonDbPort;
|
|
|
|
}
|
|
|
|
|
2014-06-22 17:30:17 +03:00
|
|
|
1;
|