gpt4 book ai didi

c++ - 带有 GMock 的 EXPECT_DEATH - 未能死亡

转载 作者:行者123 更新时间:2023-11-30 04:49:31 24 4
gpt4 key购买 nike

  1. 我在 my_inet.cpp 文件中创建了一个外部套接字 api 的模拟。
  2. 该套接字 API 的 GMock 函数在 mock.h 文件中。
  3. 我在 server.cpp 文件中使用我创建的 my_inet 套接字 api。
  4. 测试用gtest.cpp编写。

我想通过 exit(1) 成功执行死亡案例,但 GMock 说“无法死亡”。

为什么?

gtest.cpp

TEST(MyTest, SocketConnectionFail)
{
MockMyTCPAPI obj_myTCP;

Server obj_server( &obj_myTCP );

EXPECT_DEATH( obj_server.InitializeSocket(), "No socket connection!");
}

服务器.cpp

int Server::InitializeSocket()
{
if( ret_val_socket == -1 )
{
ret_val_socket = myTCPAPI->socket( PF_INET, SOCK_STREAM, 0 );

if( ret_val_socket == -1 )
{
printf( "\nNo socket connection!" );
exit(1);
}
return ret_val_socket;
}
else
{
printf( "Warning! Attempting to create socket again. %d" , ret_val_socket);
return 2;
}

return 0;
}

my_inet.cpp

int MyTCPAPI::socket( int arg1, int arg2, int arg3 )
{
return -1;
}

输出:

[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from MyTest
[ RUN ] MyTest.SocketConnectionFail

[WARNING] /usr/src/gtest/src/gtest-death-test.cc:825:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test couldn't detect the number of threads.

GMOCK WARNING:
Uninteresting mock function call - returning default value.
Function call: socket(1, 0, 0)
Returns: 0
Stack trace:
/home/anisha/Documents/office/tdd/tcp/server/gtest.cpp:56: Failure
Death test: obj_server.InitializeSocket()
Result: failed to die.
Error msg:
[ DEATH ]
[ FAILED ] MyTest.SocketConnectionFail (3 ms)
[----------] 1 test from MyTest (3 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (3 ms total)
[ PASSED ] 0 tests.
[ FAILED ] 1 test, listed below:
[ FAILED ] MyTest.SocketConnectionFail

1 FAILED TEST

最佳答案

输出解释了这个问题:

GMOCK WARNING:
Uninteresting mock function call - returning default value.
Function call: socket(1, 0, 0)
Returns: 0

这意味着 myTCPAPI->socket(PF_INET, SOCK_STREAM, 0) 返回 0,而不是 -1。

由于 MockMyTCPAPI obj_myTCP 是模拟对象(不是 MyTCPAPI),它不会运行 MyTCPAPI::socket()。您需要指定它的返回值。类似以下内容应该有所帮助:

EXPECT_CALL(obj_myTCP, socket(_, _, _))
.WillRepeatedly(Return(-1));

或者在测试中使用 MyTCPAPI 而不是 MockMyTCPAPI

关于c++ - 带有 GMock 的 EXPECT_DEATH - 未能死亡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55375912/

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