From: David Bremner Date: Fri, 24 Jul 2020 11:14:03 +0000 (-0300) Subject: test: add regression tests for n_t_get_{authors, subject} X-Git-Tag: 0.31_rc0~69 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=c5017c76d939610860a64906be77fe62a64eae96 test: add regression tests for n_t_get_{authors, subject} This is returning explicitely cached data, so no database access is needed. --- diff --git a/test/T568-lib-thread.sh b/test/T568-lib-thread.sh index c7d4f26b..0f9fa443 100755 --- a/test/T568-lib-thread.sh +++ b/test/T568-lib-thread.sh @@ -198,4 +198,37 @@ yunaayketfm.fsf@aiko.keithp.com EOF test_expect_equal_file EXPECTED OUTPUT +test_begin_subtest "get authors from closed database" +cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR} + { + const char *authors; + authors = notmuch_thread_get_authors (thread); + printf("%d\n%s\n", thread != NULL, authors); + } +EOF +cat < EXPECTED +== stdout == +1 +Lars Kellogg-Stedman, Mikhail Gusarov, Keith Packard, Carl Worth +== stderr == +EOF +test_expect_equal_file EXPECTED OUTPUT + +test_begin_subtest "get subject from closed database" +cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR} + { + const char *subject; + subject = notmuch_thread_get_subject (thread); + printf("%d\n%s\n", thread != NULL, subject); + } +EOF +cat < EXPECTED +== stdout == +1 +[notmuch] Working with Maildir storage? +== stderr == +EOF +test_expect_equal_file EXPECTED OUTPUT + + test_done