diff options
author | Patrick Monnerat <patrick@monnerat.net> | 2017-09-02 19:08:45 +0100 |
---|---|---|
committer | Patrick Monnerat <patrick@monnerat.net> | 2017-09-02 19:08:45 +0100 |
commit | 3baf36edf6ed1d7c74d68846d79f87334b573aea (patch) | |
tree | 3946a907baae28c177dd65b4424deb7370d3d58c /tests/data/test646 | |
parent | fec7a858b88c86e97e5dc96414a01feb21a2b661 (diff) |
mime: tests and examples.
Additional mime-specific tests.
Existing tests updated to reflect small differences (Expect: 100-continue,
data size change due to empty lines, etc).
Option -F headers= keyword added to tests.
test1135 disabled until the entry point order change is resolved.
New example smtp-mime.
Examples postit2 and multi-post converted from form API to mime API.
Diffstat (limited to 'tests/data/test646')
-rw-r--r-- | tests/data/test646 | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/tests/data/test646 b/tests/data/test646 new file mode 100644 index 000000000..a53c34090 --- /dev/null +++ b/tests/data/test646 @@ -0,0 +1,98 @@ +<testcase> +<info> +<keywords> +SMTP +MULTIPART +</keywords> +</info> + +# +# Server-side +<reply> +</reply> + +# +# Client-side +<client> +<server> +smtp +</server> + <name> +SMTP multipart using mime API + </name> +<stdin> +From: different
+To: another
+
+body
+</stdin> + <command> +smtp://%HOSTIP:%SMTPPORT/646 --mail-rcpt recipient@example.com --mail-from sender@example.com -F "=(;type=multipart/alternative" -F "= <body>This is the html version</body>;headers=X-test1: this is a header;type=text/html;headers=X-test2: this is another header " -F "=This is the plain text version;headers=@log/headers646" -F "=)" -F "=@log/test646.txt;headers=<log/headers646" -H "From: different" -H "To: another" -H "Reply-To: <followup@example.com>" +</command> +<file1 name="log/test646.txt"> +This is an attached file. + +It may contain any type of data. +</file1> +<file2 name="log/headers646"> +# This line is a comment +X-fileheader1: This is a header from a file
+ +# This line is another comment. It precedes a folded header. +X-fileheader2: This is
#a + folded header +</file2> +</client> + +# +# Verify data after the test has been "shot" +<verify> +<strippart> +s/^--------------------------[a-z0-9]*/------------------------------/ +s/boundary=------------------------[a-z0-9]*/boundary=----------------------------/ +</strippart> +<protocol> +EHLO 646
+MAIL FROM:<sender@example.com>
+RCPT TO:<recipient@example.com>
+DATA
+QUIT
+</protocol> +<upload> +Content-Type: multipart/mixed; boundary=----------------------------
+Mime-Version: 1.0
+From: different
+To: another
+Reply-To: <followup@example.com>
+
+------------------------------
+Content-Type: multipart/alternative; boundary=----------------------------
+
+------------------------------
+Content-Type: text/html
+Content-Transfer-Encoding: 8bit
+X-test1: this is a header
+X-test2: this is another header
+
+<body>This is the html version</body>
+------------------------------
+X-fileheader1: This is a header from a file
+X-fileheader2: This is #a folded header
+
+This is the plain text version
+--------------------------------
+
+------------------------------
+Content-Disposition: attachment; filename="test646.txt"
+X-fileheader1: This is a header from a file
+X-fileheader2: This is #a folded header
+
+This is an attached file. + +It may contain any type of data. +
+--------------------------------
+.
+</upload> +</verify> +</testcase> |