作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
#include <gtest/gtest.h>
#include <gmock/gmock.h>
enum class InfoState : uint8_t
{
OFF = 0,
ON = 1,
};
class MyInfo
{
public:
MyInfo(){};
MyInfo(const MyInfo&){};
MyInfo& operator=(const MyInfo&){}
MOCK_METHOD0(getState, InfoState(void));
};
class ServiceClient
{
public:
MOCK_METHOD1(getInfo, bool(std::vector<MyInfo> &myInfoList));
};
class MyClassA
{
public:
ServiceClient m_serviceClient;
void updateStatus()
{
std::vector<MyInfo> myInfoList;
if (m_serviceClient.getInfo(myInfoList))
{
for (auto& info: myInfoList)
{
if (InfoState::ON == info.getState())
{
//notifyObservers(true);
break;
}
}
}
}
};
TEST(infoTest, test1)
{
MyClassA testObj;
std::vector<MyInfo> myTestInfoList(1);
EXPECT_CALL(myTestInfoList[0], getState()).WillOnce(::testing::Return(InfoState::ON));
EXPECT_CALL(testObj.m_serviceClient, getInfo(::testing::_))
.WillOnce(::testing::DoAll(::testing::SetArgReferee<0(myTestInfoList),::testing::Return(true)));
testObj.updateStatus();
}
我想测试MyClassA::updateStatus方法。在这种情况下,我想在myTestInfoList EXPECT_CALL内的MyInfo对象上设置返回值InfoState::ON。
最佳答案
正如Quarra注释一样,主要问题是复制构造函数。我不是Google Test
专家,但是我找到了解决您问题的方法。
根据GMock
,我发现无法复制模拟对象-这是Google Test
实现者的设计原则和决定。 Here this decision has been justified早在2009年。
因此,通过不在模拟对象内部定义copy构造函数,它将被删除(live code)。这是错误代码
/opt/compiler-explorer/libs/googletest/release-1.10.0/googlemock/include/gmock/gmock-spec-builders.h:1483:3: note: 'FunctionMocker' has been explicitly marked deleted here
FunctionMocker(const FunctionMocker&) = delete;
然而,这里的主要问题实际上是复制构造函数的实际需求,这是由两个因素引起的:
EXPECT_CALL
和其他GMock基本功能!这正是您遇到的问题。因此,您已经创建了一个自定义副本构造函数,所有GMock功能都消失了。尽管此构造函数为空,但无论如何都无法使用。 MyInfo(const MyInfo&){};
std::vector
,您正在使用自己的需求(在此用例中),该类型符合CopyConstructible概念。因此,这将不起作用。 EXPECT_CALL
使用副本而不是移动语义或传递引用。尽管您已明确设置该参数应为引用(而不是副本!)
SetArgReferee<0>(myTestInfoList)
,但仍可以执行此操作。此外,根据设计,
GMock
对象不可复制。对我来说,这看起来像是设计缺陷或错误,但我不是
Google Test
专家。我将对此进行更多研究,并可能向
GTest
实现者提出错误报告/问题。
GMock API
中找到一个不使用副本的方法,然后使用不调用副本构造函数的
std::vector
功能。
EXPECT_CALL
更改为
ON_CALL
来解决,为了打开调用
std::vector
功能的可能性,我们还将使用
Invoke
API中的
GMock
。
TEST(infoTest, test1)
{
MyClassA testObj;
std::vector<MyInfo> myTestInfoList(1);
ON_CALL(myTestInfoList[0], getState()).WillByDefault(::testing::Invoke(
[]()
{
return InfoState::ON;
}));
ON_CALL(testObj.m_serviceClient, getInfo(::testing::_))
.WillByDefault(::testing::Invoke(
[](std::vector<MyInfo> &myInfoList)
{
return true;
}));
testObj.updateStatus();
}
这适用于显式删除的
copy constructor
->
MyInfo(const MyInfo&) = delete;
,但逻辑现在也已删除。
STL
复制,我们可以简单地使用
std::swap
并填充传递的
std::vector&
。交换值不会复制数据-因此我们很高兴。
ON_CALL(testObj.m_serviceClient, getInfo(::testing::_))
.WillByDefault(::testing::Invoke(
[&myTestInfoList](std::vector<MyInfo> &myInfoList)
{
std::swap(myInfoList, myTestInfoList);
return true;
}));
这是工作的
solution。
EXPECT_CALL
强制复制。
关于c++ - 通过setargreferee传递 vector 时,gtest中的EXPECT_CALL未实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64062237/
我有一个接口(interface)Itest: class Itest { bool testfunction(vector& v, int& id); } 我可以模拟它: MOCK_METH
我有一个函数,需要一个unique_ptr vector : void MyObject::myfunc(std::vector>& vec) { std::unique_ptr f(new F
我正在使用 gmock 并模拟了一个函数 boost::beast::http::response_parser作为输出参数。功能签名看起来像: error_code readFromSocket(b
我是一名优秀的程序员,十分优秀!