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
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <cstdint>
#include <initializer_list>
#include <optional>
#include <utility>
#include "base/containers/flat_map.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "base/memory/raw_ptr.h"
#include "base/strings/strcat.h"
#include "base/strings/string_number_conversions.h"
#include "base/synchronization/waitable_event.h"
#include "base/task/sequenced_task_runner.h"
#include "base/task/thread_pool.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/task_environment.h"
#include "base/thread_annotations.h"
#include "base/types/expected.h"
#include "components/reporting/compression/compression_module.h"
#include "components/reporting/compression/test_compression_module.h"
#include "components/reporting/encryption/test_encryption_module.h"
#include "components/reporting/proto/synced/record.pb.h"
#include "components/reporting/resources/resource_manager.h"
#include "components/reporting/storage/storage_configuration.h"
#include "components/reporting/storage/storage_queue.h"
#include "components/reporting/util/status.h"
#include "components/reporting/util/status_macros.h"
#include "components/reporting/util/statusor.h"
#include "components/reporting/util/test_support_callbacks.h"
#include "crypto/sha2.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using ::testing::Eq;
namespace reporting {
namespace {
constexpr size_t kTotalQueueStarts = 4;
constexpr size_t kTotalWritesPerStart = 16;
constexpr char kDataPrefix[] = "Rec";
class TestUploadClient : public UploaderInterface {
public:
// Mapping of <generation id, sequencing id> to matching record digest.
// Whenever a record is uploaded and includes last record digest, this map
// should have that digest already recorded. Only the first record in a
// generation is uploaded without last record digest.
using LastRecordDigestMap = base::flat_map<
std::pair<int64_t /*generation id */, int64_t /*sequencing id*/>,
std::optional<std::string /*digest*/>>;
explicit TestUploadClient(LastRecordDigestMap* last_record_digest_map)
: last_record_digest_map_(last_record_digest_map) {
DETACH_FROM_SEQUENCE(test_uploader_checker_);
}
~TestUploadClient() override {
DCHECK_CALLED_ON_VALID_SEQUENCE(test_uploader_checker_);
}
void ProcessRecord(EncryptedRecord encrypted_record,
ScopedReservation scoped_reservation,
base::OnceCallback<void(bool)> processed_cb) override {
DCHECK_CALLED_ON_VALID_SEQUENCE(test_uploader_checker_);
WrappedRecord wrapped_record;
ASSERT_TRUE(wrapped_record.ParseFromString(
encrypted_record.encrypted_wrapped_record()));
// Verify generation match.
const auto& sequence_information = encrypted_record.sequence_information();
if (!generation_id_.has_value()) {
generation_id_ = sequence_information.generation_id();
} else {
ASSERT_THAT(generation_id_.value(),
Eq(sequence_information.generation_id()));
}
// Verify digest and its match.
// Last record digest is not verified yet, since duplicate records are
// accepted in this test.
{
std::string serialized_record;
wrapped_record.record().SerializeToString(&serialized_record);
const auto record_digest = crypto::SHA256HashString(serialized_record);
CHECK_EQ(record_digest.size(), crypto::kSHA256Length);
ASSERT_THAT(record_digest, Eq(wrapped_record.record_digest()));
// Store record digest for the next record in sequence to verify.
last_record_digest_map_->emplace(
std::make_pair(sequence_information.sequencing_id(),
sequence_information.generation_id()),
record_digest);
// If last record digest is present, match it and validate.
if (wrapped_record.has_last_record_digest()) {
auto it = last_record_digest_map_->find(
std::make_pair(sequence_information.sequencing_id() - 1,
sequence_information.generation_id()));
if (it != last_record_digest_map_->end() && it->second.has_value()) {
ASSERT_THAT(it->second.value(),
Eq(wrapped_record.last_record_digest()))
<< "seq_id=" << sequence_information.sequencing_id();
}
}
}
std::move(processed_cb).Run(true);
}
void ProcessGap(SequenceInformation sequence_information,
uint64_t count,
base::OnceCallback<void(bool)> processed_cb) override {
DCHECK_CALLED_ON_VALID_SEQUENCE(test_uploader_checker_);
ASSERT_TRUE(false) << "There should be no gaps";
}
void Completed(Status status) override {
DCHECK_CALLED_ON_VALID_SEQUENCE(test_uploader_checker_);
ASSERT_OK(status) << status;
}
private:
SEQUENCE_CHECKER(test_uploader_checker_);
std::optional<int64_t> generation_id_
GUARDED_BY_CONTEXT(test_uploader_checker_);
const raw_ptr<LastRecordDigestMap> last_record_digest_map_
GUARDED_BY_CONTEXT(test_uploader_checker_);
};
class StorageQueueStressTest : public ::testing::TestWithParam<size_t> {
public:
void SetUp() override {
ASSERT_TRUE(location_.CreateUniqueTempDir());
options_.set_directory(base::FilePath(location_.GetPath()));
}
void TearDown() override { ResetTestStorageQueue(); }
void CreateTestStorageQueueOrDie(const QueueOptions& options) {
ASSERT_FALSE(storage_queue_) << "StorageQueue already assigned";
test_encryption_module_ =
base::MakeRefCounted<test::TestEncryptionModule>();
test_compression_module_ =
base::MakeRefCounted<test::TestCompressionModule>();
test::TestEvent<Status> key_update_event;
test_encryption_module_->UpdateAsymmetricKey("DUMMY KEY", 0,
key_update_event.cb());
ASSERT_OK(key_update_event.result());
test::TestEvent<StatusOr<scoped_refptr<StorageQueue>>>
storage_queue_create_event;
StorageQueue::Create(
options,
base::BindRepeating(&StorageQueueStressTest::AsyncStartTestUploader,
base::Unretained(this)),
test_encryption_module_, test_compression_module_,
storage_queue_create_event.cb());
StatusOr<scoped_refptr<StorageQueue>> storage_queue_result =
storage_queue_create_event.result();
ASSERT_OK(storage_queue_result) << "Failed to create StorageQueue, error="
<< storage_queue_result.error();
storage_queue_ = std::move(storage_queue_result.value());
}
void ResetTestStorageQueue() {
if (storage_queue_) {
// StorageQueue is destructed on thread, wait for it to finish.
test::TestCallbackAutoWaiter waiter;
storage_queue_->RegisterCompletionCallback(base::BindOnce(
&test::TestCallbackAutoWaiter::Signal, base::Unretained(&waiter)));
storage_queue_.reset();
}
// Let remaining asynchronous activity finish.
// TODO(b/254418902): The next line is not logically necessary, but for
// unknown reason the tests becomes flaky without it, keeping it for now.
task_environment_.RunUntilIdle();
// Make sure all memory is deallocated.
EXPECT_THAT(options_.memory_resource()->GetUsed(), Eq(0u));
// Make sure all disk is not reserved (files remain, but Storage is not
// responsible for them anymore).
EXPECT_THAT(options_.disk_space_resource()->GetUsed(), Eq(0u));
}
void AsyncStartTestUploader(
UploaderInterface::UploadReason reason,
UploaderInterface::UploaderInterfaceResultCb start_uploader_cb) {
// Accept only MANUAL upload.
if (reason != UploaderInterface::UploadReason::MANUAL) {
LOG(ERROR) << "Upload not expected, reason="
<< UploaderInterface::ReasonToString(reason);
std::move(start_uploader_cb)
.Run(base::unexpected(Status(
error::CANCELLED,
base::StrCat({"Unexpected upload ignored, reason=",
UploaderInterface::ReasonToString(reason)}))));
return;
}
std::move(start_uploader_cb)
.Run(std::make_unique<TestUploadClient>(&last_record_digest_map_));
}
void WriteStringAsync(std::string_view data,
base::OnceCallback<void(Status)> cb) {
EXPECT_TRUE(storage_queue_) << "StorageQueue not created yet";
Record record;
record.mutable_data()->assign(data.data(), data.size());
record.set_destination(UPLOAD_EVENTS);
record.set_dm_token("DM TOKEN");
storage_queue_->Write(std::move(record), std::move(cb));
}
void FlushOrDie() {
test::TestEvent<Status> flush_event;
storage_queue_->Flush(flush_event.cb());
ASSERT_OK(flush_event.result());
}
base::test::TaskEnvironment task_environment_{
base::test::TaskEnvironment::TimeSource::MOCK_TIME};
base::test::ScopedFeatureList scoped_feature_list_;
base::ScopedTempDir location_;
StorageOptions options_;
scoped_refptr<test::TestEncryptionModule> test_encryption_module_;
scoped_refptr<test::TestCompressionModule> test_compression_module_;
scoped_refptr<StorageQueue> storage_queue_;
// Test-wide global mapping of <generation id, sequencing id> to record
// digest. Serves all TestUploadClients created by test fixture.
TestUploadClient::LastRecordDigestMap last_record_digest_map_;
};
TEST_P(StorageQueueStressTest,
WriteIntoNewStorageQueueReopenWriteMoreAndUpload) {
for (size_t iStart = 0; iStart < kTotalQueueStarts; ++iStart) {
test::TestCallbackWaiter write_waiter;
base::RepeatingCallback<void(Status)> cb = base::BindRepeating(
[](test::TestCallbackWaiter* waiter, Status status) {
EXPECT_OK(status) << status;
waiter->Signal();
},
&write_waiter);
SCOPED_TRACE(base::StrCat({"Create ", base::NumberToString(iStart)}));
CreateTestStorageQueueOrDie(
QueueOptions(options_)
.set_subdirectory(FILE_PATH_LITERAL("D1"))
.set_file_prefix(FILE_PATH_LITERAL("F0001"))
.set_max_single_file_size(GetParam())
.set_upload_period(base::TimeDelta::Max())
.set_upload_retry_delay(
base::TimeDelta())); // No retry by default.
// Write into the queue at random order (simultaneously).
SCOPED_TRACE(base::StrCat({"Write ", base::NumberToString(iStart)}));
const std::string rec_prefix =
base::StrCat({kDataPrefix, base::NumberToString(iStart), "_"});
for (size_t iRec = 0; iRec < kTotalWritesPerStart; ++iRec) {
write_waiter.Attach();
base::ThreadPool::PostTask(
FROM_HERE, {base::TaskPriority::BEST_EFFORT},
base::BindOnce(
[](std::string_view rec_prefix, size_t iRec,
StorageQueueStressTest* test,
base::RepeatingCallback<void(Status)> cb) {
test->WriteStringAsync(
base::StrCat({rec_prefix, base::NumberToString(iRec)}), cb);
},
rec_prefix, iRec, this, cb));
}
write_waiter.Wait();
SCOPED_TRACE(base::StrCat({"Upload ", base::NumberToString(iStart)}));
FlushOrDie();
SCOPED_TRACE(base::StrCat({"Reset ", base::NumberToString(iStart)}));
ResetTestStorageQueue();
EXPECT_THAT(last_record_digest_map_.size(),
Eq((iStart + 1) * kTotalWritesPerStart));
SCOPED_TRACE(base::StrCat({"Done ", base::NumberToString(iStart)}));
}
}
INSTANTIATE_TEST_SUITE_P(
VaryingFileSize,
StorageQueueStressTest,
testing::Values(1 * 1024LL, 2 * 1024LL, 3 * 1024LL, 4 * 1024LL));
} // namespace
} // namespace reporting
|