-
Notifications
You must be signed in to change notification settings - Fork 411
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cherry pick bugfixes for PODArray (#1357)
- Loading branch information
1 parent
4788326
commit b6529f3
Showing
2 changed files
with
81 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
#include <Common/PODArray.h> | ||
#include <gtest/gtest.h> | ||
|
||
using namespace DB; | ||
|
||
TEST(Common, PODArrayInsert) | ||
{ | ||
std::string str = "test_string_abacaba"; | ||
PODArray<char> chars; | ||
chars.insert(chars.end(), str.begin(), str.end()); | ||
EXPECT_EQ(str, std::string(chars.data(), chars.size())); | ||
|
||
std::string insert_in_the_middle = "insert_in_the_middle"; | ||
auto pos = str.size() / 2; | ||
str.insert(str.begin() + pos, insert_in_the_middle.begin(), insert_in_the_middle.end()); | ||
chars.insert(chars.begin() + pos, insert_in_the_middle.begin(), insert_in_the_middle.end()); | ||
EXPECT_EQ(str, std::string(chars.data(), chars.size())); | ||
|
||
std::string insert_with_resize; | ||
insert_with_resize.reserve(chars.capacity() * 2); | ||
char cur_char = 'a'; | ||
while (insert_with_resize.size() < insert_with_resize.capacity()) | ||
{ | ||
insert_with_resize += cur_char; | ||
if (cur_char == 'z') | ||
cur_char = 'a'; | ||
else | ||
++cur_char; | ||
} | ||
str.insert(str.begin(), insert_with_resize.begin(), insert_with_resize.end()); | ||
chars.insert(chars.begin(), insert_with_resize.begin(), insert_with_resize.end()); | ||
EXPECT_EQ(str, std::string(chars.data(), chars.size())); | ||
} | ||
|
||
TEST(Common, PODPushBackRawMany) | ||
{ | ||
PODArray<char> chars; | ||
chars.push_back_raw_many(5, "first"); | ||
EXPECT_EQ(std::string("first"), std::string(chars.data(), chars.size())); | ||
EXPECT_EQ(5UL, chars.size()); | ||
EXPECT_LE(chars.capacity() - chars.size(), 10UL); | ||
chars.push_back_raw_many(10, "0123456789"); | ||
EXPECT_EQ(15UL, chars.size()); | ||
EXPECT_EQ(std::string("first0123456789"), std::string(chars.data(), chars.size())); | ||
} | ||
|
||
TEST(Common, PODNoOverallocation) | ||
{ | ||
/// Check that PaddedPODArray allocates for smaller number of elements than the power of two due to padding. | ||
/// NOTE: It's Ok to change these numbers if you will modify initial size or padding. | ||
|
||
PaddedPODArray<char> chars; | ||
std::vector<size_t> capacities; | ||
|
||
size_t prev_capacity = 0; | ||
for (size_t i = 0; i < 1000000; ++i) | ||
{ | ||
chars.emplace_back(); | ||
if (chars.capacity() != prev_capacity) | ||
{ | ||
prev_capacity = chars.capacity(); | ||
capacities.emplace_back(prev_capacity); | ||
} | ||
} | ||
|
||
EXPECT_EQ(capacities, (std::vector<size_t>{4065, 8161, 16353, 32737, 65505, 131041, 262113, 524257, 1048545})); | ||
} |