aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2005-04-05test time-conditioned FTP uploadsDaniel Stenberg
2005-04-03Hardeep Singh reported a problem doing HTTP POST with Digest. (It was actuallyDaniel Stenberg
also affecting NTLM and Negotiate.) It turned out that if the server responded with 100 Continue before the initial 401 response, libcurl didn't take care of the response properly. Test case 245 and 246 added to verify this.
2005-04-03Test 245 was just added in an attempt to repeat Hardeep Singh's recent bug.Daniel Stenberg
But this works just fine on my host. Plain HTTP POST using Digest.
2005-03-31copyright this yearDaniel Stenberg
2005-03-31Attempt to make this code more forgiving for systems that doesn't detectDaniel Stenberg
the failed connect "immediately".
2005-03-31Updated the copyright year since changes have been this year.Daniel Stenberg
2005-03-29Made the server send data to the control/data connections using two dedicatedDaniel Stenberg
functions. This enabled me to add a function that automatically delays between each byte, to proper test curl's ability to read FTP server responses sent in many (small) chunks. See also upcoming libcurl fixes...
2005-03-28Based on Augustus Saunders' comments and findings, the HTTP output authDaniel Stenberg
function was fixed to use the proper proxy authentication when multiple ones were added as accepted. test 239 and test 243 were added to repeat the problems and verify the fixes.
2005-03-28modified some log outputs, added comment about auth required as used inDaniel Stenberg
test 154
2005-03-22can you spell copy and paste error for me loud and clear? ;-PDaniel Stenberg
2005-03-22provide HTML and PDF versions of the man pages in the dist archiveDaniel Stenberg
2005-03-21Make NTLM tests depend on the NTLM feature at not SSL, since the NTLM supportDaniel Stenberg
is no longer only present when built with SSL support.
2005-03-21format mistakeDaniel Stenberg
2005-03-19some additional debug outputDaniel Stenberg
2005-03-18Fixed spelling of --runtestoptsDan Fandrich
2005-03-18Netware builds don't use configure.Dan Fandrich
2005-03-18adjust to use plain 'make' even for cross-compiles if using configure-Daniel Stenberg
style build
2005-03-17Change the bogus address used in test237 to be more reliable when runDan Fandrich
on a host with a buggy resolver that strips all but the bottom 8 bits of each octet. The resolved address in this case (192.0.2.127) is guaranteed never to belong to a real host (see RFC3330).
2005-03-17added descriptionsDaniel Stenberg
2005-03-17don't set TEST_F to blank when --runtestopts isn't used, as that will overrideDaniel Stenberg
the default options set in the Makefile
2005-03-17support multiple error codes for a test case since some things just varyDaniel Stenberg
between platforms
2005-03-17add new optionDaniel Stenberg
2005-03-17add new fileDaniel Stenberg
2005-03-17its a startDaniel Stenberg
2005-03-17Added the --runtestsopts option to testcurl.pl to override the defaultDan Fandrich
options used by runtests.pl during testing (useful for disabling valgrind).
2005-03-16check for the HTTPS server in a manner similar to how we check for the HTTPDaniel Stenberg
server
2005-03-15test EPSV and PASV response handling when they get well-formated data backDaniel Stenberg
but using illegal values
2005-03-15initial man page attempt for testcurl.plDaniel Stenberg
2005-03-15Added lots of new command line options, made confsuffix get set based onDaniel Stenberg
targetos only and not build os. Commented away the line that enables perl warnings.
2005-03-15Make nonexistent host names absolute so tests will pass on machinesDan Fandrich
with a wildcard DNS search domain.
2005-03-14show LDFLAGS tooDaniel Stenberg
2005-03-12David Houlder added --form-stringDaniel Stenberg
2005-03-11no more rewriting of the setup fileDaniel Stenberg
2005-03-09skip the test of "2094 Nov 6" for now, since the 64bit time_t systems returnDaniel Stenberg
different values for it...
2005-03-08Dominick Meglio reported that using CURLOPT_FILETIME when transferring a FTPDaniel Stenberg
file got a Last-Modified: header written to the data stream, corrupting the actual data. This was because some conditions from the previous FTP code was not properly brought into the new FTP code. I fixed and I added test case 520 to verify. (This bug was introduced in 7.13.1)
2005-03-07test 236: FTP resume upload but denied access to remote fileDaniel Stenberg
2005-03-06added valgrind.pm to the distDaniel Stenberg
2005-03-04Added test case 235 that makes a resumed upload of a file that isn't presentDaniel Stenberg
on the remote side. This then converts the operation to an ordinary STOR upload. This was requested/pointed out by Ignacio Vazquez-Abrams. It also proved (and I fixed) a bug in the newly rewritten ftp code (and present in the 7.13.1 release) when trying to resume an upload and the servers returns an error to the SIZE command. libcurl then loops and sends SIZE commands infinitely.
2005-02-24Fixed some compiler warnings. Fixed a low incidence memory leak in the test ↵Dan Fandrich
server.
2005-02-22Curl_base64_decode() now returns an allocated bufferDaniel Stenberg
2005-02-19added test case 234 which is like 233 but uses --location-trusted instead soDaniel Stenberg
thus the second request to the new host will use authentication fine
2005-02-18Ralph Mitchell reported a flaw when you used a proxy with auth, and youDaniel Stenberg
requested data from a host and then followed a redirect to another host. libcurl then didn't use the proxy-auth properly in the second request, due to the host-only check for original host name wrongly being extended to the proxy auth as well. Added test case 233 to verify the flaw and that the fix removed the problem.
2005-02-10Moved out the valgrind report parser to valgrind.pm, to make it easier toDaniel Stenberg
test it outside the test suite. Now we also disable valgrind usage if libcurl was built shared, as then valgrind is only testing the wrapper-script running shell which is pointless.
2005-02-09FTP code turned into state machine. Not completely yet, but a good start.Daniel Stenberg
The tag 'before_ftp_statemachine' was set just before this commit in case of future need.
2005-01-30Bugfixed the parser that scans the valgrind report outputs. I noticed that itDaniel Stenberg
previously didn't detect and report the "Conditional jump or move depends on uninitialised value(s)" error. When I fixed this, I caught a few curl bugs with it. And then I had to spend time to make the test suite IGNORE these errors when OpenSSL is used since it produce massive amounts of valgrind warnings (but only of the "Conditional..." kind it seems). So, if a test that requires SSL is run, it ignores the "Conditional..." errors, and you'll get a "valgrind PARTIAL" output instead of "valgrind OK".
2005-01-30properly mark tests as requiring feature 'SSL'Daniel Stenberg
2005-01-29when using valgrind, include a much longer stack traceDaniel Stenberg
2005-01-28adjusted to the moved unlock of the DNS entryDaniel Stenberg
2005-01-27test the EPRT/LPRT/PORT somewhat moreDaniel Stenberg
2005-01-27Use the same work-around for the memdebug stuff as in the command line client,Daniel Stenberg
to allow the contents of the env var decide the file name.