X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/d7a9b5aa35f81e680a54a2f7c2b7dab749812cef..9f7d48c36f01ba29974834cbcdc24e4c2e1f07d9:/test/repl/test-convert diff --git a/test/repl/test-convert b/test/repl/test-convert index 000f46fd..d2d398a7 100755 --- a/test/repl/test-convert +++ b/test/repl/test-convert @@ -20,7 +20,11 @@ actual=`mhpath +`/draft printf 'Local-Mailbox: recipient@example.com' >>"$MH" -# check -convertarg with multiple parts and no additional text in draft +#### Make sure that this works with 7-bit encoding. +LC_ALL=C; export LC_ALL + + +# check -convertarg with multiple parts and additional text in draft cat >"$expected" <<'EOF' From: recipient@example.com To: sender@example.com @@ -74,7 +78,7 @@ require_locale en_US.utf-8 en_US.utf8 LC_ALL=en_US.UTF-8; export LC_ALL -# check -convertarg with multiple parts and additional text in draft +# check -convertarg with multiple parts and no additional text in draft cat >"$expected" <<'EOF' From: recipient@example.com To: sender@example.com @@ -135,6 +139,7 @@ Content-Transfer-Encoding: 8bit sender@example.com writes: +> This is a test. EOF cat >`mhpath new` <<'EOF' @@ -150,7 +155,7 @@ Content-Type: multipart/related; type="text/plain"; boundary="_002_" --_002_ Content-Type: text/plain - +This is a test. --_002_-- @@ -162,4 +167,113 @@ mhbuild "$actual" check "$actual" "$expected" +# check reply to calendar request +cat >"$expected" <<'EOF' +From: recipient@example.com +To: sender@example.com +cc: +Fcc: +outbox +Subject: Re: test iCalendar reply +Comments: In-reply-to sender@example.com + message dated "." +MIME-Version: 1.0 +Content-Type: text/calendar; method="REPLY"; charset="UTF-8" + +BEGIN:VCALENDAR +METHOD:REPLY +PRODID:nmh mhical v0.1 +VERSION:2.0 +BEGIN:VTIMEZONE +TZID:Eastern Standard Time +BEGIN:STANDARD +DTSTART:16010101T020000 +TZOFFSETFROM:-0400 +TZOFFSETTO:-0500 +RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=1SU;BYMONTH=11 +END:STANDARD +BEGIN:DAYLIGHT +DTSTART:16010101T020000 +TZOFFSETFROM:-0500 +TZOFFSETTO:-0400 +RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=2SU;BYMONTH=3 +END:DAYLIGHT +END:VTIMEZONE +BEGIN:VEVENT +ORGANIZER;CN=Requester:MAILTO:requester@example.com +ATTENDEE;PARTSTAT=ACCEPTED;CN=Recip:MAILTO:recipient@example.com +SUMMARY;LANGUAGE=en-US:Accepted: test request +DTSTART;TZID=Eastern Standard Time:20150105T090000 +DTEND;TZID=Eastern Standard Time:20150105T093000 +UID:0123456789 +CLASS:PUBLIC +PRIORITY:5 +TRANSP:OPAQUE +STATUS:CONFIRMED +SEQUENCE:0 +LOCATION;LANGUAGE=en-US: +END:VEVENT +END:VCALENDAR +EOF + +cat >`mhpath new` <<'EOF' +From: sender@example.com +To: recipient@example.com +Subject: test iCalendar reply +Content-Type: text/calendar; charset="UTF-8" +MIME-Version: 1.0 + +BEGIN:VCALENDAR +METHOD:REQUEST +PRODID:test-convert +VERSION:2.0 +BEGIN:VTIMEZONE +TZID:Eastern Standard Time +BEGIN:STANDARD +DTSTART:16010101T020000 +TZOFFSETFROM:-0400 +TZOFFSETTO:-0500 +RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=1SU;BYMONTH=11 +END:STANDARD +BEGIN:DAYLIGHT +DTSTART:16010101T020000 +TZOFFSETFROM:-0500 +TZOFFSETTO:-0400 +RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=2SU;BYMONTH=3 +END:DAYLIGHT +END:VTIMEZONE +BEGIN:VEVENT +ORGANIZER;CN=Requester:MAILTO:requester@example.com +ATTENDEE;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;RSVP=TRUE;CN=Requestee1 + :MAILTO:requestee1@example.com +ATTENDEE;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;RSVP=TRUE;CN=Requestee2 + :MAILTO:requestee2@example.com +ATTENDEE;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;RSVP=TRUE;CN=Requestee3 + :MAILTO:requestee3@example.com +SUMMARY;LANGUAGE=en-US:test request +DTSTART;TZID=Eastern Standard Time:20150105T090000 +DTEND;TZID=Eastern Standard Time:20150105T093000 +UID:0123456789 +CLASS:PUBLIC +PRIORITY:5 +DTSTAMP:20150101T171600Z +TRANSP:OPAQUE +STATUS:CONFIRMED +SEQUENCE:0 +LOCATION;LANGUAGE=en-US: +BEGIN:VALARM +ACTION:DISPLAY +DESCRIPTION:REMINDER +TRIGGER;RELATED=START:-PT15M +END:VALARM +END:VEVENT +END:VCALENDAR +EOF + +actual="$MH_TEST_DIR/test-convert$$.actual" +repl -noformat \ + -convertargs text/calendar '-reply accept -contenttype' -nowhatnowproc last +SIGNATURE=Recip mhbuild - <`mhpath +`/draft | egrep -v '^DTSTAMP:' >"$actual" +check "$actual" "$expected" + + exit $failed