diff options
author | Brian Geffon <bgeffon@google.com> | 2019-02-26 15:46:39 -0800 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-02-26 15:47:42 -0800 |
commit | aeb7283a9106319db598a908708e80875fcb5c3d (patch) | |
tree | 4a4964bf16211114e620dad206698aa7977eff90 /test/util | |
parent | 12d9cf6fabb53d18da3602564f45ff6fbbf032d6 (diff) |
Improve PosixErrorOr messages using gtest matchers.
There was a minor bug whth IsPosixErrorOkAndHoldsMatcher where
it wouldn't display the actual value contained. This fixes that
and adds a few other minor improvements.
PiperOrigin-RevId: 235809065
Change-Id: I487e5072e9569eb06104522963e9a1b34204daaf
Diffstat (limited to 'test/util')
-rw-r--r-- | test/util/posix_error.cc | 5 | ||||
-rw-r--r-- | test/util/posix_error.h | 34 | ||||
-rw-r--r-- | test/util/posix_error_test.cc | 2 |
3 files changed, 27 insertions, 14 deletions
diff --git a/test/util/posix_error.cc b/test/util/posix_error.cc index 9db72c6de..7b4b3524d 100644 --- a/test/util/posix_error.cc +++ b/test/util/posix_error.cc @@ -74,15 +74,10 @@ bool PosixErrorIsMatcherCommonImpl::MatchAndExplain( inner_listener.Clear(); if (!code_matcher_.MatchAndExplain(error.errno_value(), &inner_listener)) { - *result_listener << (inner_listener.str().empty() - ? "whose errno value is wrong" - : "which has a errno value " + - inner_listener.str()); return false; } if (!message_matcher_.Matches(error.error_message())) { - *result_listener << "whose error message is wrong"; return false; } diff --git a/test/util/posix_error.h b/test/util/posix_error.h index c3306b015..d4bdf8407 100644 --- a/test/util/posix_error.h +++ b/test/util/posix_error.h @@ -74,6 +74,7 @@ class ABSL_MUST_USE_RESULT PosixError { template <typename T> class ABSL_MUST_USE_RESULT PosixErrorOr { public: + // A PosixErrorOr will check fail if it is constructed with NoError(). PosixErrorOr(const PosixError& error); PosixErrorOr(const T& value); PosixErrorOr(T&& value); @@ -99,7 +100,7 @@ class ABSL_MUST_USE_RESULT PosixErrorOr { // Returns this->error().error_message(); const std::string error_message() const; - // Returns this->error().ok() + // Returns true if this PosixErrorOr contains some T. bool ok() const; // Returns a reference to our current value, or CHECK-fails if !this->ok(). @@ -121,7 +122,11 @@ class ABSL_MUST_USE_RESULT PosixErrorOr { }; template <typename T> -PosixErrorOr<T>::PosixErrorOr(const PosixError& error) : value_(error) {} +PosixErrorOr<T>::PosixErrorOr(const PosixError& error) : value_(error) { + TEST_CHECK_MSG( + !error.ok(), + "Constructing PosixErrorOr with NoError, eg. errno 0 is not allowed."); +} template <typename T> PosixErrorOr<T>::PosixErrorOr(const T& value) : value_(value) {} @@ -177,7 +182,7 @@ const std::string PosixErrorOr<T>::error_message() const { template <typename T> bool PosixErrorOr<T>::ok() const { - return error().ok(); + return absl::holds_alternative<T>(value_); } template <typename T> @@ -265,8 +270,8 @@ class IsPosixErrorOkAndHoldsMatcherImpl bool MatchAndExplain( PosixErrorOrType actual_value, ::testing::MatchResultListener* listener) const override { + // We can't extract the value if it doesn't contain one. if (!actual_value.ok()) { - *listener << "which has error value " << actual_value.error(); return false; } @@ -274,10 +279,11 @@ class IsPosixErrorOkAndHoldsMatcherImpl const bool matches = inner_matcher_.MatchAndExplain( actual_value.ValueOrDie(), &inner_listener); const std::string inner_explanation = inner_listener.str(); + *listener << "has a value " + << ::testing::PrintToString(actual_value.ValueOrDie()); + if (!inner_explanation.empty()) { - *listener << "which contains value " - << ::testing::PrintToString(actual_value.ValueOrDie()) << ", " - << inner_explanation; + *listener << " " << inner_explanation; } return matches; } @@ -325,6 +331,18 @@ class PosixErrorIsMatcherCommonImpl { bool MatchAndExplain(const PosixError& error, ::testing::MatchResultListener* result_listener) const; + template <typename T> + bool MatchAndExplain(const PosixErrorOr<T>& error_or, + ::testing::MatchResultListener* result_listener) const { + if (error_or.ok()) { + *result_listener << "has a value " + << ::testing::PrintToString(error_or.ValueOrDie()); + return false; + } + + return MatchAndExplain(error_or.error(), result_listener); + } + private: const ::testing::Matcher<int> code_matcher_; const ::testing::Matcher<const std::string&> message_matcher_; @@ -350,7 +368,7 @@ class MonoPosixErrorIsMatcherImpl : public ::testing::MatcherInterface<T> { bool MatchAndExplain( T actual_value, ::testing::MatchResultListener* result_listener) const override { - return common_impl_.MatchAndExplain(actual_value.error(), result_listener); + return common_impl_.MatchAndExplain(actual_value, result_listener); } private: diff --git a/test/util/posix_error_test.cc b/test/util/posix_error_test.cc index 535b9f66a..c5427b8e5 100644 --- a/test/util/posix_error_test.cc +++ b/test/util/posix_error_test.cc @@ -35,7 +35,7 @@ TEST(PosixErrorTest, PosixErrorOrPosixError) { TEST(PosixErrorTest, PosixErrorOrNullptr) { auto err = PosixErrorOr<std::nullptr_t>(nullptr); - EXPECT_THAT(err, PosixErrorIs(0, "")); + EXPECT_TRUE(err.ok()); EXPECT_NO_ERRNO(err); } |