mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
8bf3311084
Including the relative path that was broken until a recent commit.
76 lines
2.3 KiB
Bash
Executable file
76 lines
2.3 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
test_description='database upgrades'
|
|
. $(dirname "$0")/test-lib.sh || exit 1
|
|
|
|
test_require_external_prereq xapian-metadata
|
|
|
|
XAPIAN_PATH=$MAIL_DIR/.notmuch/xapian
|
|
BACKUP_PATH=$MAIL_DIR/.notmuch/backups
|
|
|
|
delete_feature () {
|
|
local key=$1
|
|
features=$(xapian-metadata get $XAPIAN_PATH features | grep -v "^$key")
|
|
xapian-metadata set $XAPIAN_PATH features "$features"
|
|
}
|
|
|
|
add_email_corpus
|
|
|
|
for key in 'multiple paths per message' \
|
|
'relative directory paths' \
|
|
'exact folder:/path: search' \
|
|
'mail documents for missing messages' \
|
|
'modification tracking'; do
|
|
backup_database
|
|
test_begin_subtest "upgrade is triggered by missing '$key'"
|
|
delete_feature "$key"
|
|
output=$(notmuch new | grep Welcome)
|
|
test_expect_equal \
|
|
"$output" \
|
|
"Welcome to a new version of notmuch! Your database will now be upgraded."
|
|
|
|
restore_database
|
|
|
|
backup_database
|
|
test_begin_subtest "backup can be restored ['$key']"
|
|
notmuch dump > BEFORE
|
|
delete_feature "$key"
|
|
notmuch new
|
|
notmuch tag -inbox '*'
|
|
dump_file=$(echo ${BACKUP_PATH}/dump*)
|
|
notmuch restore --input=$dump_file
|
|
notmuch dump > AFTER
|
|
test_expect_equal_file BEFORE AFTER
|
|
restore_database
|
|
done
|
|
|
|
for key in 'from/subject/message-ID in database' \
|
|
'indexed MIME types' \
|
|
'index body and headers separately'; do
|
|
backup_database
|
|
test_begin_subtest "upgrade not triggered by missing '$key'"
|
|
delete_feature "$key"
|
|
output=$(notmuch new | grep Welcome)
|
|
test_expect_equal "$output" ""
|
|
restore_database
|
|
done
|
|
|
|
test_begin_subtest "upgrade with configured backup dir"
|
|
notmuch config set database.backup_dir ${HOME}/backups
|
|
delete_feature 'modification tracking'
|
|
notmuch new | grep Backing | notmuch_dir_sanitize | sed 's/dump-[0-9T]*/dump-XXX/' > OUTPUT
|
|
cat <<EOF > EXPECTED
|
|
Backing up tags to CWD/home/backups/dump-XXX.gz...
|
|
EOF
|
|
test_expect_equal_file EXPECTED OUTPUT
|
|
|
|
test_begin_subtest "upgrade with relative configured backup dir"
|
|
notmuch config set database.backup_dir ${HOME}/backups
|
|
delete_feature 'modification tracking'
|
|
notmuch new | grep Backing | notmuch_dir_sanitize | sed 's/dump-[0-9T]*/dump-XXX/' > OUTPUT
|
|
cat <<EOF > EXPECTED
|
|
Backing up tags to CWD/home/backups/dump-XXX.gz...
|
|
EOF
|
|
test_expect_equal_file EXPECTED OUTPUT
|
|
|
|
|
|
test_done
|