mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
02a2eeb427
The files (test) scripts source (with builtin command `.`) provides information which the scripts depend, and without the `source` to succeed allowing script to continue may lead to dangerous situations (e.g. rm -rf "${undefined_variable}"/*). At the end of all source (.) lines construct ' || exit 1' was added; In our case the script script will exit if it cannot find (or read) the file to be sourced. Additionally script would also exits if the last command of the sourced file exited nonzero.
44 lines
1.6 KiB
Bash
Executable file
44 lines
1.6 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
test_description='"notmuch compact"'
|
|
. ./test-lib.sh || exit 1
|
|
|
|
add_message '[subject]=One'
|
|
add_message '[subject]=Two'
|
|
add_message '[subject]=Three'
|
|
|
|
notmuch tag +tag1 \*
|
|
notmuch tag +tag2 subject:Two
|
|
notmuch tag -tag1 +tag3 subject:Three
|
|
|
|
if [ $NOTMUCH_HAVE_XAPIAN_COMPACT -eq 0 ]; then
|
|
test_begin_subtest "Compact unsupported: error message"
|
|
output=$(notmuch compact --quiet 2>&1)
|
|
test_expect_equal "$output" "notmuch was compiled against a xapian version lacking compaction support.
|
|
Compaction failed: Unsupported operation"
|
|
|
|
test_expect_code 1 "Compact unsupported: status code" "notmuch compact"
|
|
|
|
test_done
|
|
fi
|
|
|
|
test_expect_success "Running compact" "notmuch compact --backup=${TEST_DIRECTORY}/xapian.old"
|
|
|
|
test_begin_subtest "Compact preserves database"
|
|
output=$(notmuch search \* | notmuch_search_sanitize)
|
|
test_expect_equal "$output" "\
|
|
thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; One (inbox tag1 unread)
|
|
thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; Two (inbox tag1 tag2 unread)
|
|
thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; Three (inbox tag3 unread)"
|
|
|
|
test_expect_success 'Restoring Backup' \
|
|
'rm -Rf ${MAIL_DIR}/.notmuch/xapian &&
|
|
mv ${TEST_DIRECTORY}/xapian.old ${MAIL_DIR}/.notmuch/xapian'
|
|
|
|
test_begin_subtest "Checking restored backup"
|
|
output=$(notmuch search \* | notmuch_search_sanitize)
|
|
test_expect_equal "$output" "\
|
|
thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; One (inbox tag1 unread)
|
|
thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; Two (inbox tag1 tag2 unread)
|
|
thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; Three (inbox tag3 unread)"
|
|
|
|
test_done
|