Abseil Common Libraries (C++) (grcp 依赖)
https://abseil.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
169 lines
6.2 KiB
169 lines
6.2 KiB
2 years ago
|
//
|
||
|
// Copyright 2022 The Abseil Authors.
|
||
|
//
|
||
|
// 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
|
||
|
//
|
||
|
// https://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.
|
||
|
|
||
|
#include "absl/log/internal/test_matchers.h"
|
||
|
|
||
|
#include <sstream>
|
||
|
#include <string>
|
||
|
#include <utility>
|
||
|
|
||
|
#include "gmock/gmock.h"
|
||
|
#include "gtest/gtest.h"
|
||
|
#include "absl/base/config.h"
|
||
|
#include "absl/log/internal/config.h"
|
||
|
#include "absl/log/internal/test_helpers.h"
|
||
|
#include "absl/strings/string_view.h"
|
||
|
#include "absl/time/clock.h"
|
||
|
#include "absl/time/time.h"
|
||
|
|
||
|
namespace absl {
|
||
|
ABSL_NAMESPACE_BEGIN
|
||
|
namespace log_internal {
|
||
|
|
||
|
::testing::Matcher<const absl::LogEntry&> SourceFilename(
|
||
|
const ::testing::Matcher<absl::string_view>& source_filename) {
|
||
|
return Property("source_filename", &absl::LogEntry::source_filename,
|
||
|
source_filename);
|
||
|
}
|
||
|
|
||
|
::testing::Matcher<const absl::LogEntry&> SourceBasename(
|
||
|
const ::testing::Matcher<absl::string_view>& source_basename) {
|
||
|
return Property("source_basename", &absl::LogEntry::source_basename,
|
||
|
source_basename);
|
||
|
}
|
||
|
|
||
|
::testing::Matcher<const absl::LogEntry&> SourceLine(
|
||
|
const ::testing::Matcher<int>& source_line) {
|
||
|
return Property("source_line", &absl::LogEntry::source_line, source_line);
|
||
|
}
|
||
|
|
||
|
::testing::Matcher<const absl::LogEntry&> Prefix(
|
||
|
const ::testing::Matcher<bool>& prefix) {
|
||
|
return Property("prefix", &absl::LogEntry::prefix, prefix);
|
||
|
}
|
||
|
|
||
|
::testing::Matcher<const absl::LogEntry&> LogSeverity(
|
||
|
const ::testing::Matcher<absl::LogSeverity>& log_severity) {
|
||
|
return Property("log_severity", &absl::LogEntry::log_severity, log_severity);
|
||
|
}
|
||
|
|
||
|
::testing::Matcher<const absl::LogEntry&> Timestamp(
|
||
|
const ::testing::Matcher<absl::Time>& timestamp) {
|
||
|
return Property("timestamp", &absl::LogEntry::timestamp, timestamp);
|
||
|
}
|
||
|
|
||
|
::testing::Matcher<const absl::LogEntry&> TimestampInMatchWindow() {
|
||
|
return Property("timestamp", &absl::LogEntry::timestamp,
|
||
|
::testing::AllOf(::testing::Ge(absl::Now()),
|
||
|
::testing::Truly([](absl::Time arg) {
|
||
|
return arg <= absl::Now();
|
||
|
})));
|
||
|
}
|
||
|
|
||
|
::testing::Matcher<const absl::LogEntry&> ThreadID(
|
||
|
const ::testing::Matcher<absl::LogEntry::tid_t>& tid) {
|
||
|
return Property("tid", &absl::LogEntry::tid, tid);
|
||
|
}
|
||
|
|
||
|
::testing::Matcher<const absl::LogEntry&> TextMessageWithPrefixAndNewline(
|
||
|
const ::testing::Matcher<absl::string_view>&
|
||
|
text_message_with_prefix_and_newline) {
|
||
|
return Property("text_message_with_prefix_and_newline",
|
||
|
&absl::LogEntry::text_message_with_prefix_and_newline,
|
||
|
text_message_with_prefix_and_newline);
|
||
|
}
|
||
|
|
||
|
::testing::Matcher<const absl::LogEntry&> TextMessageWithPrefix(
|
||
|
const ::testing::Matcher<absl::string_view>& text_message_with_prefix) {
|
||
|
return Property("text_message_with_prefix",
|
||
|
&absl::LogEntry::text_message_with_prefix,
|
||
|
text_message_with_prefix);
|
||
|
}
|
||
|
|
||
|
::testing::Matcher<const absl::LogEntry&> TextMessage(
|
||
|
const ::testing::Matcher<absl::string_view>& text_message) {
|
||
|
return Property("text_message", &absl::LogEntry::text_message, text_message);
|
||
|
}
|
||
|
|
||
|
::testing::Matcher<const absl::LogEntry&> TextPrefix(
|
||
|
const ::testing::Matcher<absl::string_view>& text_prefix) {
|
||
|
return ResultOf(
|
||
|
[](const absl::LogEntry& entry) {
|
||
|
absl::string_view msg = entry.text_message_with_prefix();
|
||
|
msg.remove_suffix(entry.text_message().size());
|
||
|
return msg;
|
||
|
},
|
||
|
text_prefix);
|
||
|
}
|
||
|
|
||
|
::testing::Matcher<const absl::LogEntry&> Verbosity(
|
||
|
const ::testing::Matcher<int>& verbosity) {
|
||
|
return Property("verbosity", &absl::LogEntry::verbosity, verbosity);
|
||
|
}
|
||
|
|
||
|
::testing::Matcher<const absl::LogEntry&> Stacktrace(
|
||
|
const ::testing::Matcher<absl::string_view>& stacktrace) {
|
||
|
return Property("stacktrace", &absl::LogEntry::stacktrace, stacktrace);
|
||
|
}
|
||
|
|
||
|
class MatchesOstreamImpl final
|
||
|
: public ::testing::MatcherInterface<absl::string_view> {
|
||
|
public:
|
||
|
explicit MatchesOstreamImpl(std::string expected)
|
||
|
: expected_(std::move(expected)) {}
|
||
|
bool MatchAndExplain(absl::string_view actual,
|
||
|
::testing::MatchResultListener*) const override {
|
||
|
return actual == expected_;
|
||
|
}
|
||
|
void DescribeTo(std::ostream* os) const override {
|
||
|
*os << "matches the contents of the ostringstream, which are \""
|
||
|
<< expected_ << "\"";
|
||
|
}
|
||
|
|
||
|
void DescribeNegationTo(std::ostream* os) const override {
|
||
|
*os << "does not match the contents of the ostringstream, which are \""
|
||
|
<< expected_ << "\"";
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
const std::string expected_;
|
||
|
};
|
||
|
::testing::Matcher<absl::string_view> MatchesOstream(
|
||
|
const std::ostringstream& stream) {
|
||
|
return ::testing::MakeMatcher(new MatchesOstreamImpl(stream.str()));
|
||
|
}
|
||
|
|
||
|
// We need to validate what is and isn't logged as the process dies due to
|
||
|
// `FATAL`, `QFATAL`, `CHECK`, etc., but assertions inside a death test
|
||
|
// subprocess don't directly affect the pass/fail status of the parent process.
|
||
|
// Instead, we use the mock actions `DeathTestExpectedLogging` and
|
||
|
// `DeathTestUnexpectedLogging` to write specific phrases to `stderr` that we
|
||
|
// can validate in the parent process using this matcher.
|
||
|
::testing::Matcher<const std::string&> DeathTestValidateExpectations() {
|
||
|
if (log_internal::LoggingEnabledAt(absl::LogSeverity::kFatal)) {
|
||
|
return ::testing::Matcher<const std::string&>(::testing::AllOf(
|
||
|
::testing::HasSubstr("Mock received expected entry"),
|
||
|
Not(::testing::HasSubstr("Mock received unexpected entry"))));
|
||
|
}
|
||
|
// If `FATAL` logging is disabled, neither message should have been written.
|
||
|
return ::testing::Matcher<const std::string&>(::testing::AllOf(
|
||
|
Not(::testing::HasSubstr("Mock received expected entry")),
|
||
|
Not(::testing::HasSubstr("Mock received unexpected entry"))));
|
||
|
}
|
||
|
|
||
|
} // namespace log_internal
|
||
|
ABSL_NAMESPACE_END
|
||
|
} // namespace absl
|