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 6dd31b114e2a18477273eef16dc72ee915b0ebe1 Author: Rene Cordier <[email protected]> AuthorDate: Fri Apr 26 11:37:45 2019 +0700 JAMES-2712 Memory implementation of Linshare blob export mechanism integration tests --- .../memory-jmap-integration-testing/pom.xml | 7 +++ ...LinshareBlobExportMechanismIntegrationTest.java | 59 ++++++++++++++++++++++ 2 files changed, 66 insertions(+) diff --git a/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/pom.xml b/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/pom.xml index 2cf9aab..18ec2f7 100644 --- a/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/pom.xml +++ b/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/pom.xml @@ -35,6 +35,12 @@ <dependencies> <dependency> <groupId>${james.groupId}</groupId> + <artifactId>apache-james-linshare</artifactId> + <type>test-jar</type> + <scope>test</scope> + </dependency> + <dependency> + <groupId>${james.groupId}</groupId> <artifactId>apache-james-mailbox-api</artifactId> <type>test-jar</type> <scope>test</scope> @@ -59,6 +65,7 @@ <dependency> <groupId>${james.groupId}</groupId> <artifactId>blob-export-guice</artifactId> + <type>test-jar</type> <scope>test</scope> </dependency> <dependency> diff --git a/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/MemoryLinshareBlobExportMechanismIntegrationTest.java b/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/MemoryLinshareBlobExportMechanismIntegrationTest.java new file mode 100644 index 0000000..97aa5bc --- /dev/null +++ b/server/protocols/jmap-integration-testing/memory-jmap-integration-testing/src/test/java/org/apache/james/jmap/memory/MemoryLinshareBlobExportMechanismIntegrationTest.java @@ -0,0 +1,59 @@ +/**************************************************************** + * 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 org.apache.james.GuiceJamesServer; +import org.apache.james.JamesServerBuilder; +import org.apache.james.JamesServerExtension; +import org.apache.james.MemoryJamesServerMain; +import org.apache.james.jmap.methods.integration.LinshareBlobExportMechanismIntegrationTest; +import org.apache.james.mailrepository.api.MailRepositoryUrl; +import org.apache.james.modules.LinshareGuiceExtension; +import org.apache.james.modules.TestJMAPServerModule; +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.jupiter.api.extension.RegisterExtension; + +class MemoryLinshareBlobExportMechanismIntegrationTest extends LinshareBlobExportMechanismIntegrationTest { + + private static final int LIMIT_TO_10_MESSAGES = 10; + + private final LinshareGuiceExtension linshareGuiceExtension = new LinshareGuiceExtension(); + + @RegisterExtension + JamesServerExtension jamesServerExtension = new JamesServerBuilder() + .extension(linshareGuiceExtension) + .server(configuration -> GuiceJamesServer.forConfiguration(configuration) + .combineWith(MemoryJamesServerMain.IN_MEMORY_SERVER_AGGREGATE_MODULE) + .overrideWith(new TestJMAPServerModule(LIMIT_TO_10_MESSAGES)) + .overrideWith(binder -> { + binder.bind(WebAdminConfiguration.class) + .toInstance(WebAdminConfiguration.TEST_CONFIGURATION); + binder.bind(PreDeletionHooksConfiguration.class) + .toInstance(PreDeletionHooksConfiguration.forHooks( + PreDeletionHookConfiguration.forClass(DeletedMessageVaultHook.class))); + binder.bind(MailRepositoryDeletedMessageVault.Configuration.class) + .toInstance(new MailRepositoryDeletedMessageVault.Configuration(MailRepositoryUrl.from("memory://var/deletedMessages/user"))); + })) + .build(); +} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
