From: Pavel Labath Date: Thu, 5 Apr 2018 14:32:10 +0000 (+0000) Subject: [Testing/Support]: Better matching of Error failure states X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=510725c2d69cb28773e9097656fdef52d7240a90;p=platform%2Fupstream%2Fllvm.git [Testing/Support]: Better matching of Error failure states Summary: The existing Failed() matcher only allowed asserting that the operation failed, but it was not possible to verify any details of the returned error. This patch adds two new matchers, which make this possible: - Failed() verifies that the operation failed with a single error of a given type. - Failed(M) additionally check that the contained error info object is matched by the nested matcher M. To make these work, I've changed the implementation of the ErrorHolder class. Now, instead of just storing the string representation of the Error, it fetches the ErrorInfo objects and stores then as a list of shared pointers. This way, ErrorHolder remains copyable, while still retaining the full information contained in the Error object. In case the Error object contains two or more errors, the new matchers will fail to match, instead of trying to match all (or any) of the individual ErrorInfo objects. This seemed to be the most sensible behavior for when one wants to match exact error details, but I could be convinced otherwise... Reviewers: zturner, lhames Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D44925 llvm-svn: 329288 --- diff --git a/llvm/include/llvm/Testing/Support/Error.h b/llvm/include/llvm/Testing/Support/Error.h index 50889b9..9f0237a 100644 --- a/llvm/include/llvm/Testing/Support/Error.h +++ b/llvm/include/llvm/Testing/Support/Error.h @@ -38,7 +38,7 @@ public: bool MatchAndExplain(const ExpectedHolder &Holder, testing::MatchResultListener *listener) const override { - if (!Holder.Success) + if (!Holder.Success()) return false; bool result = Matcher.MatchAndExplain(*Holder.Exp, listener); @@ -82,6 +82,53 @@ private: M Matcher; }; +template +class ErrorMatchesMono : public testing::MatcherInterface { +public: + explicit ErrorMatchesMono(Optional> Matcher) + : Matcher(std::move(Matcher)) {} + + bool MatchAndExplain(const ErrorHolder &Holder, + testing::MatchResultListener *listener) const override { + if (Holder.Success()) + return false; + + if (Holder.Infos.size() > 1) { + *listener << "multiple errors"; + return false; + } + + auto &Info = *Holder.Infos[0]; + if (!Info.isA()) { + *listener << "Error was not of given type"; + return false; + } + + if (!Matcher) + return true; + + return Matcher->MatchAndExplain(static_cast(Info), listener); + } + + void DescribeTo(std::ostream *OS) const override { + *OS << "failed with Error of given type"; + if (Matcher) { + *OS << " and the error "; + Matcher->DescribeTo(OS); + } + } + + void DescribeNegationTo(std::ostream *OS) const override { + *OS << "succeeded or did not fail with the error of given type"; + if (Matcher) { + *OS << " or the error "; + Matcher->DescribeNegationTo(OS); + } + } + +private: + Optional> Matcher; +}; } // namespace detail #define EXPECT_THAT_ERROR(Err, Matcher) \ @@ -94,8 +141,19 @@ private: #define ASSERT_THAT_EXPECTED(Err, Matcher) \ ASSERT_THAT(llvm::detail::TakeExpected(Err), Matcher) -MATCHER(Succeeded, "") { return arg.Success; } -MATCHER(Failed, "") { return !arg.Success; } +MATCHER(Succeeded, "") { return arg.Success(); } +MATCHER(Failed, "") { return !arg.Success(); } + +template +testing::Matcher Failed() { + return MakeMatcher(new detail::ErrorMatchesMono(None)); +} + +template +testing::Matcher Failed(M Matcher) { + return MakeMatcher(new detail::ErrorMatchesMono( + testing::SafeMatcherCast(Matcher))); +} template detail::ValueMatchesPoly HasValue(M Matcher) { diff --git a/llvm/include/llvm/Testing/Support/SupportHelpers.h b/llvm/include/llvm/Testing/Support/SupportHelpers.h index d7f0c71..96264ac 100644 --- a/llvm/include/llvm/Testing/Support/SupportHelpers.h +++ b/llvm/include/llvm/Testing/Support/SupportHelpers.h @@ -17,8 +17,9 @@ namespace llvm { namespace detail { struct ErrorHolder { - bool Success; - std::string Message; + std::vector> Infos; + + bool Success() const { return Infos.empty(); } }; template struct ExpectedHolder : public ErrorHolder { @@ -29,15 +30,22 @@ template struct ExpectedHolder : public ErrorHolder { }; inline void PrintTo(const ErrorHolder &Err, std::ostream *Out) { - *Out << (Err.Success ? "succeeded" : "failed"); - if (!Err.Success) { - *Out << " (" << StringRef(Err.Message).trim().str() << ")"; + raw_os_ostream OS(*Out); + OS << (Err.Success() ? "succeeded" : "failed"); + if (!Err.Success()) { + const char *Delim = " ("; + for (const auto &Info : Err.Infos) { + OS << Delim; + Delim = "; "; + Info->log(OS); + } + OS << ")"; } } template void PrintTo(const ExpectedHolder &Item, std::ostream *Out) { - if (Item.Success) { + if (Item.Success()) { *Out << "succeeded with value " << ::testing::PrintToString(*Item.Exp); } else { PrintTo(static_cast(Item), Out); diff --git a/llvm/lib/Testing/Support/Error.cpp b/llvm/lib/Testing/Support/Error.cpp index ce0da44..5692cdf 100644 --- a/llvm/lib/Testing/Support/Error.cpp +++ b/llvm/lib/Testing/Support/Error.cpp @@ -14,9 +14,10 @@ using namespace llvm; llvm::detail::ErrorHolder llvm::detail::TakeError(llvm::Error Err) { - bool Succeeded = !static_cast(Err); - std::string Message; - if (!Succeeded) - Message = toString(std::move(Err)); - return {Succeeded, Message}; + std::vector> Infos; + handleAllErrors(std::move(Err), + [&Infos](std::unique_ptr Info) { + Infos.emplace_back(std::move(Info)); + }); + return {std::move(Infos)}; } diff --git a/llvm/unittests/Support/ErrorTest.cpp b/llvm/unittests/Support/ErrorTest.cpp index 2629e64..d03db26 100644 --- a/llvm/unittests/Support/ErrorTest.cpp +++ b/llvm/unittests/Support/ErrorTest.cpp @@ -726,6 +726,30 @@ TEST(Error, ErrorMatchers) { EXPECT_NONFATAL_FAILURE(EXPECT_THAT_ERROR(Error::success(), Failed()), "Expected: failed\n Actual: succeeded"); + EXPECT_THAT_ERROR(make_error(0), Failed()); + EXPECT_NONFATAL_FAILURE( + EXPECT_THAT_ERROR(Error::success(), Failed()), + "Expected: failed with Error of given type\n Actual: succeeded"); + EXPECT_NONFATAL_FAILURE( + EXPECT_THAT_ERROR(make_error(0), Failed()), + "Error was not of given type"); + EXPECT_NONFATAL_FAILURE( + EXPECT_THAT_ERROR( + joinErrors(make_error(0), make_error(1)), + Failed()), + "multiple errors"); + + EXPECT_THAT_ERROR( + make_error(0), + Failed(testing::Property(&CustomError::getInfo, 0))); + EXPECT_NONFATAL_FAILURE( + EXPECT_THAT_ERROR( + make_error(0), + Failed(testing::Property(&CustomError::getInfo, 1))), + "Expected: failed with Error of given type and the error is an object " + "whose given property is equal to 1\n" + " Actual: failed (CustomError { 0})"); + EXPECT_THAT_EXPECTED(Expected(0), Succeeded()); EXPECT_NONFATAL_FAILURE( EXPECT_THAT_EXPECTED(Expected(make_error(0)),