Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-05-28 | test1115: verify that unexpected 1xx responses work fine | Daniel Stenberg | |
2010-05-27 | test313: a new test for CRL support | Kamil Dudka | |
2010-05-14 | Fixed test 577 to work when --enable-hidden-symbols is configured | Dan Fandrich | |
2010-05-12 | FTP: WILDCARDMATCH/CHUNKING/FNMATCH added | Pavel Raiskup | |
2010-05-07 | multi interface: missed storing connection time | Daniel Stenberg | |
Dirk Manske reported a regression. When connecting with the multi interface, there were situations where libcurl wouldn't store connect time correctly as it used to (and is documented to) do. Using his fine sample program we could repeat it, and I wrote up test case 573 using that code. The problem does not easily show itself using the local test suite though. The fix, also as suggested by Dirk, is a bit on the ugly side as it adds yet another call to Curl_verboseconnect() and setting the TIMER_CONNECT time. That situation is subject for some closer inspection in the future. | |||
2010-04-28 | test: enable valgrind for 604, seems to work | Daniel Stenberg | |
2010-04-28 | add 1s post-command delay to tests 513 and 514 | Paul Howarth | |
addressing http://curl.haxx.se/mail/lib-2009-12/0031.html | |||
2010-04-19 | Implement SMTP authentication | monnerat | |
2010-04-09 | FTP quote commands prefixed with '*' now can fail without aborting | Daniel Stenberg | |
Prefixing the FTP quote commands with an asterisk really only worked for the postquote actions. This is now fixed and test case 227 has been extended to verify. | |||
2010-03-31 | Fixed misleading test message | Dan Fandrich | |
2010-03-25 | remove all .cvsignore files | Daniel Stenberg | |
2010-03-24 | Add .gitattributes files to turn off CRLF translation for some files | Bill Hoffman | |
2010-03-24 | Fix RTSP GET_PARAMETER empty and non-empty operation. | Chris Conroy | |
Test coverage included. Thanks to Massimo Callegari for the bug report | |||
2010-03-24 | remove the CVSish $Id$ lines | Daniel Stenberg | |
2010-03-23 | enabled valgrind | Daniel Stenberg | |
I ran it now successfully and it helped to pinpoint a libssh2 memory leak! | |||
2010-02-24 | enable 802 and 803 | Yang Tse | |
2010-02-22 | _ Adjusted RFC821 HELO fallback and enabled test804 | Patrick Monnerat | |
2010-02-22 | - Proper handling of STARTTLS on SMTP, taking CURLUSESSL_TRY into account. | Patrick Monnerat | |
- SMTP falls back to RFC821 HELO when EHLO fails (and SSL is not required). - Use of true local host name (i.e.: via gethostname()) when available, as default argument to SMTP HELO/EHLO. - Test case 804 for HELO fallback. | |||
2010-02-20 | - Fixed the SMTP compliance by making sure RCPT TO addresses are specified | Daniel Stenberg | |
properly in angle brackets. Recipients provided with CURLOPT_MAIL_RCPT now get angle bracket wrapping automatically by libcurl unless the recipient starts with an angle bracket as then the app is assumed to deal with that properly on its own. | |||
2010-02-12 | - Jack Zhang reported a problem with SMTP: we wrongly used multiple addresses | Daniel Stenberg | |
in the same RCPT TO line, when they should be sent in separate single commands. I updated test case 802 to verify this. - I also fixed a bad use of my_setopt_str() of CURLOPT_MAIL_RCPT in the curl tool which made it try to output it as string for the --libcurl feature which could lead to crashes. | |||
2010-02-09 | Removed some erroneous "compressed" key words | Dan Fandrich | |
2010-02-04 | Modified test case 557 to additionally verify libcurl's internal curl_m*printf() | Yang Tse | |
functions formatting functionality when handling signed and unsigned shorts. | |||
2010-02-04 | added an additional second to allow test to pass on heavily loaded servers | Yang Tse | |
2010-02-03 | cookies with same path length might get sorted in different order when | Yang Tse | |
using different qsort implementations. In order to make this test give same results on different systems, paths now have different lengths. | |||
2010-02-03 | added an additional second to allow test to pass on heavily loaded servers | Yang Tse | |
2010-02-01 | update rtsp server header field from SWS to RTSPD | Yang Tse | |
2010-02-01 | Test suite support for RTSP | Yang Tse | |
2010-01-29 | Chris Conroy fixed test #568 issues with carriage returns | Yang Tse | |
2010-01-28 | Chris Conroy provided first RTSP tests | Yang Tse | |
2010-01-28 | RTSP tests disabled until test harness RTSP support is updated | Yang Tse | |
2010-01-22 | Julien Chaffraix adjusted "<name> section" line length | Yang Tse | |
2010-01-21 | Julien Chaffraix fixed line lengths | Daniel Stenberg | |
2010-01-20 | modified test case 8 to also make sure that we deal with cookies using | Daniel Stenberg | |
identical names but different paths properly | |||
2010-01-19 | - As was pointed out on the http-state mailing list, the order of cookies in a | Daniel Stenberg | |
HTTP Cookie: header _needs_ to be sorted on the path length in the cases where two cookies using the same name are set more than once using (overlapping) paths. Realizing this, identically named cookies must be sorted correctly. But detecting only identically named cookies and take care of them individually is harder than just to blindly and unconditionally sort all cookies based on their path lengths. All major browsers also already do this, so this makes our behavior one step closer to them in the cookie area. Test case 8 was the only one that broke due to this change and I updated it accordingly. | |||
2010-01-19 | oops, I forgot to cvs add this before my previous commit (Dan Fandrich | Daniel Stenberg | |
pointed it out to me) | |||
2010-01-19 | - David McCreedy brought a fix and a new test case (129) to make libcurl work | Daniel Stenberg | |
again when downloading files over FTP using ASCII and it turns out that the final size of the file is not the same as the initial size the server reported. This is very common since servers don't take the newline conversions into account. | |||
2010-01-18 | Added PEM certificate keyword | Dan Fandrich | |
2010-01-13 | Give the test a bit mote time to run so it passes on slow machines | Yang Tse | |
2010-01-12 | Added test case #1112 which does an FTPS download with strict timeout | Yang Tse | |
and slow data transfer in a similar way as test case #1086 does for FTP. This also exercises <killserver> section for the FTPS server. | |||
2010-01-11 | - The tests/runtests.pl script now checks to see if the test case that runs is | Daniel Stenberg | |
present in the tests/data/Makefile.am and outputs a notice message on the screen if not. Each test file has to be included in that Makefile.am to get included in release archives and forgetting to add files there is a common mistake. This is an attempt to make it harder to forget. | |||
2010-01-07 | List fragment tests in Makefile.am and better provide better names | Claes Jakobsson | |
2010-01-06 | Disable tests 802 and 803 | Yang Tse | |
2010-01-06 | Julien Chaffraix fixed so that the fragment part in an URL is not sent to ↵ | Claes Jakobsson | |
the server anymore | |||
2010-01-01 | - Ingmar Runge enhanced libcurl's FTP engine to support the PRET command. This | Daniel Stenberg | |
command is a special "hack" used by the drftpd server, but even though it is a custom extension I've deemed it fine to add to libcurl since this server seems to survive and people keep using it and want libcurl to support it. The new libcurl option is named CURLOPT_FTP_USE_PRET, and it is also usable from the curl tool with --ftp-pret. Using this option on a server that doesn't support this command will make libcurl fail. | |||
2009-12-30 | modified to get the EHLO domain from the path part of the URL instead of the | Daniel Stenberg | |
user name | |||
2009-12-30 | (SMTP) support DATA better in the server and make sure to "escape" CRLF.CRLF | Daniel Stenberg | |
sequences in uploaded data. The test server doesn't "decode" escaped dot-lines but instead test cases must be written to take them into account. Added test case 803 to verify dot-escaping. | |||
2009-12-29 | test 802 is the first SMTP test, although not strictly SMTP yet... | Daniel Stenberg | |
2009-12-24 | Adjust test number mismatch | Yang Tse | |
2009-12-21 | test 566 was missing | Daniel Stenberg | |
2009-12-20 | introducing the first IMAP FETCH test | Daniel Stenberg | |