mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-20 09:07:44 +03:00
155 lines
5.5 KiB
C++
155 lines
5.5 KiB
C++
/* Copyright (C) 2020 MariaDB Corporation
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; version 2 of
|
|
the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
MA 02110-1301, USA. */
|
|
|
|
#include <gtest/gtest.h>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "we_convertor.h"
|
|
#include "we_fileop.h"
|
|
|
|
using namespace idbdatafile;
|
|
using namespace WriteEngine;
|
|
|
|
class RebuildEMTest : public ::testing::Test
|
|
{
|
|
protected:
|
|
struct FileId
|
|
{
|
|
FileId() : oid(0), partition(0), segment(0)
|
|
{
|
|
}
|
|
FileId(uint32_t oid, uint32_t partition, uint32_t segment)
|
|
: oid(oid), partition(partition), segment(segment)
|
|
{
|
|
}
|
|
uint32_t oid;
|
|
uint32_t partition;
|
|
uint32_t segment;
|
|
};
|
|
|
|
static uint32_t getOid(uint32_t a, uint32_t b, uint32_t c, uint32_t d)
|
|
{
|
|
uint32_t oid = 0;
|
|
oid |= a << 24;
|
|
oid |= b << 16;
|
|
oid |= c << 8;
|
|
oid |= d;
|
|
return oid;
|
|
}
|
|
};
|
|
|
|
TEST_F(RebuildEMTest, File2OidCheckFileFormatTest)
|
|
{
|
|
// Valid file names.
|
|
auto aFileName = "001.dir/002.dir/003.dir/004.dir/005.dir/FILE006.cdf";
|
|
FileId aExpected(getOid(1, 2, 3, 4), 5, 6);
|
|
|
|
auto bFileName = "/011.dir/022.dir/033.dir/044.dir/055.dir/FILE066.cdf";
|
|
FileId bExpected(getOid(11, 22, 33, 44), 55, 66);
|
|
|
|
auto cFileName = "data1/255.dir/255.dir/255.dir/255.dir/255.dir/FILE255.cdf";
|
|
FileId cExpected(getOid(255, 255, 255, 255), 255, 255);
|
|
|
|
auto dFileName = "/data1/000.dir/000.dir/000.dir/001.dir/001.dir/FILE001.cdf";
|
|
FileId dExpected(getOid(0, 0, 0, 1), 1, 1);
|
|
|
|
auto eFileName =
|
|
"/data0/data1/data2/data3/data4/data5/data6/../../../../"
|
|
"../data1/000.dir/000.dir/000.dir/000.dir/"
|
|
"000.dir/FILE000.cdf";
|
|
FileId eExpected(getOid(0, 0, 0, 0), 0, 0);
|
|
|
|
auto fFileName =
|
|
"data1/data2/data3/data4/data5/data6/data7/000.dir/"
|
|
"000.dir/008.dir/028.dir/000.dir/FILE079.cdf";
|
|
FileId fExpected(getOid(0, 0, 8, 28), 00, 79);
|
|
|
|
std::vector<std::pair<std::string, FileId>> expectedFileIds = {
|
|
make_pair(aFileName, aExpected), make_pair(bFileName, bExpected), make_pair(cFileName, cExpected),
|
|
make_pair(dFileName, dExpected), make_pair(eFileName, eExpected), make_pair(fFileName, fExpected)};
|
|
|
|
for (const auto& expectedPair : expectedFileIds)
|
|
{
|
|
FileId calculated;
|
|
auto rc = WriteEngine::Convertor::fileName2Oid(expectedPair.first, calculated.oid, calculated.partition,
|
|
calculated.segment);
|
|
|
|
ASSERT_EQ(rc, 0);
|
|
EXPECT_EQ(expectedPair.second.oid, calculated.oid);
|
|
EXPECT_EQ(expectedPair.second.partition, calculated.partition);
|
|
EXPECT_EQ(expectedPair.second.segment, calculated.segment);
|
|
}
|
|
|
|
// Invalid file names.
|
|
// Dir exceed 255.
|
|
auto aInvalidFileName = "256.dir/000.dir/001.dir/002.dir/003.dir/FILE004.cdf";
|
|
// Segment exceed 255.
|
|
auto bInvalidFileName = "000.dir/000.dir/001.dir/002.dir/003.dir/FILE256.cdf";
|
|
// Just a random path.
|
|
auto cInvalidFileName = "/usr////bin//lib///";
|
|
// Empty string.
|
|
auto dInvalidFileName = "";
|
|
// Does not have A dir.
|
|
auto eInvalidFileName = "/data1/000.dir/001.dir/002.dir/003.dir/FILE000.cdf";
|
|
// Invalid partition name dir.
|
|
auto fInvalidFileName = "/000.dir/000.dir/001.dir/002.dir/003.ir/FILE000.cdf";
|
|
// Invalid segment name.
|
|
auto gInvalidFileName = "/000.dir/000.dir/001.dir/002.dir/003.ir/FILE00.cdf";
|
|
// Invalid dir name.
|
|
auto hInvalidFileName = "/00.dir/00.dir/001.dir/002.dir/003.ir/FIE000.cdf";
|
|
// Invalid amount of dirs.
|
|
auto iInvalidFileName = "/002.dir/003.ir/FIE000.cdf";
|
|
|
|
std::vector<std::string> invalidFileNames = {aInvalidFileName, bInvalidFileName, cInvalidFileName,
|
|
dInvalidFileName, eInvalidFileName, fInvalidFileName,
|
|
gInvalidFileName, hInvalidFileName, iInvalidFileName};
|
|
|
|
for (const auto& invalidFileName : invalidFileNames)
|
|
{
|
|
FileId calculated;
|
|
auto rc = WriteEngine::Convertor::fileName2Oid(invalidFileName, calculated.oid, calculated.partition,
|
|
calculated.segment);
|
|
ASSERT_NE(rc, 0);
|
|
}
|
|
}
|
|
|
|
TEST_F(RebuildEMTest, File2OidCalculationTest)
|
|
{
|
|
char dbDirName[20][20];
|
|
char fileName[64];
|
|
|
|
for (uint32_t i = 3; i < 256; ++i)
|
|
{
|
|
FileId expectedFileId(getOid(i, i - 1, i - 2, i - 3), i, i);
|
|
memset(fileName, 0, 64);
|
|
// Generate the filename by the oid, partition and segment.
|
|
auto rc = WriteEngine::Convertor::oid2FileName(expectedFileId.oid, fileName, dbDirName,
|
|
expectedFileId.partition, expectedFileId.segment);
|
|
ASSERT_EQ(rc, 0);
|
|
|
|
FileId calculatedFileId;
|
|
// Generate an oid, partition and segment from the given file name.
|
|
rc = WriteEngine::Convertor::fileName2Oid(fileName, calculatedFileId.oid, calculatedFileId.partition,
|
|
calculatedFileId.segment);
|
|
ASSERT_EQ(rc, 0);
|
|
EXPECT_EQ(expectedFileId.oid, calculatedFileId.oid);
|
|
EXPECT_EQ(expectedFileId.partition, calculatedFileId.partition);
|
|
EXPECT_EQ(expectedFileId.segment, calculatedFileId.segment);
|
|
}
|
|
}
|