Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-09-07 | tests: Added test1420 to the makefile | Steve Holme | |
2014-09-07 | test1420: Removed unnecessary CURLOPT setting | Steve Holme | |
2014-09-07 | tests: Added more "Clear Text" authentication keywords | Steve Holme | |
2014-09-07 | tests: Updated "based on" text due to email test renumbering | Steve Holme | |
2014-09-07 | tests: For consistency added --libcurl to test name | Steve Holme | |
2014-09-07 | tests: Added --libcurl for IMAP test case | Steve Holme | |
2014-08-15 | http: fix the Content-Range: parser | Daniel Stenberg | |
... to handle "*/[total]". Also, removed the strange hack that made CURLOPT_FAILONERROR on a 416 response after a *RESUME_FROM return CURLE_OK. Reported-by: Dimitrios Siganos Bug: http://curl.haxx.se/mail/lib-2014-06/0221.html | |||
2014-07-26 | tests: Fix a couple of incomplete response lines | Fabian Keil | |
2014-07-16 | test506: verify aa6884845168 | Daniel Stenberg | |
After the fixed cookie lock deadlock, this test now passes and it detects double-locking and double-unlocking of mutexes. | |||
2014-07-15 | test320: strip off the actual negotiated cipher width | Dan Fandrich | |
It's irrelevant to the test, and will change depending on which SSL library is being used by libcurl. | |||
2014-07-12 | tests: added globbing keyword to URL globbing tests | Dan Fandrich | |
2014-07-11 | tests: adjust for capitalization differences in newer gnutls-serv | Dan Fandrich | |
2014-07-11 | test320/1/2/4: fix the port number substitution variables | Dan Fandrich | |
These tests have been broken since commit 1958fe57 in Oct. 2011 | |||
2014-06-15 | sasl: Added back qop argument mistakenly removed in e95ca7ce | Dan Fandrich | |
This caused segfaults on tests 823 869 907. | |||
2014-06-15 | test1398: Added test to Makefile.am | Dan Fandrich | |
2014-06-11 | NTLM: set a fake entropy for debug builds with CURL_ENTROPY set | Daniel Stenberg | |
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 | |||
2014-06-11 | tests: Disabled NTLM tests for non-debug builds | Steve Holme | |
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. | |||
2014-06-01 | tests: Fixed up DIGEST-MD5 tests following commit eefeb73af4 | Steve Holme | |
2014-05-18 | test1134: verify CREDSPERREQUEST for HTTP | Daniel Stenberg | |
Verifies that the change in 68f0166a92 works as intended and that different HTTP auth credentials to the same host still re-uses the connection properly. | |||
2014-05-11 | tests: Fixed up DIGEST-MD5 tests following commit 8342b6e1dc | Steve Holme | |
2014-05-09 | test87: Get rid of extraneous square brackets in tag | Dan Fandrich | |
2014-05-04 | mprintf: allow %.s with data not being zero terminated | Daniel Stenberg | |
If the precision is indeed shorter than the string, don't strlen() to find the end because that's not how the precision operator works. I also added a unit test for curl_msnprintf to make sure this works and that the fix doesn't a few other basic use cases. I found a POSIX compliance problem that I marked TODO in the unit test, and I figure we need to add more tests in the future. Reported-by: Török Edwin | |||
2014-04-23 | test325: verify --proto-redir https=>http | Daniel Stenberg | |
2014-04-18 | test810: Updated to use new IMAP URL query string functionality | Steve Holme | |
2014-04-06 | tests: Disabled DIGEST-MD5 tests when running with SSPI enabled | Steve Holme | |
2014-04-04 | PROXYHEADER: send these headers in "normal" proxy requests too | Daniel Stenberg | |
Updated the docs to clarify and the code accordingly, with test 1528 to verify: When CURLHEADER_SEPARATE is set and libcurl is asked to send a request to a proxy but it isn't CONNECT, then _both_ header lists (CURLOPT_HTTPHEADER and CURLOPT_PROXYHEADER) will be used since the single request is then made for both the proxy and the server. | |||
2014-04-04 | test1428: verify --proxy-header | Daniel Stenberg | |
2014-04-04 | CURLOPT_HEADEROPT: added | Daniel Stenberg | |
Modified the logic so that CURLOPT_HEADEROPT now controls if PROXYHEADER is actually used or not. | |||
2014-04-04 | CURLOPT_PROXYHEADER: set headers for proxy-only | Daniel Stenberg | |
Includes docs and new test cases: 1525, 1526 and 1527 Co-written-by: Vijay Panghal | |||
2014-04-04 | HTTP: don't send Content-Length: 0 _and_ Expect: 100-continue | Daniel Stenberg | |
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 | |||
2014-04-03 | tests: unified use of some keywords | Dan Fandrich | |
2014-04-03 | tests: added some missing closing tags | Dan Fandrich | |
2014-04-03 | tests: add keywords to the last 7 tests lacking them | Daniel Stenberg | |
2014-04-01 | tests: Added SMTP with credientials test when not supported by server | Steve Holme | |
2014-03-31 | tests: Added SMTP with credentials test for RFC-821 based server | Steve Holme | |
Added SMTP (RFC-821 only) based test case as a reference for the fix provided by commit fe260b75e7. | |||
2014-03-30 | curl: stop interpreting IPv6 literals as glob patterns. | Paul Marks | |
This makes it possible to fetch from an IPv6 literal without specifying the -g option. Globbing remains available elsehwere in the URL. For example: curl http://[::1]/file[1-3].txt This creates no ambiguity, because there is no overlap between the syntax of valid globs and valid IPv6 literals. Globs contain hyphens and at most 1 colon, while IPv6 literals have no hyphens, and at least 2 colons. The peek_ipv6() parser simply whitelists a set of characters and counts colons, because the real validation happens later on. The character set includes A-Z, in case someone decides to implement support for scopes like [fe80::1%25eth0] in the future. Signed-off-by: Paul Marks <pmarks@google.com> | |||
2014-03-30 | test938: Updated to use file input for upload | Steve Holme | |
As the second URL won't be passed input from stdin. | |||
2014-03-30 | test836: Fixed incorrect username in expected output | Steve Holme | |
2014-03-30 | DISABLED: 836, 882 and 938 hang | Daniel Stenberg | |
2014-03-30 | tests: remove trailing CRs from keywords | Daniel Stenberg | |
2014-03-30 | tests: Added email unit tests to verify login credential connection re-use | Steve Holme | |
2014-03-30 | tests: Corrected "APOP" authentication keyword | Steve Holme | |
2014-03-30 | tests: Replaced email authentication keywords with SASL based keywords | Steve Holme | |
As the email protocols implement SASL authentication rather than IMAP, POP3 and SMTP specific authentication, updated the authentication keywords to reflect this. | |||
2014-03-30 | tests: Added "Clear Text" authentication keyword | Steve Holme | |
2014-03-30 | tests: Added "SASL" authentication keyword | Steve Holme | |
2014-03-26 | test815/816: Use authentication for both URLs | Dan Fandrich | |
The improved connection reuse logic would otherwise create a new connection for each one, which isn't supported by the test server, nor expected by the test. | |||
2014-03-25 | test1397: unit test for certificate name wildcard handling | Richard J. Moore | |
2014-03-15 | tests: made the SASL modes separate keywords | Dan Fandrich | |
2014-03-15 | tests: added missing HTTP NTLM auth keywords | Dan Fandrich | |
Also, removed an unneeded strippart | |||
2014-03-15 | tests: disable valgrind on the remaining scp/sftp tests | Dan Fandrich | |