cURL / Mailing Lists / curl-library / Single Mail

curl-library

Re: [PATCH] Allow various Curl test suite tests to work on non-ASCII platforms

From: Yang Tse <yangsita_at_gmail.com>
Date: Thu, 7 May 2009 18:02:35 +0200

2009/5/1, David McCreedy wrote:

> The Curl test suite is very useful.

Absolutely true.

> This patch allows various HTTP and FTP tests to work on both ASCII and
> non-ASCII platforms alike.

I'll make some comments...

This patch sets the CURLOPT_TRANSFERTEXT option, conditionally on
CURL_DOES_CONVERSIONS definition for tests lib508.c, lib510.c,
lib552.c, lib553.c, and lib555.c.

Is there any reason for not doing the same now on nearly all lib5XX.c
source files, even when the test data might not be non-ASCII ready
yet, and the test might not be HTTP POST related?

I don't see any harm in doing so, but I might be overlooking something.

Regarding the string literals writing inside the lib5XX.c tests only
as ASCII hex-dump I personally would prefer to keep this kind of
'writing' inside CURL_DOES_CONVERSIONS conditionals, and the existing
representation/writing on the 'else' part of the condition.

Would this still work for you?

Regarding the unconditional removal of the potential trailing CR using
the <strip> or <strippart> section for test case definitions #508 and
#555 I think this is not the way to go. We would weaken those tests
cases for systems which don't use CURL_DOES_CONVERSIONS.

Taking in consideration that you will most probably need to adjust
other, existing or feature, test cases I think you should consider
slightly expanding the test definition file format.

You could first try to use definitions for tests 508 and 555 using
<protocol nonewline="yes">

If the above works for you, the next step would be to modify
runtests.pl to allow handling something like <protocol
nonewline="yes-when-curl-does-conversions">. Otherwise handling of
<protocol nocarriagereturn="yes-when-curl-does-conversions"> will be
needed. And documenting the new functionality in tests/FILEFORMAT.

-- 
-=[Yang]=-
Received on 2009-05-07