aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2013-09-12ftpserver.pl: Fixed missing comma from 7fd84b14d219b1Steve Holme
2013-09-12ftpserver.pl: Fixed variable error introduced in 7fd84b14d219b1Steve Holme
Global symbol "$mailbox" requires explicit package name
2013-09-11ftpserver.pl: Added support for UID commandSteve Holme
2013-09-11ftpserver.pl: Added support for LSUB commandSteve Holme
2013-09-11ftpserver.pl: Added support for IMAP COPY commandSteve Holme
2013-09-11ftpserver.pl: Added support for IMAP CLOSE and EXPUNGE commandsSteve Holme
2013-09-11ftpserver.pl: Added support for POP3 RSET commandSteve Holme
2013-09-11ftpserver.pl: Added the ability to remember what messages are deletedSteve Holme
...as this will be required for IMAP CLOSE and EXPUNGE commands as well as the POP3 RSET command.
2013-09-09tests: Added test for POP3 TOP commandSteve Holme
2013-09-09ftpserver.pl: Added support for POP3 TOP commandSteve Holme
2013-09-09tests: Added test for POP3 UIDL commandSteve Holme
2013-09-09ftpserver.pl: Added support for POP3 UIDL commandSteve Holme
2013-09-08ftpserver.pl: Fixed empty array checksSteve Holme
...from commits 28427b408326a1 and e8313697b6554b.
2013-09-08ftpserver: Reworked AUTH support to allow for specifying the mechanismsSteve Holme
Renamed SUPPORTAUTH to AUTH and added support for specifying a list of supported SASL mechanisms to return to the client. Additionally added the directive to the FILEFORMAT document.
2013-09-08ftpserver: Reworked CAPA support to allow for specifying the capabilitiesSteve Holme
Renamed SUPPORTCAPA to CAPA and added support for specifying a list of supported capabilities to return to the client. Additionally added the directive to the FILEFORMAT document.
2013-09-08ftpserver.pl: Corrected POP3 LIST as message numbers should be contiguousSteve Holme
The message numbers given in the LIST response are an index into the list, which are only valid for the current session, rather than being a unique message identifier. An index would only be missing from the LIST response if a DELE command had been issued within the same session and had not been committed by the end of session QUIT command. Once committed the POP3 server will regenerate the message numbers in the next session to be contiguous again. As such our LIST response should list message numbers contiguously until we support a DELE command in the same session. Should a POP3 user require the unique message ID for any or all messages then they should use the extended UIDL command. This command will be supported by the test ftpserver in an upcoming commit.
2013-09-08tests: Updated descriptions to be more meaningfulSteve Holme
2013-09-08tests: Added test for POP3 NOOP commandSteve Holme
2013-09-08ftpserver.pl: Added support for POP3 NOOP commandSteve Holme
2013-09-08ftpserver.pl: Fixed 'Use of uninitialized value $args in string ne'Steve Holme
2013-09-08tests: Added test for POP3 STAT commandSteve Holme
2013-09-08ftpserver.pl: Added support for POP STAT commandSteve Holme
2013-09-08ftpserver.pl: Moved POP3 QUIT handler into own functionSteve Holme
2013-09-08ftpserver.pl: Reordered the POP3 handlers to be alphabeticalSteve Holme
In preparation for additional POP3 tests, re-ordered the command function defintions to be sorted alphabetically.
2013-09-08ftpserver.pl: Corrected misaligned indentation in POP3 handlersSteve Holme
Fixed incorrect indentation used in both the RETR_pop3 and LIST_pop3 functions which was 5 and 9 characters rather than 4 and 8.
2013-09-07tests: Added test for POP3 DELE commandSteve Holme
2013-09-07ftpserver.pl: Added support for POP3 DELE commandSteve Holme
2013-09-06urlglob: improved error messages and column number on bad useDaniel Stenberg
Introduce a convenience macro and keep of the column better so that it can point out the offending column better. Updated test 75 accordingly.
2013-09-02lib1512.c: Fixed compilation warningSteve Holme
An enumerated type is mixed with another type. ...as well as a small coding style error.
2013-09-01Killed warning 'res' might be used uninitialized.Guenter Knauf
2013-08-31tests: Added test for IMAP CHECK commandSteve Holme
2013-08-31ftpserver.pl: Added support for the IMAP CHECK commandSteve Holme
2013-08-31ftpserver.pl: Corrected flawed logic in commit 1ca6ed7b75cad0Steve Holme
2013-08-31ftpserver.pl: Added argument check to IMAP command handlersSteve Holme
Added BAD argument check to the following IMAP command handlers: APPEND, STORE, LIST, EXAMINE, STATUS and SEARCH
2013-08-31ftpserver.pl: More whitespace correctionsSteve Holme
LIST_imap() had a second level of indentation at 9 characters and not 8.
2013-08-30ftpserver.pl: Small correction tidy upSteve Holme
Corrected some IMAP variable names and whitespace issues.
2013-08-30tests: Added tests for IMAP CREATE, DELETE and RENAME commandsSteve Holme
2013-08-30ftpserver: Bareword "to_mailbox" not allowedDaniel Stenberg
Added missing $
2013-08-30ftpserver.pl: Added support for IMAP CREATE, DELETE and RENAME commandsSteve Holme
2013-08-29ftpserver.pl: Updated IMAP EXAMINE handler to use dynamic test dataSteve Holme
2013-08-29unit1304: include memdebug and free everything correctlyDaniel Stenberg
2013-08-29ftpserver.pl: Added SELECT check to IMAP FETCH and STORE handlersSteve Holme
2013-08-28ftpserver.pl: Corrected accidental move of logmsg() callSteve Holme
Corrected the call to logmsg() in the IMAP SEARCH handler from commit 4ae7b7ea691497 as it should have been outputting the what argument and not the test number.
2013-08-28ftpserver: add missing '}' from 4ae7b7ea69149Daniel Stenberg
2013-08-28ftpserver.pl: Added SELECT check to IMAP SEARCH commandSteve Holme
2013-08-28ftpserver.pl: Fixed IMAP SEARCH commandSteve Holme
2013-08-28tests: Added test for IMAP SEARCH commandSteve Holme
2013-08-28valgrind.supp: fix for regular curl_easy_perform tooDaniel Stenberg
When we introduced curl_easy_perform_ev, this got a slightly modified call trace. Without this, test 165 causes a false positive valgrind error.
2013-08-28valgrind.supp: add the event-based call stack-trace tooDaniel Stenberg
Without this, test 165 triggers a valgrind error when ran with curl_easy_perform_ev
2013-08-27ftpserver.pl: Added support for IMAP SEARCH commandSteve Holme