gpt4 book ai didi

c++ - CUnit - 'Mocking' libc 函数

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:48:01 25 4
gpt4 key购买 nike

我正在使用 CUnit 进行项目单元测试。我需要测试我是否使用正确的参数调用 libc 函数以及我是否以正确的方式处理它们的返回值。例如:如果我调用 bind(...) 函数 - 我想检查我传递了哪个 af 参数并断言如果这是错误的,我还想模拟它的返回值并断言如果我检查它正确的方法。

出于这些目的,我希望 CUnit 环境有一个内置机制,让我在测试时调用“模拟”bind() 函数,在运行代码时调用真正的 bind() 函数——但我不能找到这样的东西。

如果我遗漏了 CUnit 中的某些内容,您能否告诉我,或者建议一种实现方法。

谢谢,乔。

最佳答案

不幸的是,您不能使用 CUnit 模拟 C 中的函数。

但是您可以通过使用和滥用定义来实现您自己的模拟函数:假设您在编译测试时定义了 UNITTEST,您可以在测试文件(或包含文件)中定义如下内容:

#ifdef UNITTEST
#define bind mock_bind
#endif

在您将在测试模式下编译的 mock_helper.c 文件中:

static int mock_bind_return;    // maybe a more complete struct would be usefull here
static int mock_bind_sockfd;

int mock_bind(int sockfd, const struct sockaddr *addr, socklen_t addrlen)
{
CU_ASSERT_EQUAL(sockfd, mock_bind_sockfd);
return mock_bind_return;
}

然后,在你的测试文件中:

extern int mock_bind_return;
extern int mock_bind_sockfd;

void test_function_with_bind(void)
{

mock_bind_return = 0;
mock_bind_sockfd = 5;
function_using_bind(mock_bind_sockfd);
}

关于c++ - CUnit - 'Mocking' libc 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8339094/

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