Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-05-18 | test1014: GSS-API is only in curl-config. not in curl | Daniel Stenberg | |
Follow-up to commit 121bcfee5d1. curl-config --features now lists GSS-API but it is not a listed feature in curl -V. This should probably be synchronized. | |||
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-15 | timers: fix timer regression involving redirects / reconnects | Daniel Stenberg | |
In commit 0b3750b5c23c25f (released in 7.36.0) we fixed a timeout issue but instead broke the timings. To fix this, I introduce a new timestamp to use for the timeouts and restored the previous timestamp and timestamp position so that the old timer functionality is restored. In addition to that, that change also broke connection timeouts for when more than one connect was used (as it would then count the total time from the first connect and not for the most recent one). Now Curl_timeleft() has been modified so that it checks against different start times depending on which timeout it checks. Test 1303 is updated accordingly. Bug: http://curl.haxx.se/mail/lib-2014-05/0147.html Reported-by: Ryan Braud | |||
2014-05-11 | tests: Fixed up DIGEST-MD5 tests following commit 8342b6e1dc | Steve Holme | |
2014-05-09 | lib1506: make sure the transfers are not within the same ms | Daniel Stenberg | |
Just to make sure the test is properly repeatable. Bug: http://curl.haxx.se/mail/lib-2014-05/0081.html Reported-by: Henrik | |||
2014-05-09 | libtests: add a wait_ms() function | Daniel Stenberg | |
This allows a libcurl test to portably sleep for a given number of milliseconds. | |||
2014-05-09 | test87: Get rid of extraneous square brackets in tag | Dan Fandrich | |
2014-05-05 | tests: Use standard libtest return codes when relevant | Dan Fandrich | |
2014-05-05 | test1513: Don't return an uninitialized variable on init failure | 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-05-01 | test585: Fixed NULL pointer dereference in fopen | Dan Fandrich | |
2014-04-28 | copyright: Updated following recent edits | Steve Holme | |
2014-04-29 | runtests.pl: Improved the check for a crash during torture tests | Dan Fandrich | |
2014-04-29 | Added a few more const where possible | Dan Fandrich | |
2014-04-28 | unit1395: Fixed null pointer dereference on torture test | Dan Fandrich | |
2014-04-23 | test325: verify --proto-redir https=>http | Daniel Stenberg | |
2014-04-22 | tests: Fixed torture test for tests 1526 & 1527 | Dan Fandrich | |
2014-04-22 | sockfilt.c: clean up threaded approach and add documentation | Marc Hoersken | |
2014-04-22 | sockfilt.c: zero initialize variable | Marc Hoersken | |
2014-04-22 | sockfilt.c: fixed getting stuck waiting for MinGW stdin pipe | Marc Hoersken | |
2014-04-20 | sockfilt.c: properly handle disk files, pipes and character input | Marc Hoersken | |
2014-04-20 | sockfilt.c: ignore non-key-events and continue waiting for input | Marc Hoersken | |
2014-04-20 | sockfilt.c: free memory in case of memory allocation errors | Marc Hoersken | |
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 | runtests: insist on a <keywords> section | Daniel Stenberg | |
Since all present tests now have <keywords> listed, this script will now refuse to run a given test case if no such section is provided. Hopefully this will help us make sure new test cases get keywords added at start. | |||
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 | runtests: check protocol before data | Daniel Stenberg | |
When the protocol part fails, the data usually does too but the protocol part is often more fundamental and often provide the clues you need to fix the test case. | |||
2014-03-30 | ftpserver.pl: Extended the full text reply regular expression | Steve Holme | |
Extended the regex to include other valid characters such as those used in the reply text of Test 836. | |||
2014-03-30 | keywords: sort case insensitive | Daniel Stenberg | |
2014-03-30 | tests: remove trailing CRs from keywords | Daniel Stenberg | |
2014-03-30 | keywords: sort keywords alphabetically | Daniel Stenberg | |
2014-03-30 | keywords: don't use STDERR for good info | 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 | |