26

我正在尝试按照官方检查教程进行操作,但它需要 Autotools 的工作知识,而我没有。我希望只是写几个快速测试,我发现这个教程压倒性的。它依赖于 Autoconf、Automake 和一些 Check 宏中的许多魔法。它没有解释 Check 的实际工作原理,以便我可以手动构建测试。

如何在没有 Autotools 的情况下使用 Check?

4

2 回答 2

46

您当然不需要学习自动工具即可在小型项目中使用 Check。假设我们的 main() 在 main.c 中,并且我们的 implementation.c 有一个函数,它对 2 个整数求和。(implementation.h 只包含函数原型)

#include "implementation.h"

int sum(int a, int b) {

    return a + b;
}

您可以像这样编写测试:

#include "implementation.h"

#test sum2test
    fail_unless(sum(3, 2) == 5, "sum function borked");
    fail_unless(sum(-3, 2) == -1, "sum function borked");
    fail_unless(sum(3, -2) == 1, "sum function borked");
    fail_unless(sum(-3, -2) == -5, "sum function borked");

将文件保存在 implementation-test.check 中(您可以选择任何您想要的名称/扩展名,但如果您想按照我的指南继续使用这些名称/扩展名),然后运行 ​​Check 附带的包含的 awk 脚本。您甚至不必费心检查框架的样板代码!(有关更多详细信息,请查看 man checkmk)

checkmk implementation-test.check >implementation-test.c

输出将如下:

/*
 * DO NOT EDIT THIS FILE. Generated by checkmk.
 * Edit the original source file "implementation-test.check" instead.
 */

#include <check.h>

#line 1 "implementation-test.check"
#include "implementation.h"

START_TEST(sum2test)
{
#line 4
    fail_unless(sum(3, 2) == 5, "sum function borked");
    fail_unless(sum(-3, 2) == -1, "sum function borked");
    fail_unless(sum(3, -2) == 1, "sum function borked");
    fail_unless(sum(-3, -2) == -5, "sum function borked");
}
END_TEST

int main(void)
{
    Suite *s1 = suite_create("Core");
    TCase *tc1_1 = tcase_create("Core");
    SRunner *sr = srunner_create(s1);
    int nf;

    suite_add_tcase(s1, tc1_1);
    tcase_add_test(tc1_1, sum2test);

    srunner_run_all(sr, CK_ENV);
    nf = srunner_ntests_failed(sr);
    srunner_free(sr);

    return nf == 0 ? 0 : 1;
}

然后在编译时包含 -lcheck 以获取链接的检查库并运行程序!

gcc -Wall -o sum2ints-test implementation.c implementation-test.c -lcheck
./sum2ints

下面是一个简单的 makefile,可以帮助您入门。将其保存在 sum2ints.makefile 中,然后与 main 一起构建 implementation.c,运行:

make -f sum2ints.makefile

要使用从 checkmk 创建的 implementation-test.c 构建和运行 implementation.c,请运行:

make -f sum2ints.makefile test

-

CFLAGS=-Wall
LIBS=-lcheck

all: sum2ints

sum2ints: main.o implementation.o
gcc -o sum2ints main.o implementation.o

main.o: main.c implementation.h
gcc $(CFLAGS) -c main.c

implementation.o: implementation.c implementation.h
gcc $(CFLAGS) -c implementation.c

test: sum2ints-test
./sum2ints-test

sum2ints-test: implementation-test.o implementation.o
gcc -o sum2ints-test implementation.o implementation-test.o $(LIBS)

implementation-test.o: implementation-test.c implementation.h
gcc $(CFLAGS) -c implementation-test.c

我为您准备了一个包含上述所有内容的 .zip 文件。

https://dl.dropbox.com/u/1987095/test-check.zip

于 2013-02-23T23:17:19.003 回答
11

@freestyler 的答案很好,但它仍然使用checkmk,这不是必需的。

这是一个不使用checkmk.

将以下内容放入名为 的文件中test.c

#include <check.h>

START_TEST (sanity_check)
{
    fail_unless(5 == 5, "this should succeed");
    fail_unless(6 == 5, "this should fail");
}
END_TEST

int main(void)
{
    Suite *s1 = suite_create("Core");
    TCase *tc1_1 = tcase_create("Core");
    SRunner *sr = srunner_create(s1);
    int nf;

    suite_add_tcase(s1, tc1_1);
    tcase_add_test(tc1_1, sanity_check);

    srunner_run_all(sr, CK_ENV);
    nf = srunner_ntests_failed(sr);
    srunner_free(sr);

    return nf == 0 ? 0 : 1;
}

并编译

gcc test.c -Wall -o test -lcheck -pthread -lcheck_pic -pthread -lrt -lm -lsubunit
于 2019-01-08T15:34:36.170 回答