summaryrefslogtreecommitdiff
path: root/tests/data/test235
Commit message (Collapse)AuthorAgeFilesLines
* tests: use %TESTNUMBER instead of fixed numberDaniel Stenberg2021-03-191-4/+4
| | | | | | | This makes the tests easier to copy and relocate to other test numbers without having to update content. Closes #6738
* ftp: a 550 response to SIZE returns CURLE_REMOTE_FILE_NOT_FOUNDDaniel Stenberg2020-09-141-0/+3
| | | | | | | | | | | | | | | | | | | | This is primarily interesting for cases where CURLOPT_NOBODY is set as previously curl would not return an error for this case. MDTM getting 550 now also returns this error (it returned CURLE_FTP_COULDNT_RETR_FILE before) in order to unify return codes for missing files across protocols and specific FTP commands. libcurl already returns error on a 550 as a MDTM response (when CURLOPT_FILETIME is set). If CURLOPT_NOBODY is not set, an error would happen subsequently anyway since the RETR command would fail. Add test 1913 and 1914 to verify. Updated several tests accordingly due to the updated SIZE behavior. Reported-by: Tomas Berger Fixes #5953 Closes #5957
* Add FTP keywords for a couple of currently keyword-less FTP testsFabian Keil2012-11-191-0/+6
|
* Various test file cleanups, including using <servercmd> instead of writingDan Fandrich2007-04-181-2/+0
| | | | directly to ftpserver.cmd and removing unneeded empty sections.
* ftp@example.com is now the new anonymous FTP password. I opted for 'ftp' onDaniel Stenberg2007-02-131-1/+1
| | | | the left side of @ to make it short(er).
* Convert (most of) the test data files into genuine XML. A handful stillDan Fandrich2007-01-231-0/+2
| | | | | | are not, due mainly to the lack of support for XML character entities (e.g. & => &amp; ). This will make it easier to validate test files using tools like xmllint, as well as edit and view them using XML tools.
* Added test case 235 that makes a resumed upload of a file that isn't presentDaniel Stenberg2005-03-041-0/+42
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.