X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=test%2FT035-read-config.sh;h=d015e073f67c09d3edfec4697cb57fe094327d0f;hb=6c28039ebba0a363320e9b7d194b86b53703015f;hp=6cc4da8d1d45ed7a0b8a9f839cc51526a2bfc8d6;hpb=d613d10ddd5948b4fa5a186fc54752047b25023d;p=notmuch diff --git a/test/T035-read-config.sh b/test/T035-read-config.sh index 6cc4da8d..d015e073 100755 --- a/test/T035-read-config.sh +++ b/test/T035-read-config.sh @@ -368,4 +368,35 @@ notmuch address --output=sender query:$query_name | sort >> OUTPUT restore_config test_expect_equal_file EXPECTED OUTPUT +test_begin_subtest "show with alternate config" +backup_database +cp notmuch-config alt-config +notmuch --config=alt-config config set search.exclude_tags foobar17 +notmuch tag -- +foobar17 '*' +output=$(notmuch --config=alt-config show '*' && echo OK) +restore_database +test_expect_equal "$output" "OK" + +test_begin_subtest "show with alternate config (xdg)" +test_subtest_known_broken +backup_database +notmuch tag -- +foobar17 '*' +xdg_config +notmuch --config=${CONFIG_PATH} config set search.exclude_tags foobar17 +output=$(notmuch show '*' && echo OK) +restore_database +restore_config +test_expect_equal "$output" "OK" + +test_begin_subtest "show with alternate config (xdg+profile)" +test_subtest_known_broken +backup_database +notmuch tag -- +foobar17 '*' +xdg_config foobar17 +notmuch --config=${CONFIG_PATH} config set search.exclude_tags foobar17 +output=$(notmuch show '*' && echo OK) +restore_database +restore_config +test_expect_equal "$output" "OK" + test_done