Java tutorial
/* * Copyright 2017 redlink GmbH * * Licensed 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. */ import io.redlink.solrlib.SolrCoreContainer; import io.redlink.solrlib.SolrCoreDescriptor; import io.redlink.solrlib.embedded.EmbeddedCoreContainer; import io.redlink.solrlib.spring.boot.autoconfigure.SolrLibProperties; import org.apache.solr.client.solrj.SolrClient; import org.apache.solr.client.solrj.response.SolrPingResponse; import org.hamcrest.Matchers; import org.junit.Assert; import org.junit.ClassRule; import org.junit.Test; import org.junit.rules.TemporaryFolder; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Import; import org.springframework.context.annotation.Primary; import org.springframework.test.context.ActiveProfiles; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import java.io.IOException; import java.nio.file.Files; /** */ @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(classes = SolrEmbeddedIT.EmbeddedConfiguration.class) @ActiveProfiles("embedded") @EnableAutoConfiguration public class SolrEmbeddedIT { @ClassRule public static TemporaryFolder temporaryFolder = new TemporaryFolder(); @SuppressWarnings("SpringJavaAutowiringInspection") @Autowired private SolrCoreContainer coreContainer; @Autowired @Qualifier(TestCoreDesciptorsConfiguration.CORE_NAME) private SolrCoreDescriptor solrCoreDescriptor; @Test public void testInject() throws Exception { Assert.assertNotNull(coreContainer); } @Test public void testType() throws Exception { Assert.assertThat(coreContainer, Matchers.instanceOf(EmbeddedCoreContainer.class)); } @Test public void testCoreDeployment_1() throws Exception { SolrClient foo = coreContainer.getSolrClient(TestCoreDesciptorsConfiguration.CORE_NAME); Assert.assertNotNull(foo); SolrPingResponse pingResponse = foo.ping(); Assert.assertEquals(0, pingResponse.getStatus()); } @Test public void testCoreDeployment_2() throws Exception { SolrClient foo = coreContainer.getSolrClient(solrCoreDescriptor); Assert.assertNotNull(foo); SolrPingResponse pingResponse = foo.ping(); Assert.assertEquals(0, pingResponse.getStatus()); } @Configuration @Import(TestCoreDesciptorsConfiguration.class) static class EmbeddedConfiguration { @Bean @Primary SolrLibProperties solrLibProperties() throws IOException { SolrLibProperties properties = new SolrLibProperties(); properties.setHome(Files.createTempDirectory(temporaryFolder.getRoot().toPath(), "solr-home")); return properties; } } }