blob: d4c0f15e216f31965d9c3eb5123ef7a71bd6ae9a [file] [log] [blame]
/*
* 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.camel.quarkus.component.infinispan;
import java.util.Collections;
import java.util.Map;
import io.quarkus.test.common.QuarkusTestResourceLifecycleManager;
import org.infinispan.configuration.cache.ConfigurationBuilder;
import org.infinispan.configuration.global.GlobalConfigurationBuilder;
import org.infinispan.manager.EmbeddedCacheManager;
import org.infinispan.server.hotrod.HotRodServer;
import org.infinispan.server.hotrod.test.HotRodTestingUtil;
import org.infinispan.test.fwk.TestCacheManagerFactory;
import org.infinispan.test.fwk.TestResourceTracker;
public class InfinispanServerTestResource implements QuarkusTestResourceLifecycleManager {
private HotRodServer hotRodServer;
private CamelTest camelTest;
@Override
public Map<String, String> start() {
TestResourceTracker.setThreadTestName("InfinispanServer");
EmbeddedCacheManager ecm = TestCacheManagerFactory.createCacheManager(
new GlobalConfigurationBuilder().nonClusteredDefault().defaultCacheName("default"),
new ConfigurationBuilder());
// Client connects to a non default port
hotRodServer = HotRodTestingUtil.startHotRodServer(ecm, 11232);
return Collections.emptyMap();
}
@Override
public void inject(Object testInstance) {
if (testInstance instanceof CamelTest) {
this.camelTest = (CamelTest) testInstance;
}
}
@Override
public void stop() {
//
// This is needed to properly stop the resources in the right order and
// avoid spurious exceptions shown in the logs.
//
if (camelTest != null && camelTest.cacheManager != null) {
camelTest.cacheManager.stop();
}
if (hotRodServer != null) {
hotRodServer.stop();
}
}
}