aboutsummaryrefslogtreecommitdiff
path: root/test/T562-lib-database.sh
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2020-08-01 09:26:03 -0300
committerDavid Bremner <david@tethera.net>2020-08-03 21:05:29 -0300
commit0e4695abaa7bda20d92813571ad53fb141f3e38c (patch)
treebd6212055b44a163588eea0dc8afc892d3e3270a /test/T562-lib-database.sh
parente3f88436b7850ac04468416223e136eaaca4aee3 (diff)
test: regression tests for n_indexopts_{get,set}_decrypt_policy
The main criteria is that they don't crash. Working with a closed database is a bonus.
Diffstat (limited to 'test/T562-lib-database.sh')
-rwxr-xr-xtest/T562-lib-database.sh39
1 files changed, 39 insertions, 0 deletions
diff --git a/test/T562-lib-database.sh b/test/T562-lib-database.sh
index ce62eaa8..d6097418 100755
--- a/test/T562-lib-database.sh
+++ b/test/T562-lib-database.sh
@@ -388,4 +388,43 @@ cat <<EOF > EXPECTED
EOF
test_expect_equal_file EXPECTED OUTPUT
+test_begin_subtest "get decryption policy from closed database"
+cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR}
+ {
+ notmuch_indexopts_t *result;
+ result = notmuch_database_get_default_indexopts (db);
+ EXPECT0(notmuch_database_close (db));
+ notmuch_decryption_policy_t policy = notmuch_indexopts_get_decrypt_policy (result);
+ printf ("%d\n", policy == NOTMUCH_DECRYPT_AUTO);
+ notmuch_indexopts_destroy (result);
+ printf ("SUCCESS\n");
+ }
+EOF
+cat <<EOF > EXPECTED
+== stdout ==
+1
+SUCCESS
+== stderr ==
+EOF
+test_expect_equal_file EXPECTED OUTPUT
+
+test_begin_subtest "set decryption policy with closed database"
+cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR}
+ {
+ notmuch_indexopts_t *result;
+ result = notmuch_database_get_default_indexopts (db);
+ EXPECT0(notmuch_database_close (db));
+ notmuch_decryption_policy_t policy = notmuch_indexopts_get_decrypt_policy (result);
+ stat = notmuch_indexopts_set_decrypt_policy (result, policy);
+ printf("%d\n%d\n", policy == NOTMUCH_DECRYPT_AUTO, stat == NOTMUCH_STATUS_SUCCESS);
+ }
+EOF
+cat <<EOF > EXPECTED
+== stdout ==
+1
+1
+== stderr ==
+EOF
+test_expect_equal_file EXPECTED OUTPUT
+
test_done