2017-08-01 16:34:53 +02:00
|
|
|
####################################################################################################################################
|
|
|
|
# Protocol Helper Tests
|
|
|
|
####################################################################################################################################
|
|
|
|
package pgBackRestTest::Module::Protocol::ProtocolHelperTest;
|
|
|
|
use parent 'pgBackRestTest::Env::ConfigEnvTest';
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# Perl includes
|
|
|
|
####################################################################################################################################
|
|
|
|
use strict;
|
|
|
|
use warnings FATAL => qw(all);
|
|
|
|
use Carp qw(confess);
|
|
|
|
use English '-no_match_vars';
|
|
|
|
|
|
|
|
use File::Basename qw(dirname);
|
|
|
|
use Storable qw(dclone);
|
|
|
|
|
|
|
|
use pgBackRest::Archive::Common;
|
|
|
|
use pgBackRest::Archive::Push::Push;
|
|
|
|
use pgBackRest::Common::Exception;
|
|
|
|
use pgBackRest::Common::Log;
|
|
|
|
use pgBackRest::Config::Config;
|
|
|
|
use pgBackRest::Protocol::Helper;
|
|
|
|
use pgBackRest::Protocol::Storage::Helper;
|
|
|
|
use pgBackRest::Storage::Helper;
|
|
|
|
|
|
|
|
use pgBackRestTest::Env::HostEnvTest;
|
|
|
|
use pgBackRestTest::Common::ExecuteTest;
|
|
|
|
use pgBackRestTest::Env::Host::HostBackupTest;
|
|
|
|
use pgBackRestTest::Common::RunTest;
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# initModule
|
|
|
|
####################################################################################################################################
|
|
|
|
sub initModule
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
$self->{strDbPath} = $self->testPath() . '/db';
|
|
|
|
$self->{strRepoPath} = $self->testPath() . '/repo';
|
|
|
|
$self->{strArchivePath} = "$self->{strRepoPath}/archive/" . $self->stanza();
|
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# initTest
|
|
|
|
####################################################################################################################################
|
|
|
|
sub initTest
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# Create archive info
|
|
|
|
storageTest()->pathCreate($self->{strArchivePath}, {bIgnoreExists => true, bCreateParent => true});
|
|
|
|
|
2017-08-25 22:47:47 +02:00
|
|
|
$self->initOption();
|
2017-08-01 16:34:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# initOption
|
|
|
|
####################################################################################################################################
|
|
|
|
sub initOption
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
2017-08-25 22:47:47 +02:00
|
|
|
$self->optionTestSet(CFGOPT_STANZA, $self->stanza());
|
|
|
|
$self->optionTestSet(CFGOPT_DB_PATH, $self->{strDbPath});
|
|
|
|
$self->optionTestSet(CFGOPT_REPO_PATH, $self->{strRepoPath});
|
|
|
|
$self->optionTestSet(CFGOPT_LOG_PATH, $self->testPath());
|
|
|
|
$self->optionTestSetBool(CFGOPT_COMPRESS, false);
|
2017-08-01 16:34:53 +02:00
|
|
|
|
2017-08-25 22:47:47 +02:00
|
|
|
$self->optionTestSet(CFGOPT_DB_TIMEOUT, 5);
|
|
|
|
$self->optionTestSet(CFGOPT_PROTOCOL_TIMEOUT, 6);
|
|
|
|
$self->optionTestSet(CFGOPT_ARCHIVE_TIMEOUT, 3);
|
2017-08-01 16:34:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
####################################################################################################################################
|
|
|
|
# run
|
|
|
|
####################################################################################################################################
|
|
|
|
sub run
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
my $oOption = $self->initOption();
|
|
|
|
|
|
|
|
################################################################################################################################
|
|
|
|
if ($self->begin("Protocol::Helper"))
|
|
|
|
{
|
2017-08-25 22:47:47 +02:00
|
|
|
$self->optionTestSet(CFGOPT_BACKUP_HOST, 'localhost');
|
|
|
|
$self->optionTestSet(CFGOPT_BACKUP_USER, $self->pgUser());
|
|
|
|
$self->configTestLoad(CFGCMD_ARCHIVE_PUSH);
|
2017-08-01 16:34:53 +02:00
|
|
|
|
2017-08-25 22:47:47 +02:00
|
|
|
$self->testResult(
|
|
|
|
sub {protocolGet(CFGOPTVAL_REMOTE_TYPE_BACKUP, undef, {strBackRestBin => $self->backrestExe()})}, "[object]",
|
|
|
|
'ssh default port');
|
2017-08-01 16:34:53 +02:00
|
|
|
|
|
|
|
# Destroy protocol object
|
|
|
|
protocolDestroy();
|
|
|
|
|
2017-08-25 22:47:47 +02:00
|
|
|
$self->optionTestSet(CFGOPT_BACKUP_SSH_PORT, 25);
|
|
|
|
$self->configTestLoad(CFGCMD_ARCHIVE_PUSH);
|
2017-08-01 16:34:53 +02:00
|
|
|
|
2017-08-25 22:47:47 +02:00
|
|
|
$self->testException(
|
|
|
|
sub {protocolGet(CFGOPTVAL_REMOTE_TYPE_BACKUP, undef, {strBackRestBin => $self->backrestExe()})}, ERROR_FILE_READ,
|
2017-10-21 20:40:14 +02:00
|
|
|
"remote process on 'localhost' terminated unexpectedly: ssh: connect to host localhost port 25:");
|
2017-08-01 16:34:53 +02:00
|
|
|
|
|
|
|
# Destroy protocol object
|
|
|
|
protocolDestroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|