806 lines
31 KiB
C++
806 lines
31 KiB
C++
// Copyright 2010-2025 Google LLC
|
|
// 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.
|
|
|
|
// emulates g3/testing/base/public/gmock_utils/protocol-buffer-matchers.h
|
|
#ifndef ORTOOLS_BASE_PROTOCOL_BUFFER_MATCHERS_H_
|
|
#define ORTOOLS_BASE_PROTOCOL_BUFFER_MATCHERS_H_
|
|
|
|
// gMock matchers used to validate protocol buffer arguments.
|
|
|
|
// WHAT THIS IS
|
|
// ============
|
|
//
|
|
// This library defines the following matchers in the ::protobuf_matchers
|
|
// namespace:
|
|
//
|
|
// EqualsProto(pb) The argument equals pb.
|
|
// EquivToProto(pb) The argument is equivalent to pb.
|
|
//
|
|
// where:
|
|
//
|
|
// - pb can be either a protobuf value or a human-readable string
|
|
// representation of it.
|
|
// - When pb is a string, the matcher can optionally accept a
|
|
// template argument for the type of the protobuf,
|
|
// e.g. EqualsProto<Foo>("foo: 1").
|
|
// - "equals" is defined as the argument's Equals(pb) method returns true.
|
|
// - "equivalent to" is defined as the argument's Equivalent(pb) method
|
|
// returns true.
|
|
//
|
|
// These matchers can match either a protobuf value or a pointer to
|
|
// it. They make a copy of pb, and thus can out-live pb. When the
|
|
// match fails, the matchers print a detailed message (the value of
|
|
// the actual protobuf, the value of the expected protobuf, and which
|
|
// fields are different).
|
|
//
|
|
// EXAMPLES
|
|
// ========
|
|
//
|
|
// using ::protobuf_matchers::EqualsProto;
|
|
// using ::protobuf_matchers::EquivToProto;
|
|
//
|
|
// // my_pb.Equals(expected_pb).
|
|
// EXPECT_THAT(my_pb, EqualsProto(expected_pb));
|
|
//
|
|
// // my_pb is equivalent to a protobuf whose foo field is 1 and
|
|
// // whose bar field is "x".
|
|
// EXPECT_THAT(my_pb, EquivToProto("foo: 1 "
|
|
// "bar: 'x'"));
|
|
|
|
#include <cstddef>
|
|
#include <iterator>
|
|
#include <ostream>
|
|
#include <regex>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "absl/log/check.h"
|
|
#include "absl/log/log.h"
|
|
#include "absl/strings/string_view.h"
|
|
#include "gmock/gmock-matchers.h"
|
|
#include "gmock/gmock.h"
|
|
#include "google/protobuf/descriptor.h"
|
|
#include "google/protobuf/io/tokenizer.h"
|
|
#include "google/protobuf/message.h"
|
|
#include "google/protobuf/util/message_differencer.h"
|
|
|
|
namespace testing {
|
|
using DifferencerConfigFunction =
|
|
std::function<void(::google::protobuf::util::DefaultFieldComparator*,
|
|
::google::protobuf::util::MessageDifferencer*)>;
|
|
namespace internal {
|
|
// Utilities.
|
|
// How to compare two fields (equal vs. equivalent).
|
|
typedef ::google::protobuf::util::MessageDifferencer::MessageFieldComparison
|
|
ProtoFieldComparison;
|
|
|
|
// How to compare two floating-points (exact vs. approximate).
|
|
typedef ::google::protobuf::util::DefaultFieldComparator::FloatComparison
|
|
ProtoFloatComparison;
|
|
|
|
// How to compare repeated fields (whether the order of elements matters).
|
|
typedef ::google::protobuf::util::MessageDifferencer::RepeatedFieldComparison
|
|
RepeatedFieldComparison;
|
|
|
|
// Whether to compare all fields (full) or only fields present in the
|
|
// expected protobuf (partial).
|
|
typedef ::google::protobuf::util::MessageDifferencer::Scope
|
|
ProtoComparisonScope;
|
|
|
|
const ProtoFieldComparison kProtoEqual =
|
|
::google::protobuf::util::MessageDifferencer::EQUAL;
|
|
const ProtoFieldComparison kProtoEquiv =
|
|
::google::protobuf::util::MessageDifferencer::EQUIVALENT;
|
|
const ProtoFloatComparison kProtoExact =
|
|
::google::protobuf::util::DefaultFieldComparator::EXACT;
|
|
const ProtoFloatComparison kProtoApproximate =
|
|
::google::protobuf::util::DefaultFieldComparator::APPROXIMATE;
|
|
const RepeatedFieldComparison kProtoCompareRepeatedFieldsRespectOrdering =
|
|
::google::protobuf::util::MessageDifferencer::AS_LIST;
|
|
const RepeatedFieldComparison kProtoCompareRepeatedFieldsIgnoringOrdering =
|
|
::google::protobuf::util::MessageDifferencer::AS_SET;
|
|
const ProtoComparisonScope kProtoFull =
|
|
::google::protobuf::util::MessageDifferencer::FULL;
|
|
const ProtoComparisonScope kProtoPartial =
|
|
::google::protobuf::util::MessageDifferencer::PARTIAL;
|
|
|
|
// Options for comparing two protobufs.
|
|
struct ProtoComparison {
|
|
ProtoComparison()
|
|
: field_comp(kProtoEqual),
|
|
float_comp(kProtoExact),
|
|
treating_nan_as_equal(false),
|
|
has_custom_margin(false),
|
|
has_custom_fraction(false),
|
|
repeated_field_comp(kProtoCompareRepeatedFieldsRespectOrdering),
|
|
scope(kProtoFull),
|
|
float_margin(0.0),
|
|
float_fraction(0.0) {}
|
|
|
|
ProtoFieldComparison field_comp;
|
|
ProtoFloatComparison float_comp;
|
|
bool treating_nan_as_equal;
|
|
bool has_custom_margin; // only used when float_comp = APPROXIMATE
|
|
bool has_custom_fraction; // only used when float_comp = APPROXIMATE
|
|
RepeatedFieldComparison repeated_field_comp;
|
|
ProtoComparisonScope scope;
|
|
double float_margin; // only used when has_custom_margin is set.
|
|
double float_fraction; // only used when has_custom_fraction is set.
|
|
std::vector<std::string> ignore_fields;
|
|
std::vector<std::string> ignore_field_paths;
|
|
DifferencerConfigFunction differencer_config_function;
|
|
};
|
|
|
|
// Whether the protobuf must be initialized.
|
|
const bool kMustBeInitialized = true;
|
|
const bool kMayBeUninitialized = false;
|
|
|
|
class StringErrorCollector : public ::google::protobuf::io::ErrorCollector {
|
|
public:
|
|
explicit StringErrorCollector(std::string* error_text)
|
|
: error_text_(error_text) {}
|
|
|
|
void RecordError(int line, int column, absl::string_view message) override {
|
|
std::ostringstream stream;
|
|
stream << line << '(' << column << "): " << message << std::endl;
|
|
*error_text_ += stream.str();
|
|
}
|
|
|
|
void RecordWarning(int line, int column, absl::string_view message) override {
|
|
std::ostringstream stream;
|
|
stream << line << '(' << column << "): " << message << std::endl;
|
|
*error_text_ += stream.str();
|
|
}
|
|
|
|
private:
|
|
std::string* error_text_;
|
|
StringErrorCollector(const StringErrorCollector&) = delete;
|
|
StringErrorCollector& operator=(const StringErrorCollector&) = delete;
|
|
};
|
|
|
|
// Parses the TextFormat representation of a protobuf, allowing required fields
|
|
// to be missing. Returns true if successful.
|
|
bool ParsePartialFromAscii(const std::string& pb_ascii,
|
|
::google::protobuf::Message* proto,
|
|
std::string* error_text) {
|
|
::google::protobuf::TextFormat::Parser parser;
|
|
StringErrorCollector collector(error_text);
|
|
parser.RecordErrorsTo(&collector);
|
|
parser.AllowPartialMessage(true);
|
|
return parser.ParseFromString(pb_ascii, proto);
|
|
}
|
|
|
|
// Returns true iff p and q can be compared (i.e. have the same descriptor).
|
|
bool ProtoComparable(const ::google::protobuf::Message& p,
|
|
const ::google::protobuf::Message& q) {
|
|
return p.GetDescriptor() == q.GetDescriptor();
|
|
}
|
|
|
|
template <typename Container>
|
|
std::string JoinStringPieces(const Container& strings,
|
|
absl::string_view separator) {
|
|
std::stringstream stream;
|
|
absl::string_view sep = "";
|
|
for (const absl::string_view str : strings) {
|
|
stream << sep << str;
|
|
sep = separator;
|
|
}
|
|
return stream.str();
|
|
}
|
|
|
|
// Find all the descriptors for the ingore_fields.
|
|
std::vector<const ::google::protobuf::FieldDescriptor*> GetFieldDescriptors(
|
|
const ::google::protobuf::Descriptor* proto_descriptor,
|
|
const std::vector<std::string>& ignore_fields) {
|
|
std::vector<const ::google::protobuf::FieldDescriptor*> ignore_descriptors;
|
|
std::vector<absl::string_view> remaining_descriptors;
|
|
|
|
const ::google::protobuf::DescriptorPool* pool =
|
|
proto_descriptor->file()->pool();
|
|
for (const std::string& name : ignore_fields) {
|
|
if (const ::google::protobuf::FieldDescriptor* field =
|
|
pool->FindFieldByName(name)) {
|
|
ignore_descriptors.push_back(field);
|
|
} else {
|
|
remaining_descriptors.push_back(name);
|
|
}
|
|
}
|
|
|
|
CHECK(remaining_descriptors.empty())
|
|
<< "Could not find fields for proto " << proto_descriptor->full_name()
|
|
<< " with fully qualified names: "
|
|
<< JoinStringPieces(remaining_descriptors, ",");
|
|
return ignore_descriptors;
|
|
}
|
|
|
|
// Sets the ignored fields corresponding to ignore_fields in differencer. Dies
|
|
// if any is invalid.
|
|
void SetIgnoredFieldsOrDie(
|
|
const ::google::protobuf::Descriptor& root_descriptor,
|
|
const std::vector<std::string>& ignore_fields,
|
|
::google::protobuf::util::MessageDifferencer* differencer) {
|
|
if (!ignore_fields.empty()) {
|
|
std::vector<const ::google::protobuf::FieldDescriptor*> ignore_descriptors =
|
|
GetFieldDescriptors(&root_descriptor, ignore_fields);
|
|
for (std::vector<const ::google::protobuf::FieldDescriptor*>::iterator it =
|
|
ignore_descriptors.begin();
|
|
it != ignore_descriptors.end(); ++it) {
|
|
differencer->IgnoreField(*it);
|
|
}
|
|
}
|
|
}
|
|
|
|
// A criterion that ignores a field path.
|
|
class IgnoreFieldPathCriteria
|
|
: public ::google::protobuf::util::MessageDifferencer::IgnoreCriteria {
|
|
public:
|
|
explicit IgnoreFieldPathCriteria(
|
|
const std::vector<
|
|
::google::protobuf::util::MessageDifferencer::SpecificField>&
|
|
field_path)
|
|
: ignored_field_path_(field_path) {}
|
|
|
|
bool IsIgnored(
|
|
const ::google::protobuf::Message& message1,
|
|
const ::google::protobuf::Message& message2,
|
|
const ::google::protobuf::FieldDescriptor* field,
|
|
const std::vector<
|
|
::google::protobuf::util::MessageDifferencer::SpecificField>&
|
|
parent_fields) override {
|
|
// The off by one is for the current field.
|
|
if (parent_fields.size() + 1 != ignored_field_path_.size()) {
|
|
return false;
|
|
}
|
|
for (size_t i = 0; i < parent_fields.size(); ++i) {
|
|
const auto& cur_field = parent_fields[i];
|
|
const auto& ignored_field = ignored_field_path_[i];
|
|
// We could compare pointers but it's not guaranteed that descriptors come
|
|
// from the same pool.
|
|
if (cur_field.field->full_name() != ignored_field.field->full_name()) {
|
|
return false;
|
|
}
|
|
|
|
// repeated_field[i] is ignored if repeated_field is ignored. To put it
|
|
// differently: if ignored_field specifies an index, we ignore only a
|
|
// field with the same index.
|
|
if (ignored_field.index != -1 && ignored_field.index != cur_field.index) {
|
|
return false;
|
|
}
|
|
}
|
|
return field->full_name() == ignored_field_path_.back().field->full_name();
|
|
}
|
|
|
|
private:
|
|
const std::vector<google::protobuf::util::MessageDifferencer::SpecificField>
|
|
ignored_field_path_;
|
|
};
|
|
|
|
// Parses a field path and returns individual components.
|
|
std::vector<google::protobuf::util::MessageDifferencer::SpecificField>
|
|
ParseFieldPathOrDie(const std::string& relative_field_path,
|
|
const ::google::protobuf::Descriptor& root_descriptor) {
|
|
std::vector<google::protobuf::util::MessageDifferencer::SpecificField>
|
|
field_path;
|
|
|
|
// We're parsing a dot-separated list of elements that can be either:
|
|
// - field names
|
|
// - extension names
|
|
// - indexed field names
|
|
// The parser is very permissive as to what is a field name, then we check
|
|
// the field name against the descriptor.
|
|
|
|
// Regular parsers. Consume() does not handle optional captures so we split it
|
|
// in two regexps.
|
|
const std::regex field_regex(R"(([^.()[\]]+))");
|
|
const std::regex field_subscript_regex(R"(([^.()[\]]+)\[(\d+)\])");
|
|
const std::regex extension_regex(R"(\(([^)]+)\))");
|
|
|
|
const auto begin = std::begin(relative_field_path);
|
|
auto it = begin;
|
|
const auto end = std::end(relative_field_path);
|
|
while (it != end) {
|
|
// Consume a dot, except on the first iteration.
|
|
if (it != std::begin(relative_field_path) && *(it++) != '.') {
|
|
LOG(FATAL) << "Cannot parse field path '" << relative_field_path
|
|
<< "' at offset " << std::distance(begin, it)
|
|
<< ": expected '.'";
|
|
}
|
|
// Try to consume a field name. If that fails, consume an extension name.
|
|
::google::protobuf::util::MessageDifferencer::SpecificField field;
|
|
std::smatch match_results;
|
|
if (std::regex_search(it, end, match_results, field_subscript_regex) ||
|
|
std::regex_search(it, end, match_results, field_regex)) {
|
|
std::string name = match_results[1].str();
|
|
if (field_path.empty()) {
|
|
field.field = root_descriptor.FindFieldByName(name);
|
|
CHECK(field.field) << "No such field '" << name << "' in message '"
|
|
<< root_descriptor.full_name() << "'";
|
|
} else {
|
|
const ::google::protobuf::util::MessageDifferencer::SpecificField&
|
|
parent = field_path.back();
|
|
field.field = parent.field->message_type()->FindFieldByName(name);
|
|
CHECK(field.field) << "No such field '" << name << "' in '"
|
|
<< parent.field->full_name() << "'";
|
|
}
|
|
if (match_results.size() > 2 && match_results[2].matched) {
|
|
std::string number = match_results[2].str();
|
|
field.index = std::stoi(number);
|
|
}
|
|
|
|
} else if (std::regex_search(it, end, match_results, extension_regex)) {
|
|
std::string name = match_results[1].str();
|
|
field.field = ::google::protobuf::DescriptorPool::generated_pool()
|
|
->FindExtensionByName(name);
|
|
CHECK(field.field) << "No such extension '" << name << "'";
|
|
if (field_path.empty()) {
|
|
CHECK(root_descriptor.IsExtensionNumber(field.field->number()))
|
|
<< "Extension '" << name << "' does not extend message '"
|
|
<< root_descriptor.full_name() << "'";
|
|
} else {
|
|
const ::google::protobuf::util::MessageDifferencer::SpecificField&
|
|
parent = field_path.back();
|
|
CHECK(parent.field->message_type()->IsExtensionNumber(
|
|
field.field->number()))
|
|
<< "Extension '" << name << "' does not extend '"
|
|
<< parent.field->full_name() << "'";
|
|
}
|
|
} else {
|
|
LOG(FATAL) << "Cannot parse field path '" << relative_field_path
|
|
<< "' at offset " << std::distance(begin, it)
|
|
<< ": expected field or extension";
|
|
}
|
|
auto consume = match_results[0].length();
|
|
it += consume;
|
|
field_path.push_back(field);
|
|
}
|
|
|
|
CHECK(!field_path.empty());
|
|
CHECK(field_path.back().index == -1)
|
|
<< "Terminally ignoring fields by index is currently not supported ('"
|
|
<< relative_field_path << "')";
|
|
|
|
return field_path;
|
|
}
|
|
|
|
// Sets the ignored field paths corresponding to field_paths in differencer.
|
|
// Dies if any path is invalid.
|
|
void SetIgnoredFieldPathsOrDie(
|
|
const ::google::protobuf::Descriptor& root_descriptor,
|
|
const std::vector<std::string>& field_paths,
|
|
::google::protobuf::util::MessageDifferencer* differencer) {
|
|
for (const std::string& field_path : field_paths) {
|
|
differencer->AddIgnoreCriteria(new IgnoreFieldPathCriteria(
|
|
ParseFieldPathOrDie(field_path, root_descriptor)));
|
|
}
|
|
}
|
|
|
|
// Configures a MessageDifferencer and DefaultFieldComparator to use the logic
|
|
// described in comp. The configured differencer is the output of this function,
|
|
// but a FieldComparator must be provided to keep ownership clear.
|
|
void ConfigureDifferencer(
|
|
const ProtoComparison& comp,
|
|
::google::protobuf::util::DefaultFieldComparator* comparator,
|
|
::google::protobuf::util::MessageDifferencer* differencer,
|
|
const ::google::protobuf::Descriptor* descriptor) {
|
|
differencer->set_message_field_comparison(comp.field_comp);
|
|
differencer->set_scope(comp.scope);
|
|
comparator->set_float_comparison(comp.float_comp);
|
|
comparator->set_treat_nan_as_equal(comp.treating_nan_as_equal);
|
|
differencer->set_repeated_field_comparison(comp.repeated_field_comp);
|
|
SetIgnoredFieldsOrDie(*descriptor, comp.ignore_fields, differencer);
|
|
SetIgnoredFieldPathsOrDie(*descriptor, comp.ignore_field_paths, differencer);
|
|
if (comp.float_comp == kProtoApproximate &&
|
|
(comp.has_custom_margin || comp.has_custom_fraction)) {
|
|
// Two fields will be considered equal if they're within the fraction _or_
|
|
// within the margin. So setting the fraction to 0.0 makes this effectively
|
|
// a "SetMargin". Similarly, setting the margin to 0.0 makes this
|
|
// effectively a "SetFraction".
|
|
comparator->SetDefaultFractionAndMargin(comp.float_fraction,
|
|
comp.float_margin);
|
|
}
|
|
differencer->set_field_comparator(comparator);
|
|
if (comp.differencer_config_function) {
|
|
comp.differencer_config_function(comparator, differencer);
|
|
}
|
|
}
|
|
|
|
// Returns true iff actual and expected are comparable and match. The
|
|
// comp argument specifies how the two are compared.
|
|
bool ProtoCompare(const ProtoComparison& comp,
|
|
const ::google::protobuf::Message& actual,
|
|
const ::google::protobuf::Message& expected) {
|
|
if (!ProtoComparable(actual, expected)) return false;
|
|
|
|
::google::protobuf::util::MessageDifferencer differencer;
|
|
::google::protobuf::util::DefaultFieldComparator field_comparator;
|
|
ConfigureDifferencer(comp, &field_comparator, &differencer,
|
|
actual.GetDescriptor());
|
|
|
|
// It's important for 'expected' to be the first argument here, as
|
|
// Compare() is not symmetric. When we do a partial comparison,
|
|
// only fields present in the first argument of Compare() are
|
|
// considered.
|
|
return differencer.Compare(expected, actual);
|
|
}
|
|
|
|
// Describes the types of the expected and the actual protocol buffer.
|
|
std::string DescribeTypes(const ::google::protobuf::Message& expected,
|
|
const ::google::protobuf::Message& actual) {
|
|
std::ostringstream s;
|
|
s << "whose type should be " << expected.GetDescriptor()->full_name()
|
|
<< " but actually is " << actual.GetDescriptor()->full_name();
|
|
return s.str();
|
|
}
|
|
|
|
// Prints the protocol buffer pointed to by proto.
|
|
std::string PrintProtoPointee(const ::google::protobuf::Message* proto) {
|
|
if (proto == NULL) return "";
|
|
return "which points to " + ::testing::PrintToString(*proto);
|
|
}
|
|
|
|
// Describes the differences between the two protocol buffers.
|
|
std::string DescribeDiff(const ProtoComparison& comp,
|
|
const ::google::protobuf::Message& actual,
|
|
const ::google::protobuf::Message& expected) {
|
|
::google::protobuf::util::MessageDifferencer differencer;
|
|
::google::protobuf::util::DefaultFieldComparator field_comparator;
|
|
ConfigureDifferencer(comp, &field_comparator, &differencer,
|
|
actual.GetDescriptor());
|
|
|
|
std::string diff;
|
|
differencer.ReportDifferencesToString(&diff);
|
|
|
|
// We must put 'expected' as the first argument here, as Compare()
|
|
// reports the diff in terms of how the protobuf changes from the
|
|
// first argument to the second argument.
|
|
differencer.Compare(expected, actual);
|
|
|
|
// Removes the trailing '\n' in the diff to make the output look nicer.
|
|
if (diff.length() > 0 && *(diff.end() - 1) == '\n') {
|
|
diff.erase(diff.end() - 1);
|
|
}
|
|
|
|
return "with the difference:\n" + diff;
|
|
}
|
|
|
|
// Common code for implementing EqualsProto and EquivToProto.
|
|
class ProtoMatcherBase {
|
|
public:
|
|
ProtoMatcherBase(
|
|
bool must_be_initialized, // Must the argument be fully initialized?
|
|
const ProtoComparison& comp) // How to compare the two protobufs.
|
|
: must_be_initialized_(must_be_initialized), comp_(new auto(comp)) {}
|
|
|
|
ProtoMatcherBase(const ProtoMatcherBase& other)
|
|
: must_be_initialized_(other.must_be_initialized_),
|
|
comp_(new auto(*other.comp_)) {}
|
|
|
|
ProtoMatcherBase(ProtoMatcherBase&& other) = default;
|
|
|
|
virtual ~ProtoMatcherBase() {}
|
|
|
|
// Prints the expected protocol buffer.
|
|
virtual void PrintExpectedTo(::std::ostream* os) const = 0;
|
|
|
|
// Returns the expected value as a protobuf object; if the object
|
|
// cannot be created (e.g. in ProtoStringMatcher), explains why to
|
|
// 'listener' and returns NULL. The caller must call
|
|
// DeleteExpectedProto() on the returned value later.
|
|
virtual const ::google::protobuf::Message* CreateExpectedProto(
|
|
const ::google::protobuf::Message& arg, // For determining the type of
|
|
// the expected protobuf.
|
|
::testing::MatchResultListener* listener) const = 0;
|
|
|
|
// Deletes the given expected protobuf, which must be obtained from
|
|
// a call to CreateExpectedProto() earlier.
|
|
virtual void DeleteExpectedProto(
|
|
const ::google::protobuf::Message* expected) const = 0;
|
|
|
|
bool MatchAndExplain(const ::google::protobuf::Message& arg,
|
|
::testing::MatchResultListener* listener) const {
|
|
return MatchAndExplain(arg, false, listener);
|
|
}
|
|
|
|
bool MatchAndExplain(const ::google::protobuf::Message* arg,
|
|
::testing::MatchResultListener* listener) const {
|
|
return (arg != NULL) && MatchAndExplain(*arg, true, listener);
|
|
}
|
|
|
|
// Describes the expected relation between the actual protobuf and
|
|
// the expected one.
|
|
void DescribeRelationToExpectedProto(::std::ostream* os) const {
|
|
if (comp_->repeated_field_comp ==
|
|
kProtoCompareRepeatedFieldsIgnoringOrdering) {
|
|
*os << "(ignoring repeated field ordering) ";
|
|
}
|
|
if (!comp_->ignore_fields.empty()) {
|
|
*os << "(ignoring fields: ";
|
|
const char* sep = "";
|
|
for (size_t i = 0; i < comp_->ignore_fields.size(); ++i, sep = ", ")
|
|
*os << sep << comp_->ignore_fields[i];
|
|
*os << ") ";
|
|
}
|
|
if (comp_->float_comp == kProtoApproximate) {
|
|
*os << "approximately ";
|
|
if (comp_->has_custom_margin || comp_->has_custom_fraction) {
|
|
*os << "(";
|
|
if (comp_->has_custom_margin) {
|
|
std::stringstream ss;
|
|
ss << std::setprecision(std::numeric_limits<double>::digits10 + 2)
|
|
<< comp_->float_margin;
|
|
*os << "absolute error of float or double fields <= " << ss.str();
|
|
}
|
|
if (comp_->has_custom_margin && comp_->has_custom_fraction) {
|
|
*os << " or ";
|
|
}
|
|
if (comp_->has_custom_fraction) {
|
|
std::stringstream ss;
|
|
ss << std::setprecision(std::numeric_limits<double>::digits10 + 2)
|
|
<< comp_->float_fraction;
|
|
*os << "relative error of float or double fields <= " << ss.str();
|
|
}
|
|
*os << ") ";
|
|
}
|
|
}
|
|
|
|
if (comp_->differencer_config_function) {
|
|
*os << "(with custom differencer config) ";
|
|
}
|
|
|
|
*os << (comp_->scope == kProtoPartial ? "partially " : "")
|
|
<< (comp_->field_comp == kProtoEqual ? "equal" : "equivalent")
|
|
<< (comp_->treating_nan_as_equal ? " (treating NaNs as equal)" : "")
|
|
<< " to ";
|
|
PrintExpectedTo(os);
|
|
}
|
|
|
|
void DescribeTo(::std::ostream* os) const {
|
|
*os << "is " << (must_be_initialized_ ? "fully initialized and " : "");
|
|
DescribeRelationToExpectedProto(os);
|
|
}
|
|
|
|
void DescribeNegationTo(::std::ostream* os) const {
|
|
*os << "is " << (must_be_initialized_ ? "not fully initialized or " : "")
|
|
<< "not ";
|
|
DescribeRelationToExpectedProto(os);
|
|
}
|
|
|
|
bool must_be_initialized() const { return must_be_initialized_; }
|
|
|
|
const ProtoComparison& comp() const { return *comp_; }
|
|
|
|
private:
|
|
bool MatchAndExplain(
|
|
const ::google::protobuf::Message& arg,
|
|
bool is_matcher_for_pointer, // true iff this matcher is used to match a protobuf pointer.
|
|
::testing::MatchResultListener* listener) const {
|
|
if (must_be_initialized_ && !arg.IsInitialized()) {
|
|
*listener << "which isn't fully initialized";
|
|
return false;
|
|
}
|
|
|
|
const ::google::protobuf::Message* const expected =
|
|
CreateExpectedProto(arg, listener);
|
|
if (expected == NULL) return false;
|
|
|
|
// Protobufs of different types cannot be compared.
|
|
const bool comparable = ProtoComparable(arg, *expected);
|
|
const bool match = comparable && ProtoCompare(comp(), arg, *expected);
|
|
|
|
// Explaining the match result is expensive. We don't want to waste
|
|
// time calculating an explanation if the listener isn't interested.
|
|
if (listener->IsInterested()) {
|
|
const char* sep = "";
|
|
if (is_matcher_for_pointer) {
|
|
*listener << PrintProtoPointee(&arg);
|
|
sep = ",\n";
|
|
}
|
|
|
|
if (!comparable) {
|
|
*listener << sep << DescribeTypes(*expected, arg);
|
|
} else if (!match) {
|
|
*listener << sep << DescribeDiff(comp(), arg, *expected);
|
|
}
|
|
}
|
|
|
|
DeleteExpectedProto(expected);
|
|
return match;
|
|
}
|
|
|
|
const bool must_be_initialized_;
|
|
std::unique_ptr<ProtoComparison> comp_;
|
|
};
|
|
|
|
// Returns a copy of the given proto2 message.
|
|
inline ::google::protobuf::Message* CloneProto2(
|
|
const ::google::protobuf::Message& src) {
|
|
::google::protobuf::Message* clone = src.New();
|
|
clone->CopyFrom(src);
|
|
return clone;
|
|
}
|
|
|
|
// Implements EqualsProto and EquivToProto where the matcher parameter is a
|
|
// protobuf.
|
|
class ProtoMatcher : public ProtoMatcherBase {
|
|
public:
|
|
using MessageType = ::google::protobuf::Message;
|
|
|
|
ProtoMatcher(
|
|
const MessageType& expected, // The expected protobuf.
|
|
bool must_be_initialized, // Must the argument be fully initialized?
|
|
const ProtoComparison& comp) // How to compare the two protobufs.
|
|
: ProtoMatcherBase(must_be_initialized, comp),
|
|
expected_(CloneProto2(expected)) {
|
|
if (must_be_initialized) {
|
|
CHECK(expected.IsInitialized())
|
|
<< "The protocol buffer given to *InitializedProto() "
|
|
<< "must itself be initialized, but the following required fields "
|
|
<< "are missing: " << expected.InitializationErrorString() << ".";
|
|
}
|
|
}
|
|
|
|
virtual void PrintExpectedTo(::std::ostream* os) const {
|
|
*os << expected_->GetDescriptor()->full_name() << " ";
|
|
::testing::internal::UniversalPrint(*expected_, os);
|
|
}
|
|
|
|
virtual const ::google::protobuf::Message* CreateExpectedProto(
|
|
const ::google::protobuf::Message& /* arg */,
|
|
::testing::MatchResultListener* /* listener */) const {
|
|
return expected_.get();
|
|
}
|
|
|
|
virtual void DeleteExpectedProto(
|
|
const ::google::protobuf::Message* /* expected */) const {}
|
|
|
|
private:
|
|
const std::shared_ptr<const MessageType> expected_;
|
|
};
|
|
|
|
using PolymorphicProtoMatcher = ::testing::PolymorphicMatcher<ProtoMatcher>;
|
|
|
|
// Implements EqualsProto and EquivToProto where the matcher parameter is a
|
|
// string.
|
|
class ProtoStringMatcher : public ProtoMatcherBase {
|
|
public:
|
|
using MessageType = ::google::protobuf::Message;
|
|
|
|
ProtoStringMatcher(
|
|
absl::string_view
|
|
expected, // The text representing the expected protobuf.
|
|
bool must_be_initialized, // Must the argument be fully initialized?
|
|
const ProtoComparison comp) // How to compare the two protobufs.
|
|
: ProtoMatcherBase(must_be_initialized, comp), expected_(std::string(expected)) {}
|
|
|
|
// Parses the expected string as a protobuf of the same type as arg,
|
|
// and returns the parsed protobuf (or NULL when the parse fails).
|
|
// The caller must call DeleteExpectedProto() on the return value
|
|
// later.
|
|
virtual const MessageType* CreateExpectedProto(
|
|
const MessageType& arg,
|
|
::testing::MatchResultListener* listener) const {
|
|
::google::protobuf::Message* expected_proto = arg.New();
|
|
// We don't insist that the expected string parses as an
|
|
// *initialized* protobuf. Otherwise EqualsProto("...") may
|
|
// wrongfully fail when the actual protobuf is not fully
|
|
// initialized.
|
|
std::string error_text;
|
|
if (ParsePartialFromAscii(expected_, expected_proto, &error_text)) {
|
|
return expected_proto;
|
|
} else {
|
|
delete expected_proto;
|
|
if (listener->IsInterested()) {
|
|
*listener << "where ";
|
|
PrintExpectedTo(listener->stream());
|
|
*listener << " doesn't parse as a " << arg.GetDescriptor()->full_name()
|
|
<< ":\n"
|
|
<< error_text;
|
|
}
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
virtual void DeleteExpectedProto(
|
|
const ::google::protobuf::Message* expected) const {
|
|
delete expected;
|
|
}
|
|
|
|
virtual void PrintExpectedTo(::std::ostream* os) const {
|
|
*os << "<" << expected_ << ">";
|
|
}
|
|
|
|
private:
|
|
const std::string expected_;
|
|
};
|
|
|
|
} // namespace internal
|
|
|
|
// Constructs a matcher that matches the argument if
|
|
// argument.Equals(m) or argument->Equals(m) returns true.
|
|
inline internal::PolymorphicProtoMatcher EqualsProto(
|
|
const ::google::protobuf::Message& m) {
|
|
internal::ProtoComparison comp;
|
|
comp.field_comp = internal::kProtoEqual;
|
|
return ::testing::MakePolymorphicMatcher(
|
|
internal::ProtoMatcher(m, internal::kMayBeUninitialized, comp));
|
|
}
|
|
|
|
inline PolymorphicMatcher<internal::ProtoStringMatcher> EqualsProto(
|
|
absl::string_view m) {
|
|
internal::ProtoComparison comp;
|
|
comp.field_comp = internal::kProtoEqual;
|
|
return MakePolymorphicMatcher(
|
|
internal::ProtoStringMatcher(m, internal::kMayBeUninitialized, comp));
|
|
}
|
|
|
|
// for Pointwise
|
|
MATCHER(EqualsProto, "") {
|
|
const auto& a = ::testing::get<0>(arg);
|
|
const auto& b = ::testing::get<1>(arg);
|
|
return ::testing::ExplainMatchResult(EqualsProto(b), a, result_listener);
|
|
}
|
|
|
|
// Constructs a matcher that matches the argument if
|
|
// argument.Equivalent(m) or argument->Equivalent(m) returns true.
|
|
inline internal::PolymorphicProtoMatcher EquivToProto(
|
|
const ::google::protobuf::Message& m) {
|
|
internal::ProtoComparison comp;
|
|
comp.field_comp = internal::kProtoEquiv;
|
|
return MakePolymorphicMatcher(
|
|
internal::ProtoMatcher(m, internal::kMayBeUninitialized, comp));
|
|
}
|
|
|
|
inline PolymorphicMatcher<internal::ProtoStringMatcher> EquivToProto(
|
|
absl::string_view m) {
|
|
internal::ProtoComparison comp;
|
|
comp.field_comp = internal::kProtoEquiv;
|
|
return MakePolymorphicMatcher(
|
|
internal::ProtoStringMatcher(m, internal::kMayBeUninitialized, comp));
|
|
}
|
|
|
|
// Returns a matcher that is the same as a given inner matcher, but applies a
|
|
// given function to the message differencer before using it for the
|
|
// comparison between the expected and actual protobufs.
|
|
//
|
|
// Prefer more specific transformer functions if possible; they result in
|
|
// better error messages and more readable test code.
|
|
//
|
|
// By default, the differencer is configured to use the field comparator which
|
|
// is also passed to the config function. It's possible to modify that
|
|
// comparator, although it's preferable to customize it through other
|
|
// transformers, e.g. Approximately.
|
|
//
|
|
// It's also possible to replace the comparator entirely, by passing it to
|
|
// set_field_comparator() method of the provided differencer. The user retains
|
|
// the ownership over the comparator and must guarantee that its lifetime
|
|
// exceeds the lifetime of the matcher.
|
|
//
|
|
// The config function will be applied after any configuration settings
|
|
// specified by other transformers. Overwriting these settings may result in
|
|
// misleading test failure messages; in particular, a config function that
|
|
// provides its own field comparator should not be used with transformers that
|
|
// rely on the default comparator, i.e. Approximately and TreatingNaNsAsEqual.
|
|
template <class InnerProtoMatcher>
|
|
inline InnerProtoMatcher WithDifferencerConfig(
|
|
DifferencerConfigFunction differencer_config_function,
|
|
InnerProtoMatcher inner_proto_matcher) {
|
|
inner_proto_matcher.mutable_impl().SetDifferencerConfigFunction(
|
|
differencer_config_function);
|
|
return inner_proto_matcher;
|
|
}
|
|
|
|
} // namespace testing
|
|
|
|
#endif // ORTOOLS_BASE_PROTOCOL_BUFFER_MATCHERS_H_
|