Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2007-10-26 | Fixed the test case to create only a single test file, which is all the | Dan Fandrich | |
test harness supports. | |||
2007-10-25 | Disable valgrind for this test to avoid the rlimit = soft rlimit problem | Dan Fandrich | |
found by Michal Marek. | |||
2007-10-25 | Added test case 2004. | Dan Fandrich | |
Disable valgrind in test case 1004 due to a libtool bug. | |||
2007-10-25 | Allow test server to handle binary POSTs. | Patrick Monnerat | |
Tests 35, 544 545 added: binary data POSTs. | |||
2007-10-25 | Fixed a TFTP memory leak. Enabled test 2003 to verify this. | Daniel Stenberg | |
2007-10-24 | Fixed the test TFTP server to support the >10000 test number notation | Dan Fandrich | |
Added test cases 2002 and 2003 (the latter disabled for now) | |||
2007-10-24 | enable 2000 and 2001 | Daniel Stenberg | |
2007-10-24 | Added test cases 2000 and 2001 which test multiple protocols using the | Dan Fandrich | |
same easy handle Fixed the filecheck: make target to work outside the source tree | |||
2007-10-12 | Fixed a couple of typos that messed up the tests. | Dan Fandrich | |
2007-10-12 | Added some <keywords> sections and use some key words more consistently. | Dan Fandrich | |
2007-10-04 | I enabled test 1009 and made the --local-port use a wide range to reduce the | Daniel Stenberg | |
risk of failures. | |||
2007-10-04 | Kim Rinnewitz reported that --local-port didn't work with TFTP transfers. | Daniel Stenberg | |
This happened because the tftp code always uncondionally did a bind() without caring if one already had been done and then it failed. I wrote a test case (1009) to verify this, but it is a bit error-prone since it will have to pick a fixed local port number and since the tests are run on so many different hosts in different situations I add it in disabled state. | |||
2007-10-02 | known bug #46: chunked-encoded CONNECT responses from a http proxy now works. | Daniel Stenberg | |
Added test case 1008 to verify. Note that #47 is still there. | |||
2007-09-30 | Added test536 that was accidentally missing. I also wrote up a new makefile | Daniel Stenberg | |
target called 'filecheck' so that if you run 'make filecheck' in this directory it'll check if the local files are also mentioned in the Makefile.am so that they are properly included in release archives! | |||
2007-09-30 | Alex Fishman reported a curl_easy_escape() problem that was made the | Daniel Stenberg | |
function do wrong on all input bytes that are >= 0x80 (decimal 128) due to a signed / unsigned mistake in the code. I fixed it and added test case 543 to verify. | |||
2007-09-26 | Philip Langdale provided the new CURLOPT_POST301 option for | Daniel Stenberg | |
curl_easy_setopt() that alters how libcurl functions when following redirects. It makes libcurl obey the RFC2616 when a 301 response is received after a non-GET request is made. Default libcurl behaviour is to change method to GET in the subsequent request (like it does for response code 302 - because that's what many/most browsers do), but with this CURLOPT_POST301 option enabled it will do what the spec says and do the next request using the same method again. I.e keep POST after 301. The curl tool got this option as --post301 Test case 1011 and 1012 were added to verify. | |||
2007-09-26 | Max Katsev reported that when doing a libcurl FTP request with | Daniel Stenberg | |
CURLOPT_NOBODY enabled but not CURLOPT_HEADER, libcurl wouldn't do TYPE before it does SIZE which makes it less useful. I walked over the code and made it do this properly, and added test case 542 to verify it. | |||
2007-09-24 | Immanuel Gregoire fixed KNOWN_BUGS #44: --ftp-method nocwd did not handle | Daniel Stenberg | |
URLs ending with a slash properly (it should list the contents of that directory). Test case 351 brought back and also test 1010 was added. | |||
2007-09-20 | Added variable substitution to the <verify><file> section. | Dan Fandrich | |
Made a few more tests work remotely. | |||
2007-09-18 | Use double quotes in command lines for consistency. | Dan Fandrich | |
2007-09-18 | IPv6 is a required feature for these two tests, even if it's not obvious. | Dan Fandrich | |
2007-09-17 | Fixed the required server entry | Dan Fandrich | |
2007-09-17 | Changed some FTP tests to validate the format of the PORT and EPRT commands | Dan Fandrich | |
sent by curl, if not the addresses themselves. | |||
2007-09-17 | Made the directory postprocessor more forgiving of input directory format | Dan Fandrich | |
2007-09-15 | Michal Marek made libcurl automatically append ";type=<a|i>" when using HTTP | Daniel Stenberg | |
proxies for FTP urls. | |||
2007-09-14 | Replaced 127.0.0.1 with %HOSTIP where possible | Dan Fandrich | |
2007-09-11 | Daniel S (12 September 2007) | Daniel Stenberg | |
- Bug report #1792649 (http://curl.haxx.se/bug/view.cgi?id=1792649) pointed out a problem with doing an empty upload over FTP on a re-used connection. I added test case 541 to reproduce it and to verify the fix. - I noticed while writing test 541 that the FTP code wrongly did a CWD on the second transfer as it didn't store and remember the "" path from the previous transfer so it would instead CWD to the entry path as stored. This worked, but did a superfluous command. Thus, test case 541 now also verifies this fix. |