1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-03-11 14:49:31 +02:00

Working on unit test.

This commit is contained in:
David Steele 2013-11-17 13:58:21 -05:00
parent d7283f20f9
commit 548578c8c9
3 changed files with 73 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
**/*~
*~

17
pg_backrest.pl Normal file
View File

@ -0,0 +1,17 @@
#!/usr/bin/perl
#use Getopt::Long;
sub execute
{
local($strCommand) = @_;
my $strOutput;
print("$strCommand\n");
$strOutput = qx($strCommand) or return 0;
print("$strOutput\n");
return 1;
}

54
test/test.pl Executable file
View File

@ -0,0 +1,54 @@
#!/usr/bin/perl
#use strict;
my $strPgBinPath = '/usr/lib/postgresql/9.3/bin/';
sub execute
{
local($strCommand) = @_;
my $strOutput;
print("$strCommand\n");
$strOutput = qx($strCommand) or return 0;
print("$strOutput\n");
return 1;
}
sub pg_create
{
local($strPath) = @_;
execute($strPgBinPath . "initdb -D $strPath -A trust");
execute("mkdir $strPath/archive");
}
sub pg_start
{
local($strPath) = @_;
my $strCommand = $strPgBinPath . "pg_ctl start -o \"-c wal_level=archive -c archive_mode=on -c archive_command='test ! -f $strPath/archive/%f && cp %p $strPath/archive/%f'\" -D $strPath -l $strPath/postgresql.log -w -s";
execute($strCommand);
}
sub pg_stop
{
local($strPath) = @_;
my $strCommand = $strPgBinPath . "pg_ctl stop -D $strPath -w -s";
execute($strCommand);
}
sub pg_drop
{
local($strPath) = @_;
my $strCommand = "rm -rf $strPath";
execute($strCommand);
}
pg_stop("/home/dsteele/test/test2");
pg_drop("/home/dsteele/test/test2");
pg_create("/home/dsteele/test/test2");
pg_start("/home/dsteele/test/test2");