2018-04-30 17:27:39 -04:00
|
|
|
/***********************************************************************************************************************************
|
|
|
|
Test Archive Get Command
|
|
|
|
***********************************************************************************************************************************/
|
2020-03-06 14:41:03 -05:00
|
|
|
#include "common/compress/helper.h"
|
2018-05-06 08:56:42 -04:00
|
|
|
#include "common/harnessConfig.h"
|
|
|
|
#include "common/harnessFork.h"
|
2019-02-27 23:03:02 +02:00
|
|
|
#include "common/io/bufferRead.h"
|
|
|
|
#include "common/io/bufferWrite.h"
|
2021-04-14 15:41:55 -04:00
|
|
|
#include "common/io/fdRead.h"
|
|
|
|
#include "common/io/fdWrite.h"
|
2019-04-23 14:02:30 -04:00
|
|
|
#include "postgres/interface.h"
|
|
|
|
#include "postgres/version.h"
|
2019-05-03 15:46:15 -04:00
|
|
|
#include "storage/posix/storage.h"
|
2018-09-11 15:42:31 -04:00
|
|
|
|
2019-04-23 14:02:30 -04:00
|
|
|
#include "common/harnessInfo.h"
|
2021-05-17 07:20:28 -04:00
|
|
|
#include "common/harnessPostgres.h"
|
2021-01-08 16:48:32 -05:00
|
|
|
#include "common/harnessStorage.h"
|
2019-04-23 14:02:30 -04:00
|
|
|
|
2018-04-30 17:27:39 -04:00
|
|
|
/***********************************************************************************************************************************
|
|
|
|
Test Run
|
|
|
|
***********************************************************************************************************************************/
|
|
|
|
void
|
2018-08-03 19:19:14 -04:00
|
|
|
testRun(void)
|
2018-04-30 17:27:39 -04:00
|
|
|
{
|
2018-05-18 11:57:32 -04:00
|
|
|
FUNCTION_HARNESS_VOID();
|
|
|
|
|
2021-05-22 09:30:54 -04:00
|
|
|
Storage *storageTest = storagePosixNewP(TEST_PATH_STR, .write = true);
|
2018-04-30 17:27:39 -04:00
|
|
|
|
|
|
|
// *****************************************************************************************************************************
|
|
|
|
if (testBegin("queueNeed()"))
|
|
|
|
{
|
|
|
|
StringList *argList = strLstNew();
|
2018-09-16 14:12:53 -04:00
|
|
|
strLstAddZ(argList, "--stanza=test1");
|
2018-04-30 17:27:39 -04:00
|
|
|
strLstAddZ(argList, "--archive-async");
|
2020-10-19 14:03:48 -04:00
|
|
|
hrnCfgArgRawZ(argList, cfgOptPgPath, "/unused");
|
2021-05-22 09:30:54 -04:00
|
|
|
strLstAddZ(argList, "--spool-path=" TEST_PATH "/spool");
|
2019-10-08 12:06:30 -04:00
|
|
|
harnessCfgLoad(cfgCmdArchiveGet, argList);
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2018-09-25 10:24:42 +01:00
|
|
|
size_t queueSize = 16 * 1024 * 1024;
|
|
|
|
size_t walSegmentSize = 16 * 1024 * 1024;
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-05-22 09:30:54 -04:00
|
|
|
TEST_ERROR(
|
2021-05-21 17:36:43 -04:00
|
|
|
queueNeed(STRDEF("000000010000000100000001"), false, queueSize, walSegmentSize, PG_VERSION_92),
|
2021-05-22 09:30:54 -04:00
|
|
|
PathMissingError, "unable to list file info for missing path '" TEST_PATH "/spool/archive/test1/in'");
|
2018-04-30 17:27:39 -04:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2021-05-21 17:36:43 -04:00
|
|
|
storagePathCreateP(storageSpoolWrite(), STRDEF(STORAGE_SPOOL_ARCHIVE_IN));
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-01-08 12:49:33 -05:00
|
|
|
TEST_RESULT_STRLST_Z(
|
|
|
|
queueNeed(STRDEF("000000010000000100000001"), false, queueSize, walSegmentSize, PG_VERSION_92),
|
|
|
|
"000000010000000100000001\n000000010000000100000002\n", "queue size smaller than min");
|
2018-04-30 17:27:39 -04:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2018-09-25 10:24:42 +01:00
|
|
|
queueSize = (16 * 1024 * 1024) * 3;
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-01-08 12:49:33 -05:00
|
|
|
TEST_RESULT_STRLST_Z(
|
2021-05-21 17:36:43 -04:00
|
|
|
queueNeed(STRDEF("000000010000000100000001"), false, queueSize, walSegmentSize, PG_VERSION_92),
|
2021-01-08 12:49:33 -05:00
|
|
|
"000000010000000100000001\n000000010000000100000002\n000000010000000100000003\n", "empty queue");
|
2018-04-30 17:27:39 -04:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2018-05-18 11:57:32 -04:00
|
|
|
Buffer *walSegmentBuffer = bufNew(walSegmentSize);
|
|
|
|
memset(bufPtr(walSegmentBuffer), 0, walSegmentSize);
|
|
|
|
|
2021-01-08 16:14:26 -05:00
|
|
|
HRN_STORAGE_PUT(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/0000000100000001000000FE", walSegmentBuffer);
|
|
|
|
HRN_STORAGE_PUT(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/0000000100000001000000FF", walSegmentBuffer);
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-01-08 12:49:33 -05:00
|
|
|
TEST_RESULT_STRLST_Z(
|
2021-05-21 17:36:43 -04:00
|
|
|
queueNeed(STRDEF("0000000100000001000000FE"), false, queueSize, walSegmentSize, PG_VERSION_92),
|
2021-01-08 12:49:33 -05:00
|
|
|
"000000010000000200000000\n000000010000000200000001\n", "queue has wal < 9.3");
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-01-08 12:49:33 -05:00
|
|
|
TEST_RESULT_STRLST_Z(
|
2021-05-21 17:36:43 -04:00
|
|
|
storageListP(storageSpoolWrite(), STRDEF(STORAGE_SPOOL_ARCHIVE_IN)), "0000000100000001000000FE\n", "check queue");
|
2018-04-30 17:27:39 -04:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2021-02-23 15:34:28 -05:00
|
|
|
TEST_TITLE("pg >= 9.3 and ok/junk status files");
|
|
|
|
|
2018-04-30 17:27:39 -04:00
|
|
|
walSegmentSize = 1024 * 1024;
|
|
|
|
queueSize = walSegmentSize * 5;
|
|
|
|
|
2021-01-08 16:14:26 -05:00
|
|
|
HRN_STORAGE_PUT_Z(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/junk", "JUNK");
|
2021-02-23 15:34:28 -05:00
|
|
|
|
|
|
|
// Bad OK file with wrong length (just to make sure this does not cause strSubN() issues)
|
|
|
|
HRN_STORAGE_PUT_Z(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/AAA.ok", "0\nWARNING");
|
|
|
|
|
|
|
|
// OK file with warnings somehow left over from a prior run
|
|
|
|
HRN_STORAGE_PUT_Z(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000A00000FFD.ok", "0\nWARNING");
|
|
|
|
|
|
|
|
// Valid queued WAL segments (one with an OK file containing warnings)
|
2021-01-08 16:14:26 -05:00
|
|
|
HRN_STORAGE_PUT(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000A00000FFE", walSegmentBuffer);
|
|
|
|
HRN_STORAGE_PUT(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000A00000FFF", walSegmentBuffer);
|
2021-02-23 15:34:28 -05:00
|
|
|
HRN_STORAGE_PUT_Z(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000A00000FFF.ok", "0\nWARNING2");
|
|
|
|
|
|
|
|
// Empty OK file indicating a WAL segment not found at the end of the queue
|
|
|
|
HRN_STORAGE_PUT_EMPTY(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000B00000000.ok");
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-01-08 12:49:33 -05:00
|
|
|
TEST_RESULT_STRLST_Z(
|
2021-05-21 17:36:43 -04:00
|
|
|
queueNeed(STRDEF("000000010000000A00000FFD"), true, queueSize, walSegmentSize, PG_VERSION_11),
|
2021-01-08 12:49:33 -05:00
|
|
|
"000000010000000B00000000\n000000010000000B00000001\n000000010000000B00000002\n", "queue has wal >= 9.3");
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-02-23 15:34:28 -05:00
|
|
|
TEST_STORAGE_LIST(
|
|
|
|
storageSpool(), STORAGE_SPOOL_ARCHIVE_IN,
|
|
|
|
"000000010000000A00000FFE\n000000010000000A00000FFF\n000000010000000A00000FFF.ok\n");
|
2018-04-30 17:27:39 -04:00
|
|
|
}
|
|
|
|
|
2019-02-27 23:03:02 +02:00
|
|
|
// *****************************************************************************************************************************
|
|
|
|
if (testBegin("cmdArchiveGetAsync()"))
|
|
|
|
{
|
|
|
|
harnessLogLevelSet(logLevelDetail);
|
|
|
|
|
2021-01-08 16:48:32 -05:00
|
|
|
// Arguments that must be included
|
|
|
|
StringList *argBaseList = strLstNew();
|
|
|
|
hrnCfgArgRawZ(argBaseList, cfgOptPgPath, TEST_PATH_PG);
|
|
|
|
hrnCfgArgRawZ(argBaseList, cfgOptRepoPath, TEST_PATH_REPO);
|
|
|
|
hrnCfgArgRawZ(argBaseList, cfgOptSpoolPath, TEST_PATH_SPOOL);
|
|
|
|
hrnCfgArgRawBool(argBaseList, cfgOptArchiveAsync, true);
|
|
|
|
hrnCfgArgRawZ(argBaseList, cfgOptStanza, "test2");
|
2019-02-27 23:03:02 +02:00
|
|
|
|
2021-01-08 16:48:32 -05:00
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("command must be run on the pg host");
|
|
|
|
|
|
|
|
StringList *argList = strLstDup(argBaseList);
|
|
|
|
hrnCfgArgRawZ(argList, cfgOptPgHost, BOGUS_STR);
|
|
|
|
harnessCfgLoadRole(cfgCmdArchiveGet, cfgCmdRoleAsync, argList);
|
|
|
|
|
|
|
|
TEST_ERROR(cmdArchiveGetAsync(), HostInvalidError, "archive-get command must be run on the PostgreSQL host");
|
2019-02-27 23:03:02 +02:00
|
|
|
|
2021-02-23 15:34:28 -05:00
|
|
|
TEST_STORAGE_GET(
|
|
|
|
storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/global.error",
|
|
|
|
"72\narchive-get command must be run on the PostgreSQL host", .remove = true);
|
|
|
|
TEST_STORAGE_LIST_EMPTY(storageSpool(), STORAGE_SPOOL_ARCHIVE_IN);
|
2021-01-08 16:29:56 -05:00
|
|
|
|
2020-02-12 17:18:48 -07:00
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2021-01-08 16:48:32 -05:00
|
|
|
TEST_TITLE("error on no segments");
|
2020-02-12 17:18:48 -07:00
|
|
|
|
2021-01-08 16:48:32 -05:00
|
|
|
argList = strLstDup(argBaseList);
|
2020-02-12 17:18:48 -07:00
|
|
|
harnessCfgLoadRole(cfgCmdArchiveGet, cfgCmdRoleAsync, argList);
|
|
|
|
|
2021-01-08 16:48:32 -05:00
|
|
|
TEST_ERROR(cmdArchiveGetAsync(), ParamInvalidError, "at least one wal segment is required");
|
2020-02-12 17:18:48 -07:00
|
|
|
|
2021-02-23 15:34:28 -05:00
|
|
|
TEST_STORAGE_GET(
|
|
|
|
storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/global.error", "96\nat least one wal segment is required",
|
|
|
|
.remove = true);
|
|
|
|
TEST_STORAGE_LIST_EMPTY(storageSpool(), STORAGE_SPOOL_ARCHIVE_IN);
|
2021-01-08 16:29:56 -05:00
|
|
|
|
2019-02-27 23:03:02 +02:00
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2021-01-08 16:48:32 -05:00
|
|
|
TEST_TITLE("no segments to find");
|
|
|
|
|
|
|
|
HRN_STORAGE_PUT(
|
|
|
|
storagePgWrite(), PG_PATH_GLOBAL "/" PG_FILE_PGCONTROL,
|
2021-05-17 07:20:28 -04:00
|
|
|
hrnPgControlToBuffer((PgControl){.version = PG_VERSION_10, .systemId = 0xFACEFACEFACEFACE}));
|
2019-02-27 23:03:02 +02:00
|
|
|
|
2021-01-08 16:48:32 -05:00
|
|
|
HRN_INFO_PUT(
|
|
|
|
storageRepoWrite(), INFO_ARCHIVE_PATH_FILE,
|
|
|
|
"[db]\n"
|
|
|
|
"db-id=1\n"
|
|
|
|
"\n"
|
|
|
|
"[db:history]\n"
|
|
|
|
"1={\"db-id\":18072658121562454734,\"db-version\":\"10\"}\n");
|
2019-02-27 23:03:02 +02:00
|
|
|
|
|
|
|
strLstAddZ(argList, "000000010000000100000001");
|
2020-01-15 12:24:58 -07:00
|
|
|
harnessCfgLoadRole(cfgCmdArchiveGet, cfgCmdRoleAsync, argList);
|
2019-02-27 23:03:02 +02:00
|
|
|
|
2021-01-08 16:48:32 -05:00
|
|
|
TEST_RESULT_VOID(cmdArchiveGetAsync(), "get async");
|
2019-02-27 23:03:02 +02:00
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-01-08 16:48:32 -05:00
|
|
|
"P00 INFO: get 1 WAL file(s) from archive: 000000010000000100000001\n"
|
2021-01-15 10:15:52 -05:00
|
|
|
"P00 DETAIL: unable to find 000000010000000100000001 in the archive");
|
2021-01-08 16:48:32 -05:00
|
|
|
|
2021-02-23 15:34:28 -05:00
|
|
|
TEST_STORAGE_GET_EMPTY(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000100000001.ok", .remove = true);
|
|
|
|
TEST_STORAGE_LIST_EMPTY(storageSpool(), STORAGE_SPOOL_ARCHIVE_IN);
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("error on path permission");
|
|
|
|
|
|
|
|
storagePathCreateP(storageRepoIdxWrite(0), STRDEF(STORAGE_REPO_ARCHIVE "/10-1"), .mode = 0400);
|
|
|
|
|
|
|
|
TEST_RESULT_VOID(cmdArchiveGetAsync(), "get async");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-02-23 15:34:28 -05:00
|
|
|
"P00 INFO: get 1 WAL file(s) from archive: 000000010000000100000001\n"
|
|
|
|
"P00 WARN: repo1: [PathOpenError] unable to list file info for path '" TEST_PATH_REPO "/archive/test2/10-1"
|
|
|
|
"/0000000100000001': [13] Permission denied\n"
|
|
|
|
"P00 WARN: [RepoInvalidError] unable to find a valid repository");
|
|
|
|
|
|
|
|
TEST_STORAGE_GET(
|
|
|
|
storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000100000001.error",
|
|
|
|
"103\n"
|
|
|
|
"unable to find a valid repository\n"
|
|
|
|
"repo1: [PathOpenError] unable to list file info for path '" TEST_PATH_REPO "/archive/test2/10-1/0000000100000001':"
|
|
|
|
" [13] Permission denied",
|
|
|
|
.remove = true);
|
|
|
|
TEST_STORAGE_LIST_EMPTY(storageSpool(), STORAGE_SPOOL_ARCHIVE_IN);
|
|
|
|
|
|
|
|
HRN_STORAGE_MODE(storageRepoIdxWrite(0), STORAGE_REPO_ARCHIVE "/10-1");
|
2021-01-08 16:48:32 -05:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("error on invalid compressed segment");
|
|
|
|
|
|
|
|
HRN_STORAGE_PUT_EMPTY(
|
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-1/000000010000000100000001-abcdabcdabcdabcdabcdabcdabcdabcdabcdabcd.gz");
|
|
|
|
|
|
|
|
TEST_RESULT_VOID(cmdArchiveGetAsync(), "get async");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-01-08 16:48:32 -05:00
|
|
|
"P00 INFO: get 1 WAL file(s) from archive: 000000010000000100000001\n"
|
2021-02-23 15:34:28 -05:00
|
|
|
"P01 WARN: [FileReadError] raised from local-1 protocol: unable to get 000000010000000100000001:\n"
|
|
|
|
" repo1: 10-1/0000000100000001/000000010000000100000001-abcdabcdabcdabcdabcdabcdabcdabcdabcdabcd.gz"
|
|
|
|
" [FormatError] unexpected eof in compressed data");
|
|
|
|
|
|
|
|
TEST_STORAGE_GET(
|
|
|
|
storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000100000001.error",
|
|
|
|
"42\n"
|
|
|
|
"raised from local-1 protocol: unable to get 000000010000000100000001:\n"
|
|
|
|
"repo1: 10-1/0000000100000001/000000010000000100000001-abcdabcdabcdabcdabcdabcdabcdabcdabcdabcd.gz [FormatError]"
|
|
|
|
" unexpected eof in compressed data",
|
|
|
|
.remove = true);
|
|
|
|
TEST_STORAGE_LIST(storageSpool(), STORAGE_SPOOL_ARCHIVE_IN, "000000010000000100000001.pgbackrest.tmp\n");
|
2021-01-08 16:48:32 -05:00
|
|
|
|
|
|
|
TEST_STORAGE_REMOVE(
|
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-1/000000010000000100000001-abcdabcdabcdabcdabcdabcdabcdabcdabcdabcd.gz");
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("single segment");
|
|
|
|
|
|
|
|
HRN_STORAGE_PUT_EMPTY(
|
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-1/000000010000000100000001-abcdabcdabcdabcdabcdabcdabcdabcdabcdabcd");
|
|
|
|
|
|
|
|
// There should be a temp file left over. Make sure it still exists to test that temp files are removed on retry.
|
|
|
|
TEST_STORAGE_EXISTS(storageSpool(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000100000001.pgbackrest.tmp");
|
2020-07-14 15:05:31 -04:00
|
|
|
|
2019-02-27 23:03:02 +02:00
|
|
|
TEST_RESULT_VOID(cmdArchiveGetAsync(), "archive async");
|
2021-01-08 16:48:32 -05:00
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2019-02-27 23:03:02 +02:00
|
|
|
"P00 INFO: get 1 WAL file(s) from archive: 000000010000000100000001\n"
|
2021-02-23 15:34:28 -05:00
|
|
|
"P01 DETAIL: found 000000010000000100000001 in the repo1: 10-1 archive");
|
|
|
|
|
|
|
|
TEST_STORAGE_GET_EMPTY(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000100000001", .remove = true);
|
|
|
|
TEST_STORAGE_LIST_EMPTY(storageSpool(), STORAGE_SPOOL_ARCHIVE_IN);
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("single segment with one invalid file");
|
|
|
|
|
|
|
|
HRN_INFO_PUT(
|
|
|
|
storageRepoWrite(), INFO_ARCHIVE_PATH_FILE,
|
|
|
|
"[db]\n"
|
|
|
|
"db-id=1\n"
|
|
|
|
"\n"
|
|
|
|
"[db:history]\n"
|
|
|
|
"1={\"db-id\":18072658121562454734,\"db-version\":\"10\"}\n"
|
|
|
|
"2={\"db-id\":18072658121562454734,\"db-version\":\"10\"}\n");
|
|
|
|
|
|
|
|
HRN_STORAGE_PUT_EMPTY(
|
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-1/000000010000000100000001-abcdabcdabcdabcdabcdabcdabcdabcdabcdabcd");
|
|
|
|
HRN_STORAGE_PUT_EMPTY(
|
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-2/000000010000000100000001-abcdabcdabcdabcdabcdabcdabcdabcdabcdabcd.gz");
|
|
|
|
|
|
|
|
TEST_RESULT_VOID(cmdArchiveGetAsync(), "archive async");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-02-23 15:34:28 -05:00
|
|
|
"P00 INFO: get 1 WAL file(s) from archive: 000000010000000100000001\n"
|
|
|
|
"P01 WARN: repo1: 10-2/0000000100000001/000000010000000100000001-abcdabcdabcdabcdabcdabcdabcdabcdabcdabcd.gz"
|
|
|
|
" [FormatError] unexpected eof in compressed data\n"
|
|
|
|
"P01 DETAIL: found 000000010000000100000001 in the repo1: 10-1 archive");
|
|
|
|
|
|
|
|
TEST_STORAGE_GET(
|
|
|
|
storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000100000001.ok",
|
|
|
|
"0\n"
|
|
|
|
"repo1: 10-2/0000000100000001/000000010000000100000001-abcdabcdabcdabcdabcdabcdabcdabcdabcdabcd.gz [FormatError]"
|
|
|
|
" unexpected eof in compressed data",
|
|
|
|
.remove = true);
|
|
|
|
TEST_STORAGE_GET_EMPTY(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000100000001", .remove = true);
|
|
|
|
TEST_STORAGE_LIST_EMPTY(storageSpool(), STORAGE_SPOOL_ARCHIVE_IN);
|
|
|
|
|
|
|
|
TEST_STORAGE_REMOVE(
|
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-2/000000010000000100000001-abcdabcdabcdabcdabcdabcdabcdabcdabcdabcd.gz");
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("single segment with one invalid file");
|
|
|
|
|
|
|
|
HRN_INFO_PUT(
|
|
|
|
storageRepoWrite(), INFO_ARCHIVE_PATH_FILE,
|
|
|
|
"[db]\n"
|
|
|
|
"db-id=1\n"
|
|
|
|
"\n"
|
|
|
|
"[db:history]\n"
|
|
|
|
"1={\"db-id\":18072658121562454734,\"db-version\":\"10\"}\n"
|
|
|
|
"2={\"db-id\":18072658121562454734,\"db-version\":\"10\"}\n");
|
|
|
|
|
|
|
|
HRN_STORAGE_PUT_EMPTY(
|
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-1/000000010000000100000001-abcdabcdabcdabcdabcdabcdabcdabcdabcdabcd");
|
|
|
|
HRN_STORAGE_PUT_EMPTY(
|
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-2/000000010000000100000001-abcdabcdabcdabcdabcdabcdabcdabcdabcdabcd.gz");
|
|
|
|
|
|
|
|
TEST_RESULT_VOID(cmdArchiveGetAsync(), "archive async");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-02-23 15:34:28 -05:00
|
|
|
"P00 INFO: get 1 WAL file(s) from archive: 000000010000000100000001\n"
|
|
|
|
"P01 WARN: repo1: 10-2/0000000100000001/000000010000000100000001-abcdabcdabcdabcdabcdabcdabcdabcdabcdabcd.gz"
|
|
|
|
" [FormatError] unexpected eof in compressed data\n"
|
|
|
|
"P01 DETAIL: found 000000010000000100000001 in the repo1: 10-1 archive");
|
|
|
|
|
|
|
|
TEST_STORAGE_GET(
|
|
|
|
storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000100000001.ok",
|
|
|
|
"0\n"
|
|
|
|
"repo1: 10-2/0000000100000001/000000010000000100000001-abcdabcdabcdabcdabcdabcdabcdabcdabcdabcd.gz [FormatError]"
|
|
|
|
" unexpected eof in compressed data",
|
|
|
|
.remove = true);
|
|
|
|
TEST_STORAGE_GET_EMPTY(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000100000001", .remove = true);
|
|
|
|
TEST_STORAGE_LIST_EMPTY(storageSpool(), STORAGE_SPOOL_ARCHIVE_IN);
|
2019-02-27 23:03:02 +02:00
|
|
|
|
2021-02-23 15:34:28 -05:00
|
|
|
TEST_STORAGE_REMOVE(
|
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-2/000000010000000100000001-abcdabcdabcdabcdabcdabcdabcdabcdabcdabcd.gz");
|
2019-02-27 23:03:02 +02:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2021-02-23 15:34:28 -05:00
|
|
|
TEST_TITLE("multiple segments where some are missing or errored and mismatched repo");
|
|
|
|
|
|
|
|
hrnCfgArgKeyRawZ(argBaseList, cfgOptRepoPath, 2, TEST_PATH_REPO "2");
|
2021-01-08 16:48:32 -05:00
|
|
|
|
|
|
|
argList = strLstDup(argBaseList);
|
2021-01-12 18:20:28 -05:00
|
|
|
strLstAddZ(argList, "0000000100000001000000FE");
|
|
|
|
strLstAddZ(argList, "0000000100000001000000FF");
|
|
|
|
strLstAddZ(argList, "000000010000000200000000");
|
2020-01-15 12:24:58 -07:00
|
|
|
harnessCfgLoadRole(cfgCmdArchiveGet, cfgCmdRoleAsync, argList);
|
2019-02-27 23:03:02 +02:00
|
|
|
|
2021-02-23 15:34:28 -05:00
|
|
|
HRN_INFO_PUT(
|
|
|
|
storageRepoIdxWrite(1), INFO_ARCHIVE_PATH_FILE,
|
|
|
|
"[db]\n"
|
|
|
|
"db-id=1\n"
|
|
|
|
"\n"
|
|
|
|
"[db:history]\n"
|
|
|
|
"1={\"db-id\":18072658121562454734,\"db-version\":\"11\"}\n");
|
|
|
|
|
2021-01-12 18:20:28 -05:00
|
|
|
HRN_STORAGE_PUT_EMPTY(
|
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-1/0000000100000001000000FE-abcdabcdabcdabcdabcdabcdabcdabcdabcdabcd");
|
|
|
|
|
2021-01-08 16:48:32 -05:00
|
|
|
// Create segment duplicates
|
|
|
|
HRN_STORAGE_PUT_EMPTY(
|
2021-01-12 18:20:28 -05:00
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-1/000000010000000200000000-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
|
2021-01-08 16:48:32 -05:00
|
|
|
HRN_STORAGE_PUT_EMPTY(
|
2021-01-12 18:20:28 -05:00
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-1/000000010000000200000000-bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb");
|
2019-02-27 23:03:02 +02:00
|
|
|
|
|
|
|
TEST_RESULT_VOID(cmdArchiveGetAsync(), "archive async");
|
2021-01-08 16:48:32 -05:00
|
|
|
|
2021-02-23 15:34:28 -05:00
|
|
|
#define TEST_WARN \
|
|
|
|
"repo2: [ArchiveMismatchError] unable to retrieve the archive id for database version '10' and system-id" \
|
|
|
|
" '18072658121562454734'"
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-01-12 18:20:28 -05:00
|
|
|
"P00 INFO: get 3 WAL file(s) from archive: 0000000100000001000000FE...000000010000000200000000\n"
|
2021-02-23 15:34:28 -05:00
|
|
|
"P00 WARN: " TEST_WARN "\n"
|
|
|
|
"P01 DETAIL: found 0000000100000001000000FE in the repo1: 10-1 archive\n"
|
2021-01-15 10:15:52 -05:00
|
|
|
"P00 DETAIL: unable to find 0000000100000001000000FF in the archive");
|
|
|
|
|
2021-02-23 15:34:28 -05:00
|
|
|
TEST_STORAGE_GET(
|
|
|
|
storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/0000000100000001000000FE.ok", "0\n" TEST_WARN, .remove = true);
|
|
|
|
TEST_STORAGE_GET(
|
|
|
|
storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/0000000100000001000000FF.ok", "0\n" TEST_WARN, .remove = true);
|
|
|
|
TEST_STORAGE_GET_EMPTY(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/0000000100000001000000FE", .remove = true);
|
|
|
|
TEST_STORAGE_LIST_EMPTY(storageSpool(), STORAGE_SPOOL_ARCHIVE_IN);
|
|
|
|
|
|
|
|
#undef TEST_WARN
|
2021-01-15 10:15:52 -05:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2021-02-23 15:34:28 -05:00
|
|
|
TEST_TITLE("error on duplicates now that no segments are missing, repo with bad perms");
|
|
|
|
|
|
|
|
// Fix repo 2 archive info but break archive path
|
|
|
|
HRN_INFO_PUT(
|
|
|
|
storageRepoIdxWrite(1), INFO_ARCHIVE_PATH_FILE,
|
|
|
|
"[db]\n"
|
|
|
|
"db-id=1\n"
|
|
|
|
"\n"
|
|
|
|
"[db:history]\n"
|
|
|
|
"1={\"db-id\":18072658121562454734,\"db-version\":\"10\"}\n");
|
|
|
|
|
|
|
|
storagePathCreateP(storageRepoIdxWrite(1), STRDEF(STORAGE_REPO_ARCHIVE "/10-1"), .mode = 0400);
|
2021-01-15 10:15:52 -05:00
|
|
|
|
|
|
|
HRN_STORAGE_PUT_EMPTY(
|
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-1/0000000100000001000000FF-efefefefefefefefefefefefefefefefefefefef");
|
|
|
|
|
|
|
|
TEST_RESULT_VOID(cmdArchiveGetAsync(), "archive async");
|
|
|
|
|
2021-02-23 15:34:28 -05:00
|
|
|
#define TEST_WARN1 \
|
|
|
|
"repo2: [PathOpenError] unable to list file info for path '" TEST_PATH_REPO "2/archive/test2/10-1" \
|
|
|
|
"/0000000100000001': [13] Permission denied"
|
|
|
|
#define TEST_WARN2 \
|
|
|
|
"repo2: [PathOpenError] unable to list file info for path '" TEST_PATH_REPO "2/archive/test2/10-1" \
|
|
|
|
"/0000000100000002': [13] Permission denied"
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-01-15 10:15:52 -05:00
|
|
|
"P00 INFO: get 3 WAL file(s) from archive: 0000000100000001000000FE...000000010000000200000000\n"
|
2021-02-23 15:34:28 -05:00
|
|
|
"P00 WARN: " TEST_WARN1 "\n"
|
|
|
|
"P00 WARN: " TEST_WARN2 "\n"
|
|
|
|
"P01 DETAIL: found 0000000100000001000000FE in the repo1: 10-1 archive\n"
|
|
|
|
"P01 DETAIL: found 0000000100000001000000FF in the repo1: 10-1 archive\n"
|
|
|
|
"P00 WARN: [ArchiveDuplicateError] duplicates found for WAL segment 000000010000000200000000:\n"
|
|
|
|
" repo1: 10-1/0000000100000002/000000010000000200000000-bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"
|
|
|
|
", 10-1/0000000100000002/000000010000000200000000-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\n"
|
2019-02-27 23:03:02 +02:00
|
|
|
" HINT: are multiple primaries archiving to this stanza?");
|
|
|
|
|
2021-02-23 15:34:28 -05:00
|
|
|
TEST_STORAGE_GET_EMPTY(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/0000000100000001000000FE", .remove = true);
|
|
|
|
TEST_STORAGE_GET(
|
|
|
|
storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/0000000100000001000000FE.ok", "0\n" TEST_WARN1, .remove = true);
|
|
|
|
TEST_STORAGE_GET_EMPTY(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/0000000100000001000000FF", .remove = true);
|
|
|
|
TEST_STORAGE_GET(
|
|
|
|
storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/0000000100000001000000FF.ok", "0\n" TEST_WARN1, .remove = true);
|
|
|
|
TEST_STORAGE_GET(
|
|
|
|
storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000200000000.error",
|
|
|
|
"45\n"
|
|
|
|
"duplicates found for WAL segment 000000010000000200000000:\n"
|
|
|
|
"repo1: 10-1/0000000100000002/000000010000000200000000-bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb, 10-1/0000000100000002"
|
|
|
|
"/000000010000000200000000-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\n"
|
|
|
|
"HINT: are multiple primaries archiving to this stanza?\n"
|
|
|
|
TEST_WARN2,
|
|
|
|
.remove = true);
|
|
|
|
TEST_STORAGE_LIST_EMPTY(storageSpool(), STORAGE_SPOOL_ARCHIVE_IN);
|
|
|
|
|
|
|
|
HRN_STORAGE_MODE(storageRepoIdxWrite(1), STORAGE_REPO_ARCHIVE "/10-1");
|
|
|
|
|
|
|
|
#undef TEST_WARN1
|
|
|
|
#undef TEST_WARN2
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("error on duplicates");
|
|
|
|
|
|
|
|
argList = strLstDup(argBaseList);
|
|
|
|
strLstAddZ(argList, "000000010000000200000000");
|
|
|
|
harnessCfgLoadRole(cfgCmdArchiveGet, cfgCmdRoleAsync, argList);
|
|
|
|
|
|
|
|
TEST_RESULT_VOID(cmdArchiveGetAsync(), "archive async");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-02-23 15:34:28 -05:00
|
|
|
"P00 INFO: get 1 WAL file(s) from archive: 000000010000000200000000\n"
|
|
|
|
"P00 WARN: [ArchiveDuplicateError] duplicates found for WAL segment 000000010000000200000000:\n"
|
|
|
|
" repo1: 10-1/0000000100000002/000000010000000200000000-bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"
|
|
|
|
", 10-1/0000000100000002/000000010000000200000000-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\n"
|
|
|
|
" HINT: are multiple primaries archiving to this stanza?");
|
|
|
|
|
|
|
|
TEST_STORAGE_GET(
|
|
|
|
storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000200000000.error",
|
|
|
|
"45\n"
|
|
|
|
"duplicates found for WAL segment 000000010000000200000000:\n"
|
|
|
|
"repo1: 10-1/0000000100000002/000000010000000200000000-bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb, 10-1/0000000100000002"
|
|
|
|
"/000000010000000200000000-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\n"
|
|
|
|
"HINT: are multiple primaries archiving to this stanza?",
|
|
|
|
.remove = true);
|
|
|
|
TEST_STORAGE_LIST_EMPTY(storageSpool(), STORAGE_SPOOL_ARCHIVE_IN);
|
|
|
|
|
|
|
|
TEST_STORAGE_REMOVE(
|
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-1/000000010000000200000000-bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb");
|
|
|
|
TEST_STORAGE_REMOVE(
|
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-1/000000010000000200000000-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("warn on invalid file");
|
|
|
|
|
|
|
|
hrnCfgArgKeyRawZ(argBaseList, cfgOptRepoPath, 3, TEST_PATH_REPO "3");
|
|
|
|
|
|
|
|
argList = strLstDup(argBaseList);
|
|
|
|
strLstAddZ(argList, "000000010000000200000000");
|
|
|
|
harnessCfgLoadRole(cfgCmdArchiveGet, cfgCmdRoleAsync, argList);
|
|
|
|
|
|
|
|
HRN_INFO_PUT(
|
|
|
|
storageRepoIdxWrite(2), INFO_ARCHIVE_PATH_FILE,
|
|
|
|
"[db]\n"
|
|
|
|
"db-id=1\n"
|
|
|
|
"\n"
|
|
|
|
"[db:history]\n"
|
|
|
|
"1={\"db-id\":18072658121562454734,\"db-version\":\"11\"}\n");
|
|
|
|
storagePathCreateP(storageRepoIdxWrite(2), STRDEF("10-1"), .mode = 0400);
|
|
|
|
|
|
|
|
HRN_STORAGE_PUT_EMPTY(
|
|
|
|
storageRepoIdxWrite(0),
|
|
|
|
STORAGE_REPO_ARCHIVE "/10-1/000000010000000200000000-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.gz");
|
|
|
|
HRN_STORAGE_PUT_EMPTY(
|
|
|
|
storageRepoIdxWrite(1),
|
|
|
|
STORAGE_REPO_ARCHIVE "/10-1/000000010000000200000000-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
|
|
|
|
|
|
|
|
TEST_RESULT_VOID(cmdArchiveGetAsync(), "archive async");
|
|
|
|
|
|
|
|
#define TEST_WARN1 \
|
|
|
|
"repo3: [ArchiveMismatchError] unable to retrieve the archive id for database version '10' and system-id" \
|
|
|
|
" '18072658121562454734'"
|
|
|
|
#define TEST_WARN2 \
|
|
|
|
"repo1: 10-1/0000000100000002/000000010000000200000000-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.gz" \
|
|
|
|
" [FormatError] unexpected eof in compressed data"
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-02-23 15:34:28 -05:00
|
|
|
"P00 INFO: get 1 WAL file(s) from archive: 000000010000000200000000\n"
|
|
|
|
"P00 WARN: " TEST_WARN1 "\n"
|
|
|
|
"P01 WARN: " TEST_WARN2 "\n"
|
|
|
|
"P01 DETAIL: found 000000010000000200000000 in the repo2: 10-1 archive");
|
|
|
|
|
|
|
|
TEST_STORAGE_GET(
|
|
|
|
storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000200000000.ok", "0\n" TEST_WARN1 "\n" TEST_WARN2,
|
|
|
|
.remove = true);
|
|
|
|
TEST_STORAGE_GET_EMPTY(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000200000000", .remove = true);
|
|
|
|
TEST_STORAGE_LIST_EMPTY(storageSpool(), STORAGE_SPOOL_ARCHIVE_IN);
|
|
|
|
|
|
|
|
TEST_STORAGE_REMOVE(
|
|
|
|
storageRepoIdxWrite(1), STORAGE_REPO_ARCHIVE "/10-1/000000010000000200000000-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("error with warnings");
|
|
|
|
|
|
|
|
HRN_STORAGE_PUT_EMPTY(
|
|
|
|
storageRepoIdxWrite(1),
|
|
|
|
STORAGE_REPO_ARCHIVE "/10-1/000000010000000200000000-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.gz");
|
|
|
|
|
|
|
|
TEST_RESULT_VOID(cmdArchiveGetAsync(), "archive async");
|
|
|
|
|
|
|
|
#define TEST_WARN3 \
|
|
|
|
"repo2: 10-1/0000000100000002/000000010000000200000000-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.gz" \
|
|
|
|
" [FormatError] unexpected eof in compressed data"
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-02-23 15:34:28 -05:00
|
|
|
"P00 INFO: get 1 WAL file(s) from archive: 000000010000000200000000\n"
|
|
|
|
"P00 WARN: " TEST_WARN1 "\n"
|
|
|
|
"P01 WARN: [FileReadError] raised from local-1 protocol: unable to get 000000010000000200000000:\n"
|
|
|
|
" " TEST_WARN2 "\n"
|
|
|
|
" " TEST_WARN3);
|
|
|
|
|
|
|
|
TEST_STORAGE_GET(
|
|
|
|
storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000200000000.error",
|
|
|
|
"42\n"
|
|
|
|
"raised from local-1 protocol: unable to get 000000010000000200000000:\n"
|
|
|
|
TEST_WARN2 "\n"
|
|
|
|
TEST_WARN3 "\n"
|
|
|
|
TEST_WARN1,
|
|
|
|
.remove = true);
|
2021-01-08 16:48:32 -05:00
|
|
|
TEST_STORAGE_LIST(
|
2021-02-23 15:34:28 -05:00
|
|
|
storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN, "000000010000000200000000.pgbackrest.tmp\n", .remove = true);
|
2019-02-27 23:03:02 +02:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2021-01-08 16:48:32 -05:00
|
|
|
TEST_TITLE("global error on invalid executable");
|
2019-02-27 23:03:02 +02:00
|
|
|
|
|
|
|
argList = strLstNew();
|
|
|
|
strLstAddZ(argList, "pgbackrest-bogus");
|
2021-01-08 16:48:32 -05:00
|
|
|
hrnCfgArgRawZ(argList, cfgOptPgPath, TEST_PATH_PG);
|
|
|
|
hrnCfgArgRawZ(argList, cfgOptRepoPath, TEST_PATH_REPO);
|
|
|
|
hrnCfgArgRawZ(argList, cfgOptSpoolPath, TEST_PATH_SPOOL);
|
|
|
|
hrnCfgArgRawBool(argList, cfgOptArchiveAsync, true);
|
|
|
|
hrnCfgArgRawZ(argList, cfgOptStanza, "test2");
|
2020-01-15 12:24:58 -07:00
|
|
|
strLstAddZ(argList, CFGCMD_ARCHIVE_GET ":" CONFIG_COMMAND_ROLE_ASYNC);
|
2021-01-12 18:20:28 -05:00
|
|
|
strLstAddZ(argList, "0000000100000001000000FE");
|
|
|
|
strLstAddZ(argList, "0000000100000001000000FF");
|
|
|
|
strLstAddZ(argList, "000000010000000200000000");
|
2019-10-08 12:06:30 -04:00
|
|
|
harnessCfgLoadRaw(strLstSize(argList), strLstPtr(argList));
|
2019-02-27 23:03:02 +02:00
|
|
|
|
|
|
|
TEST_ERROR(
|
|
|
|
cmdArchiveGetAsync(), ExecuteError,
|
|
|
|
"local-1 process terminated unexpectedly [102]: unable to execute 'pgbackrest-bogus': [2] No such file or directory");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-01-12 18:20:28 -05:00
|
|
|
"P00 INFO: get 3 WAL file(s) from archive: 0000000100000001000000FE...000000010000000200000000");
|
2019-02-27 23:03:02 +02:00
|
|
|
|
2019-12-26 18:08:27 -07:00
|
|
|
TEST_RESULT_STR_Z(
|
2021-05-21 17:36:43 -04:00
|
|
|
strNewBuf(storageGetP(storageNewReadP(storageSpool(), STRDEF(STORAGE_SPOOL_ARCHIVE_IN "/global.error")))),
|
2019-02-27 23:03:02 +02:00
|
|
|
"102\nlocal-1 process terminated unexpectedly [102]: unable to execute 'pgbackrest-bogus': "
|
|
|
|
"[2] No such file or directory",
|
2019-03-25 08:12:38 +04:00
|
|
|
"check global error");
|
2021-01-08 16:48:32 -05:00
|
|
|
|
|
|
|
TEST_STORAGE_LIST(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN, "global.error\n", .remove = true);
|
2019-02-27 23:03:02 +02:00
|
|
|
}
|
|
|
|
|
2018-04-30 17:27:39 -04:00
|
|
|
// *****************************************************************************************************************************
|
|
|
|
if (testBegin("cmdArchiveGet()"))
|
|
|
|
{
|
2021-01-08 16:48:32 -05:00
|
|
|
harnessLogLevelSet(logLevelDetail);
|
|
|
|
|
|
|
|
// Arguments that must be included. Use raw config here because we need to keep the
|
|
|
|
StringList *argBaseList = strLstNew();
|
|
|
|
strLstAddZ(argBaseList, "pgbackrest-bogus");
|
|
|
|
hrnCfgArgRawZ(argBaseList, cfgOptPgPath, TEST_PATH_PG);
|
|
|
|
hrnCfgArgRawZ(argBaseList, cfgOptRepoPath, TEST_PATH_REPO);
|
|
|
|
hrnCfgArgRawZ(argBaseList, cfgOptStanza, "test1");
|
|
|
|
hrnCfgArgRawZ(argBaseList, cfgOptArchiveTimeout, "1");
|
2021-05-22 09:30:54 -04:00
|
|
|
hrnCfgArgRawZ(argBaseList, cfgOptLockPath, HRN_PATH "/lock");
|
2021-01-08 16:48:32 -05:00
|
|
|
strLstAddZ(argBaseList, CFGCMD_ARCHIVE_GET);
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2020-02-12 17:18:48 -07:00
|
|
|
TEST_TITLE("command must be run on the pg host");
|
|
|
|
|
2021-01-08 16:48:32 -05:00
|
|
|
StringList *argList = strLstDup(argBaseList);
|
|
|
|
hrnCfgArgRawZ(argList, cfgOptPgHost, BOGUS_STR);
|
|
|
|
harnessCfgLoadRaw(strLstSize(argList), strLstPtr(argList));
|
2020-02-12 17:18:48 -07:00
|
|
|
|
|
|
|
TEST_ERROR(cmdArchiveGet(), HostInvalidError, "archive-get command must be run on the PostgreSQL host");
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2021-01-08 16:48:32 -05:00
|
|
|
argList = strLstDup(argBaseList);
|
2019-10-08 12:06:30 -04:00
|
|
|
harnessCfgLoadRaw(strLstSize(argList), strLstPtr(argList));
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-01-06 11:36:42 -05:00
|
|
|
TEST_ERROR(cmdArchiveGet(), ParamRequiredError, "WAL segment to get required");
|
2018-04-30 17:27:39 -04:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2021-01-08 16:48:32 -05:00
|
|
|
argList = strLstDup(argBaseList);
|
|
|
|
strLstAddZ(argList, "000000010000000100000001");
|
|
|
|
harnessCfgLoadRaw(strLstSize(argList), strLstPtr(argList));
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-01-06 11:36:42 -05:00
|
|
|
TEST_ERROR(cmdArchiveGet(), ParamRequiredError, "path to copy WAL segment required");
|
2018-04-30 17:27:39 -04:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2021-01-08 16:48:32 -05:00
|
|
|
HRN_STORAGE_PUT(
|
|
|
|
storagePgWrite(), PG_PATH_GLOBAL "/" PG_FILE_PGCONTROL,
|
2021-05-17 07:20:28 -04:00
|
|
|
hrnPgControlToBuffer((PgControl){.version = PG_VERSION_10, .systemId = 0xFACEFACEFACEFACE}));
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-05-22 09:30:54 -04:00
|
|
|
storagePathCreateP(storageTest, STRDEF(TEST_PATH "/pg/pg_wal"));
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-01-08 16:48:32 -05:00
|
|
|
strLstAddZ(argList, TEST_PATH_PG "/pg_wal/RECOVERYXLOG");
|
|
|
|
harnessCfgLoadRaw(strLstSize(argList), strLstPtr(argList));
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-05-22 11:59:43 -04:00
|
|
|
TEST_ERROR(cmdArchiveGet(), RepoInvalidError, "unable to find a valid repository");
|
2021-02-23 15:34:28 -05:00
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-02-23 15:34:28 -05:00
|
|
|
"P00 WARN: repo1: [FileMissingError] unable to load info file '" TEST_PATH_REPO "/archive/test1/archive.info' or '"
|
|
|
|
TEST_PATH_REPO "/archive/test1/archive.info.copy':\n"
|
|
|
|
" FileMissingError: unable to open missing file '" TEST_PATH_REPO "/archive/test1/archive.info' for read\n"
|
|
|
|
" FileMissingError: unable to open missing file '" TEST_PATH_REPO "/archive/test1/archive.info.copy' for"
|
|
|
|
" read\n"
|
|
|
|
" HINT: archive.info cannot be opened but is required to push/get WAL segments.\n"
|
|
|
|
" HINT: is archive_command configured correctly in postgresql.conf?\n"
|
|
|
|
" HINT: has a stanza-create been performed?\n"
|
|
|
|
" HINT: use --no-archive-check to disable archive checks during backup if you have an alternate archiving"
|
|
|
|
" scheme.");
|
2018-04-30 17:27:39 -04:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2021-01-08 16:48:32 -05:00
|
|
|
argList = strLstDup(argBaseList);
|
|
|
|
strLstAddZ(argList, "00000001.history");
|
|
|
|
strLstAddZ(argList, TEST_PATH_PG "/pg_wal/RECOVERYHISTORY");
|
|
|
|
strLstAddZ(argList, "--archive-async");
|
|
|
|
harnessCfgLoadRaw(strLstSize(argList), strLstPtr(argList));
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-05-22 11:59:43 -04:00
|
|
|
TEST_ERROR(cmdArchiveGet(), RepoInvalidError, "unable to find a valid repository");
|
2021-02-23 15:34:28 -05:00
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-02-23 15:34:28 -05:00
|
|
|
"P00 WARN: repo1: [FileMissingError] unable to load info file '" TEST_PATH_REPO "/archive/test1/archive.info' or '"
|
|
|
|
TEST_PATH_REPO "/archive/test1/archive.info.copy':\n"
|
|
|
|
" FileMissingError: unable to open missing file '" TEST_PATH_REPO "/archive/test1/archive.info' for read\n"
|
|
|
|
" FileMissingError: unable to open missing file '" TEST_PATH_REPO "/archive/test1/archive.info.copy' for"
|
|
|
|
" read\n"
|
|
|
|
" HINT: archive.info cannot be opened but is required to push/get WAL segments.\n"
|
|
|
|
" HINT: is archive_command configured correctly in postgresql.conf?\n"
|
|
|
|
" HINT: has a stanza-create been performed?\n"
|
|
|
|
" HINT: use --no-archive-check to disable archive checks during backup if you have an alternate archiving"
|
|
|
|
" scheme.");
|
2018-04-30 17:27:39 -04:00
|
|
|
|
|
|
|
// Make sure the process times out when there is nothing to get
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2021-01-08 16:48:32 -05:00
|
|
|
argList = strLstDup(argBaseList);
|
|
|
|
hrnCfgArgRawZ(argList, cfgOptSpoolPath, TEST_PATH_SPOOL);
|
|
|
|
hrnCfgArgRawBool(argList, cfgOptArchiveAsync, true);
|
|
|
|
strLstAddZ(argList, "000000010000000100000001");
|
2018-04-30 17:27:39 -04:00
|
|
|
strLstAddZ(argList, "pg_wal/RECOVERYXLOG");
|
2019-10-08 12:06:30 -04:00
|
|
|
harnessCfgLoadRaw(strLstSize(argList), strLstPtr(argList));
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2020-07-30 07:49:06 -04:00
|
|
|
THROW_ON_SYS_ERROR(chdir(strZ(cfgOptionStr(cfgOptPgPath))) != 0, PathMissingError, "unable to chdir()");
|
2019-12-11 14:36:39 -05:00
|
|
|
|
2021-05-13 17:51:39 -04:00
|
|
|
TEST_ERROR(
|
|
|
|
cmdArchiveGet(), ArchiveTimeoutError,
|
|
|
|
"unable to get WAL file '000000010000000100000001' from the archive asynchronously after 1 second(s)");
|
2018-04-30 17:27:39 -04:00
|
|
|
|
|
|
|
// Check for missing WAL
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2021-01-08 16:48:32 -05:00
|
|
|
HRN_STORAGE_PUT_EMPTY(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000100000001.ok");
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-05-13 17:51:39 -04:00
|
|
|
TEST_ERROR(
|
|
|
|
cmdArchiveGet(), ArchiveTimeoutError,
|
|
|
|
"unable to get WAL file '000000010000000100000001' from the archive asynchronously after 1 second(s)");
|
2018-04-30 17:27:39 -04:00
|
|
|
|
|
|
|
TEST_RESULT_BOOL(
|
2021-01-08 16:48:32 -05:00
|
|
|
storageExistsP(storageSpool(), STRDEF(STORAGE_SPOOL_ARCHIVE_IN "/000000010000000100000001.ok")), false,
|
2018-04-30 17:27:39 -04:00
|
|
|
"check OK file was removed");
|
|
|
|
|
|
|
|
// Write out a WAL segment for success
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2021-01-08 16:48:32 -05:00
|
|
|
HRN_STORAGE_PUT_Z(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000100000001", "SHOULD-BE-A-REAL-WAL-FILE");
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-01-06 11:36:42 -05:00
|
|
|
TEST_RESULT_INT(cmdArchiveGet(), 0, "successful get");
|
2018-10-02 17:54:43 +01:00
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG("P00 INFO: found 000000010000000100000001 in the archive asynchronously");
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-01-08 16:48:32 -05:00
|
|
|
TEST_STORAGE_LIST_EMPTY(storageSpool(), STORAGE_SPOOL_ARCHIVE_IN);
|
|
|
|
TEST_STORAGE_LIST(storageTest, TEST_PATH_PG "/pg_wal", "RECOVERYXLOG\n", .remove = true);
|
2018-04-30 17:27:39 -04:00
|
|
|
|
|
|
|
// Write more WAL segments (in this case queue should be full)
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
strLstAddZ(argList, "--archive-get-queue-max=48");
|
2019-10-08 12:06:30 -04:00
|
|
|
harnessCfgLoadRaw(strLstSize(argList), strLstPtr(argList));
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-01-08 16:48:32 -05:00
|
|
|
HRN_STORAGE_PUT_Z(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000100000001", "SHOULD-BE-A-REAL-WAL-FILE");
|
2021-02-23 15:34:28 -05:00
|
|
|
HRN_STORAGE_PUT_Z(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000100000001.ok", "0\nwarning about x");
|
2021-01-08 16:48:32 -05:00
|
|
|
HRN_STORAGE_PUT_Z(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000100000002", "SHOULD-BE-A-REAL-WAL-FILE");
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-01-06 11:36:42 -05:00
|
|
|
TEST_RESULT_INT(cmdArchiveGet(), 0, "successful get");
|
2018-10-02 17:54:43 +01:00
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
|
|
|
"P00 WARN: warning about x\n"
|
|
|
|
"P00 INFO: found 000000010000000100000001 in the archive asynchronously");
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-01-08 16:48:32 -05:00
|
|
|
TEST_STORAGE_LIST(storageTest, TEST_PATH_PG "/pg_wal", "RECOVERYXLOG\n", .remove = true);
|
2018-04-30 17:27:39 -04:00
|
|
|
|
|
|
|
// Make sure the process times out when it can't get a lock
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2021-04-14 15:41:55 -04:00
|
|
|
HARNESS_FORK_BEGIN()
|
|
|
|
{
|
|
|
|
HARNESS_FORK_CHILD_BEGIN(0, true)
|
|
|
|
{
|
2021-05-21 17:36:43 -04:00
|
|
|
IoRead *read = ioFdReadNew(STRDEF("child read"), HARNESS_FORK_CHILD_READ(), 2000);
|
2021-04-14 15:41:55 -04:00
|
|
|
ioReadOpen(read);
|
2021-05-21 17:36:43 -04:00
|
|
|
IoWrite *write = ioFdWriteNew(STRDEF("child write"), HARNESS_FORK_CHILD_WRITE(), 2000);
|
2021-04-14 15:41:55 -04:00
|
|
|
ioWriteOpen(write);
|
|
|
|
|
2021-05-13 17:51:39 -04:00
|
|
|
TEST_RESULT_VOID(
|
|
|
|
lockAcquire(
|
2021-04-14 15:41:55 -04:00
|
|
|
cfgOptionStr(cfgOptLockPath), cfgOptionStr(cfgOptStanza), STRDEF("999-dededede"), cfgLockType(), 30000,
|
|
|
|
true),
|
2021-05-13 17:51:39 -04:00
|
|
|
"acquire lock");
|
2021-04-14 15:41:55 -04:00
|
|
|
|
|
|
|
// Let the parent know the lock has been acquired and wait for the parent to allow lock release
|
2021-05-21 17:36:43 -04:00
|
|
|
ioWriteStrLine(write, strNew());
|
2021-04-14 15:41:55 -04:00
|
|
|
ioWriteFlush(write);
|
|
|
|
ioReadLine(read);
|
|
|
|
|
|
|
|
lockRelease(true);
|
|
|
|
}
|
|
|
|
HARNESS_FORK_CHILD_END();
|
|
|
|
|
|
|
|
HARNESS_FORK_PARENT_BEGIN()
|
|
|
|
{
|
2021-05-21 17:36:43 -04:00
|
|
|
IoRead *read = ioFdReadNew(STRDEF("parent read"), HARNESS_FORK_PARENT_READ_PROCESS(0), 2000);
|
2021-04-14 15:41:55 -04:00
|
|
|
ioReadOpen(read);
|
2021-05-21 17:36:43 -04:00
|
|
|
IoWrite *write = ioFdWriteNew(STRDEF("parent write"), HARNESS_FORK_PARENT_WRITE_PROCESS(0), 2000);
|
2021-04-14 15:41:55 -04:00
|
|
|
ioWriteOpen(write);
|
|
|
|
|
|
|
|
// Wait for the child to acquire the lock
|
|
|
|
ioReadLine(read);
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-05-13 17:51:39 -04:00
|
|
|
TEST_ERROR(
|
|
|
|
cmdArchiveGet(), ArchiveTimeoutError,
|
|
|
|
"unable to get WAL file '000000010000000100000001' from the archive asynchronously after 1 second(s)");
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2021-04-14 15:41:55 -04:00
|
|
|
// Notify the child to release the lock
|
|
|
|
ioWriteLine(write, bufNew(0));
|
|
|
|
ioWriteFlush(write);
|
|
|
|
}
|
|
|
|
HARNESS_FORK_PARENT_END();
|
|
|
|
}
|
|
|
|
HARNESS_FORK_END();
|
|
|
|
|
2018-04-30 17:27:39 -04:00
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
strLstAddZ(argList, BOGUS_STR);
|
2019-10-08 12:06:30 -04:00
|
|
|
harnessCfgLoadRaw(strLstSize(argList), strLstPtr(argList));
|
2018-04-30 17:27:39 -04:00
|
|
|
|
2018-05-18 11:57:32 -04:00
|
|
|
TEST_ERROR(cmdArchiveGet(), ParamInvalidError, "extra parameters found");
|
2021-01-08 16:48:32 -05:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2021-01-12 18:20:28 -05:00
|
|
|
TEST_TITLE("pg version does not match archive.info");
|
2021-01-08 16:48:32 -05:00
|
|
|
|
|
|
|
HRN_STORAGE_PUT(
|
|
|
|
storagePgWrite(), PG_PATH_GLOBAL "/" PG_FILE_PGCONTROL,
|
2021-05-17 07:20:28 -04:00
|
|
|
hrnPgControlToBuffer((PgControl){.version = PG_VERSION_11, .systemId = 0xFACEFACEFACEFACE}));
|
2021-01-08 16:48:32 -05:00
|
|
|
|
|
|
|
HRN_INFO_PUT(
|
|
|
|
storageRepoWrite(), INFO_ARCHIVE_PATH_FILE,
|
|
|
|
"[db]\n"
|
|
|
|
"db-id=1\n"
|
|
|
|
"\n"
|
|
|
|
"[db:history]\n"
|
|
|
|
"1={\"db-id\":18072658121562454734,\"db-version\":\"10\"}");
|
|
|
|
|
2021-01-12 18:20:28 -05:00
|
|
|
argBaseList = strLstNew();
|
|
|
|
hrnCfgArgRawZ(argBaseList, cfgOptPgPath, TEST_PATH_PG);
|
|
|
|
hrnCfgArgRawZ(argBaseList, cfgOptRepoPath, TEST_PATH_REPO);
|
|
|
|
hrnCfgArgRawZ(argBaseList, cfgOptStanza, "test1");
|
|
|
|
|
|
|
|
argList = strLstDup(argBaseList);
|
2021-01-08 16:48:32 -05:00
|
|
|
strLstAddZ(argList, "01ABCDEF01ABCDEF01ABCDEF");
|
|
|
|
strLstAddZ(argList, TEST_PATH_PG "/pg_wal/RECOVERYXLOG");
|
|
|
|
harnessCfgLoad(cfgCmdArchiveGet, argList);
|
|
|
|
|
2021-02-23 15:34:28 -05:00
|
|
|
TEST_ERROR(cmdArchiveGet(), RepoInvalidError, "unable to find a valid repository");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-02-23 15:34:28 -05:00
|
|
|
"P00 WARN: repo1: [ArchiveMismatchError] unable to retrieve the archive id for database version '11' and system-id"
|
|
|
|
" '18072658121562454734'");
|
2021-01-12 18:20:28 -05:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2021-04-21 18:27:18 -04:00
|
|
|
TEST_TITLE("pg system id does not match archive.info");
|
2021-01-12 18:20:28 -05:00
|
|
|
|
|
|
|
HRN_STORAGE_PUT(
|
|
|
|
storagePgWrite(), PG_PATH_GLOBAL "/" PG_FILE_PGCONTROL,
|
2021-05-17 07:20:28 -04:00
|
|
|
hrnPgControlToBuffer((PgControl){.version = PG_VERSION_10, .systemId = 0x8888888888888888}));
|
2021-01-12 18:20:28 -05:00
|
|
|
|
2021-02-23 15:34:28 -05:00
|
|
|
TEST_ERROR(cmdArchiveGet(), RepoInvalidError, "unable to find a valid repository");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-02-23 15:34:28 -05:00
|
|
|
"P00 WARN: repo1: [ArchiveMismatchError] unable to retrieve the archive id for database version '10' and system-id"
|
|
|
|
" '9838263505978427528'");
|
2021-01-12 18:20:28 -05:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("file is missing");
|
|
|
|
|
|
|
|
HRN_STORAGE_PUT(
|
|
|
|
storagePgWrite(), PG_PATH_GLOBAL "/" PG_FILE_PGCONTROL,
|
2021-05-17 07:20:28 -04:00
|
|
|
hrnPgControlToBuffer((PgControl){.version = PG_VERSION_10, .systemId = 0xFACEFACEFACEFACE}));
|
2021-01-12 18:20:28 -05:00
|
|
|
|
2021-01-08 16:48:32 -05:00
|
|
|
TEST_RESULT_INT(cmdArchiveGet(), 1, "get");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG("P00 INFO: unable to find 01ABCDEF01ABCDEF01ABCDEF in the archive");
|
2021-01-08 16:48:32 -05:00
|
|
|
|
|
|
|
TEST_STORAGE_LIST_EMPTY(storageTest, TEST_PATH_PG "/pg_wal");
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("get WAL segment");
|
|
|
|
|
|
|
|
Buffer *buffer = bufNew(16 * 1024 * 1024);
|
|
|
|
memset(bufPtr(buffer), 0, bufSize(buffer));
|
|
|
|
bufUsedSet(buffer, bufSize(buffer));
|
|
|
|
|
|
|
|
HRN_STORAGE_PUT(
|
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-1/01ABCDEF01ABCDEF01ABCDEF-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
|
|
|
buffer);
|
|
|
|
|
|
|
|
TEST_RESULT_INT(cmdArchiveGet(), 0, "get");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG("P00 INFO: found 01ABCDEF01ABCDEF01ABCDEF in the repo1: 10-1 archive");
|
2021-01-08 16:48:32 -05:00
|
|
|
|
|
|
|
TEST_RESULT_UINT(
|
|
|
|
storageInfoP(storageTest, STRDEF(TEST_PATH_PG "/pg_wal/RECOVERYXLOG")).size, 16 * 1024 * 1024, "check size");
|
|
|
|
TEST_STORAGE_LIST(storageTest, TEST_PATH_PG "/pg_wal", "RECOVERYXLOG\n", .remove = true);
|
|
|
|
|
2021-01-13 13:01:40 -05:00
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("error on duplicate WAL segment");
|
|
|
|
|
|
|
|
HRN_STORAGE_PUT_EMPTY(
|
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-1/01ABCDEF01ABCDEF01ABCDEF-bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb");
|
|
|
|
|
|
|
|
TEST_ERROR(
|
|
|
|
cmdArchiveGet(), ArchiveDuplicateError,
|
2021-02-23 15:34:28 -05:00
|
|
|
"duplicates found for WAL segment 01ABCDEF01ABCDEF01ABCDEF:\n"
|
|
|
|
"repo1: 10-1/01ABCDEF01ABCDEF/01ABCDEF01ABCDEF01ABCDEF-bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"
|
|
|
|
", 10-1/01ABCDEF01ABCDEF/01ABCDEF01ABCDEF01ABCDEF-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\n"
|
2021-01-13 13:01:40 -05:00
|
|
|
"HINT: are multiple primaries archiving to this stanza?");
|
|
|
|
|
|
|
|
TEST_STORAGE_LIST(storageTest, TEST_PATH_PG "/pg_wal", NULL);
|
|
|
|
TEST_STORAGE_REMOVE(
|
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-1/01ABCDEF01ABCDEF01ABCDEF-bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb");
|
|
|
|
|
2021-01-12 18:20:28 -05:00
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("get from prior db-id");
|
|
|
|
|
|
|
|
HRN_INFO_PUT(
|
|
|
|
storageRepoWrite(), INFO_ARCHIVE_PATH_FILE,
|
|
|
|
"[db]\n"
|
|
|
|
"db-id=1\n"
|
|
|
|
"\n"
|
|
|
|
"[db:history]\n"
|
|
|
|
"1={\"db-id\":18072658121562454734,\"db-version\":\"10\"}\n"
|
2021-02-23 15:34:28 -05:00
|
|
|
"2={\"db-id\":18072658121562454734,\"db-version\":\"10\"}\n"
|
|
|
|
"3={\"db-id\":10000000000000000000,\"db-version\":\"11\"}\n"
|
|
|
|
"4={\"db-id\":18072658121562454734,\"db-version\":\"10\"}");
|
2021-01-12 18:20:28 -05:00
|
|
|
|
|
|
|
TEST_RESULT_INT(cmdArchiveGet(), 0, "get");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG("P00 INFO: found 01ABCDEF01ABCDEF01ABCDEF in the repo1: 10-1 archive");
|
2021-01-15 10:15:52 -05:00
|
|
|
|
|
|
|
TEST_STORAGE_LIST(storageTest, TEST_PATH_PG "/pg_wal", "RECOVERYXLOG\n", .remove = true);
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("get from current db-id");
|
|
|
|
|
|
|
|
HRN_STORAGE_PUT_EMPTY(
|
2021-02-23 15:34:28 -05:00
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-4/01ABCDEF01ABCDEF01ABCDEF-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
|
2021-01-15 10:15:52 -05:00
|
|
|
|
|
|
|
TEST_RESULT_INT(cmdArchiveGet(), 0, "get");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG("P00 INFO: found 01ABCDEF01ABCDEF01ABCDEF in the repo1: 10-4 archive");
|
2021-01-12 18:20:28 -05:00
|
|
|
|
|
|
|
TEST_STORAGE_LIST(storageTest, TEST_PATH_PG "/pg_wal", "RECOVERYXLOG\n", .remove = true);
|
2021-01-08 16:48:32 -05:00
|
|
|
TEST_STORAGE_REMOVE(
|
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-1/01ABCDEF01ABCDEF01ABCDEF-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
|
2021-01-15 10:15:52 -05:00
|
|
|
TEST_STORAGE_REMOVE(
|
2021-02-23 15:34:28 -05:00
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-4/01ABCDEF01ABCDEF01ABCDEF-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
|
2021-01-08 16:48:32 -05:00
|
|
|
|
2021-01-12 18:20:28 -05:00
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("get partial");
|
|
|
|
|
|
|
|
buffer = bufNew(16 * 1024 * 1024);
|
|
|
|
memset(bufPtr(buffer), 0xFF, bufSize(buffer));
|
|
|
|
bufUsedSet(buffer, bufSize(buffer));
|
|
|
|
|
|
|
|
HRN_STORAGE_PUT(
|
|
|
|
storageRepoWrite(),
|
2021-02-23 15:34:28 -05:00
|
|
|
STORAGE_REPO_ARCHIVE "/10-4/000000010000000100000001.partial-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
2021-01-12 18:20:28 -05:00
|
|
|
buffer);
|
|
|
|
|
|
|
|
argList = strLstDup(argBaseList);
|
|
|
|
strLstAddZ(argList, "000000010000000100000001.partial");
|
|
|
|
strLstAddZ(argList, TEST_PATH_PG "/pg_wal/RECOVERYXLOG");
|
|
|
|
harnessCfgLoad(cfgCmdArchiveGet, argList);
|
|
|
|
|
|
|
|
TEST_RESULT_INT(cmdArchiveGet(), 0, "get");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG("P00 INFO: found 000000010000000100000001.partial in the repo1: 10-4 archive");
|
2021-01-12 18:20:28 -05:00
|
|
|
|
|
|
|
TEST_STORAGE_LIST(storageTest, TEST_PATH_PG "/pg_wal", "RECOVERYXLOG\n", .remove = true);
|
|
|
|
TEST_STORAGE_REMOVE(
|
|
|
|
storageRepoWrite(),
|
2021-02-23 15:34:28 -05:00
|
|
|
STORAGE_REPO_ARCHIVE "/10-4/000000010000000100000001.partial-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
|
2021-01-12 18:20:28 -05:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("get missing history");
|
|
|
|
|
|
|
|
argList = strLstDup(argBaseList);
|
|
|
|
strLstAddZ(argList, "00000001.history");
|
|
|
|
strLstAddZ(argList, TEST_PATH_PG "/pg_wal/RECOVERYHISTORY");
|
|
|
|
harnessCfgLoad(cfgCmdArchiveGet, argList);
|
|
|
|
|
|
|
|
TEST_RESULT_INT(cmdArchiveGet(), 1, "get");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG("P00 INFO: unable to find 00000001.history in the archive");
|
2021-01-12 18:20:28 -05:00
|
|
|
|
|
|
|
TEST_STORAGE_LIST(storageTest, TEST_PATH_PG "/pg_wal", NULL);
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("get history");
|
|
|
|
|
|
|
|
HRN_STORAGE_PUT(storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-1/00000001.history", BUFSTRDEF("HISTORY"));
|
|
|
|
|
|
|
|
TEST_RESULT_INT(cmdArchiveGet(), 0, "get");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG("P00 INFO: found 00000001.history in the repo1: 10-1 archive");
|
2021-01-12 18:20:28 -05:00
|
|
|
|
|
|
|
TEST_RESULT_UINT(storageInfoP(storageTest, STRDEF(TEST_PATH_PG "/pg_wal/RECOVERYHISTORY")).size, 7, "check size");
|
|
|
|
TEST_STORAGE_LIST(storageTest, TEST_PATH_PG "/pg_wal", "RECOVERYHISTORY\n", .remove = true);
|
|
|
|
|
2021-01-08 16:48:32 -05:00
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
2021-02-23 15:34:28 -05:00
|
|
|
TEST_TITLE("get compressed and encrypted WAL segment with invalid repo");
|
2021-01-08 16:48:32 -05:00
|
|
|
|
|
|
|
HRN_INFO_PUT(
|
|
|
|
storageRepoWrite(), INFO_ARCHIVE_PATH_FILE,
|
|
|
|
"[cipher]\n"
|
|
|
|
"cipher-pass=\"" TEST_CIPHER_PASS_ARCHIVE "\"\n"
|
|
|
|
"\n"
|
|
|
|
"[db]\n"
|
|
|
|
"db-id=1\n"
|
|
|
|
"\n"
|
|
|
|
"[db:history]\n"
|
|
|
|
"1={\"db-id\":18072658121562454734,\"db-version\":\"10\"}",
|
|
|
|
.cipherType = cipherTypeAes256Cbc);
|
|
|
|
|
|
|
|
HRN_STORAGE_PUT(
|
|
|
|
storageRepoWrite(), STORAGE_REPO_ARCHIVE "/10-1/01ABCDEF01ABCDEF01ABCDEF-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
|
|
|
buffer, .compressType = compressTypeGz, .cipherType = cipherTypeAes256Cbc, .cipherPass = TEST_CIPHER_PASS_ARCHIVE);
|
|
|
|
|
|
|
|
// Add encryption options
|
2021-01-21 15:21:50 -05:00
|
|
|
argList = strLstNew();
|
|
|
|
hrnCfgArgRawZ(argList, cfgOptPgPath, TEST_PATH_PG);
|
2021-02-23 15:34:28 -05:00
|
|
|
hrnCfgArgKeyRawZ(argList, cfgOptRepoPath, 1, TEST_PATH_REPO "-bogus");
|
2021-01-21 15:21:50 -05:00
|
|
|
hrnCfgArgKeyRawFmt(argList, cfgOptRepoPath, 2, TEST_PATH_REPO);
|
2021-04-28 11:36:20 -04:00
|
|
|
hrnCfgArgKeyRawStrId(argList, cfgOptRepoCipherType, 2, cipherTypeAes256Cbc);
|
2021-01-21 15:21:50 -05:00
|
|
|
hrnCfgEnvKeyRawZ(cfgOptRepoCipherPass, 2, TEST_CIPHER_PASS);
|
|
|
|
hrnCfgArgRawZ(argList, cfgOptStanza, "test1");
|
2021-01-12 18:20:28 -05:00
|
|
|
strLstAddZ(argList, "01ABCDEF01ABCDEF01ABCDEF");
|
|
|
|
strLstAddZ(argList, TEST_PATH_PG "/pg_wal/RECOVERYXLOG");
|
2021-01-08 16:48:32 -05:00
|
|
|
harnessCfgLoad(cfgCmdArchiveGet, argList);
|
2021-01-21 15:21:50 -05:00
|
|
|
hrnCfgEnvKeyRemoveRaw(cfgOptRepoCipherPass, 2);
|
2021-01-08 16:48:32 -05:00
|
|
|
|
|
|
|
TEST_RESULT_INT(cmdArchiveGet(), 0, "get");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-02-23 15:34:28 -05:00
|
|
|
"P00 WARN: repo1: [FileMissingError] unable to load info file '" TEST_PATH_REPO "-bogus/archive/test1/archive.info'"
|
|
|
|
" or '" TEST_PATH_REPO "-bogus/archive/test1/archive.info.copy':\n"
|
|
|
|
" FileMissingError: unable to open missing file '" TEST_PATH_REPO "-bogus/archive/test1/archive.info'"
|
|
|
|
" for read\n"
|
|
|
|
" FileMissingError: unable to open missing file '" TEST_PATH_REPO "-bogus/archive/test1/archive.info.copy'"
|
|
|
|
" for read\n"
|
|
|
|
" HINT: archive.info cannot be opened but is required to push/get WAL segments.\n"
|
|
|
|
" HINT: is archive_command configured correctly in postgresql.conf?\n"
|
|
|
|
" HINT: has a stanza-create been performed?\n"
|
|
|
|
" HINT: use --no-archive-check to disable archive checks during backup if you have an alternate"
|
|
|
|
" archiving scheme.\n"
|
|
|
|
"P00 INFO: found 01ABCDEF01ABCDEF01ABCDEF in the repo2: 10-1 archive");
|
2021-01-08 16:48:32 -05:00
|
|
|
|
|
|
|
TEST_RESULT_UINT(
|
|
|
|
storageInfoP(storageTest, STRDEF(TEST_PATH_PG "/pg_wal/RECOVERYXLOG")).size, 16 * 1024 * 1024, "check size");
|
2021-02-23 15:34:28 -05:00
|
|
|
TEST_STORAGE_LIST(storageTest, TEST_PATH_PG "/pg_wal", "RECOVERYXLOG\n", .remove = true);
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("repo1 has info but bad permissions");
|
|
|
|
|
|
|
|
HRN_INFO_PUT(
|
|
|
|
storageRepoIdxWrite(0), INFO_ARCHIVE_PATH_FILE,
|
|
|
|
"[db]\n"
|
|
|
|
"db-id=2\n"
|
|
|
|
"\n"
|
|
|
|
"[db:history]\n"
|
|
|
|
"2={\"db-id\":18072658121562454734,\"db-version\":\"10\"}");
|
|
|
|
|
|
|
|
storagePathCreateP(storageRepoIdxWrite(0), STRDEF(STORAGE_REPO_ARCHIVE "/10-2"), .mode = 0400);
|
|
|
|
|
|
|
|
TEST_RESULT_INT(cmdArchiveGet(), 0, "get");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-02-23 15:34:28 -05:00
|
|
|
"P00 WARN: repo1: [PathOpenError] unable to list file info for path '" TEST_PATH_REPO "-bogus/archive/test1/10-2"
|
|
|
|
"/01ABCDEF01ABCDEF': [13] Permission denied\n"
|
|
|
|
"P00 INFO: found 01ABCDEF01ABCDEF01ABCDEF in the repo2: 10-1 archive");
|
|
|
|
|
|
|
|
TEST_STORAGE_LIST(storageTest, TEST_PATH_PG "/pg_wal", "RECOVERYXLOG\n", .remove = true);
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("all repos have info but bad permissions");
|
|
|
|
|
|
|
|
HRN_STORAGE_MODE(storageRepoIdxWrite(1), STORAGE_REPO_ARCHIVE "/10-1", .mode = 0400);
|
|
|
|
|
|
|
|
TEST_ERROR(cmdArchiveGet(), RepoInvalidError, "unable to find a valid repository");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-02-23 15:34:28 -05:00
|
|
|
"P00 WARN: repo1: [PathOpenError] unable to list file info for path '" TEST_PATH_REPO "-bogus/archive/test1/10-2"
|
|
|
|
"/01ABCDEF01ABCDEF': [13] Permission denied\n"
|
|
|
|
"P00 WARN: repo2: [PathOpenError] unable to list file info for path '" TEST_PATH_REPO "/archive/test1/10-1"
|
|
|
|
"/01ABCDEF01ABCDEF': [13] Permission denied");
|
|
|
|
|
|
|
|
HRN_STORAGE_MODE(storageRepoIdxWrite(0), STORAGE_REPO_ARCHIVE "/10-2");
|
|
|
|
HRN_STORAGE_MODE(storageRepoIdxWrite(1), STORAGE_REPO_ARCHIVE "/10-1");
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("unable to get from one repo");
|
|
|
|
|
|
|
|
HRN_STORAGE_PUT(
|
|
|
|
storageRepoIdxWrite(0),
|
|
|
|
STORAGE_REPO_ARCHIVE "/10-2/01ABCDEF01ABCDEF01ABCDEF-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.gz", NULL);
|
|
|
|
|
|
|
|
TEST_RESULT_INT(cmdArchiveGet(), 0, "get");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-02-23 15:34:28 -05:00
|
|
|
"P00 WARN: repo1: 10-2/01ABCDEF01ABCDEF/01ABCDEF01ABCDEF01ABCDEF-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.gz"
|
|
|
|
" [FormatError] unexpected eof in compressed data\n"
|
|
|
|
"P00 INFO: found 01ABCDEF01ABCDEF01ABCDEF in the repo2: 10-1 archive");
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("unable to get from all repos");
|
|
|
|
|
|
|
|
HRN_STORAGE_MODE(
|
|
|
|
storageRepoIdxWrite(1),
|
|
|
|
STORAGE_REPO_ARCHIVE "/10-1/01ABCDEF01ABCDEF01ABCDEF-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.gz", .mode = 0200);
|
|
|
|
|
|
|
|
TEST_ERROR(
|
|
|
|
cmdArchiveGet(), FileReadError,
|
|
|
|
"unable to get 01ABCDEF01ABCDEF01ABCDEF:\n"
|
|
|
|
"repo1: 10-2/01ABCDEF01ABCDEF/01ABCDEF01ABCDEF01ABCDEF-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.gz [FormatError]"
|
|
|
|
" unexpected eof in compressed data\n"
|
|
|
|
"repo2: 10-1/01ABCDEF01ABCDEF/01ABCDEF01ABCDEF01ABCDEF-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.gz [FileOpenError]"
|
|
|
|
" unable to open file '" TEST_PATH_REPO "/archive/test1/10-1/01ABCDEF01ABCDEF/01ABCDEF01ABCDEF01ABCDEF"
|
|
|
|
"-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.gz' for read: [13] Permission denied");
|
|
|
|
|
|
|
|
HRN_STORAGE_MODE(
|
|
|
|
storageRepoIdxWrite(1),
|
|
|
|
STORAGE_REPO_ARCHIVE "/10-1/01ABCDEF01ABCDEF01ABCDEF-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.gz");
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("repo is specified so invalid repo is skipped");
|
|
|
|
|
|
|
|
hrnCfgArgRawZ(argList, cfgOptRepo, "2");
|
|
|
|
hrnCfgEnvKeyRawZ(cfgOptRepoCipherPass, 2, TEST_CIPHER_PASS);
|
|
|
|
harnessCfgLoadRole(cfgCmdArchiveGet, cfgCmdRoleLocal, argList);
|
|
|
|
hrnCfgEnvKeyRemoveRaw(cfgOptRepoCipherPass, 2);
|
|
|
|
|
|
|
|
TEST_RESULT_INT(cmdArchiveGet(), 0, "get");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG(
|
2021-02-23 15:34:28 -05:00
|
|
|
"P00 INFO: found 01ABCDEF01ABCDEF01ABCDEF in the repo2: 10-1 archive");
|
2021-01-08 16:48:32 -05:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("call protocol function directly");
|
|
|
|
|
|
|
|
// Start a protocol server
|
|
|
|
Buffer *serverWrite = bufNew(8192);
|
|
|
|
IoWrite *serverWriteIo = ioBufferWriteNew(serverWrite);
|
|
|
|
ioWriteOpen(serverWriteIo);
|
|
|
|
|
2021-05-21 17:36:43 -04:00
|
|
|
ProtocolServer *server = protocolServerNew(STRDEF("test"), STRDEF("test"), ioBufferReadNew(bufNew(0)), serverWriteIo);
|
2021-01-08 16:48:32 -05:00
|
|
|
bufUsedSet(serverWrite, 0);
|
|
|
|
|
2021-01-12 18:20:28 -05:00
|
|
|
// Add archive-async and spool path
|
2021-01-08 16:48:32 -05:00
|
|
|
hrnCfgArgRawZ(argList, cfgOptSpoolPath, TEST_PATH_SPOOL);
|
|
|
|
hrnCfgArgRawBool(argList, cfgOptArchiveAsync, true);
|
2021-01-21 15:21:50 -05:00
|
|
|
hrnCfgEnvKeyRawZ(cfgOptRepoCipherPass, 2, TEST_CIPHER_PASS);
|
2021-01-08 16:48:32 -05:00
|
|
|
harnessCfgLoadRole(cfgCmdArchiveGet, cfgCmdRoleLocal, argList);
|
2021-01-21 15:21:50 -05:00
|
|
|
hrnCfgEnvKeyRemoveRaw(cfgOptRepoCipherPass, 2);
|
2021-01-08 16:48:32 -05:00
|
|
|
|
|
|
|
// Setup protocol command
|
|
|
|
VariantList *paramList = varLstNew();
|
|
|
|
varLstAdd(paramList, varNewStrZ("01ABCDEF01ABCDEF01ABCDEF"));
|
2021-01-15 10:15:52 -05:00
|
|
|
varLstAdd(
|
|
|
|
paramList, varNewStrZ("10-1/01ABCDEF01ABCDEF/01ABCDEF01ABCDEF01ABCDEF-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.gz"));
|
2021-02-23 15:34:28 -05:00
|
|
|
varLstAdd(paramList, varNewUInt(1));
|
|
|
|
varLstAdd(paramList, varNewStrZ("10-1"));
|
2021-04-28 11:36:20 -04:00
|
|
|
varLstAdd(paramList, varNewUInt64(cipherTypeAes256Cbc));
|
2021-01-15 10:15:52 -05:00
|
|
|
varLstAdd(paramList, varNewStrZ(TEST_CIPHER_PASS_ARCHIVE));
|
2021-01-08 16:48:32 -05:00
|
|
|
|
2021-03-16 13:09:34 -04:00
|
|
|
TEST_RESULT_VOID(archiveGetFileProtocol(paramList, server), "protocol archive get");
|
2021-01-08 16:48:32 -05:00
|
|
|
|
2021-02-23 15:34:28 -05:00
|
|
|
TEST_RESULT_STR_Z(strNewBuf(serverWrite), "{\"out\":[0,[]]}\n", "check result");
|
|
|
|
TEST_STORAGE_LIST(
|
2021-04-14 15:48:04 -04:00
|
|
|
storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN, "000000010000000100000002\n01ABCDEF01ABCDEF01ABCDEF.pgbackrest.tmp\n",
|
|
|
|
.remove = true);
|
2021-01-08 16:48:32 -05:00
|
|
|
|
|
|
|
bufUsedSet(serverWrite, 0);
|
2021-05-13 17:51:39 -04:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
|
|
TEST_TITLE("no segments to find with existing ok file");
|
|
|
|
|
|
|
|
argList = strLstNew();
|
|
|
|
hrnCfgArgRawZ(argList, cfgOptPgPath, TEST_PATH_PG);
|
|
|
|
hrnCfgArgRawZ(argList, cfgOptRepoPath, TEST_PATH_REPO);
|
|
|
|
hrnCfgArgRawZ(argList, cfgOptStanza, "test1");
|
|
|
|
hrnCfgArgRawZ(argList, cfgOptArchiveTimeout, "10");
|
|
|
|
hrnCfgArgRawZ(argList, cfgOptSpoolPath, TEST_PATH_SPOOL);
|
|
|
|
hrnCfgArgRawBool(argList, cfgOptArchiveAsync, true);
|
|
|
|
strLstAddZ(argList, "000000010000000100000001");
|
|
|
|
strLstAddZ(argList, "pg_wal/RECOVERYXLOG");
|
|
|
|
harnessCfgLoad(cfgCmdArchiveGet, argList);
|
|
|
|
|
|
|
|
HRN_INFO_PUT(
|
|
|
|
storageRepoIdxWrite(0), INFO_ARCHIVE_PATH_FILE,
|
|
|
|
"[db]\n"
|
|
|
|
"db-id=2\n"
|
|
|
|
"\n"
|
|
|
|
"[db:history]\n"
|
|
|
|
"2={\"db-id\":18072658121562454734,\"db-version\":\"10\"}");
|
|
|
|
|
|
|
|
// Put a warning in the file to show that it was read and later overwritten
|
|
|
|
HRN_STORAGE_PUT_Z(storageSpoolWrite(), STORAGE_SPOOL_ARCHIVE_IN "/000000010000000100000001.ok", "0\nshould not be output");
|
|
|
|
|
|
|
|
TEST_RESULT_VOID(cmdArchiveGet(), "get async");
|
|
|
|
|
2021-05-22 14:09:45 -04:00
|
|
|
TEST_RESULT_LOG("P00 INFO: unable to find 000000010000000100000001 in the archive asynchronously");
|
2021-05-13 17:51:39 -04:00
|
|
|
|
|
|
|
// Check that the ok file is missing since it should have been removed on the first loop and removed again on a subsequent
|
|
|
|
// loop once the async process discovered that the file was missing and wrote the ok file again.
|
|
|
|
TEST_STORAGE_LIST_EMPTY(storageSpool(), STORAGE_SPOOL_ARCHIVE_IN);
|
2018-04-30 17:27:39 -04:00
|
|
|
}
|
2018-05-18 11:57:32 -04:00
|
|
|
|
2021-03-10 18:42:22 -05:00
|
|
|
FUNCTION_HARNESS_RETURN_VOID();
|
2018-04-30 17:27:39 -04:00
|
|
|
}
|