/* * Copyright 2012-2017 the original author or authors. * * 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. */ package org.springframework.data.solr.repository.cdi; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.util.Optional; import org.apache.webbeans.cditest.CdiTestContainer; import org.apache.webbeans.cditest.CdiTestContainerLoader; import org.junit.AfterClass; import org.junit.Assert; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; import org.springframework.data.solr.repository.ProductBean; /** * @author Christoph Strobl * @author Mark Paluch */ public class ITestCdiRepository { private static CdiTestContainer cdiContainer; private CdiProductRepository repository; private SamplePersonRepository samplePersonRepository; @BeforeClass public static void init() throws Exception { cdiContainer = CdiTestContainerLoader.getCdiContainer(); cdiContainer.startApplicationScope(); cdiContainer.bootContainer(); } @AfterClass public static void shutdown() throws Exception { cdiContainer.stopContexts(); cdiContainer.shutdownContainer(); } @Before public void setUp() { CdiRepositoryClient client = cdiContainer.getInstance(CdiRepositoryClient.class); repository = client.getRepository(); samplePersonRepository = client.getSamplePersonRepository(); } @Test public void testCdiRepository() { Assert.assertNotNull(repository); ProductBean bean = new ProductBean(); bean.setId("id-1"); bean.setName("cidContainerTest-1"); repository.save(bean); Assert.assertTrue(repository.existsById(bean.getId())); Optional<ProductBean> retrieved = repository.findById(bean.getId()); Assert.assertTrue(retrieved.isPresent()); Assert.assertEquals(bean.getId(), retrieved.get().getId()); Assert.assertEquals(bean.getName(), retrieved.get().getName()); Assert.assertEquals(1, repository.count()); Assert.assertTrue(repository.existsById(bean.getId())); repository.delete(bean); Assert.assertEquals(0, repository.count()); retrieved = repository.findById(bean.getId()); Assert.assertFalse(retrieved.isPresent()); } @Test // DATASOLR-187 public void returnOneFromCustomImpl() { assertThat(samplePersonRepository.returnOne(), is(1)); } }