blob: 03a92dd7310b2c448f87bb246f0be6f44639267c [file] [log] [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/reporting/compression/test_compression_module.h"
#include <optional>
#include <string>
#include <utility>
#include "base/functional/callback.h"
#include "base/memory/scoped_refptr.h"
#include "components/reporting/proto/synced/record.pb.h"
#include "components/reporting/resources/resource_manager.h"
namespace reporting {
namespace test {
constexpr size_t kCompressionThreshold = 2;
const CompressionInformation::CompressionAlgorithm kCompressionType =
CompressionInformation::COMPRESSION_NONE;
TestCompressionModuleStrict::TestCompressionModuleStrict()
: CompressionModule(kCompressionThreshold, kCompressionType) {
ON_CALL(*this, CompressRecord)
.WillByDefault(
[](std::string record,
scoped_refptr<ResourceManager> resource_manager,
base::OnceCallback<void(
std::string, std::optional<CompressionInformation>)> cb) {
// compression_info is not set.
std::move(cb).Run(record, std::nullopt);
});
}
TestCompressionModuleStrict::~TestCompressionModuleStrict() = default;
} // namespace test
} // namespace reporting