1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639
|
/***************************************************************
*
* Copyright (C) 2024, Pelican Project, Morgridge Institute for Research
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with the License. You may
* obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
***************************************************************/
//
// The tests in this file are meant to work with the minio-based fixture,
// meaning no internet connectivity is needed to run them.
//
#include "../src/S3Commands.hh"
#include "../src/S3File.hh"
#include "../src/S3FileSystem.hh"
#include "s3_tests_common.hh"
#include <XrdOuc/XrdOucEnv.hh>
#include <XrdSys/XrdSysError.hh>
#include <gtest/gtest.h>
#include <algorithm>
#include <fcntl.h>
#include <fstream>
#include <iostream>
#include <thread>
std::once_flag g_init_once;
std::string g_ca_file;
std::string g_minio_url;
std::string g_bucket_name;
std::string g_access_key_file;
std::string g_secret_key_file;
// Global logger and error objects; some of the unit tests launch
// a background thread that needs access to an XrdSysError object
// until the test process exits.
XrdSysLogger g_log;
XrdSysError g_elog(&g_log, "s3_");
void parseEnvFile(const std::string &fname) {
std::ifstream fh(fname);
if (!fh.is_open()) {
std::cerr << "Failed to open env file: " << strerror(errno);
exit(1);
}
std::string line;
while (std::getline(fh, line)) {
auto idx = line.find("=");
if (idx == std::string::npos) {
continue;
}
auto key = line.substr(0, idx);
auto val = line.substr(idx + 1);
if (key == "X509_CA_FILE") {
g_ca_file = val;
setenv("X509_CERT_FILE", g_ca_file.c_str(), 1);
} else if (key == "MINIO_URL") {
g_minio_url = val;
} else if (key == "BUCKET_NAME") {
g_bucket_name = val;
} else if (key == "ACCESS_KEY_FILE") {
g_access_key_file = val;
} else if (key == "SECRET_KEY_FILE") {
g_secret_key_file = val;
}
}
}
// Tests where we query S3 test fixture
class FileSystemS3Fixture : public FileSystemFixtureBase {
void SetUp() override {
std::call_once(g_init_once, [&] {
char *env_file = getenv("ENV_FILE");
ASSERT_NE(env_file, nullptr) << "$ENV_FILE environment variable "
"not set; required to run test";
parseEnvFile(env_file);
auto logger = new XrdSysLogger(2, 0);
auto log = new XrdSysError(logger, "curl_");
AmazonRequest::Init(*log);
});
FileSystemFixtureBase::SetUp();
}
virtual std::string GetConfig() override {
return R"(
xrd.tlsca certfile )" +
g_ca_file + R"(
#s3.trace all dump
s3.trace all
s3.begin
s3.path_name /test
s3.access_key_file )" +
g_access_key_file + R"(
s3.secret_key_file )" +
g_secret_key_file + R"(
s3.service_name s3.example.com
s3.region us-east-1
s3.bucket_name )" +
g_bucket_name + R"(
s3.service_url )" +
g_minio_url + R"(
s3.url_style path
s3.end
)";
}
public:
std::unique_ptr<S3FileSystem> GetFS() {
return std::unique_ptr<S3FileSystem>(
new S3FileSystem(&m_log, m_configfn.c_str(), nullptr));
}
void WritePattern(const std::string &name, const off_t writeSize,
const unsigned char chunkByte, const size_t chunkSize,
bool known_size) {
XrdSysLogger log;
S3FileSystem fs(&log, m_configfn.c_str(), nullptr);
std::unique_ptr<XrdOssDF> fh(fs.newFile());
ASSERT_TRUE(fh);
XrdOucEnv env;
// Only set oss.asize for test cases where we want the server to know
// the final size.
if (known_size) {
env.Put("oss.asize", std::to_string(writeSize).c_str());
}
auto rv = fh->Open(name.c_str(), O_CREAT | O_WRONLY, 0755, env);
ASSERT_EQ(rv, 0);
size_t sizeToWrite = (static_cast<off_t>(chunkSize) >= writeSize)
? static_cast<size_t>(writeSize)
: chunkSize;
off_t curWriteSize = writeSize;
auto curChunkByte = chunkByte;
off_t offset = 0;
while (sizeToWrite) {
std::string writeBuffer(sizeToWrite, curChunkByte);
rv = fh->Write(writeBuffer.data(), offset, sizeToWrite);
ASSERT_EQ(rv, static_cast<ssize_t>(sizeToWrite));
curWriteSize -= rv;
offset += rv;
sizeToWrite = (static_cast<off_t>(chunkSize) >= curWriteSize)
? static_cast<size_t>(curWriteSize)
: chunkSize;
curChunkByte += 1;
}
rv = fh->Close();
ASSERT_EQ(rv, 0);
VerifyContents(fs, name, writeSize, chunkByte, chunkSize);
}
void RandomRead(const std::string &name, unsigned char chunkByte,
size_t chunkSize,
std::chrono::steady_clock::duration testLength) {
XrdSysLogger log;
S3FileSystem fs(&log, m_configfn.c_str(), nullptr);
std::unique_ptr<XrdOssDF> fh(fs.newFile());
ASSERT_TRUE(fh);
XrdOucEnv env;
auto rv = fh->Open(name.c_str(), O_CREAT | O_WRONLY, 0755, env);
ASSERT_EQ(rv, 0);
struct stat buf;
rv = fh->Fstat(&buf);
ASSERT_EQ(rv, 0);
auto objSize = buf.st_size;
auto startTime = std::chrono::steady_clock::now();
size_t maxReadSize = 5'000'000;
std::string readBuf;
readBuf.resize(maxReadSize);
std::string correctContents;
correctContents.resize(maxReadSize);
while (std::chrono::steady_clock::now() - startTime < testLength) {
size_t readSize = std::rand() % maxReadSize;
off_t off = std::rand() % objSize;
ssize_t expectedReadSize =
(static_cast<off_t>(readSize) + off - objSize > 0)
? (objSize - off)
: readSize;
readBuf.resize(expectedReadSize);
rv = fh->Read(readBuf.data(), off, readSize);
ASSERT_EQ(rv, expectedReadSize);
GenCorrectContents(correctContents, off, expectedReadSize,
chunkByte, chunkSize, objSize);
ASSERT_EQ(readBuf, correctContents);
}
}
private:
void GenCorrectContents(std::string &correctContents, off_t off,
size_t size, unsigned char chunkByte,
size_t chunkSize, size_t objSize) {
auto chunkNum = static_cast<off_t>(off / chunkSize);
auto curChunkByte = static_cast<unsigned char>(chunkByte + chunkNum);
off_t chunkBoundary = (chunkNum + 1) * chunkSize;
correctContents.resize(size);
if (chunkBoundary < off + static_cast<off_t>(size)) {
size_t firstLen = chunkBoundary - off;
std::string firstChunk(firstLen, curChunkByte);
correctContents.replace(0, firstLen, firstChunk);
auto iter = correctContents.begin() + firstLen;
off_t remaining = size - firstLen;
while (remaining) {
curChunkByte++;
auto chunkLen = (remaining > static_cast<off_t>(chunkSize))
? chunkSize
: remaining;
std::string chunk(chunkLen, curChunkByte);
std::copy(chunk.begin(), chunk.end(), iter);
iter += chunkLen;
remaining -= chunkLen;
}
} else {
correctContents = std::string(size, curChunkByte);
}
}
void VerifyContents(S3FileSystem &fs, const std::string &obj,
off_t expectedSize, unsigned char chunkByte,
size_t chunkSize) {
std::unique_ptr<XrdOssDF> fh(fs.newFile());
ASSERT_TRUE(fh);
XrdOucEnv env;
auto rv = fh->Open(obj.c_str(), O_RDONLY, 0, env);
ASSERT_EQ(rv, 0);
size_t sizeToRead = (static_cast<off_t>(chunkSize) >= expectedSize)
? expectedSize
: chunkSize;
unsigned char curChunkByte = chunkByte;
off_t offset = 0;
while (sizeToRead) {
std::string readBuffer(sizeToRead, curChunkByte - 1);
rv = fh->Read(readBuffer.data(), offset, sizeToRead);
ASSERT_EQ(rv, static_cast<ssize_t>(sizeToRead));
readBuffer.resize(rv);
std::string correctBuffer(sizeToRead, curChunkByte);
ASSERT_EQ(readBuffer, correctBuffer);
expectedSize -= rv;
offset += rv;
sizeToRead = (static_cast<off_t>(chunkSize) >= expectedSize)
? expectedSize
: chunkSize;
curChunkByte += 1;
}
rv = fh->Close();
ASSERT_EQ(rv, 0);
}
XrdSysLogger m_log;
};
// Upload a single byte into S3
TEST_F(FileSystemS3Fixture, UploadOneByte) {
WritePattern("/test/write_one.txt", 1, 'X', 32 * 1024, true);
WritePattern("/test/write_one_stream.txt", 1, 'X', 32 * 1024, false);
}
// Upload across multiple calls, single part
TEST_F(FileSystemS3Fixture, UploadMultipleCalls) {
WritePattern("/test/write_alphabet.txt", 26, 'a', 1, true);
WritePattern("/test/write_alphabet_stream.txt", 26, 'a', 1, false);
}
// Upload a zero-byte object
TEST_F(FileSystemS3Fixture, UploadZero) {
WritePattern("/test/write_zero.txt", 0, 'X', 32 * 1024, true);
WritePattern("/test/write_zero_stream.txt", 0, 'X', 32 * 1024, false);
}
// Upload larger - two chunks.
TEST_F(FileSystemS3Fixture, UploadTwoChunks) {
WritePattern("/test/write_two_chunks.txt", 1'024 + 42, 'a', 1'024, true);
WritePattern("/test/write_two_chunks_stream.txt", 1'024 + 42, 'a', 1'024,
false);
}
// Upload larger - a few chunks.
TEST_F(FileSystemS3Fixture, UploadMultipleChunks) {
WritePattern("/test/write_multi_chunks.txt", (10'000 / 1'024) * 1'024 + 42,
'a', 1'024, true);
WritePattern("/test/write_multi_chunks_stream.txt",
(10'000 / 1'024) * 1'024 + 42, 'a', 1'024, false);
}
// Upload across multiple parts, not aligned to partition.
TEST_F(FileSystemS3Fixture, UploadLarge) {
WritePattern("/test/write_large_1.txt",
(100'000'000 / 1'310'720) * 1'310'720 + 42, 'a', 1'310'720,
true);
WritePattern("/test/write_large_1_stream.txt",
(100'000'000 / 1'310'720) * 1'310'720 + 42, 'a', 1'310'720,
false);
}
// Upload a file into S3 that's the same size as the partition size
TEST_F(FileSystemS3Fixture, UploadLargePart) {
WritePattern("/test/write_large_2.txt", 100'000'000, 'a', 131'072, true);
WritePattern("/test/write_large_2_stream.txt", 100'000'000, 'a', 131'072,
false);
}
// Upload a small file where the partition size is aligned with the chunk size
TEST_F(FileSystemS3Fixture, UploadSmallAligned) {
WritePattern("/test/write_large_3.txt", 1'000, 'a', 1'000, true);
}
// Upload a file into S3 that's the same size as the partition size, using
// chunks that align with the partition size
TEST_F(FileSystemS3Fixture, UploadLargePartAligned) {
WritePattern("/test/write_large_4.txt", 100'000'000, 'a', 1'000'000, true);
}
// Upload a file into S3 resulting in multiple partitions
TEST_F(FileSystemS3Fixture, UploadMultiPartAligned) {
WritePattern("/test/write_large_5.txt", 100'000'000, 'a', 1'000'000, true);
}
// Upload a file into S3 resulting in multiple partitioned using not-aligned
// chunks
TEST_F(FileSystemS3Fixture, UploadMultiPartUnaligned) {
WritePattern("/test/write_large_1.txt", 100'000'000, 'a', 32'768, true);
WritePattern("/test/write_large_1_stream.txt", 100'000'000, 'a', 32'768,
false);
}
// Ensure that uploads timeout if no action occurs.
TEST_F(FileSystemS3Fixture, UploadStall) {
HTTPRequest::SetStallTimeout(std::chrono::milliseconds(200));
S3File::LaunchMonitorThread(g_elog, nullptr);
S3FileSystem fs(&g_log, m_configfn.c_str(), nullptr);
std::unique_ptr<XrdOssDF> fh(fs.newFile());
ASSERT_TRUE(fh);
XrdOucEnv env;
env.Put("oss.asize", std::to_string(16'384).c_str());
auto rv = fh->Open("/test/write_stall.txt", O_CREAT | O_WRONLY, 0755, env);
ASSERT_EQ(rv, 0);
ssize_t sizeToWrite = 4'096;
std::string writeBuffer(sizeToWrite, 'a');
rv = fh->Write(writeBuffer.data(), 0, sizeToWrite);
ASSERT_EQ(rv, sizeToWrite);
std::this_thread::sleep_for(HTTPRequest::GetStallTimeout() * 4 / 3 +
std::chrono::milliseconds(10));
writeBuffer = std::string(sizeToWrite, 'b');
rv = fh->Write(writeBuffer.data(), sizeToWrite, sizeToWrite);
ASSERT_EQ(rv, -ETIMEDOUT);
}
// Upload a few files into a "directory" then list the directory
TEST_F(FileSystemS3Fixture, ListDir) {
WritePattern("/test/listdir/write_1.txt", 100'000, 'a', 32'768, true);
WritePattern("/test/listdir/write_2.txt", 50'000, 'a', 32'768, true);
XrdSysLogger log;
S3FileSystem fs(&log, m_configfn.c_str(), nullptr);
std::unique_ptr<XrdOssDF> dir(fs.newDir());
XrdOucEnv env;
auto rv = dir->Opendir("/test/listdir", env);
ASSERT_EQ(rv, 0);
struct stat buf;
ASSERT_EQ(dir->StatRet(&buf), 0);
std::vector<char> name;
name.resize(255);
rv = dir->Readdir(&name[0], 255);
ASSERT_EQ(rv, 0);
ASSERT_EQ(std::string(&name[0]), "write_1.txt");
ASSERT_EQ(buf.st_mode & S_IFREG,
static_cast<decltype(buf.st_mode)>(S_IFREG));
ASSERT_EQ(buf.st_size, 100'000);
rv = dir->Readdir(&name[0], 255);
ASSERT_EQ(rv, 0);
ASSERT_EQ(std::string(&name[0]), "write_2.txt");
ASSERT_EQ(buf.st_mode & S_IFREG,
static_cast<decltype(buf.st_mode)>(S_IFREG));
ASSERT_EQ(buf.st_size, 50'000);
ASSERT_EQ(dir->Close(), 0);
}
// Test stat against the root of the bucket.
TEST_F(FileSystemS3Fixture, StatRoot) {
WritePattern("/test/statroot.txt", 100'000, 'a', 32'768, true);
XrdSysLogger log;
S3FileSystem fs(&log, m_configfn.c_str(), nullptr);
struct stat buf;
ASSERT_EQ(fs.Stat("/test", &buf, 0, nullptr), 0);
ASSERT_EQ(buf.st_mode & S_IFDIR, S_IFDIR);
ASSERT_EQ(fs.Stat("/test/", &buf, 0, nullptr), 0);
ASSERT_EQ(buf.st_mode & S_IFDIR, S_IFDIR);
ASSERT_EQ(fs.Stat("//test/", &buf, 0, nullptr), 0);
ASSERT_EQ(buf.st_mode & S_IFDIR, S_IFDIR);
ASSERT_EQ(fs.Stat("//test", &buf, 0, nullptr), 0);
ASSERT_EQ(buf.st_mode & S_IFDIR, S_IFDIR);
ASSERT_EQ(fs.Stat("/test//", &buf, 0, nullptr), 0);
ASSERT_EQ(buf.st_mode & S_IFDIR, S_IFDIR);
ASSERT_EQ(fs.Stat("/test/statroot.txt", &buf, 0, nullptr), 0);
ASSERT_EQ(buf.st_mode & S_IFREG, S_IFREG);
}
TEST_F(FileSystemS3Fixture, NestedDir) {
WritePattern("/test/one.txt", 100'000, 'a', 32'768, true);
WritePattern("/test/one/two/statroot.txt", 100'000, 'a', 32'768, true);
XrdSysLogger log;
S3FileSystem fs(&log, m_configfn.c_str(), nullptr);
struct stat buf;
ASSERT_EQ(fs.Stat("/test/one", &buf, 0, nullptr), 0);
ASSERT_EQ(buf.st_mode & S_IFDIR, S_IFDIR);
ASSERT_EQ(fs.Stat("/test/one/two", &buf, 0, nullptr), 0);
ASSERT_EQ(buf.st_mode & S_IFDIR, S_IFDIR);
}
TEST_F(FileSystemS3Fixture, InvalidObject) {
// Test various configurations of S3 buckets that lead
// to undefined situations in our filesystem-like translation,
// just to ensure we have our specified behavior.
XrdSysLogger log;
S3FileSystem fs(&log, m_configfn.c_str(), nullptr);
// Object nested "inside" a directory.
WritePattern("/test/nested/foo", 1'024, 'a', 1'024, true);
WritePattern("/test/nested/foo/foo.txt", 1'024, 'a', 1'024, true);
struct stat buf;
ASSERT_EQ(fs.Stat("/test/nested/foo", &buf, 0, nullptr), 0);
ASSERT_EQ(buf.st_mode & S_IFREG, S_IFREG);
ASSERT_EQ(buf.st_size, 1'024);
ASSERT_EQ(fs.Stat("/test/nested/foo/foo.txt", &buf, 0, nullptr), 0);
ASSERT_EQ(buf.st_mode & S_IFREG, S_IFREG);
ASSERT_EQ(buf.st_size, 1'024);
// Object with a trailing slash in name
WritePattern("/test/trailing/", 1'024, 'a', 1'024, true);
ASSERT_EQ(fs.Stat("/test/trailing/", &buf, 0, nullptr), -ENOENT);
}
// Check out the logic of the overlap copy routine.
std::tuple<off_t, size_t, off_t, size_t>
OverlapCopy(off_t req_off, size_t req_size, char *req_buf, off_t cache_off,
size_t cache_size, char *cache_buf, size_t &used);
TEST(OverlapCopy, Simple) {
std::string repeatA(4096, 'a');
std::string repeatB(4096, 'b');
size_t used{0};
auto [req1_off, req1_size, req2_off, req2_size] =
OverlapCopy(0, 4096, repeatA.data(), 4096, 4096, repeatB.data(), used);
ASSERT_EQ(req1_off, 0);
ASSERT_EQ(req1_size, 4096U);
ASSERT_EQ(req2_off, -1);
ASSERT_EQ(req2_size, 0U);
ASSERT_EQ(used, 0U);
std::tie(req1_off, req1_size, req2_off, req2_size) =
OverlapCopy(0, 4096, repeatA.data(), 2048, 4096, repeatB.data(), used);
ASSERT_EQ(req1_off, 0);
ASSERT_EQ(req1_size, 2048U);
ASSERT_EQ(req2_off, -1);
ASSERT_EQ(req2_size, 0U);
ASSERT_EQ(used, 2048U);
auto correctOverlap = std::string(2048, 'a') + std::string(2048, 'b');
ASSERT_EQ(correctOverlap, repeatA);
used = 0;
repeatA = std::string(4096, 'a');
std::tie(req1_off, req1_size, req2_off, req2_size) =
OverlapCopy(0, 4096, repeatA.data(), 1024, 1024, repeatB.data(), used);
ASSERT_EQ(req1_off, 0);
ASSERT_EQ(req1_size, 1024U);
ASSERT_EQ(req2_off, 2048);
ASSERT_EQ(req2_size, 2048U);
ASSERT_EQ(used, 1024U);
correctOverlap = std::string(1024, 'a') + std::string(1024, 'b') +
std::string(2048, 'a');
ASSERT_EQ(correctOverlap, repeatA);
used = 0;
repeatA = std::string(4096, 'a');
std::tie(req1_off, req1_size, req2_off, req2_size) =
OverlapCopy(1024, 4096, repeatA.data(), 0, 4096, repeatB.data(), used);
ASSERT_EQ(req1_off, 4096);
ASSERT_EQ(req1_size, 1024U);
ASSERT_EQ(req2_off, -1);
ASSERT_EQ(req2_size, 0U);
ASSERT_EQ(used, 3072U);
correctOverlap = std::string(3072, 'b') + std::string(1024, 'a');
ASSERT_EQ(correctOverlap, repeatA);
used = 0;
repeatA = std::string(4096, 'a');
std::tie(req1_off, req1_size, req2_off, req2_size) =
OverlapCopy(4096, 4096, repeatA.data(), 0, 4096, repeatB.data(), used);
ASSERT_EQ(req1_off, 4096);
ASSERT_EQ(req1_size, 4096U);
ASSERT_EQ(req2_off, -1);
ASSERT_EQ(req2_size, 0U);
ASSERT_EQ(used, 0U);
correctOverlap = std::string(4096, 'a');
ASSERT_EQ(correctOverlap, repeatA);
used = 0;
repeatA = std::string(4096, 'a');
std::tie(req1_off, req1_size, req2_off, req2_size) =
OverlapCopy(-1, 0, repeatA.data(), 0, 4096, repeatB.data(), used);
ASSERT_EQ(req1_off, -1);
ASSERT_EQ(req1_size, 0U);
ASSERT_EQ(req2_off, -1);
ASSERT_EQ(req2_size, 0U);
ASSERT_EQ(used, 0U);
correctOverlap = std::string(4096, 'a');
ASSERT_EQ(correctOverlap, repeatA);
used = 0;
repeatA = std::string(4096, 'a');
std::tie(req1_off, req1_size, req2_off, req2_size) =
OverlapCopy(0, 4096, repeatA.data(), -1, 0, repeatB.data(), used);
ASSERT_EQ(req1_off, 0);
ASSERT_EQ(req1_size, 4096U);
ASSERT_EQ(req2_off, -1);
ASSERT_EQ(req2_size, 0U);
ASSERT_EQ(used, 0U);
correctOverlap = std::string(4096, 'a');
ASSERT_EQ(correctOverlap, repeatA);
}
TEST_F(FileSystemS3Fixture, StressGet) {
// Upload a file
auto name = "/test/write_stress.txt";
WritePattern(name, 100'000'000, 'a', 1'000'000, true);
static const int workerThreads = 10;
std::vector<std::unique_ptr<std::thread>> threads;
threads.resize(workerThreads);
for (auto &tptr : threads) {
tptr.reset(new std::thread([&] {
RandomRead(name, 'a', 1'000'000, std::chrono::seconds(5));
}));
}
std::cout << "Launched all " << workerThreads << " threads" << std::endl;
for (const auto &tptr : threads) {
tptr->join();
}
}
class AmazonS3SendMultipartPartLowercase : public AmazonS3SendMultipartPart {
protected:
virtual void modifyResponse(std::string &resp) override {
std::transform(resp.begin(), resp.end(), resp.begin(),
[](unsigned char c) { return std::tolower(c); });
}
};
TEST_F(FileSystemS3Fixture, Etag) {
// Determine the S3 info.
auto oss = GetFS();
std::string exposedPath, object;
std::string path = "/test/etag_casesensitive_test";
ASSERT_EQ(oss->parsePath(path.c_str(), exposedPath, object), 0);
auto ai = oss->getS3AccessInfo(exposedPath, object);
ASSERT_NE(ai.get(), nullptr);
ASSERT_NE(ai->getS3BucketName(), "");
ASSERT_NE(object, "");
// Start an upload.
XrdSysLogger log;
XrdSysError err(&log, "test");
AmazonS3CreateMultipartUpload startUpload(*ai, object, err);
ASSERT_TRUE(startUpload.SendRequest());
std::string uploadId, errMsg;
startUpload.Results(uploadId, errMsg);
// Upload an etag.
AmazonS3SendMultipartPart upload_part_request(*ai, object, err);
std::string streaming_buffer = "aaaa";
ASSERT_TRUE(upload_part_request.SendRequest(streaming_buffer,
std::to_string(1), uploadId,
streaming_buffer.size(), true));
std::string etag;
ASSERT_TRUE(upload_part_request.GetEtag(etag));
std::vector<std::string> eTags;
eTags.push_back(etag);
// Finalize the object
AmazonS3CompleteMultipartUpload complete_upload_request(*ai, object, err);
ASSERT_TRUE(complete_upload_request.SendRequest(eTags, 2, uploadId));
}
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
|