summaryrefslogtreecommitdiff
path: root/tests/data/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
...
* tests: Added IMAP login authentication testSteve Holme2013-11-051-1/+1
|
* tests: Added IMAP plain authentication testSteve Holme2013-11-051-1/+1
|
* tests: Added test for IMAP NOOP commandSteve Holme2013-11-031-0/+1
|
* tests: Added test for IMAP COPY commandSteve Holme2013-11-031-1/+1
|
* tests: Added tests for IMAP CLOSE and EXPUNGE commandsSteve Holme2013-11-031-1/+1
|
* tests: Added SMTP OAUTH2 authentication with initial response testSteve Holme2013-10-251-1/+1
|
* tests: Added SMTP NTLM authentication with initial response testSteve Holme2013-10-251-1/+1
|
* tests: Added SMTP OAUTH2 authentication testSteve Holme2013-10-251-1/+1
|
* tests: Added SMTP DIGEST-MD5 authentication testSteve Holme2013-10-251-1/+1
|
* tests: Regrouped SMTP authentication testsSteve Holme2013-10-251-2/+2
|
* tests: Added POP3 OAUTH2 authentication testSteve Holme2013-10-231-1/+1
|
* tests: Added POP3 DIGEST-MD5 authentication testSteve Holme2013-10-231-1/+1
|
* test1240: verify 867b52a7ac52 (glob ranges with text to the right)Daniel Stenberg2013-10-221-1/+1
|
* tests: Added POP3 NTLM authentication testSteve Holme2013-10-191-0/+1
|
* tests: Added POP3 CRAM-MD5 authentication testSteve Holme2013-10-191-1/+1
|
* tests: Added POP3 login authentication testSteve Holme2013-10-191-1/+1
|
* tests: Added POP3 plain authentication testSteve Holme2013-10-191-1/+1
|
* tests: Added POP3 APOP authentication testSteve Holme2013-10-191-1/+1
|
* tests: Added POP3 RSET testSteve Holme2013-10-191-1/+1
|
* test1239: verify 4cd444e01ad and the simulated 304 responseDaniel Stenberg2013-10-071-1/+1
|
* tests: Added SMTP AUTH NTLM testSteve Holme2013-09-221-1/+1
|
* tests: Added SMTP multiple and invalid --mail-rcpt testSteve Holme2013-09-221-0/+1
|
* tests: Added SMTP multiple --mail-rcpt testSteve Holme2013-09-221-1/+1
|
* tests: Added SMTP invalid --mail-rcpt testSteve Holme2013-09-221-1/+1
|
* tests: Regrouping of SMTP testsSteve Holme2013-09-221-2/+2
|
* tests: Added SMTP invalid --mail-from testSteve Holme2013-09-201-1/+1
|
* tests: Added SMTP large message SIZE testSteve Holme2013-09-191-1/+1
|
* cookies: add expirationYAMADA Yasuharu2013-09-171-1/+1
| | | | | | | | Implement: Expired Cookies These following situation, curl removes cookie(s) from struct CookieInfo if the cookie expired. - Curl_cookie_add() - Curl_cookie_getlist() - cookie_output()
* tests: Added test for SMTP SIZE capabilitySteve Holme2013-09-161-1/+1
|
* tests: Added test for POP3 TOP commandSteve Holme2013-09-091-1/+1
|
* tests: Added test for POP3 UIDL commandSteve Holme2013-09-091-1/+1
|
* tests: Added test for POP3 NOOP commandSteve Holme2013-09-081-1/+1
|
* tests: Added test for POP3 STAT commandSteve Holme2013-09-081-0/+1
|
* tests: Added test for POP3 DELE commandSteve Holme2013-09-071-1/+1
|
* tests: Added test for IMAP CHECK commandSteve Holme2013-08-311-1/+1
|
* tests: Added tests for IMAP CREATE, DELETE and RENAME commandsSteve Holme2013-08-301-1/+1
|
* tests: Added test for IMAP SEARCH commandSteve Holme2013-08-281-1/+1
|
* TFTP: make the CURLOPT_LOW_SPEED* options workDaniel Stenberg2013-08-221-1/+1
| | | | | | | | | | ... this also makes sure that the progess callback gets called more often during TFTP transfers. Added test 1238 to verify. Bug: http://curl.haxx.se/bug/view.cgi?id=1269 Reported-by: Jo3
* test1237: verify 1000+ letter user name + passwordsDaniel Stenberg2013-08-201-1/+1
|
* glob: error out on range overflowDaniel Stenberg2013-08-161-0/+1
| | | | | | | | | | | The new multiply() function detects range value overflows. 32bit machines will overflow on a 32bit boundary while 64bit hosts support ranges up to the full 64 bit range. Added test 1236 to verify. Bug: http://curl.haxx.se/bug/view.cgi?id=1267 Reported-by: Will Dietz
* urlglob: better detect unclosed braces, empty lists and overflowsDaniel Stenberg2013-08-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A rather big overhaul and cleanup. 1 - curl wouldn't properly detect and reject globbing that ended with an open brace if there were brackets or braces before it. Like "{}{" or "[0-1]{" 2 - curl wouldn't properly reject empty lists so that "{}{}" would result in curl getting (nil) strings in the output. 3 - By using strtoul() instead of sscanf() the code will now detected over and underflows. It now also better parses the step argument to only accept positive numbers and only step counters that is smaller than the delta between the maximum and minimum numbers. 4 - By switching to unsigned longs instead of signed ints for the counters, the max values for []-ranges are now very large (on 64bit machines). 5 - Bumped the maximum number of globs in a single URL to 100 (from 10) 6 - Simplified the code somewhat and now it stores fixed strings as single- entry lists. That's also one of the reasons why I did (5) as now all strings between "globs" will take a slot in the array. Added test 1234 and 1235 to verify. Updated test 87. This commit fixes three separate bug reports. Bug: http://curl.haxx.se/bug/view.cgi?id=1264 Bug: http://curl.haxx.se/bug/view.cgi?id=1265 Bug: http://curl.haxx.se/bug/view.cgi?id=1266 Reported-by: Will Dietz
* global dns cache: didn't work [regression]Daniel Stenberg2013-08-081-1/+1
| | | | | | | | | CURLOPT_DNS_USE_GLOBAL_CACHE broke in commit c43127414d89ccb (been broken since the libcurl 7.29.0 release). While this option has been documented as deprecated for almost a decade and nobody even reported this bug, it should remain functional. Added test case 1512 to verify
* FTP: when EPSV gets a 229 but fails to connect, retry with PASVDaniel Stenberg2013-08-061-1/+1
| | | | | | | | | | | | | | | | This is a regression as this logic used to work. It isn't clear when it broke, but I'm assuming in 7.28.0 when we went all-multi internally. This likely never worked with the multi interface. As the failed connection is detected once the multi state has reached DO_MORE, the Curl_do_more() function was now expanded somewhat so that the ftp_do_more() function can request to go "back" to the previous state when it makes another attempt - using PASV. Added test case 1233 to verify this fix. It has the little issue that it assumes no service is listening/accepting connections on port 1... Reported-by: byte_bucket in the #curl IRC channel
* tests: test1232 verifies dotdot removal from path with proxyFabian Keil2013-07-231-1/+1
|
* test1414: FTP PORT download without SIZE supportDaniel Stenberg2013-07-161-1/+1
|
* tests: add test1395 to the tarballDaniel Stenberg2013-06-241-1/+2
|
* dotdot: introducing dot file path cleanupDaniel Stenberg2013-06-221-1/+1
| | | | | | | | | | RFC3986 details how a path part passed in as part of a URI should be "cleaned" from dot sequences before getting used. The described algorithm is now implemented in lib/dotdot.c with the accompanied test case in test 1395. Bug: http://curl.haxx.se/bug/view.cgi?id=1200 Reported-by: Alex Vinnik
* unit1396: unit tests to verify curl_easy_(un)escapeDaniel Stenberg2013-06-221-1/+1
|
* test1230: verify CONNECT to a numerical ipv6-addressDaniel Stenberg2013-06-041-1/+1
|
* Digest auth: escape user names with \ or " in themDaniel Stenberg2013-05-271-1/+1
| | | | | | | | | | When sending the HTTP Authorization: header for digest, the user name needs to be escaped if it contains a double-quote or backslash. Test 1229 was added to verify Reported and fixed by: Nach M. S Bug: http://curl.haxx.se/bug/view.cgi?id=1230