Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-03 | test1513: fix spelling | Daniel Stenberg | |
2014-01-03 | test1513: added - verify early progress callback return fail | Daniel Stenberg | |
Verify the change brought in commit 8e11731653061. It makes sure that returning a failure from the progress callback even very early results in the correct return code. | |||
2014-01-03 | unittests: do not include curl_memory.h | Marc Hoersken | |
memdebug.h already contains all required definitions and including curl_memory.h causes errors like the following: tests/unit/unit1394.c:119: undefined reference to `Curl_cfree' tests/unit/unit1394.c:120: undefined reference to `Curl_cfree' | |||
2013-12-31 | mprintf: Replaced internal usage of FORMAT_OFF_T and FORMAT_OFF_TU | Steve Holme | |
Following commit 0aafd77fa4c6f2, replaced the internal usage of FORMAT_OFF_T and FORMAT_OFF_TU with the external versions that we expect API programmers to use. This negates the need for separate definitions which were subtly different under different platforms/compilers. | |||
2013-12-28 | tests: Disabled NTLM tests when running with SSPI enabled | Steve Holme | |
2013-12-28 | runtests.pl: Fixed slightly incorrect regex in commit 28dd47d4d41900 | Steve Holme | |
2013-12-28 | runtests.pl: Optimised feature present checking code | Steve Holme | |
...to exclude not present features. | |||
2013-12-28 | runtests.pl: Added the ability to run tests when a feature is not present | Steve Holme | |
2013-12-27 | ftpserver.pl: Fixed compilation error | Steve Holme | |
Unmatched right curly bracket at line 758, at end of line | |||
2013-12-27 | ftpserver.pl: Reworked SMTP verified server detection | Steve Holme | |
Following the addition of informational commands to the SMTP protocol, the test server is no longer required to return the verified server information in responses that curl only outputs in verbose mode. Instead, a similar detection mechanism to that used by FTP, IMAP and POP3 can now be used. | |||
2013-12-24 | pop3: Fixed APOP being determined by CAPA response rather than by timestamp | Steve Holme | |
This commit replaces that of 9f260b5d6610f3 because according to RFC-2449, section 6, there is no APOP capability "...even though APOP is an optional command in [POP3]. Clients discover server support of APOP by the presence in the greeting banner of an initial challenge enclosed in angle brackets." | |||
2013-12-24 | tests: Removed APOP timestamp from default server greeting | Steve Holme | |
2013-12-23 | test936: Corrected login details from commit 7246255416617a | Steve Holme | |
2013-12-23 | ftpserver.pl: Updated custom full text REPLY regex | Steve Holme | |
SASL downgrade tests: 833, 835, 879, 881, 935 and 937 would fail as they contained a minus sign in their authentication mechanism and this would be missed by the custom reply parser. | |||
2013-12-23 | tests: Corrected syntax error from commit 7246255416617a | Steve Holme | |
2013-12-23 | tests: Added SMTP SASL downgrade tests | Steve Holme | |
2013-12-23 | tests: Added POP3 SASL downgrade tests | Steve Holme | |
2013-12-23 | tests: Added IMAP SASL downgrade tests | Steve Holme | |
2013-12-22 | ftpserver.pl: Fixed runtime warning from commit 7da9c95bcf1fe6 | Steve Holme | |
Use of uninitialized value $FTPARG in concatenation (.) or string at line 3255. | |||
2013-12-22 | ftpserver.pl: Added the ability to send custom full text replies | Steve Holme | |
2013-12-22 | ftpserver.pl: Added the ability to specify custom full text replies | Steve Holme | |
2013-12-22 | ftpserver.pl: Renamed commandreply variable from customreply | Steve Holme | |
2013-12-22 | tests: Added SASL cancellation keywords | Steve Holme | |
Added SASL CANCELLATION keywords to differentiate these tests from the upcoming SASL downgrade tests. | |||
2013-12-18 | imap/pop3/smtp: Added support for SASL authentication downgrades | Steve Holme | |
Added support for downgrading the SASL authentication mechanism when the decoding of CRAM-MD5, DIGEST-MD5 and NTLM messages fails. This enhances the previously added support for graceful cancellation by allowing the client to retry a lesser SASL mechanism such as LOGIN or PLAIN, or even APOP / clear text (in the case of POP3 and IMAP) when supported by the server. | |||
2013-12-14 | login options: remove the ;[options] support from CURLOPT_USERPWD | Daniel Stenberg | |
To avoid the regression when users pass in passwords containing semi- colons, we now drop the ability to set the login options with the same options. Support for login options in CURLOPT_USERPWD was added in 7.31.0. Test case 83 was modified to verify that colons and semi-colons can be used as part of the password when using -u (CURLOPT_USERPWD). Bug: http://curl.haxx.se/bug/view.cgi?id=1311 Reported-by: Petr Bahula Assisted-by: Steve Holme Signed-off-by: Daniel Stenberg <daniel@haxx.se> | |||
2013-12-01 | base64: Extended validation to look for invalid characters | Steve Holme | |
Extended the basic validation in commit e17c1b25bc33eb to return a failure when invalid base64 characters are included. | |||
2013-11-24 | tests: Re-ordered test arguments to match other IMAP tests | Steve Holme | |
2013-11-24 | tests: Corrected login "username" authentication responses | Steve Holme | |
2013-11-24 | tests: Added error code explanation comments | Steve Holme | |
2013-11-24 | tests: Removed expected QUIT response from graceful cancellation tests | Steve Holme | |
A failure during authentication, which is performed as part of the CONNECT phrase (for IMAP, POP3 and SMTP) is considered by the multi- interface as being closed prematurely (aka a dead connection). As such these protocols cannot issue the relevant QUIT or LOGOUT command. Temporarily fixed the test cases until we can fix this properly. | |||
2013-11-24 | tests: Added SMTP graceful authentication cancellation tests | Steve Holme | |
2013-11-24 | tests: Added POP3 graceful authentication cancellation tests | Steve Holme | |
2013-11-23 | ftpserver.pl: Reworked fix from commit 7a36b2abc06862 | Steve Holme | |
2013-11-23 | ftpserver.pl: Fixed unknown IMAP command "*" | Steve Holme | |
2013-11-23 | ftpserver.pl: Fixed servercmd REPLY with * detection | Steve Holme | |
2013-11-23 | tests: Added IMAP graceful authentication cancellation tests | Steve Holme | |
2013-11-23 | tests: Moved CR LF in URL tests to their respective protocol groups | Steve Holme | |
2013-11-17 | tests: Added SMTP NOOP and RSET tests | Steve Holme | |
2013-11-17 | test928: Corrected typo in expected data from commit df58084695ce9b | Steve Holme | |
2013-11-17 | tests: Added SMTP HELP test | Steve Holme | |
2013-11-17 | tests: Added SMTP EXPN command test | Steve Holme | |
2013-11-16 | test926: Corrected unknown user reply from commit 0d735c29f92748 | Steve Holme | |
The error code should not be sent as data as it isn't passed onto the client as body data, so cannot be compared in the test suite against expected data. | |||
2013-11-16 | tests: Corrected missing data reply sections from 3d50e91aeef8cc | Steve Holme | |
2013-11-16 | tests: Added SMTP VRFY command tests | Steve Holme | |
2013-11-16 | ftpserver.pl: Added support for new SMTP commands | Steve Holme | |
2013-11-15 | lib1507.c: Added missing set of CURLOPT_UPLOAD option | Steve Holme | |
Although this option should have already been set, the SMTP module can now download information from and send instructional commands to, an SMTP server, requiring the option to be set in order to perform a mail transfer. | |||
2013-11-13 | test825: Corrected typo from commit b29217d0d682d4 | Steve Holme | |
2013-11-13 | test922: Corrected title to match other OAuth 2.0 tests | Steve Holme | |
2013-11-13 | tests: Added IMAP OAuth 2.0 authentication with initial response test | Steve Holme | |
2013-11-13 | tests: Added IMAP NTLM authentication with initial response test | Steve Holme | |