我正在尝试使用CMocka和GCC的--wrap
链接器选项来模拟C函数。到目前为止,这种技术适用于模拟stdlib函数,例如fgets
,popen
,pclose
等。
但是现在我正在尝试模拟静态库中的函数,但这不起作用。事实上,即使我尝试使用--wrap
来模拟它,也始终会调用静态库函数。我已经设法在foobar项目中重现了这一点。
这是我非常简单的静态库的源代码:
hello.h
#ifndef HELLO_H
#define HELLO_H
void hello();
void world();
#endif /* HELLO_H */
的hello.c
#include "hello.h"
#include <stdio.h>
void world()
{
printf("world from lib\n");
}
void hello()
{
printf("hello\n");
world();
}
以下是我的测试程序的源代码:
tests.c
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <stdio.h>
#include "cmocka.h"
#include "hello.h"
void __wrap_world(void)
{
puts(mock_ptr_type(char*));
}
void test_hello(void **state)
{
(void) state; /* unused */
assert_int_equal(7, 1 + 2 * 3);
will_return(__wrap_world, "world from tests\n");
hello();
}
const struct CMUnitTest mytests[] = {
cmocka_unit_test(test_hello),
};
int main(void)
{
return cmocka_run_group_tests(mytests, NULL, NULL);
}
最后,链接器行如下(我正在使用CMake,这就是为什么它看起来很奇怪),为你的眼睛分成多行:
/usr/bin/cc \
-Wall -Wextra -Werror -std=c99 \
CMakeFiles/tests.dir/tests.c.o \
-o tests -Wl,-rpath,/home/microjoe/cmake-fail/cmocka/build/src \
-rdynamic -lgcov /home/microjoe/cmake-fail/cmocka/build/src/libcmocka.so \
-Wl,--wrap,world \
-fprofile-arcs -ftest-coverage \
../lib/libhello.a
当然,测试输出显示未按预期调用wrap函数:
[==========] Running 1 test(s).
[ RUN ] test_hello
hello
world from lib
[ ERROR ] --- __wrap_world() has remaining non-returned values.
/home/romain/cmake-fail/hello/tests/tests.c:23: note: remaining item was declared here
[ FAILED ] test_hello
[==========] 1 test(s) run.
[ PASSED ] 0 test(s).
[ FAILED ] 1 test(s), listed below:
[ FAILED ] test_hello
1 FAILED TEST(S)