Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-07-10 | Fixed a curl memory leak reported by Song Ma with a modified version | Dan Fandrich | |
of the patch he suggested. Added his test case as test289 to verify. | |||
2007-06-25 | Adjusted how libcurl treats HTTP 1.1 responses without content-lenth or | Daniel Stenberg | |
chunked encoding (that also lacks "Connection: close"). It now simply assumes that the connection WILL be closed to signal the end, as that is how RFC2616 section 4.4 point #5 says we should behave. | |||
2007-06-21 | Gerrit Bruchhäuser pointed out a warning that the Intel(R) Thread Checker | Daniel Stenberg | |
tool reports and it was indeed a legitimate one and it is one fixed. It was a use of a share without doing the proper locking first. | |||
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-07 | Cleaned up SOCKS tests. Use a magic port number instead of killserver | Dan Fandrich | |
to do nonlistening server tests, like other tests. | |||
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-30 | Improved the test harness to allow running test servers on other than | Dan Fandrich | |
the default port numbers, allowing more than one test suite to run simultaneously on the same host. | |||
2007-04-30 | Fixed some tests to stop hard-coding the port number. | Dan Fandrich | |
2007-04-23 | Added tests 610-612 to test more SFTP post-quote commands. | Dan Fandrich | |
2007-04-23 | Changed another nonexistent host name to be under the haxx.se domain | Dan Fandrich | |
to guarantee against it ever being valid. | |||
2007-04-18 | Various test file cleanups, including using <servercmd> instead of writing | Dan Fandrich | |
directly to ftpserver.cmd and removing unneeded empty sections. | |||
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-13 | Fix test case 534 which started to fail 2007-04-13 due to the existance | Yang Tse | |
of a new host on the net with the same silly domain the test was using for a host which was supposed not to exist. | |||
2007-04-09 | Changed error return codes to match update code. | Dan Fandrich | |
2007-04-05 | Enabled the ssh tests 600-609. | Dan Fandrich | |
2007-04-04 | Whoops--didn't mean to enable the ssh tests quite yet. | Dan Fandrich | |
2007-04-04 | Added more SSH tests (left disabled for now). | Dan Fandrich | |
2007-04-01 | Added scp and sftp nonexistent file retrieval tests, but leave them | Dan Fandrich | |
disabled for now. | |||
2007-03-31 | Disable the SSH tests until the libssh2 bugs that causes test hangs | Dan Fandrich | |
are sorted out. | |||
2007-03-30 | Fixed some typos in the comments. | 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-29 | Eliminated extra / in scp/sftp URLs. | Dan Fandrich | |
2007-03-26 | Added SFTP and SCP upload tests in test602 & test603 | Dan Fandrich | |
2007-03-26 | Added test600 and test601, SFTP and SCP file retrieval tests. | 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-16 | Fixed the test case to use a truly invalid urlglob range. | Dan Fandrich | |
2007-03-09 | Updated the test harness to add a new "crypto" feature check and updated the | Dan Fandrich | |
appropriate test case to use it. For now, this is treated the same as the "SSL" feature because curl doesn't list it separately. | |||
2007-03-09 | Updated the test harness to check for protocol support before running each | Dan Fandrich | |
test, fixing KNOWN_BUGS #11. Fixed some tests to more accurately specify their required servers and features. | |||
2007-03-08 | Added SSL as a required feature for test case 400. | Dan Fandrich | |
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-03-03 | stricter newline policy | Yang Tse | |
2007-03-03 | stricter newline policy | Yang Tse | |
2007-02-21 | - Ravi Pratap provided work on libcurl making pipelining more robust and | Daniel Stenberg | |
fixing some bugs: o Don't mix GET and POST requests in a pipeline o Fix the order in which requests are dispatched from the pipeline o Fixed several curl bugs with pipelining when the server is returning chunked encoding: * Added states to chunked parsing for final CRLF * Rewind buffer after parsing chunk with data remaining * Moved chunked header initializing to a spot just before receiving headers | |||
2007-02-13 | ftp@example.com is now the new anonymous FTP password. I opted for 'ftp' on | Daniel Stenberg | |
the left side of @ to make it short(er). | |||
2007-02-05 | Year 2038 has its own problems (32 bit integer overflow). | Yang Tse | |
So cookie expiration date is lowered to expire at most in 2035. | |||
2007-02-02 | fix leftover updating cookie expiration date | Yang Tse | |
2007-02-02 | reported in bug: #1566077 the former URL mentioned in the generated cookie | Yang Tse | |
jar has died and we now instead point out our own version of that | |||
2007-02-02 | fix test case 62 which was failing due to cookies expiring 1 Feb 2007 | Yang Tse | |