]> git.notmuchmail.org Git - notmuch/blob - test/compact
5bb5cea443df4d162d46c59027027509c6bd2ad2
[notmuch] / test / compact
1 #!/usr/bin/env bash
2 test_description='"notmuch compact"'
3 . ./test-lib.sh
4
5 add_message '[subject]=One'
6 add_message '[subject]=Two'
7 add_message '[subject]=Three'
8
9 notmuch tag +tag1 \*
10 notmuch tag +tag2 subject:Two
11 notmuch tag -tag1 +tag3 subject:Three
12
13 test_expect_success "Running compact" "notmuch compact"
14
15 test_begin_subtest "Compact preserves database"
16 output=$(notmuch search \* | notmuch_search_sanitize)
17 test_expect_equal "$output" "\
18 thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; One (inbox tag1 unread)
19 thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; Two (inbox tag1 tag2 unread)
20 thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; Three (inbox tag3 unread)"
21
22 test_begin_subtest "Restoring backup"
23 rm -Rf ${TEST_TMPDIR}/mail/xapian
24 mv ${TEST_TMPDIR}/mail/xapian.old ${TEST_TMPDIR}/mail/xapian
25
26 output=$(notmuch search \* | notmuch_search_sanitize)
27 test_expect_equal "$output" "\
28 thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; One (inbox tag1 unread)
29 thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; Two (inbox tag1 tag2 unread)
30 thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; Three (inbox tag3 unread)"
31
32 test_done