mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
test: add regression tests for n_thread_get_toplevel_messages
Include a test for the previously omitted non-trivial code path for notmuch_thread_get_replies.
This commit is contained in:
parent
02ab473115
commit
6ccc4338a4
2 changed files with 80 additions and 1 deletions
|
@ -87,7 +87,6 @@ cat <<EOF > EXPECTED
|
||||||
EOF
|
EOF
|
||||||
test_expect_equal_file EXPECTED OUTPUT
|
test_expect_equal_file EXPECTED OUTPUT
|
||||||
|
|
||||||
# XXX TODO: test on a message from notmuch_thread_get_toplevel_messages
|
|
||||||
# XXX this test only tests the trivial code path
|
# XXX this test only tests the trivial code path
|
||||||
test_begin_subtest "Handle getting replies from closed database"
|
test_begin_subtest "Handle getting replies from closed database"
|
||||||
cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR}
|
cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR}
|
||||||
|
|
|
@ -92,4 +92,84 @@ cat <<EOF > EXPECTED
|
||||||
EOF
|
EOF
|
||||||
test_expect_equal_file EXPECTED OUTPUT
|
test_expect_equal_file EXPECTED OUTPUT
|
||||||
|
|
||||||
|
test_begin_subtest "get top level messages with closed database"
|
||||||
|
cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR}
|
||||||
|
{
|
||||||
|
notmuch_messages_t *messages;
|
||||||
|
messages = notmuch_thread_get_toplevel_messages (thread);
|
||||||
|
printf("%d\n%d\n", thread != NULL, messages != NULL);
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
cat <<EOF > EXPECTED
|
||||||
|
== stdout ==
|
||||||
|
1
|
||||||
|
1
|
||||||
|
== stderr ==
|
||||||
|
EOF
|
||||||
|
test_expect_equal_file EXPECTED OUTPUT
|
||||||
|
|
||||||
|
test_begin_subtest "iterate over level messages with closed database"
|
||||||
|
cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR}
|
||||||
|
{
|
||||||
|
notmuch_messages_t *messages;
|
||||||
|
for (messages = notmuch_thread_get_toplevel_messages (thread);
|
||||||
|
notmuch_messages_valid (messages);
|
||||||
|
notmuch_messages_move_to_next (messages)) {
|
||||||
|
notmuch_message_t *message = notmuch_messages_get (messages);
|
||||||
|
const char *mid = notmuch_message_get_message_id (message);
|
||||||
|
printf("%s\n", mid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
cat <<EOF > EXPECTED
|
||||||
|
== stdout ==
|
||||||
|
20091117190054.GU3165@dottiness.seas.harvard.edu
|
||||||
|
== stderr ==
|
||||||
|
EOF
|
||||||
|
test_expect_equal_file EXPECTED OUTPUT
|
||||||
|
|
||||||
|
test_begin_subtest "iterate over level messages with closed database"
|
||||||
|
cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR}
|
||||||
|
{
|
||||||
|
notmuch_messages_t *messages;
|
||||||
|
for (messages = notmuch_thread_get_toplevel_messages (thread);
|
||||||
|
notmuch_messages_valid (messages);
|
||||||
|
notmuch_messages_move_to_next (messages)) {
|
||||||
|
notmuch_message_t *message = notmuch_messages_get (messages);
|
||||||
|
const char *mid = notmuch_message_get_message_id (message);
|
||||||
|
printf("%s\n", mid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
cat <<EOF > EXPECTED
|
||||||
|
== stdout ==
|
||||||
|
20091117190054.GU3165@dottiness.seas.harvard.edu
|
||||||
|
== stderr ==
|
||||||
|
EOF
|
||||||
|
test_expect_equal_file EXPECTED OUTPUT
|
||||||
|
|
||||||
|
test_begin_subtest "iterate over replies with closed database"
|
||||||
|
cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR}
|
||||||
|
{
|
||||||
|
notmuch_messages_t *messages = notmuch_thread_get_toplevel_messages (thread);
|
||||||
|
notmuch_message_t *message = notmuch_messages_get (messages);
|
||||||
|
notmuch_messages_t *replies;
|
||||||
|
for (replies = notmuch_message_get_replies (message);
|
||||||
|
notmuch_messages_valid (replies);
|
||||||
|
notmuch_messages_move_to_next (replies)) {
|
||||||
|
notmuch_message_t *message = notmuch_messages_get (replies);
|
||||||
|
const char *mid = notmuch_message_get_message_id (message);
|
||||||
|
|
||||||
|
printf("%s\n", mid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
cat <<EOF > EXPECTED
|
||||||
|
== stdout ==
|
||||||
|
87iqd9rn3l.fsf@vertex.dottedmag
|
||||||
|
87ocn0qh6d.fsf@yoom.home.cworth.org
|
||||||
|
== stderr ==
|
||||||
|
EOF
|
||||||
|
test_expect_equal_file EXPECTED OUTPUT
|
||||||
|
|
||||||
test_done
|
test_done
|
||||||
|
|
Loading…
Reference in a new issue