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 5313babd4f0e318819f5fe13601283b905754d40 Author: Benoit TELLIER <[email protected]> AuthorDate: Tue Sep 30 07:26:41 2025 +0200 [REMOVAL] Delete unused class CassandraJmapTestRule --- .../org/apache/james/CassandraJmapTestRule.java | 78 ---------------------- 1 file changed, 78 deletions(-) diff --git a/server/apps/cassandra-app/src/test/java/org/apache/james/CassandraJmapTestRule.java b/server/apps/cassandra-app/src/test/java/org/apache/james/CassandraJmapTestRule.java deleted file mode 100644 index 84a93bb5d2..0000000000 --- a/server/apps/cassandra-app/src/test/java/org/apache/james/CassandraJmapTestRule.java +++ /dev/null @@ -1,78 +0,0 @@ -/**************************************************************** - * 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; - -import java.io.IOException; - -import org.apache.james.modules.TestJMAPServerModule; -import org.apache.james.webadmin.WebAdminConfiguration; -import org.junit.rules.TemporaryFolder; -import org.junit.rules.TestRule; -import org.junit.runner.Description; -import org.junit.runners.model.Statement; - -import com.google.inject.Module; - -public class CassandraJmapTestRule implements TestRule { - - private final TemporaryFolder temporaryFolder; - - public static CassandraJmapTestRule defaultTestRule() { - return new CassandraJmapTestRule(); - } - - private final GuiceModuleTestRule guiceModuleTestRule; - private final DockerOpenSearchRule dockerOpenSearchRule; - - public CassandraJmapTestRule(GuiceModuleTestRule... guiceModuleTestRule) { - TempFilesystemTestRule tempFilesystemTestRule = new TempFilesystemTestRule(); - this.dockerOpenSearchRule = new DockerOpenSearchRule(); - this.temporaryFolder = tempFilesystemTestRule.getTemporaryFolder(); - this.guiceModuleTestRule = - AggregateGuiceModuleTestRule - .of(guiceModuleTestRule) - .aggregate(dockerOpenSearchRule) - .aggregate(tempFilesystemTestRule); - } - - public GuiceJamesServer jmapServer(Module... additionals) throws IOException { - CassandraJamesServerConfiguration configuration = CassandraJamesServerConfiguration.builder() - .workingDirectory(temporaryFolder.newFolder()) - .configurationFromClasspath() - .searchConfiguration(SearchConfiguration.openSearch()) - .build(); - - return CassandraJamesServerMain.createServer(configuration) - .overrideWith(new TestJMAPServerModule()) - .overrideWith(guiceModuleTestRule.getModule()) - .overrideWith((binder -> binder.bind(CleanupTasksPerformer.class).asEagerSingleton())) - .overrideWith(binder -> binder.bind(WebAdminConfiguration.class).toInstance(WebAdminConfiguration.TEST_CONFIGURATION)) - .overrideWith(additionals); - } - - @Override - public Statement apply(Statement base, Description description) { - return guiceModuleTestRule.apply(base, description); - } - - public void await() { - guiceModuleTestRule.await(); - } -} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
