mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
test: factor out some boilerplate from C tests
The trick of having a common header file doesn't work to share between test scripts, so make an include file in the test directory. The use of #include <notmuch-test.h> looks slightly pretentious, but the include file is not actually in the current (temporary) directory.
This commit is contained in:
parent
57bd4cf322
commit
cc1a6d2a94
3 changed files with 31 additions and 26 deletions
|
@ -6,20 +6,9 @@ test_description="library config API"
|
|||
add_email_corpus
|
||||
|
||||
cat <<EOF > c_head
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <notmuch.h>
|
||||
|
||||
void run(int line, notmuch_status_t ret)
|
||||
{
|
||||
if (ret) {
|
||||
fprintf (stderr, "line %d: %s\n", line, ret);
|
||||
exit (1);
|
||||
}
|
||||
}
|
||||
|
||||
#define RUN(v) run(__LINE__, v);
|
||||
#include <notmuch-test.h>
|
||||
|
||||
int main (int argc, char** argv)
|
||||
{
|
||||
|
@ -27,23 +16,23 @@ int main (int argc, char** argv)
|
|||
char *val;
|
||||
notmuch_status_t stat;
|
||||
|
||||
RUN(notmuch_database_open (argv[1], NOTMUCH_DATABASE_MODE_READ_WRITE, &db));
|
||||
EXPECT0(notmuch_database_open (argv[1], NOTMUCH_DATABASE_MODE_READ_WRITE, &db));
|
||||
|
||||
EOF
|
||||
|
||||
cat <<EOF > c_tail
|
||||
RUN(notmuch_database_destroy(db));
|
||||
EXPECT0(notmuch_database_destroy(db));
|
||||
}
|
||||
EOF
|
||||
|
||||
test_begin_subtest "notmuch_database_{set,get}_config"
|
||||
cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR}
|
||||
{
|
||||
RUN(notmuch_database_set_config (db, "testkey1", "testvalue1"));
|
||||
RUN(notmuch_database_set_config (db, "testkey2", "testvalue2"));
|
||||
RUN(notmuch_database_get_config (db, "testkey1", &val));
|
||||
EXPECT0(notmuch_database_set_config (db, "testkey1", "testvalue1"));
|
||||
EXPECT0(notmuch_database_set_config (db, "testkey2", "testvalue2"));
|
||||
EXPECT0(notmuch_database_get_config (db, "testkey1", &val));
|
||||
printf("testkey1 = %s\n", val);
|
||||
RUN(notmuch_database_get_config (db, "testkey2", &val));
|
||||
EXPECT0(notmuch_database_get_config (db, "testkey2", &val));
|
||||
printf("testkey2 = %s\n", val);
|
||||
}
|
||||
EOF
|
||||
|
@ -60,7 +49,7 @@ test_begin_subtest "notmuch_database_get_config_list: empty list"
|
|||
cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR}
|
||||
{
|
||||
notmuch_config_list_t *list;
|
||||
RUN(notmuch_database_get_config_list (db, "nonexistent", &list));
|
||||
EXPECT0(notmuch_database_get_config_list (db, "nonexistent", &list));
|
||||
printf("valid = %d\n", notmuch_config_list_valid (list));
|
||||
notmuch_config_list_destroy (list);
|
||||
}
|
||||
|
@ -77,9 +66,9 @@ test_begin_subtest "notmuch_database_get_config_list: all pairs"
|
|||
cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR}
|
||||
{
|
||||
notmuch_config_list_t *list;
|
||||
RUN(notmuch_database_set_config (db, "zzzafter", "afterval"));
|
||||
RUN(notmuch_database_set_config (db, "aaabefore", "beforeval"));
|
||||
RUN(notmuch_database_get_config_list (db, "", &list));
|
||||
EXPECT0(notmuch_database_set_config (db, "zzzafter", "afterval"));
|
||||
EXPECT0(notmuch_database_set_config (db, "aaabefore", "beforeval"));
|
||||
EXPECT0(notmuch_database_get_config_list (db, "", &list));
|
||||
for (; notmuch_config_list_valid (list); notmuch_config_list_move_to_next (list)) {
|
||||
printf("%s %s\n", notmuch_config_list_key (list), notmuch_config_list_value(list));
|
||||
}
|
||||
|
@ -100,7 +89,7 @@ test_begin_subtest "notmuch_database_get_config_list: one prefix"
|
|||
cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR}
|
||||
{
|
||||
notmuch_config_list_t *list;
|
||||
RUN(notmuch_database_get_config_list (db, "testkey", &list));
|
||||
EXPECT0(notmuch_database_get_config_list (db, "testkey", &list));
|
||||
for (; notmuch_config_list_valid (list); notmuch_config_list_move_to_next (list)) {
|
||||
printf("%s %s\n", notmuch_config_list_key (list), notmuch_config_list_value(list));
|
||||
}
|
||||
|
@ -118,7 +107,7 @@ test_expect_equal_file EXPECTED OUTPUT
|
|||
test_begin_subtest "dump config"
|
||||
cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR}
|
||||
{
|
||||
RUN(notmuch_database_set_config (db, "key with spaces", "value, with, spaces!"));
|
||||
EXPECT0(notmuch_database_set_config (db, "key with spaces", "value, with, spaces!"));
|
||||
}
|
||||
EOF
|
||||
notmuch dump --include=config >OUTPUT
|
||||
|
@ -136,7 +125,7 @@ test_begin_subtest "restore config"
|
|||
notmuch dump --include=config >EXPECTED
|
||||
cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR}
|
||||
{
|
||||
RUN(notmuch_database_set_config (db, "testkey1", "mutatedvalue"));
|
||||
EXPECT0(notmuch_database_set_config (db, "testkey1", "mutatedvalue"));
|
||||
}
|
||||
EOF
|
||||
notmuch restore --include=config <EXPECTED
|
||||
|
|
16
test/notmuch-test.h
Normal file
16
test/notmuch-test.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
#ifndef _NOTMUCH_TEST_H
|
||||
#define _NOTMUCH_TEST_H
|
||||
#include <stdio.h>
|
||||
#include <notmuch.h>
|
||||
|
||||
inline static void
|
||||
expect0(int line, notmuch_status_t ret)
|
||||
{
|
||||
if (ret) {
|
||||
fprintf (stderr, "line %d: %s\n", line, ret);
|
||||
exit (1);
|
||||
}
|
||||
}
|
||||
|
||||
#define EXPECT0(v) expect0(__LINE__, v);
|
||||
#endif
|
|
@ -1206,7 +1206,7 @@ test_C () {
|
|||
exec_file="test${test_count}"
|
||||
test_file="${exec_file}.c"
|
||||
cat > ${test_file}
|
||||
${TEST_CC} ${TEST_CFLAGS} -I${TEST_DIRECTORY}/../lib -o ${exec_file} ${test_file} -L${TEST_DIRECTORY}/../lib/ -lnotmuch -ltalloc
|
||||
${TEST_CC} ${TEST_CFLAGS} -I${TEST_DIRECTORY} -I${TEST_DIRECTORY}/../lib -o ${exec_file} ${test_file} -L${TEST_DIRECTORY}/../lib/ -lnotmuch -ltalloc
|
||||
echo "== stdout ==" > OUTPUT.stdout
|
||||
echo "== stderr ==" > OUTPUT.stderr
|
||||
./${exec_file} "$@" 1>>OUTPUT.stdout 2>>OUTPUT.stderr
|
||||
|
|
Loading…
Reference in a new issue