summaryrefslogtreecommitdiff
path: root/tests/data/test155
Commit message (Collapse)AuthorAgeFilesLines
* tests: updated for modified fake randomDaniel Stenberg2017-05-081-1/+1
|
* http: always send Host: header as first headerDaniel Stenberg2015-03-121-2/+2
| | | | | | | | | | | | | | | ...after the method line: "Since the Host field-value is critical information for handling a request, a user agent SHOULD generate Host as the first header field following the request-line." / RFC 7230 section 5.4 Additionally, this will also make libcurl ignore multiple specified custom Host: headers and only use the first one. Test 1121 has been updated accordingly Bug: http://curl.haxx.se/bug/view.cgi?id=1491 Reported-by: Rainer Canavan
* NTLM: set a fake entropy for debug builds with CURL_ENTROPY setDaniel Stenberg2014-06-111-1/+1
| | | | | | | | | | | | | | | | Curl_rand() will return a dummy and repatable random value for this case. Makes it possible to write test cases that verify output. Also, fake timestamp with CURL_FORCETIME set. Only when built debug enabled of course. Curl_ssl_random() was not used anymore so it has been removed. Curl_rand() is enough. create_digest_md5_message: generate base64 instead of hex string curl_sasl: also fix memory leaks in some OOM situations
* tests: Disabled NTLM tests for non-debug buildsSteve Holme2014-06-111-0/+1
| | | | | | Added required "debug" feature, missed in commit 1c9aaa0bac, as NTLMv2 calls Curl_rand() which can only be fixed to a specific entropy in debug builds.
* HTTP: don't send Content-Length: 0 _and_ Expect: 100-continueDaniel Stenberg2014-04-041-1/+0
| | | | | | | Without request body there's no point in asking for 100-continue. Bug: http://curl.haxx.se/bug/view.cgi?id=1349 Reported-by: JimS
* tests: added missing HTTP NTLM auth keywordsDan Fandrich2014-03-151-0/+1
| | | | Also, removed an unneeded strippart
* tests: Updated NTLM tests for NTLMv2 type-3 messageSteve Holme2014-01-301-1/+1
|
* tests: Disabled NTLM tests when running with SSPI enabledSteve Holme2013-12-281-0/+1
|
* Add keywords for a couple of currently keyword-less HTTP testsFabian Keil2012-11-191-0/+7
|
* Make the LD_PRELOAD path absolute in the tests that use itDan Fandrich2010-08-161-1/+1
| | | | | | | | In some situations, libtool will change directories and perform a link step before executing the libtest test app. Since LD_PRELOAD is in effect for this entire process, the path to the binary must be absolute so it will be valid no matter in which directory the app is running.
* NTLM tests: boost coverage by forcing the hostnameKamil Dudka2010-07-301-6/+10
| | | | | | | | | | | | | A shared library tests/libtest/.libs/lihostname.so is preloaded in NTLM test-cases to override the system implementation of gethostname(). It makes it possible to test the NTLM authentication for exact match, and this way test the implementation of MD4 and DES. If LD_PRELOAD doesn't work, a debug build willl also workk as debug builds are now made to prefer a specific environment variable and will then return that content as host name instead of the actual one. Kamil wrote the bulk of this, Daniel Stenberg polished it.
* Replaced 127.0.0.1 with %HOSTIP where possibleDan Fandrich2007-09-141-3/+3
|
* Convert (most of) the test data files into genuine XML. A handful stillDan Fandrich2007-01-231-0/+2
| | | | | | are not, due mainly to the lack of support for XML character entities (e.g. & => & ). This will make it easier to validate test files using tools like xmllint, as well as edit and view them using XML tools.
* Fixed some tag typos in the test data files.Dan Fandrich2007-01-171-1/+1
|
* Venkat Akella found out that libcurl did not like HTTP responses that simplyDaniel Stenberg2006-11-251-0/+2
| | | | | | | | | | | | | responded with a single status line and no headers nor body. Starting now, a HTTP response on a persistent connection (i.e not set to be closed after the response has been taken care of) must have Content-Length or chunked encoding set, or libcurl will simply assume that there is no body. To my horror I learned that we had no less than 57(!) test cases that did bad HTTP responses like this, and even the test http server (sws) responded badly when queried by the test system if it is the test system. So although the actual fix for the problem was tiny, going through all the newly failing test cases got really painful and boring.
* NTLM2 session response supportDaniel Stenberg2006-06-071-1/+1
|
* cut off a bit more of the type-2 ntlm message since it differs betweenDaniel Stenberg2006-04-051-2/+2
| | | | hosts
* Michele Bini modified the NTLM code to work for his "weird IIS case"Daniel Stenberg2006-04-051-2/+7
| | | | | | | | | | | (http://curl.haxx.se/mail/lib-2006-02/0154.html) by adding the NTLM hash function in addition to the LM one and making some other adjustments in the order the different parts of the data block are sent in the Type-2 reply. Inspiration for this work was taken from the Firefox NTLM implementation. I edited the existing 21(!) NTLM test cases to run fine with these news. Due to the fact that we now properly include the host name in the Type-2 message the test cases now only compare parts of that chunk.
* Modified the default HTTP headers used by libcurl:Daniel Stenberg2005-05-111-3/+0
| | | | | | | | | | | | | | | | A) Normal non-proxy HTTP: - no more "Pragma: no-cache" (this only makes sense to proxies) B) Non-CONNECT HTTP request over proxy: - "Pragma: no-cache" is used (like before) - "Proxy-Connection: Keep-alive" (for older style 1.0-proxies) C) CONNECT HTTP request over proxy: - "Host: [name]:[port]" - "Proxy-Connection: Keep-alive"
* Make NTLM tests depend on the NTLM feature at not SSL, since the NTLM supportDaniel Stenberg2005-03-211-2/+1
| | | | is no longer only present when built with SSL support.
* stricter newline policyDaniel Stenberg2004-11-291-2/+2
|
* HTTP "auth done right". See lib/README.httpauthDaniel Stenberg2004-11-241-2/+6
|
* Now the test servers and test cases can run on a custom port number. There'sDaniel Stenberg2004-09-081-4/+4
| | | | | | no fixed port numbers in use anymore. Starting now, the default ports the servers use are 8990 - 8993. There's no option to modify these yet, but changing the $base option in the top of the runtests.pl script.
* require ssl since ntlm needs itDaniel Stenberg2004-04-061-0/+4
|
* New authentication code added, particularly noticable when doing POST or PUTDaniel Stenberg2004-04-061-0/+114
with Digest or NTLM. libcurl will now use HEAD to negotiate the authentication and when done perform the requested POST.