Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-06-19 | and fix another flaw in the singlecwd case when we get ftp://site.com/, also | Daniel Stenberg | |
from the #1739100 bug report | |||
2007-06-18 | Test listing of root dir with the three ftp-methods. KNOWN_BUGS #44 make me | Daniel Stenberg | |
disable test 351 by default by I add the test case anyway to make it easier to work on this problem in the future. | |||
2007-06-08 | Incorporated Daniel Black's test706 and test707 SOCKS test cases. | Dan Fandrich | |
2007-06-05 | added 703: a socks5 version of 702 | Daniel Stenberg | |
2007-06-05 | Daniel Black's test suite fixes and initial test cases for SOCKS4/5 using | Daniel Stenberg | |
openssh | |||
2007-05-15 | Added support for quote commands before a transfer using SFTP and test | Dan Fandrich | |
case 614. Allow SFTP quote commands chmod, chown, chgrp to set a value of 0. | |||
2007-05-14 | Added SFTP directory listing test case 613. | Dan Fandrich | |
2007-05-10 | Added FTPS upload tests 408 and 409. | Dan Fandrich | |
2007-05-08 | Added FTPS test cases 406 and 407 | Dan Fandrich | |
2007-04-23 | Added tests 610-612 to test more SFTP post-quote commands. | Dan Fandrich | |
2007-04-18 | Added test cases 296, 297 and 298 to test --ftp-method handling | Dan Fandrich | |
2007-04-13 | Added test cases 294 and 295 to test --ftp-account handling | Dan Fandrich | |
2007-04-04 | Added more SSH tests (left disabled for now). | Dan Fandrich | |
2007-03-30 | Resurrected old FTPS error tests 402 and 403 as 404 and 405. | Dan Fandrich | |
2007-03-30 | Added HTTP --max-filesize tests and FTPS CCC failure test. | Dan Fandrich | |
2007-03-30 | Don't tear down the ftp connection if the maximum filesize was exceeded | Dan Fandrich | |
and added tests 290 and 291 to check. | |||
2007-03-30 | Added FTP-SSL failure test 402 | Dan Fandrich | |
2007-03-29 | Added ftps upload test 401 | Dan Fandrich | |
2007-03-26 | Added SFTP and SCP upload tests in test602 & test603 | Dan Fandrich | |
2007-03-24 | Fixed a memory leak when specifying a proxy with a file: URL and added | Dan Fandrich | |
test case 288 to verify it. | |||
2007-03-08 | Added test infrastructure to support basic FTPS tests. This currently | Dan Fandrich | |
supports only ftps:// URLs with --ftp-ssl-control specified, which implicitly encrypts the control channel but not the data channels. That allows stunnel to be used with an unmodified ftp server in exactly the same way that the test https server is set up. Added test case 400 as a basic FTPS test. | |||
2007-01-29 | - Michael Wallner reported that when doing a CONNECT with a custom User-Agent | Daniel Stenberg | |
header, you got _two_ User-Agent headers in the CONNECT request...! Added test case 287 to verify the fix. | |||
2007-01-16 | Added simple OpenSSL crypto engine tests. | Dan Fandrich | |
2007-01-15 | Added TFTP upload tests. | Dan Fandrich | |
2007-01-10 | Added test for TFTP retrieve of boundary case 512 byte file. | Dan Fandrich | |
2007-01-10 | Added test of TFTP server error reporting. | Dan Fandrich | |
2006-12-11 | Alexey Simak found out that when doing FTP with the multi interface and | Daniel Stenberg | |
something went wrong like it got a bad response code back from the server, libcurl would leak memory. Added test case 538 to verify the fix. I also noted that the connection would get cached in that case, which doesn't make sense since it cannot be re-use when the authentication has failed. I fixed that issue too at the same time, and also that the path would be "remembered" in vain for cases where the connection was about to get closed. | |||
2006-11-25 | added the new test 282 | Daniel Stenberg | |
2006-11-01 | test 518 is all about testing libcurl functionality | Yang Tse | |
when more than FD_SETSIZE file descriptors are open. This means that if for any reason we are not able to open more than FD_SETSIZE file descriptors then test 518 should not be run. test 537 is all about testing libcurl functionality when the system has nearly exhausted the number of free file descriptors. Test 537 will try to run with very few free file descriptors. | |||
2006-10-25 | Fixed CURLOPT_FAILONERROR to return CURLE_HTTP_RETURNED_ERROR even for the | Daniel Stenberg | |
case when 401 or 407 are returned, *IF* no auth credentials have been given. The CURLOPT_FAILONERROR option is not possible to make fool-proof for 401 and 407 cases when auth credentials is given, but we've now covered this somewhat more. You might get some amounts of headers transferred before this situation is detected, like for when a "100-continue" is received as a response to a POST/PUT and a 401 or 407 is received immediately afterwards. Added test 281 to verify this change. | |||
2006-10-09 | Bogdan Nicula's second test case (posted Sun, 08 Oct 2006) converted to test | Daniel Stenberg | |
case 535 and it now runs fine. Again a problem with the pipelining code not taking all possible (error) conditions into account. | |||
2006-10-08 | test 534 added in an attempt to repeat Bogdan Nicula's bug... | Daniel Stenberg | |
2006-10-04 | Dmitriy Sergeyev provided an example source code that crashed CVS libcurl | Daniel Stenberg | |
but that worked nicely in 7.15.5. I converted it into test case 532 and fixed the problem. | |||
2006-09-30 | Support for FTP third party transfers is now dropped | Daniel Stenberg | |
2006-09-28 | Reported in #1561470 (http://curl.haxx.se/bug/view.cgi?id=1561470), libcurl | Daniel Stenberg | |
would crash if a bad function sequence was used when shutting down after using the multi interface (i.e using easy_cleanup after multi_cleanup) so precautions have been added to make sure it doesn't any more - test case 529 was added to verify. | |||
2006-09-23 | added simple test of --ftp-alternative-to-user | Daniel Stenberg | |
2006-09-21 | Added test case 531 in an attempt to repeat bug report #1561470 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1561470) that is said to crash when an FTP upload fails with the multi interface. It did not, but I made a failed upload still assume the control connection to be fine. | |||
2006-09-20 | Armel Asselin fixed problems when you gave a proxy URL with user name and | Daniel Stenberg | |
empty password or no password at all. Test case 278 and 279 were added to verify. | |||
2006-09-13 | Added a generic way to disable test cases when "all" is run, and added the | Daniel Stenberg | |
FTP 3rd party transfers to that file for now until I have them sorted out. | |||
2006-09-08 | test 530 is the first ever HTTP pipelining test for libcurl | Daniel Stenberg | |
2006-09-07 | Major overhaul introducing http pipelining support and shared connection | Daniel Stenberg | |
cache within the multi handle. | |||
2006-08-31 | added missing test | Daniel Stenberg | |
2006-07-27 | test case 277 - HTTP RFC1867-type formposting with custom Content-Type | Daniel Stenberg | |
2006-03-28 | #1451929 (http://curl.haxx.se/bug/view.cgi?id=1451929) detailed a bug that | Daniel Stenberg | |
occurred when asking libcurl to follow HTTP redirects and the original URL had more than one question mark (?). Added test case 276 to verify. | |||
2006-03-03 | added test524 | Daniel Stenberg | |
2005-10-30 | test 275 makes a CONNECT through a proxy and then gets two pages from the | Daniel Stenberg | |
same server | |||
2005-10-27 | Nis Jorgensen filed bug report #1338648 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1338648) which really is more of a feature request, but anyway. It pointed out that --max-redirs did not allow it to be set to 0, which then would return an error code on the first Location: found. Based on Nis' patch, now libcurl supports CURLOPT_MAXREDIRS set to 0, or -1 for infinity. Added test case 274 to verify. | |||
2005-10-20 | Dave Dribin made libcurl understand and handle cases when the server | Daniel Stenberg | |
(wrongly) sends *two* WWW-Authenticate headers for Digest. While this should never happen in a sane world, libcurl previously got into an infinite loop when this occurred. Dave added test 273 to verify this. | |||
2005-10-05 | added test case 272 for -z download over FTP when the timestamp is identical | Daniel Stenberg | |
to the remote one | |||
2005-09-19 | added test 271 | Daniel Stenberg | |