gpt4 book ai didi

c++ - 如何使用 gmock 匹配 C++ 元组中的一个元素?

转载 作者:太空狗 更新时间:2023-10-29 23:12:04 25 4
gpt4 key购买 nike

如何使用 gmock 匹配 C++ 元组中的一个元素?

例如,让我们尝试提取 std::string来自std::tuple<std::string, int> .

我知道我可以像这样写一个自定义匹配器:

MATCHER_P(match0thOfTuple, expected, "") { return (std::get<0>(arg) == expected); }

但是自从我找到了 Pair(m1, m2) std::pair 的匹配器,我还希望为 std::tuple 找到类似的东西.

Gmock 有 Args<N1, N2, ..., Nk>(m)用于选择元组参数的子集。当仅使用 1 个参数时,它仍然需要一个元组匹配器。以下尝试似乎无法编译:

struct {
MOCK_METHOD1(mockedFunction, void(std::tuple<std::string, int>&));
} mock;
EXPECT_CALL(mock, mockedFunction(testing::Args<0>(testing::Eq(expectedStringValue))));

并且让我的 clang 给出这样的编译错误:

.../gtest/googlemock/include/gmock/gmock-matchers.h:204:60: error: invalid operands to binary expression ('const std::__1::tuple<std::__1::basic_string<char> >' and 'const std::__1::basic_string<char>')
bool operator()(const A& a, const B& b) const { return a == b; }
...

是否有针对 std::tuple 的 gmock 解决方案?类似于 std::pair 的那个,它使用 gmock Pair匹配器?

最佳答案

testing::Args用于将函数参数打包到元组 - 与您想要实现的完全相反。

我的建议 - 在你的情况下 - 在 Mock 类中解包,请参阅:

struct mock 
{
void mockedFunction(std::tuple<std::string, int>& tt)
{
mockedFunctionUnpacked(std::get<0>(tt), std::get<1>(tt));
}
MOCK_METHOD2(mockedFunctionUnpacked, void(std::string&, int&));
};

然后:

EXPECT_CALL(mock, mockedFunctionUnpacked(expectedStringValue, ::testing::_));

不幸的是,当前的 gmock 匹配器都不适用于 std::tuple 参数。



如果你想了解 C++ 模板 - 你可以试试这个(不完整 - 只是一个如何实现元组匹配通用函数的想法):

// Needed to use ::testing::Property - no other way to access one 
// tuple element as "member function"
template <typename Tuple>
struct TupleView
{
public:
TupleView(Tuple const& tuple) : tuple(tuple) {}
template <std::size_t I>
const typename std::tuple_element<I, Tuple>::type& get() const
{
return std::get<I>(tuple);
}
private:
Tuple const& tuple;
};

// matcher for TupleView as defined above
template <typename Tuple, typename ...M, std::size_t ...I>
auto matchTupleView(M ...m, std::index_sequence<I...>)
{
namespace tst = ::testing;
using TV = TupleView<Tuple>;
return tst::AllOf(tst::Property(&TV::template get<I>, m)...);
}

// Matcher to Tuple - big disadvantage - requires to provide tuple type:
template <typename Tuple, typename ...M>
auto matchTupleElements(M ...m)
{
auto mtv = matchTupleView<Tuple, M...>(m..., std::make_index_sequence<sizeof...(M)>{});
return ::testing::MatcherCast<TupleView<Tuple>>(mtv);
}

然后像这样使用:

EXPECT_CALL(mock, mockedFunction(matchTupleElements<std::tuple<std::string, int>>(expectedStringValue, ::testing::_)));

关于c++ - 如何使用 gmock 匹配 C++ 元组中的一个元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48371818/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com