This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit f51503b52e6a7a24f548c67097d4c74d1280f33e Author: Benoit Tellier <[email protected]> AuthorDate: Mon Mar 11 11:53:07 2019 +0700 JAMES-2665 Demonstrate FileMailRepository support for DeletedMessagesVault --- ...FileMailRepositoryDeletedMessagesVaultTest.java | 55 ++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/FileMailRepositoryDeletedMessagesVaultTest.java b/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/FileMailRepositoryDeletedMessagesVaultTest.java new file mode 100644 index 0000000..ec7dd62 --- /dev/null +++ b/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/FileMailRepositoryDeletedMessagesVaultTest.java @@ -0,0 +1,55 @@ +/**************************************************************** + * 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.jmap.memory; + +import java.io.IOException; + +import org.apache.james.GuiceJamesServer; +import org.apache.james.MemoryJmapTestRule; +import org.apache.james.jmap.methods.integration.DeletedMessagesVaultTest; +import org.apache.james.mailrepository.api.MailRepositoryUrl; +import org.apache.james.modules.mailbox.PreDeletionHookConfiguration; +import org.apache.james.modules.mailbox.PreDeletionHooksConfiguration; +import org.apache.james.vault.DeletedMessageVaultHook; +import org.apache.james.vault.MailRepositoryDeletedMessageVault; +import org.apache.james.webadmin.WebAdminConfiguration; +import org.junit.Rule; + +public class FileMailRepositoryDeletedMessagesVaultTest extends DeletedMessagesVaultTest { + + @Rule + public MemoryJmapTestRule memoryJmap = new MemoryJmapTestRule(); + + @Override + protected void awaitSearchUpToDate() { + + } + + @Override + protected GuiceJamesServer createJmapServer() throws IOException { + return memoryJmap.jmapServer( + binder -> binder.bind(PreDeletionHooksConfiguration.class) + .toInstance(PreDeletionHooksConfiguration.forHooks( + PreDeletionHookConfiguration.forClass(DeletedMessageVaultHook.class))), + binder -> binder.bind(WebAdminConfiguration.class).toInstance(WebAdminConfiguration.TEST_CONFIGURATION), + binder -> binder.bind(MailRepositoryDeletedMessageVault.Configuration.class) + .toInstance(new MailRepositoryDeletedMessageVault.Configuration(MailRepositoryUrl.from("file://var/deletedMessages/user")))); + } +} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
