Modified: james/server/trunk/phoenix-deployment/src/test/org/apache/james/experimental/imapserver/ExperimentalAuthenticatedStateTest.java URL: http://svn.apache.org/viewvc/james/server/trunk/phoenix-deployment/src/test/org/apache/james/experimental/imapserver/ExperimentalAuthenticatedStateTest.java?rev=591779&r1=591778&r2=591779&view=diff ============================================================================== --- james/server/trunk/phoenix-deployment/src/test/org/apache/james/experimental/imapserver/ExperimentalAuthenticatedStateTest.java (original) +++ james/server/trunk/phoenix-deployment/src/test/org/apache/james/experimental/imapserver/ExperimentalAuthenticatedStateTest.java Sun Nov 4 05:11:12 2007 @@ -19,6 +19,8 @@ package org.apache.james.experimental.imapserver; +import java.util.Locale; + import org.apache.james.test.functional.imap.AbstractAuthenticatedStateTestSuite; public class ExperimentalAuthenticatedStateTest extends AbstractAuthenticatedStateTestSuite { @@ -26,38 +28,101 @@ super(HostSystemFactory.createStandardImap()); } - public void testSubscribe() throws Exception { + public void testSubscribeUS() throws Exception { // TODO: user is automatically subscribed to INBOX. // Check whether this is correct behaviour } - public void testSelectEmpty() throws Exception { + public void testSelectEmptyUS() throws Exception { // TODO: \recent flag is returned by FLAGS - specification seems ambiguous on this } - public void testAppendExamineInbox() throws Exception { + public void testAppendExamineInboxUS() throws Exception { // TODO: \recent flag is returned by FLAGS - specification seems ambiguous on this } - public void testAppendSelectInbox() throws Exception { + public void testAppendSelectInboxUS() throws Exception { // TODO: \recent flag is returned by FLAGS - specification seems ambiguous on this } - public void testListMailboxes() throws Exception { + public void testListMailboxesUS() throws Exception { // TODO: fix bug - complete hierarchy returned } - public void testSelectAppend() throws Exception { + public void testSelectAppendUS() throws Exception { // TODO: \recent flag is returned by FLAGS - specification seems ambiguous on this } - public void testAppendExpunge() throws Exception { + public void testAppendExpungeUS() throws Exception { // TODO: \recent flag is returned by FLAGS - specification seems ambiguous on this } - public void testListNamespace() throws Exception { + public void testListNamespaceUS() throws Exception { + // TODO: root mailbox should be marked as Noselect + } + + public void testSubscribeITALY() throws Exception { +// TODO: \recent flag is returned by FLAGS - specification seems ambiguoITALY on this + } + + public void testSelectEmptyITALY() throws Exception { +// TODO: \recent flag is returned by FLAGS - specification seems ambiguoITALY on this + } + + public void testAppendExamineInboxITALY() throws Exception { +// TODO: \recent flag is returned by FLAGS - specification seems ambiguoITALY on this + } + + public void testAppendSelectInboxITALY() throws Exception { +// TODO: \recent flag is returned by FLAGS - specification seems ambiguoITALY on this + } + + public void testListMailboxesITALY() throws Exception { +// TODO: fix bug - complete hierarchy returned + } + + public void testSelectAppendITALY() throws Exception { +// TODO: \recent flag is returned by FLAGS - specification seems ambiguoITALY on this + } + + public void testAppendExpungeITALY() throws Exception { +// TODO: \recent flag is returned by FLAGS - specification seems ambiguoITALY on this + } + + public void testListNamespaceITALY() throws Exception { // TODO: root mailbox should be marked as Noselect } + public void testSubscribeKOREA() throws Exception { +// TODO: \recent flag is returned by FLAGS - specification seems ambiguoKOREA on this + } + + public void testSelectEmptyKOREA() throws Exception { +// TODO: \recent flag is returned by FLAGS - specification seems ambiguoKOREA on this + } + + public void testAppendExamineInboxKOREA() throws Exception { +// TODO: \recent flag is returned by FLAGS - specification seems ambiguoKOREA on this + } + + public void testAppendSelectInboxKOREA() throws Exception { +// TODO: \recent flag is returned by FLAGS - specification seems ambiguoKOREA on this + } + + public void testListMailboxesKOREA() throws Exception { +// TODO: fix bug - complete hierarchy returned + } + + public void testSelectAppendKOREA() throws Exception { +// TODO: \recent flag is returned by FLAGS - specification seems ambiguoKOREA on this + } + + public void testAppendExpungeKOREA() throws Exception { +// TODO: \recent flag is returned by FLAGS - specification seems ambiguoKOREA on this + } + + public void testListNamespaceKOREA() throws Exception { + // TODO: root mailbox should be marked as Noselect + } }
Modified: james/server/trunk/phoenix-deployment/src/test/org/apache/james/experimental/imapserver/ExperimentalSelectedStateTest.java URL: http://svn.apache.org/viewvc/james/server/trunk/phoenix-deployment/src/test/org/apache/james/experimental/imapserver/ExperimentalSelectedStateTest.java?rev=591779&r1=591778&r2=591779&view=diff ============================================================================== --- james/server/trunk/phoenix-deployment/src/test/org/apache/james/experimental/imapserver/ExperimentalSelectedStateTest.java (original) +++ james/server/trunk/phoenix-deployment/src/test/org/apache/james/experimental/imapserver/ExperimentalSelectedStateTest.java Sun Nov 4 05:11:12 2007 @@ -27,40 +27,110 @@ super(HostSystemFactory.createStandardImap()); } - public void testSearch() throws Exception { + public void testSearchUS() throws Exception { //TODO Implement search } - public void testFetchMultipleMessages() throws Exception { + public void testFetchMultipleMessagesUS() throws Exception { // TODO Auto-generated method stub //super.testFetchMultipleMessages(); } - public void testFetchPeek() throws Exception { + public void testFetchPeekUS() throws Exception { // STORE FLAGS.SILENT does not work //super.testFetchPeek(); } - public void testFetchSingleMessage() throws Exception { + public void testFetchSingleMessageUS() throws Exception { // BODY octet count is buggy. // The total size of the message is used rather than the size of the part //super.testFetchSingleMessage(); } - public void testStore() throws Exception { + public void testStoreUS() throws Exception { // STORE FLAGS.SILENT does not work // super.testStore(); } - public void testUid() throws Exception { + public void testUidUS() throws Exception { // UID fetch not working very well // super.testUid(); } - public void testCopy() throws Exception { + public void testCopyUS() throws Exception { // extra fetch messages // super.testCopy(); } + + public void testSearchKOREA() throws Exception { + //TODO Implement search + } + + public void testFetchMultipleMessagesKOREA() throws Exception { + // TODO Auto-generated method stub + //super.testFetchMultipleMessages(); + } + + public void testFetchPeekKOREA() throws Exception { + // STORE FLAGS.SILENT does not work + //super.testFetchPeek(); + } + + public void testFetchSingleMessageKOREA() throws Exception { + // BODY octet count is buggy. + // The total size of the message is KOREAed rather than the size of the part + //super.testFetchSingleMessage(); + } + + public void testStoreKOREA() throws Exception { +// STORE FLAGS.SILENT does not work +// super.testStore(); + } + + public void testUidKOREA() throws Exception { + // UID fetch not working very well + // super.testUid(); + } + + public void testCopyKOREA() throws Exception { + // extra fetch messages + // super.testCopy(); + } + + public void testSearchITALY() throws Exception { + //TODO Implement search + } + + public void testFetchMultipleMessagesITALY() throws Exception { + // TODO Auto-generated method stub + //super.testFetchMultipleMessages(); + } + + public void testFetchPeekITALY() throws Exception { + // STORE FLAGS.SILENT does not work + //super.testFetchPeek(); + } + + public void testFetchSingleMessageITALY() throws Exception { + // BODY octet count is buggy. + // The total size of the message is ITALYed rather than the size of the part + //super.testFetchSingleMessage(); + } + + public void testStoreITALY() throws Exception { +// STORE FLAGS.SILENT does not work +// super.testStore(); + } + + public void testUidITALY() throws Exception { + // UID fetch not working very well + // super.testUid(); + } + + public void testCopyITALY() throws Exception { + // extra fetch messages + // super.testCopy(); + } } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
