From: Carl Worth Date: Thu, 4 Feb 2010 16:39:23 +0000 (-0800) Subject: notmuch-test: Allow custom headers when generating messages X-Git-Tag: 0.1~132 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=a821ba57371c43635420b6148713f13a064b83cf notmuch-test: Allow custom headers when generating messages This provides the control that future tests will need, (for example, adding a CC field to ensure proper handling with "notmuch reply", etc.) --- diff --git a/test/notmuch-test b/test/notmuch-test index a06b5f05..bcfb14c8 100755 --- a/test/notmuch-test +++ b/test/notmuch-test @@ -34,12 +34,31 @@ find_notmuch_binary () # # Generate the message in directory 'directory/of/choice' within # the mail store. The directory will be created if necessary. +# +# [body]=text +# +# Text to use as the body of the email message +# +# '[from]="Some User "' +# '[to]="Some User "' +# '[subject]="Subject of email message"' +# +# Values for email headers. If not provided, default values will +# be generated instead. +# +# '[cc]="Some User "' +# [in-reply-to]= +# +# Additional values for email headers. If these are not provided +# then the relevant headers will simply not appear in the +# message. gen_msg_cnt=0 gen_msg_filename="" generate_message () { # This is our (bash-specific) magic for doing named parameters local -A template="($@)" + local additional_headers gen_msg_cnt=$((gen_msg_cnt + 1)) gen_msg_name=msg-$(printf "%03d" $gen_msg_cnt) @@ -51,14 +70,41 @@ generate_message () mkdir -p $(dirname $gen_msg_filename) fi + if [ -z "${template[body]}" ]; then + template[body]="This is just a test message at ${gen_msg_filename}" + fi + + if [ -z "${template[from]}" ]; then + template[from]="Notmuch Test Suite " + fi + + if [ -z "${template[to]}" ]; then + template[to]="Notmuch Test Suite " + fi + + if [ -z "${template[subject]}" ]; then + template[subject]="Test message ${gen_msg_filename}" + fi + + additional_headers="" + if [ ! -z "${template[cc]}" ]; then + additional_headers="Cc: ${template[cc]} +${additional_headers}" + fi + + if [ ! -z "${template[in-reply-to]}" ]; then + additional_headers="In-Reply-To: ${template[in-reply-to]} +${additional_headers}" + fi + cat <$gen_msg_filename -From: Notmuch Test Suite -To: Notmuch Test Suite +From: ${template[from]} +To: ${template[to]} Message-Id: -Subject: Test message ${gen_msg_filename} +Subject: ${template[subject]} Date: Tue, 05 Jan 2010 15:43:57 -0800 - -This is just a test message at ${gen_msg_filename} +${additional_headers} +${template[body]} EOF }