]> git.notmuchmail.org Git - notmuch/blob - test/T640-database-modified.sh
lib/database: delete stemmer on destroy
[notmuch] / test / T640-database-modified.sh
1 #!/usr/bin/env bash
2 test_description="DatabaseModifiedError handling"
3 . $(dirname "$0")/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 <notmuch-test.h>
14
15 int
16 main (int argc, char **argv)
17 {
18     const char *path = argv[1];
19
20     notmuch_database_t *rw_db, *ro_db;
21     notmuch_messages_t *messages;
22     notmuch_message_t *message, *ro_message;
23     notmuch_query_t *query;
24     notmuch_tags_t *tags;
25     int i;
26
27     EXPECT0 (notmuch_database_open (path, NOTMUCH_DATABASE_MODE_READ_ONLY, &ro_db));
28     assert(ro_db);
29
30     EXPECT0 (notmuch_database_find_message (ro_db, "${first_id}", &ro_message));
31     assert(ro_message);
32
33     EXPECT0 (notmuch_database_open (path, NOTMUCH_DATABASE_MODE_READ_WRITE, &rw_db));
34     query = notmuch_query_create(rw_db, "");
35     EXPECT0 (notmuch_query_search_messages (query, &messages));
36
37     for (;
38          notmuch_messages_valid (messages);
39          notmuch_messages_move_to_next (messages)) {
40         message = notmuch_messages_get (messages);
41         for (i=0; i<200; i++) {
42             char *tag_str = talloc_asprintf(rw_db, "%d", i);
43             EXPECT0 (notmuch_message_add_tag (message, tag_str));
44             talloc_free (tag_str);
45         }
46     }
47
48     notmuch_database_close (rw_db);
49
50     tags = notmuch_message_get_tags (ro_message);
51     if (tags)
52         printf("SUCCESS\n");
53     return 0;
54 }
55 EOF
56
57 cat <<'EOF' >EXPECTED
58 == stdout ==
59 SUCCESS
60 == stderr ==
61 EOF
62 test_expect_equal_file EXPECTED OUTPUT
63
64 test_done