2012-04-14 03:41:03 +02:00
|
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
|
|
test_description='"notmuch config"'
|
2017-09-25 22:38:19 +02:00
|
|
|
|
. $(dirname "$0")/test-lib.sh || exit 1
|
2012-04-14 03:41:03 +02:00
|
|
|
|
|
2023-09-15 14:50:01 +02:00
|
|
|
|
cp notmuch-config initial-config
|
|
|
|
|
|
2012-04-14 03:41:03 +02:00
|
|
|
|
test_begin_subtest "Get string value"
|
|
|
|
|
test_expect_equal "$(notmuch config get user.name)" "Notmuch Test Suite"
|
|
|
|
|
|
|
|
|
|
test_begin_subtest "Get list value"
|
2021-02-13 14:01:50 +01:00
|
|
|
|
cat <<EOF > EXPECTED
|
|
|
|
|
inbox
|
2012-04-14 03:41:03 +02:00
|
|
|
|
unread
|
2021-02-13 14:01:50 +01:00
|
|
|
|
EOF
|
|
|
|
|
notmuch config get new.tags | sort > OUTPUT
|
|
|
|
|
test_expect_equal_file EXPECTED OUTPUT
|
2012-04-14 03:41:03 +02:00
|
|
|
|
|
|
|
|
|
test_begin_subtest "Set string value"
|
|
|
|
|
notmuch config set foo.string "this is a string value"
|
|
|
|
|
test_expect_equal "$(notmuch config get foo.string)" "this is a string value"
|
|
|
|
|
|
|
|
|
|
test_begin_subtest "Set string value again"
|
|
|
|
|
notmuch config set foo.string "this is another string value"
|
|
|
|
|
test_expect_equal "$(notmuch config get foo.string)" "this is another string value"
|
|
|
|
|
|
|
|
|
|
test_begin_subtest "Set list value"
|
|
|
|
|
notmuch config set foo.list this "is a" "list value"
|
|
|
|
|
test_expect_equal "$(notmuch config get foo.list)" "\
|
|
|
|
|
this
|
|
|
|
|
is a
|
|
|
|
|
list value"
|
|
|
|
|
|
|
|
|
|
test_begin_subtest "Set list value again"
|
|
|
|
|
notmuch config set foo.list this "is another" "list value"
|
|
|
|
|
test_expect_equal "$(notmuch config get foo.list)" "\
|
|
|
|
|
this
|
|
|
|
|
is another
|
|
|
|
|
list value"
|
|
|
|
|
|
|
|
|
|
test_begin_subtest "Remove key"
|
|
|
|
|
notmuch config set foo.remove baz
|
|
|
|
|
notmuch config set foo.remove
|
|
|
|
|
test_expect_equal "$(notmuch config get foo.remove)" ""
|
|
|
|
|
|
|
|
|
|
test_begin_subtest "Remove non-existent key"
|
|
|
|
|
notmuch config set foo.nonexistent
|
|
|
|
|
test_expect_equal "$(notmuch config get foo.nonexistent)" ""
|
|
|
|
|
|
2012-04-14 03:41:04 +02:00
|
|
|
|
test_begin_subtest "List all items"
|
2021-02-14 12:54:22 +01:00
|
|
|
|
notmuch config list 2>&1 | notmuch_config_sanitize > OUTPUT
|
2016-03-22 11:54:52 +01:00
|
|
|
|
cat <<EOF > EXPECTED
|
2016-03-22 11:54:45 +01:00
|
|
|
|
built_with.compact=something
|
2016-03-22 11:54:52 +01:00
|
|
|
|
built_with.field_processor=something
|
2016-06-26 17:29:45 +02:00
|
|
|
|
built_with.retry_lock=something
|
2021-10-30 20:49:20 +02:00
|
|
|
|
built_with.sexp_queries=something
|
2021-05-21 17:54:10 +02:00
|
|
|
|
database.autocommit=8000
|
2021-02-14 12:54:22 +01:00
|
|
|
|
database.mail_root=MAIL_DIR
|
|
|
|
|
database.path=MAIL_DIR
|
|
|
|
|
foo.list=this;is another;list value;
|
|
|
|
|
foo.string=this is another string value
|
2023-01-06 01:02:04 +01:00
|
|
|
|
index.as_text=
|
2021-02-14 12:54:22 +01:00
|
|
|
|
maildir.synchronize_flags=true
|
|
|
|
|
new.ignore=
|
2021-02-14 14:32:41 +01:00
|
|
|
|
new.tags=unread;inbox
|
2023-12-22 22:06:34 +01:00
|
|
|
|
search.authors_matched_separator=|
|
|
|
|
|
search.authors_separator=,
|
2021-02-14 12:54:22 +01:00
|
|
|
|
search.exclude_tags=
|
|
|
|
|
user.name=Notmuch Test Suite
|
|
|
|
|
user.other_email=test_suite_other@notmuchmail.org;test_suite@otherdomain.org
|
|
|
|
|
user.primary_email=test_suite@notmuchmail.org
|
2016-03-22 11:54:52 +01:00
|
|
|
|
EOF
|
|
|
|
|
test_expect_equal_file EXPECTED OUTPUT
|
2012-04-14 03:41:04 +02:00
|
|
|
|
|
2021-09-30 20:28:34 +02:00
|
|
|
|
test_begin_subtest "Round trip config item with leading spaces"
|
|
|
|
|
test_subtest_known_broken
|
|
|
|
|
notmuch config set foo.bar " thing"
|
|
|
|
|
output=$(notmuch config get foo.bar)
|
|
|
|
|
test_expect_equal "${output}" " thing"
|
|
|
|
|
|
|
|
|
|
test_begin_subtest "Round trip config item with leading tab"
|
|
|
|
|
test_subtest_known_broken
|
|
|
|
|
notmuch config set foo.bar " thing"
|
|
|
|
|
output=$(notmuch config get foo.bar)
|
|
|
|
|
test_expect_equal "${output}" " thing"
|
|
|
|
|
|
|
|
|
|
test_begin_subtest "Round trip config item with embedded tab"
|
|
|
|
|
notmuch config set foo.bar "thing other"
|
|
|
|
|
output=$(notmuch config get foo.bar)
|
|
|
|
|
test_expect_equal "${output}" "thing other"
|
|
|
|
|
|
|
|
|
|
test_begin_subtest "Round trip config item with embedded backslash"
|
|
|
|
|
notmuch config set foo.bar 'thing\other'
|
|
|
|
|
output=$(notmuch config get foo.bar)
|
|
|
|
|
test_expect_equal "${output}" "thing\other"
|
|
|
|
|
|
|
|
|
|
test_begin_subtest "Round trip config item with embedded NL/CR"
|
|
|
|
|
notmuch config set foo.bar 'thing
|
|
|
|
|
other'
|
|
|
|
|
output=$(notmuch config get foo.bar)
|
|
|
|
|
test_expect_equal "${output}" "thing
|
|
|
|
|
other"
|
|
|
|
|
|
2013-04-07 19:15:02 +02:00
|
|
|
|
test_begin_subtest "Top level --config=FILE option"
|
|
|
|
|
cp "${NOTMUCH_CONFIG}" alt-config
|
|
|
|
|
notmuch --config=alt-config config set user.name "Another Name"
|
|
|
|
|
test_expect_equal "$(notmuch --config=alt-config config get user.name)" \
|
|
|
|
|
"Another Name"
|
|
|
|
|
|
2017-07-01 17:18:45 +02:00
|
|
|
|
test_begin_subtest "Top level --config:FILE option"
|
|
|
|
|
test_expect_equal "$(notmuch --config:alt-config config get user.name)" \
|
|
|
|
|
"Another Name"
|
|
|
|
|
|
|
|
|
|
test_begin_subtest "Top level --config<space>FILE option"
|
2021-01-16 02:29:17 +01:00
|
|
|
|
test_expect_equal "$(notmuch --config alt-config config get user.name)" \
|
2017-07-01 17:18:45 +02:00
|
|
|
|
"Another Name"
|
|
|
|
|
|
2013-04-07 19:15:02 +02:00
|
|
|
|
test_begin_subtest "Top level --config=FILE option changed the right file"
|
|
|
|
|
test_expect_equal "$(notmuch config get user.name)" \
|
|
|
|
|
"Notmuch Test Suite"
|
|
|
|
|
|
|
|
|
|
test_begin_subtest "Read config file through a symlink"
|
|
|
|
|
ln -s alt-config alt-config-link
|
|
|
|
|
test_expect_equal "$(notmuch --config=alt-config-link config get user.name)" \
|
|
|
|
|
"Another Name"
|
|
|
|
|
|
|
|
|
|
test_begin_subtest "Write config file through a symlink"
|
|
|
|
|
notmuch --config=alt-config-link config set user.name "Link Name"
|
|
|
|
|
test_expect_equal "$(notmuch --config=alt-config-link config get user.name)" \
|
|
|
|
|
"Link Name"
|
|
|
|
|
|
|
|
|
|
test_begin_subtest "Writing config file through symlink follows symlink"
|
|
|
|
|
test_expect_equal "$(readlink alt-config-link)" "alt-config"
|
|
|
|
|
|
2021-02-13 14:01:50 +01:00
|
|
|
|
test_begin_subtest "Round trip arbitrary key"
|
|
|
|
|
key=g${RANDOM}.m${RANDOM}
|
|
|
|
|
value=${RANDOM}
|
|
|
|
|
notmuch config set ${key} ${value}
|
|
|
|
|
output=$(notmuch config get ${key})
|
|
|
|
|
test_expect_equal "${output}" "${value}"
|
|
|
|
|
|
|
|
|
|
test_begin_subtest "Clear arbitrary key"
|
|
|
|
|
notmuch config set ${key}
|
|
|
|
|
output=$(notmuch config get ${key})
|
|
|
|
|
test_expect_equal "${output}" ""
|
|
|
|
|
|
|
|
|
|
db_path=${HOME}/database-path
|
|
|
|
|
|
2018-09-08 13:49:41 +02:00
|
|
|
|
test_begin_subtest "Absolute database path returned"
|
|
|
|
|
notmuch config set database.path ${HOME}/Maildir
|
|
|
|
|
test_expect_equal "$(notmuch config get database.path)" \
|
|
|
|
|
"${HOME}/Maildir"
|
|
|
|
|
|
2021-02-13 14:01:50 +01:00
|
|
|
|
ln -s `pwd`/mail home/Maildir
|
|
|
|
|
add_email_corpus
|
2021-05-07 02:16:38 +02:00
|
|
|
|
test_begin_subtest "Relative database path expanded"
|
2018-09-08 13:49:41 +02:00
|
|
|
|
notmuch config set database.path Maildir
|
2021-05-07 02:16:38 +02:00
|
|
|
|
path=$(notmuch config get database.path | notmuch_dir_sanitize)
|
2021-02-13 14:01:50 +01:00
|
|
|
|
count=$(notmuch count '*')
|
|
|
|
|
test_expect_equal "${path} ${count}" \
|
2021-05-07 02:16:38 +02:00
|
|
|
|
"CWD/home/Maildir 52"
|
2018-09-08 13:49:41 +02:00
|
|
|
|
|
2021-02-19 13:41:36 +01:00
|
|
|
|
test_begin_subtest "Add config to database"
|
|
|
|
|
notmuch new
|
|
|
|
|
key=g${RANDOM}.m${RANDOM}
|
|
|
|
|
value=${RANDOM}
|
|
|
|
|
notmuch config set --database ${key} ${value}
|
|
|
|
|
notmuch dump --include=config > OUTPUT
|
|
|
|
|
cat <<EOF > EXPECTED
|
|
|
|
|
#notmuch-dump batch-tag:3 config
|
|
|
|
|
#@ ${key} ${value}
|
|
|
|
|
EOF
|
|
|
|
|
test_expect_equal_file EXPECTED OUTPUT
|
|
|
|
|
|
|
|
|
|
test_begin_subtest "Roundtrip config to/from database"
|
|
|
|
|
notmuch new
|
|
|
|
|
key=g${RANDOM}.m${RANDOM}
|
|
|
|
|
value=${RANDOM}
|
|
|
|
|
notmuch config set --database ${key} ${value}
|
|
|
|
|
output=$(notmuch config get ${key})
|
|
|
|
|
test_expect_equal "${output}" "${value}"
|
|
|
|
|
|
2021-07-18 19:58:21 +02:00
|
|
|
|
test_begin_subtest "set built_with.* yields error"
|
|
|
|
|
test_expect_code 1 "notmuch config set built_with.compact false"
|
|
|
|
|
|
|
|
|
|
test_begin_subtest "get built_with.{compact,field_processor} prints true"
|
|
|
|
|
for key in compact field_processor; do
|
|
|
|
|
notmuch config get built_with.${key}
|
|
|
|
|
done > OUTPUT
|
|
|
|
|
cat <<EOF > EXPECTED
|
|
|
|
|
true
|
|
|
|
|
true
|
|
|
|
|
EOF
|
|
|
|
|
test_expect_equal_file EXPECTED OUTPUT
|
|
|
|
|
|
|
|
|
|
test_begin_subtest "get built_with.nonexistent prints false"
|
|
|
|
|
output=$(notmuch config get built_with.nonexistent)
|
|
|
|
|
test_expect_equal "$output" "false"
|
|
|
|
|
|
2023-09-15 14:50:01 +02:00
|
|
|
|
test_begin_subtest "Bad utf8 reported as error"
|
|
|
|
|
cp initial-config bad-config
|
|
|
|
|
printf '[query]\nq3=from:\xff\n' >>bad-config
|
|
|
|
|
test_expect_code 1 "notmuch --config=./bad-config config list"
|
|
|
|
|
|
2023-09-15 14:50:03 +02:00
|
|
|
|
test_begin_subtest "Specific error message about bad utf8"
|
|
|
|
|
notmuch --config=./bad-config config list 2>ERRORS
|
|
|
|
|
cat <<EOF > EXPECTED
|
|
|
|
|
GLib: Key file contains key “q3” with value “from:<3A>” which is not UTF-8
|
|
|
|
|
Error: unable to load config file.
|
|
|
|
|
EOF
|
|
|
|
|
test_expect_equal_file EXPECTED ERRORS
|
|
|
|
|
|
2012-04-14 03:41:03 +02:00
|
|
|
|
test_done
|