mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 20:08:10 +01:00
test: add known broken test for conflict with database parameter
This is arguably user error: having configuration file with bad settings in it (and/or having a bad NOTMUCH_CONFIG environment variable). On the other hand returning a different path than was actually opened is definitely a bug.
This commit is contained in:
parent
59a778ae4b
commit
378415a557
1 changed files with 22 additions and 0 deletions
|
@ -952,4 +952,26 @@ db == NULL: 1
|
||||||
EOF
|
EOF
|
||||||
test_expect_equal_file EXPECTED OUTPUT
|
test_expect_equal_file EXPECTED OUTPUT
|
||||||
|
|
||||||
|
test_begin_subtest "open: database parameter overrides implicit config"
|
||||||
|
test_subtest_known_broken
|
||||||
|
notmuch config set database.path ${MAIL_DIR}/nonexistent
|
||||||
|
cat c_head3 - c_tail3 <<'EOF' | test_C ${MAIL_DIR}
|
||||||
|
const char *path = NULL;
|
||||||
|
notmuch_status_t st = notmuch_database_open_with_config(argv[1],
|
||||||
|
NOTMUCH_DATABASE_MODE_READ_ONLY,
|
||||||
|
NULL, NULL, &db, NULL);
|
||||||
|
printf ("status: %d\n", st);
|
||||||
|
path = notmuch_database_get_path (db);
|
||||||
|
printf ("path: %s\n", path ? path : "(null)");
|
||||||
|
EOF
|
||||||
|
cat <<EOF> EXPECTED
|
||||||
|
== stdout ==
|
||||||
|
status: 0
|
||||||
|
path: MAIL_DIR
|
||||||
|
db == NULL: 0
|
||||||
|
== stderr ==
|
||||||
|
EOF
|
||||||
|
notmuch_dir_sanitize < OUTPUT > OUTPUT.clean
|
||||||
|
test_expect_equal_file EXPECTED OUTPUT.clean
|
||||||
|
|
||||||
test_done
|
test_done
|
||||||
|
|
Loading…
Reference in a new issue