]> git.notmuchmail.org Git - notmuch/blob - test/T640-database-modified.sh
cli/show: list all filenames of a message in the formatted output
[notmuch] / test / T640-database-modified.sh
1 #!/usr/bin/env bash
2 test_description="DatabaseModifiedError handling"
3 . ./test-lib.sh || exit 1
4
5 # add enough messages to trigger the exception
6 add_email_corpus
7
8 test_begin_subtest "catching DatabaseModifiedError in _notmuch_message_ensure_metadata"
9 # it seems to need to be an early document to trigger the exception
10 first_id=$(notmuch search --output=messages '*'| head -1 | sed s/^id://)
11
12 test_C ${MAIL_DIR} <<EOF
13 #include <unistd.h>
14 #include <stdlib.h>
15 #include <notmuch-test.h>
16 #include <talloc.h>
17 #include <assert.h>
18 int
19 main (int argc, char **argv)
20 {
21     const char *path = argv[1];
22
23     notmuch_database_t *rw_db, *ro_db;
24     notmuch_messages_t *messages;
25     notmuch_message_t *message, *ro_message;
26     notmuch_query_t *query;
27     notmuch_tags_t *tags;
28
29     EXPECT0 (notmuch_database_open (path, NOTMUCH_DATABASE_MODE_READ_ONLY, &ro_db));
30     assert(ro_db);
31
32     EXPECT0 (notmuch_database_find_message (ro_db, "${first_id}", &ro_message));
33     assert(ro_message);
34
35     EXPECT0 (notmuch_database_open (path, NOTMUCH_DATABASE_MODE_READ_WRITE, &rw_db));
36     query = notmuch_query_create(rw_db, "");
37     EXPECT0 (notmuch_query_search_messages_st (query, &messages));
38
39     for (int count=0;
40          notmuch_messages_valid (messages);
41          notmuch_messages_move_to_next (messages), count++) {
42         message = notmuch_messages_get (messages);
43         for (int i=0; i<200; i++) {
44             char *tag_str = talloc_asprintf(rw_db, "%d", i);
45             EXPECT0 (notmuch_message_add_tag (message, tag_str));
46             talloc_free (tag_str);
47         }
48     }
49
50     notmuch_database_close (rw_db);
51
52     tags = notmuch_message_get_tags (ro_message);
53     if (tags)
54         printf("SUCCESS\n");
55     return 0;
56 }
57 EOF
58
59 cat <<'EOF' >EXPECTED
60 == stdout ==
61 SUCCESS
62 == stderr ==
63 EOF
64 test_expect_equal_file EXPECTED OUTPUT
65
66 test_done