mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
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<InfoT>() verifies that the operation failed with a single error of a given type. - Failed<InfoT>(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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@329288 91177308-0d34-0410-b5e6-96231b3b80d8
166 lines
4.5 KiB
C++
166 lines
4.5 KiB
C++
//===- llvm/Testing/Support/Error.h ---------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_TESTING_SUPPORT_ERROR_H
|
|
#define LLVM_TESTING_SUPPORT_ERROR_H
|
|
|
|
#include "llvm/ADT/Optional.h"
|
|
#include "llvm/Support/Error.h"
|
|
#include "llvm/Testing/Support/SupportHelpers.h"
|
|
|
|
#include "gmock/gmock.h"
|
|
#include <ostream>
|
|
|
|
namespace llvm {
|
|
namespace detail {
|
|
ErrorHolder TakeError(Error Err);
|
|
|
|
template <typename T> ExpectedHolder<T> TakeExpected(Expected<T> &Exp) {
|
|
return {TakeError(Exp.takeError()), Exp};
|
|
}
|
|
|
|
template <typename T> ExpectedHolder<T> TakeExpected(Expected<T> &&Exp) {
|
|
return TakeExpected(Exp);
|
|
}
|
|
|
|
template <typename T>
|
|
class ValueMatchesMono
|
|
: public testing::MatcherInterface<const ExpectedHolder<T> &> {
|
|
public:
|
|
explicit ValueMatchesMono(const testing::Matcher<T> &Matcher)
|
|
: Matcher(Matcher) {}
|
|
|
|
bool MatchAndExplain(const ExpectedHolder<T> &Holder,
|
|
testing::MatchResultListener *listener) const override {
|
|
if (!Holder.Success())
|
|
return false;
|
|
|
|
bool result = Matcher.MatchAndExplain(*Holder.Exp, listener);
|
|
|
|
if (result)
|
|
return result;
|
|
*listener << "(";
|
|
Matcher.DescribeNegationTo(listener->stream());
|
|
*listener << ")";
|
|
return result;
|
|
}
|
|
|
|
void DescribeTo(std::ostream *OS) const override {
|
|
*OS << "succeeded with value (";
|
|
Matcher.DescribeTo(OS);
|
|
*OS << ")";
|
|
}
|
|
|
|
void DescribeNegationTo(std::ostream *OS) const override {
|
|
*OS << "did not succeed or value (";
|
|
Matcher.DescribeNegationTo(OS);
|
|
*OS << ")";
|
|
}
|
|
|
|
private:
|
|
testing::Matcher<T> Matcher;
|
|
};
|
|
|
|
template<typename M>
|
|
class ValueMatchesPoly {
|
|
public:
|
|
explicit ValueMatchesPoly(const M &Matcher) : Matcher(Matcher) {}
|
|
|
|
template <typename T>
|
|
operator testing::Matcher<const ExpectedHolder<T> &>() const {
|
|
return MakeMatcher(
|
|
new ValueMatchesMono<T>(testing::SafeMatcherCast<T>(Matcher)));
|
|
}
|
|
|
|
private:
|
|
M Matcher;
|
|
};
|
|
|
|
template <typename InfoT>
|
|
class ErrorMatchesMono : public testing::MatcherInterface<const ErrorHolder &> {
|
|
public:
|
|
explicit ErrorMatchesMono(Optional<testing::Matcher<InfoT>> 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<InfoT>()) {
|
|
*listener << "Error was not of given type";
|
|
return false;
|
|
}
|
|
|
|
if (!Matcher)
|
|
return true;
|
|
|
|
return Matcher->MatchAndExplain(static_cast<InfoT &>(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<testing::Matcher<InfoT>> Matcher;
|
|
};
|
|
} // namespace detail
|
|
|
|
#define EXPECT_THAT_ERROR(Err, Matcher) \
|
|
EXPECT_THAT(llvm::detail::TakeError(Err), Matcher)
|
|
#define ASSERT_THAT_ERROR(Err, Matcher) \
|
|
ASSERT_THAT(llvm::detail::TakeError(Err), Matcher)
|
|
|
|
#define EXPECT_THAT_EXPECTED(Err, Matcher) \
|
|
EXPECT_THAT(llvm::detail::TakeExpected(Err), Matcher)
|
|
#define ASSERT_THAT_EXPECTED(Err, Matcher) \
|
|
ASSERT_THAT(llvm::detail::TakeExpected(Err), Matcher)
|
|
|
|
MATCHER(Succeeded, "") { return arg.Success(); }
|
|
MATCHER(Failed, "") { return !arg.Success(); }
|
|
|
|
template <typename InfoT>
|
|
testing::Matcher<const detail::ErrorHolder &> Failed() {
|
|
return MakeMatcher(new detail::ErrorMatchesMono<InfoT>(None));
|
|
}
|
|
|
|
template <typename InfoT, typename M>
|
|
testing::Matcher<const detail::ErrorHolder &> Failed(M Matcher) {
|
|
return MakeMatcher(new detail::ErrorMatchesMono<InfoT>(
|
|
testing::SafeMatcherCast<InfoT>(Matcher)));
|
|
}
|
|
|
|
template <typename M>
|
|
detail::ValueMatchesPoly<M> HasValue(M Matcher) {
|
|
return detail::ValueMatchesPoly<M>(Matcher);
|
|
}
|
|
|
|
} // namespace llvm
|
|
|
|
#endif
|