2 test_description="DatabaseModifiedError handling"
3 . $(dirname "$0")/test-lib.sh || exit 1
5 # add enough messages to trigger the exception
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://)
12 test_C ${MAIL_DIR} <<EOF
13 #include <notmuch-test.h>
16 main (int argc, char **argv)
18 const char *path = argv[1];
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;
27 EXPECT0 (notmuch_database_open (path, NOTMUCH_DATABASE_MODE_READ_ONLY, &ro_db));
30 EXPECT0 (notmuch_database_find_message (ro_db, "${first_id}", &ro_message));
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));
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);
48 notmuch_database_close (rw_db);
50 tags = notmuch_message_get_tags (ro_message);
62 test_expect_equal_file EXPECTED OUTPUT