test: display key name in property tests

To make the tests a bit easier to understand.
This commit is contained in:
Kevin Boulain 2023-03-29 18:13:29 +02:00 committed by David Bremner
parent 568f6bc3c2
commit ce59df5296

View file

@ -12,7 +12,7 @@ void print_properties (notmuch_message_t *message, const char *prefix, notmuch_b
notmuch_message_properties_t *list; notmuch_message_properties_t *list;
for (list = notmuch_message_get_properties (message, prefix, exact); for (list = notmuch_message_get_properties (message, prefix, exact);
notmuch_message_properties_valid (list); notmuch_message_properties_move_to_next (list)) { notmuch_message_properties_valid (list); notmuch_message_properties_move_to_next (list)) {
printf("%s\n", notmuch_message_properties_value(list)); printf("%s = %s\n", notmuch_message_properties_key(list), notmuch_message_properties_value(list));
} }
notmuch_message_properties_destroy (list); notmuch_message_properties_destroy (list);
} }
@ -157,7 +157,7 @@ print_properties (message, "testkey1", TRUE);
EOF EOF
cat <<'EOF' >EXPECTED cat <<'EOF' >EXPECTED
== stdout == == stdout ==
testvalue1 testkey1 = testvalue1
== stderr == == stderr ==
EOF EOF
test_expect_equal_file EXPECTED OUTPUT test_expect_equal_file EXPECTED OUTPUT
@ -171,10 +171,10 @@ print_properties (message, "testkey1", TRUE);
EOF EOF
cat <<'EOF' >EXPECTED cat <<'EOF' >EXPECTED
== stdout == == stdout ==
alice testkey1 = alice
bob testkey1 = bob
testvalue1 testkey1 = testvalue1
testvalue2 testkey1 = testvalue2
== stderr == == stderr ==
EOF EOF
test_expect_equal_file EXPECTED OUTPUT test_expect_equal_file EXPECTED OUTPUT
@ -200,13 +200,13 @@ awk ' NR == 1 { print; next } \
rm unsorted_OUTPUT rm unsorted_OUTPUT
cat <<'EOF' >EXPECTED cat <<'EOF' >EXPECTED
== stdout == == stdout ==
alice testkey1 = alice
bob testkey1 = bob
testvalue1 testkey1 = testvalue1
testvalue2 testkey1 = testvalue2
alice3 testkey3 = alice3
bob3 testkey3 = bob3
testvalue3 testkey3 = testvalue3
== stderr == == stderr ==
EOF EOF
test_expect_equal_file EXPECTED OUTPUT test_expect_equal_file EXPECTED OUTPUT