mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2024-12-14 10:13:05 +02:00
c8f806a293
* Make the code more modular and object-oriented. * Multiple Docker containers can now be created for a single test to simulate more realistic environments.
175 lines
5.6 KiB
Perl
175 lines
5.6 KiB
Perl
####################################################################################################################################
|
|
# HostGroupTest.pm - Encapsulate a group of docker containers for testing
|
|
####################################################################################################################################
|
|
package pgBackRestTest::Common::HostGroupTest;
|
|
use parent 'pgBackRestTest::Common::ParamTest';
|
|
|
|
####################################################################################################################################
|
|
# Perl includes
|
|
####################################################################################################################################
|
|
use strict;
|
|
use warnings FATAL => qw(all);
|
|
use Carp qw(confess);
|
|
|
|
use Cwd qw(abs_path);
|
|
use Exporter qw(import);
|
|
our @EXPORT = qw();
|
|
|
|
use pgBackRest::Common::Log;
|
|
use pgBackRest::Common::String;
|
|
|
|
use pgBackRestTest::Common::ExecuteTest;
|
|
|
|
####################################################################################################################################
|
|
# Global host group variable
|
|
####################################################################################################################################
|
|
my $oHostGroup;
|
|
|
|
####################################################################################################################################
|
|
# new
|
|
####################################################################################################################################
|
|
sub new
|
|
{
|
|
my $class = shift; # Class name
|
|
|
|
# Create the class hash
|
|
my $self = {};
|
|
bless $self, $class;
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
my ($strOperation) = logDebugParam(__PACKAGE__ . '->new');
|
|
|
|
# Return from function and log return values if any
|
|
return logDebugReturn
|
|
(
|
|
$strOperation,
|
|
{name => 'self', value => $self, trace => true}
|
|
);
|
|
}
|
|
|
|
####################################################################################################################################
|
|
# hostAdd
|
|
####################################################################################################################################
|
|
sub hostAdd
|
|
{
|
|
my $self = shift;
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
my
|
|
(
|
|
$strOperation,
|
|
$oHost
|
|
) =
|
|
logDebugParam
|
|
(
|
|
__PACKAGE__ . '->hostAdd', \@_,
|
|
{name => 'oHost'}
|
|
);
|
|
|
|
$self->{host}{$oHost->{strName}} = $oHost;
|
|
|
|
$oHost->executeSimple("sh -c 'echo \"\" >> /etc/hosts\'", undef, 'root');
|
|
$oHost->executeSimple("sh -c 'echo \"# Test Hosts\" >> /etc/hosts'", undef, 'root');
|
|
|
|
# Iterate hosts to add IP mappings
|
|
foreach my $strOtherHostName (sort(keys(%{$self->{host}})))
|
|
{
|
|
my $oOtherHost = $self->{host}{$strOtherHostName};
|
|
|
|
if ($strOtherHostName ne $oHost->{strName})
|
|
{
|
|
# Add this host IP to all hosts
|
|
$oOtherHost->executeSimple("sh -c 'echo \"$oHost->{strIP} $oHost->{strName}\" >> /etc/hosts'", undef, 'root');
|
|
|
|
# Add all other host IPs to this host
|
|
$oHost->executeSimple("sh -c 'echo \"$oOtherHost->{strIP} ${strOtherHostName}\" >> /etc/hosts'", undef, 'root');
|
|
}
|
|
}
|
|
|
|
# Return from function and log return values if any
|
|
return logDebugReturn($strOperation);
|
|
}
|
|
|
|
####################################################################################################################################
|
|
# hostGet
|
|
####################################################################################################################################
|
|
sub hostGet
|
|
{
|
|
my $self = shift;
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
my
|
|
(
|
|
$strOperation,
|
|
$strName,
|
|
$bIgnoreMissing,
|
|
) =
|
|
logDebugParam
|
|
(
|
|
__PACKAGE__ . '->hostGet', \@_,
|
|
{name => 'strName', trace => true},
|
|
{name => 'bIgnoreMissing', default => false, trace => true},
|
|
);
|
|
|
|
my $oHost = $self->{host}{$strName};
|
|
|
|
if (!defined($oHost) && !$bIgnoreMissing)
|
|
{
|
|
confess &log(ERROR, "host ${strName} does not exist");
|
|
}
|
|
|
|
# Return from function and log return values if any
|
|
return logDebugReturn
|
|
(
|
|
$strOperation,
|
|
{name => 'oHost', value => $oHost}
|
|
);
|
|
}
|
|
|
|
####################################################################################################################################
|
|
# removeAll
|
|
####################################################################################################################################
|
|
sub removeAll
|
|
{
|
|
my $self = shift;
|
|
|
|
# Assign function parameters, defaults, and log debug info
|
|
my ($strOperation) = logDebugParam(__PACKAGE__ . '->removeAll');
|
|
|
|
my $iTotal = 0;
|
|
|
|
foreach my $strHostName (sort(keys(%{$self->{host}})))
|
|
{
|
|
${$self->{host}}{$strHostName}->remove();
|
|
delete($self->{host}{$strHostName});
|
|
|
|
$iTotal++;
|
|
}
|
|
|
|
# Return from function and log return values if any
|
|
return logDebugReturn
|
|
(
|
|
$strOperation,
|
|
{name => 'iTotal', value => $iTotal}
|
|
);
|
|
}
|
|
|
|
####################################################################################################################################
|
|
# hostGroupGet
|
|
#
|
|
# Get the global host group object.
|
|
####################################################################################################################################
|
|
sub hostGroupGet
|
|
{
|
|
if (!defined($oHostGroup))
|
|
{
|
|
$oHostGroup = new pgBackRestTest::Common::HostGroupTest();
|
|
}
|
|
|
|
return $oHostGroup;
|
|
}
|
|
|
|
push @EXPORT, qw(hostGroupGet);
|
|
|
|
1;
|