blob: 97595a00051bf86f1d6b89e4941184623d9c3f85 [file] [log] [blame]
// Copyright 2021 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "missive/storage/test_storage_module.h"
#include <utility>
#include <base/callback.h>
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include "missive/proto/record.pb.h"
#include "missive/proto/record_constants.pb.h"
#include "missive/storage/storage_module_interface.h"
using ::testing::Invoke;
using ::testing::WithArg;
namespace reporting {
namespace test {
TestStorageModuleStrict::TestStorageModuleStrict() {
ON_CALL(*this, AddRecord)
.WillByDefault(Invoke(this, &TestStorageModule::AddRecordSuccessfully));
ON_CALL(*this, Flush)
.WillByDefault(
WithArg<1>(Invoke([](base::OnceCallback<void(Status)> callback) {
std::move(callback).Run(Status::StatusOK());
})));
}
TestStorageModuleStrict::~TestStorageModuleStrict() = default;
Record TestStorageModuleStrict::record() const {
EXPECT_TRUE(record_.has_value());
return record_.value();
}
Priority TestStorageModuleStrict::priority() const {
EXPECT_TRUE(priority_.has_value());
return priority_.value();
}
void TestStorageModuleStrict::AddRecordSuccessfully(
Priority priority,
Record record,
base::OnceCallback<void(Status)> callback) {
record_ = std::move(record);
priority_ = priority;
std::move(callback).Run(Status::StatusOK());
}
} // namespace test
} // namespace reporting