JAMES-1869 MPT testing with Cassandra should be error with long mailbox name
Project: http://git-wip-us.apache.org/repos/asf/james-project/repo Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/d4fb7f83 Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/d4fb7f83 Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/d4fb7f83 Branch: refs/heads/master Commit: d4fb7f832af111bcd09b6182ab3ceb3c42693119 Parents: eb9b24c Author: Quynh Nguyen <[email protected]> Authored: Tue Jan 24 13:43:16 2017 +0700 Committer: Antoine Duprat <[email protected]> Committed: Thu Jan 26 12:58:22 2017 +0100 ---------------------------------------------------------------------- .../cassandra/CassandraMailboxTest.java | 49 ++ .../suite/MailboxWithLongNameError.java | 43 + .../imap/scripts/CreateErrorWithLongName.test | 824 +++++++++++++++++++ .../james/imap/scripts/CreateWithLongName.test | 802 ------------------ 4 files changed, 916 insertions(+), 802 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/d4fb7f83/mpt/impl/imap-mailbox/cassandra/src/test/java/org/apache/james/mpt/imapmailbox/cassandra/CassandraMailboxTest.java ---------------------------------------------------------------------- diff --git a/mpt/impl/imap-mailbox/cassandra/src/test/java/org/apache/james/mpt/imapmailbox/cassandra/CassandraMailboxTest.java b/mpt/impl/imap-mailbox/cassandra/src/test/java/org/apache/james/mpt/imapmailbox/cassandra/CassandraMailboxTest.java index bd3044a..2c43665 100644 --- a/mpt/impl/imap-mailbox/cassandra/src/test/java/org/apache/james/mpt/imapmailbox/cassandra/CassandraMailboxTest.java +++ b/mpt/impl/imap-mailbox/cassandra/src/test/java/org/apache/james/mpt/imapmailbox/cassandra/CassandraMailboxTest.java @@ -20,9 +20,58 @@ package org.apache.james.mpt.imapmailbox.cassandra; import org.apache.james.mpt.imapmailbox.AbstractMailboxTest; +import org.apache.james.mpt.imapmailbox.suite.MailboxWithLongNameError; +import org.apache.james.mpt.imapmailbox.suite.AuthenticatedState; +import org.apache.james.mpt.imapmailbox.suite.ConcurrentSessions; +import org.apache.james.mpt.imapmailbox.suite.Events; +import org.apache.james.mpt.imapmailbox.suite.Expunge; +import org.apache.james.mpt.imapmailbox.suite.Fetch; +import org.apache.james.mpt.imapmailbox.suite.FetchBodySection; +import org.apache.james.mpt.imapmailbox.suite.FetchBodyStructure; +import org.apache.james.mpt.imapmailbox.suite.FetchHeaders; +import org.apache.james.mpt.imapmailbox.suite.Listing; +import org.apache.james.mpt.imapmailbox.suite.MailboxAnnotation; +import org.apache.james.mpt.imapmailbox.suite.Move; +import org.apache.james.mpt.imapmailbox.suite.NonAuthenticatedState; +import org.apache.james.mpt.imapmailbox.suite.PartialFetch; +import org.apache.james.mpt.imapmailbox.suite.QuotaTest; +import org.apache.james.mpt.imapmailbox.suite.Rename; +import org.apache.james.mpt.imapmailbox.suite.Search; +import org.apache.james.mpt.imapmailbox.suite.Security; +import org.apache.james.mpt.imapmailbox.suite.Select; +import org.apache.james.mpt.imapmailbox.suite.SelectedInbox; +import org.apache.james.mpt.imapmailbox.suite.SelectedState; +import org.apache.james.mpt.imapmailbox.suite.UidSearch; +import org.apache.james.mpt.imapmailbox.suite.UserFlagsSupport; import org.apache.james.mpt.onami.test.annotation.GuiceModules; +import org.junit.runners.Suite.SuiteClasses; @GuiceModules({ CassandraMailboxTestModule.class }) +@SuiteClasses({ + AuthenticatedState.class, + ConcurrentSessions.class, + Events.class, + Expunge.class, + Fetch.class, + FetchBodySection.class, + FetchBodyStructure.class, + FetchHeaders.class, + Listing.class, + NonAuthenticatedState.class, + PartialFetch.class, + Rename.class, + Search.class, + Security.class, + Select.class, + QuotaTest.class, + UserFlagsSupport.class, + Move.class, + SelectedInbox.class, + SelectedState.class, + UidSearch.class, + MailboxAnnotation.class, + MailboxWithLongNameError.class +}) public class CassandraMailboxTest extends AbstractMailboxTest { } http://git-wip-us.apache.org/repos/asf/james-project/blob/d4fb7f83/mpt/impl/imap-mailbox/core/src/main/java/org/apache/james/mpt/imapmailbox/suite/MailboxWithLongNameError.java ---------------------------------------------------------------------- diff --git a/mpt/impl/imap-mailbox/core/src/main/java/org/apache/james/mpt/imapmailbox/suite/MailboxWithLongNameError.java b/mpt/impl/imap-mailbox/core/src/main/java/org/apache/james/mpt/imapmailbox/suite/MailboxWithLongNameError.java new file mode 100644 index 0000000..84ac78d --- /dev/null +++ b/mpt/impl/imap-mailbox/core/src/main/java/org/apache/james/mpt/imapmailbox/suite/MailboxWithLongNameError.java @@ -0,0 +1,43 @@ +/**************************************************************** + * Licensed to the Apache Software Foundation (ASF) under one * + * or more contributor license agreements. See the NOTICE file * + * distributed with this work for additional information * + * regarding copyright ownership. The ASF licenses this file * + * to you under the Apache License, Version 2.0 (the * + * "License"); you may not use this file except in compliance * + * with the License. You may obtain a copy of the License at * + * * + * http://www.apache.org/licenses/LICENSE-2.0 * + * * + * Unless required by applicable law or agreed to in writing, * + * software distributed under the License is distributed on an * + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * + * KIND, either express or implied. See the License for the * + * specific language governing permissions and limitations * + * under the License. * + ****************************************************************/ + +package org.apache.james.mpt.imapmailbox.suite; + +import java.util.Locale; + +import javax.inject.Inject; + +import org.apache.james.mpt.api.HostSystem; +import org.apache.james.mpt.imapmailbox.suite.base.BaseSelectedInbox; +import org.junit.Test; + +public class MailboxWithLongNameError extends BaseSelectedInbox { + @Inject + private static HostSystem system; + + public MailboxWithLongNameError() throws Exception { + super(system); + } + + @Test + public void testWithLongMailboxNameUS() throws Exception { + scriptTest("CreateErrorWithLongName", Locale.US); + } + +} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
