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
|
|
|
|
|
|
|
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-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
|
|
|
|
maildir.synchronize_flags=true
|
|
|
|
new.ignore=
|
|
|
|
new.tags=unread;inbox;
|
|
|
|
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
|
|
|
|
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
|
|
|
|
test_begin_subtest "Relative database path expanded in open"
|
2018-09-08 13:49:41 +02:00
|
|
|
notmuch config set database.path Maildir
|
2021-02-13 14:01:50 +01:00
|
|
|
path=$(notmuch config get database.path)
|
|
|
|
count=$(notmuch count '*')
|
|
|
|
test_expect_equal "${path} ${count}" \
|
|
|
|
"Maildir 52"
|
2018-09-08 13:49:41 +02:00
|
|
|
|
2012-04-14 03:41:03 +02:00
|
|
|
test_done
|