Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-04-10 | Added test case 1025 to test a command-line cookie with Location: following | Dan Fandrich | |
2008-04-10 | Added test case 1024 to test a scenario similar to the one reported | Dan Fandrich | |
by Ben Combee where libcurl would send the wrong cookie to a redirected server. libcurl was doing the right thing in this test case. | |||
2008-04-04 | oops, forgot to add test554 | Daniel Stenberg | |
2008-04-04 | Added test627 to test SFTP with CURLOPT_NOBODY | Dan Fandrich | |
2008-03-31 | - Added CURLFORM_STREAM as a supported option to curl_formadd() to allow an | Daniel Stenberg | |
application to provide data for a multipart with the read callback. Note that the size needs to be provided with CURLFORM_CONTENTSLENGTH when the stream option is used. This feature is verified by the new test case 554. This feature was sponsored by Xponaut. | |||
2008-03-22 | - Fixed the problem with doing a zero byte SCP transfer, verified with test | Daniel Stenberg | |
case 617 (which was added by Daniel Fandrich 5 Mar 2008). | |||
2008-03-18 | Fixed an infinite loop when given an invalid SFTP quote command. | Dan Fandrich | |
2008-03-18 | Added test 626 to reproduce an infinite loop when given an invalid | Dan Fandrich | |
SFTP quote command reported by Vincent Le Normand, but left it disabled. | |||
2008-03-13 | Added tests 622-625 to test SFTP/SCP uploads. Test 625 was an attempt to | Dan Fandrich | |
reproduce the --ftp-create-dirs problem reported by Brian Ulm, but that seems to need a call curl_easy_reset() which this test case doesn't do. | |||
2008-03-11 | updated according to the name resolve race condition fix just committed | Daniel Stenberg | |
2008-03-10 | Added tests 618-621 to test SFTP/SCP transfers of more than one file | Dan Fandrich | |
(test 620 tests the just-fixed problem reported by Brian Ulm). | |||
2008-03-06 | Added tests 616 and 617 to see how SFTP and SCP cope with zero-length | Dan Fandrich | |
files, as questioned by Mike Protts. SFTP does for me but SCP doesn't so test 617 is disabled for now. | |||
2008-02-20 | - Fixed test case 405 to not fail when libcurl is built with GnuTLS | Daniel Stenberg | |
2008-02-20 | - We no longer support setting the CURLOPT_URL option from inside a callback | Daniel Stenberg | |
such as the CURLOPT_SSL_CTX_FUNCTION one treat that as if it was a Location: following. The patch that introduced this feature was done for 7.11.0, but this code and functionality has been broken since about 7.15.4 (March 2006) with the introduction of non-blocking OpenSSL "connects". It was a hack to begin with and since it doesn't work and hasn't worked correctly for a long time and nobody has even noticed, I consider it a very suitable subject for plain removal. And so it was done. | |||
2008-02-19 | Added test309 to test HTTP redirect to HTTPS URL | Dan Fandrich | |
2008-02-09 | Fixed some XML parsing problems. | Dan Fandrich | |
2008-02-09 | Added key words to all SSL-using tests so they can be skipped if necessary. | Dan Fandrich | |
Removed a few unnecessary requires SSL statements. | |||
2008-02-09 | Fixed test to use HTTPS as documented. | Dan Fandrich | |
2008-02-08 | Missed checking in these test data files. | Dan Fandrich | |
2008-02-08 | Added tests 1022 and 1023 to validate output of curl-config --version and | Dan Fandrich | |
--vernum | |||
2008-01-31 | - Niklas Angebrand made the cookie support in libcurl properly deal with the | Daniel Stenberg | |
"HttpOnly" feature introduced by Microsoft and apparently also supported by Firefox: http://msdn2.microsoft.com/en-us/library/ms533046.aspx . HttpOnly is now supported when received from servers in HTTP headers, when written to cookie jars and when read from existing cookie jars. | |||
2008-01-29 | - Michal Marek fixed minor mistake in test case 553 that prevented it from | Daniel Stenberg | |
working on other IP-addresses or port numbers. | |||
2008-01-26 | added test 1021 to verify my fix for bug report #1879375 | Daniel Stenberg | |
2008-01-19 | Dmitry Kurochkin fixed test case 530 (pipelining) | Daniel Stenberg | |
2008-01-17 | Put the comments in an XML-valid location. | Dan Fandrich | |
2008-01-16 | Added test 553. This test case and code is based on the bug recipe Joe Malicki | Daniel Stenberg | |
provided for bug report #1871269, fixed on Jan 14 2008 before the 7.18.0 release. | |||
2008-01-16 | Dmitry Kurochkin worked a lot on improving the HTTP Pipelining support that | Daniel Stenberg | |
previously had a number of flaws, perhaps most notably when an application fired up N transfers at once as then they wouldn't pipeline at all that nicely as anyone would think... Test case 530 was also updated to take the improved functionality into account. | |||
2008-01-13 | add client features part | Yang Tse | |
2008-01-11 | Daniel Egger made CURLOPT_RANGE work on file:// URLs the very same way it | Daniel Stenberg | |
already worked for FTP:// URLs | |||
2008-01-07 | Fixed test description | Dan Fandrich | |
2008-01-05 | added keyword | Daniel Stenberg | |
2007-12-26 | In an attempt to repeat the problem in bug report #1850730 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1850730) I wrote up test case 552. The test is doing a 70K POST with a read callback and an ioctl callback over a proxy requiring Digest auth. The test case code is more or less identical to the test recipe code provided by Spacen Jasset (who submitted the bug report). | |||
2007-12-15 | spell! | Daniel Stenberg | |
2007-12-15 | Add test 551 that tests callback-post over a proxy that requires Digest auth. | Daniel Stenberg | |
A failed attempt to repeat bug report #1850730 (ie the test works fine). | |||
2007-12-14 | Added missing <features> | Dan Fandrich | |
2007-12-14 | Fixed typo in test title | Dan Fandrich | |
2007-12-08 | add keywords | Daniel Stenberg | |
2007-12-08 | add missing files | Daniel Stenberg | |
2007-12-08 | add test 549 and 550 | Daniel Stenberg | |
2007-12-05 | Spacen Jasset reported a problem with doing POST (with data read with a | Daniel Stenberg | |
callback) over a proxy when NTLM is used as auth with the proxy. The bug also concerned Digest and was limited to using callback only. Spacen worked with us to provide a useful patch. I added the test case 547 and 548 to verify two variations of POST over proxy with NTLM. | |||
2007-12-05 | added test548 which uses the lib547 source file, preparing for test547 which | Daniel Stenberg | |
is supposed to repeat the bug report "NTLM proxy authentication with CURLOPT_READDATA seems broken." posted on the curl-library mailing list on dec 3 2007. | |||
2007-12-03 | removed the ;type= thing for FTP urls through proxy, since that's now only | Daniel Stenberg | |
present when enabled by on option which isn't done by default (and isn't even available for the curl app atm) | |||
2007-11-26 | test1015 --data-urlencode | Daniel Stenberg | |
2007-11-23 | Revert last change since it breaks running the test suite | Yang Tse | |
when builddir is different from srcdir. | |||
2007-11-23 | Improve chance of running runtests.pl from outside the | Yang Tse | |
source tree 'tests' directory | |||
2007-11-05 | Added some keywords | Dan Fandrich | |
2007-11-01 | Added test case 1014 to compare curl-config --features with curl --version | Dan Fandrich | |
2007-11-01 | Added test case 1013 to check that curl-config --protocols matches the | Dan Fandrich | |
protocols listed in curl --version | |||
2007-10-29 | Added test case 546 to check that subsequent FTP transfers work after a | Dan Fandrich | |
failed one using the multi interface | |||
2007-10-27 | Fixed the 2000-series tests so that the downloaded data is actually checked | Dan Fandrich | |