mirror of
https://github.com/curl/curl.git
synced 2026-04-12 00:11:42 +08:00
To formalize they are now XML-compliant (with some asterisks.) Also to help syntax highlighters work on them to make their content more readable. Also: - Delete empty comment decorations. - GHA/checksrc: simplify XML check. - runtests: fail to load test data with XML prolog missing. Follow-up tobfe6eb1c06#19927 Follow-up to87ba80a6dfCloses #19946
93 lines
2.1 KiB
XML
93 lines
2.1 KiB
XML
<?xml version="1.0" encoding="US-ASCII"?>
|
|
<testcase>
|
|
<info>
|
|
<keywords>
|
|
IMAP
|
|
APPEND
|
|
UPLOAD
|
|
MULTIPART
|
|
</keywords>
|
|
</info>
|
|
|
|
# Server-side
|
|
<reply>
|
|
</reply>
|
|
|
|
# Client-side
|
|
<client>
|
|
<features>
|
|
Mime
|
|
</features>
|
|
<server>
|
|
imap
|
|
</server>
|
|
<name>
|
|
IMAP APPEND multipart using mime API
|
|
</name>
|
|
<command>
|
|
imap://%HOSTIP:%IMAPPORT/%TESTNUMBER
|
|
-F "=(;type=multipart/alternative"
|
|
-F "= <body>This is the html version</body>;type=text/html"
|
|
-F "=This is the plain text version"
|
|
-F "=)"
|
|
-F "=@%LOGDIR/test%TESTNUMBER.txt"
|
|
-H "Date: Mon, 7 Feb 1994 21:52:25 -0800 (PST)"
|
|
-H "From: Fred Foobar %LTfoobar@example.com%GT"
|
|
-H "To: joe@example.com"
|
|
-H "Message-Id: %LTB27397-0100000@example.com%GT"
|
|
-H "Subject: afternoon meeting"
|
|
-u user:secret
|
|
</command>
|
|
<file name="%LOGDIR/test%TESTNUMBER.txt">
|
|
This is an attached file.
|
|
|
|
It may contain any type of data.
|
|
</file>
|
|
</client>
|
|
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<strippart>
|
|
s/^--------------------------[A-Za-z0-9]*/------------------------------/
|
|
s/boundary=------------------------[A-Za-z0-9]*/boundary=----------------------------/
|
|
</strippart>
|
|
<protocol crlf="yes">
|
|
A001 CAPABILITY
|
|
A002 LOGIN user secret
|
|
A003 APPEND %TESTNUMBER (\Seen) {940}
|
|
A004 LOGOUT
|
|
</protocol>
|
|
<upload>
|
|
Content-Type: multipart/mixed; boundary=----------------------------%CR
|
|
Mime-Version: 1.0%CR
|
|
Date: Mon, 7 Feb 1994 21:52:25 -0800 (PST)%CR
|
|
From: Fred Foobar %LTfoobar@example.com%GT%CR
|
|
To: joe@example.com%CR
|
|
Message-Id: %LTB27397-0100000@example.com%GT%CR
|
|
Subject: afternoon meeting%CR
|
|
%CR
|
|
------------------------------%CR
|
|
Content-Type: multipart/alternative; boundary=----------------------------%CR
|
|
%CR
|
|
------------------------------%CR
|
|
Content-Type: text/html%CR
|
|
Content-Transfer-Encoding: 8bit%CR
|
|
%CR
|
|
<body>This is the html version</body>%CR
|
|
------------------------------%CR
|
|
%CR
|
|
This is the plain text version%CR
|
|
--------------------------------%CR
|
|
%CR
|
|
------------------------------%CR
|
|
Content-Disposition: attachment; filename="test%TESTNUMBER.txt"%CR
|
|
%CR
|
|
This is an attached file.
|
|
|
|
It may contain any type of data.
|
|
%CR
|
|
--------------------------------%CR
|
|
</upload>
|
|
</verify>
|
|
</testcase>
|