DATAES-211 - Fix tests for CDI (jar hell)
This commit is contained in:
@@ -1,95 +1,95 @@
|
||||
///*
|
||||
// * Copyright 2014 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.elasticsearch.repositories.cdi;
|
||||
//
|
||||
//import static org.hamcrest.CoreMatchers.is;
|
||||
//import static org.junit.Assert.*;
|
||||
//
|
||||
//import org.apache.webbeans.cditest.CdiTestContainer;
|
||||
//import org.apache.webbeans.cditest.CdiTestContainerLoader;
|
||||
//import org.junit.AfterClass;
|
||||
//import org.junit.Before;
|
||||
//import org.junit.BeforeClass;
|
||||
//import org.junit.Test;
|
||||
//import org.springframework.data.elasticsearch.entities.Product;
|
||||
//
|
||||
///**
|
||||
// * @author Mohsin Husen
|
||||
// */
|
||||
//TODO: ako cdi - jar hell
|
||||
//public class CdiRepositoryTests {
|
||||
//
|
||||
// private static CdiTestContainer cdiContainer;
|
||||
// private CdiProductRepository repository;
|
||||
// private SamplePersonRepository personRepository;
|
||||
//
|
||||
// @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();
|
||||
// personRepository = client.getSamplePersonRepository();
|
||||
// }
|
||||
//
|
||||
// @Test
|
||||
// public void testCdiRepository() {
|
||||
// assertNotNull(repository);
|
||||
//
|
||||
// Product bean = new Product();
|
||||
// bean.setId("id-1");
|
||||
// bean.setName("cidContainerTest-1");
|
||||
//
|
||||
// repository.save(bean);
|
||||
//
|
||||
// assertTrue(repository.exists(bean.getId()));
|
||||
//
|
||||
// Product retrieved = repository.findOne(bean.getId());
|
||||
// assertNotNull(retrieved);
|
||||
// assertEquals(bean.getId(), retrieved.getId());
|
||||
// assertEquals(bean.getName(), retrieved.getName());
|
||||
//
|
||||
// assertEquals(1, repository.count());
|
||||
//
|
||||
// assertTrue(repository.exists(bean.getId()));
|
||||
//
|
||||
// repository.delete(bean);
|
||||
//
|
||||
// assertEquals(0, repository.count());
|
||||
// retrieved = repository.findOne(bean.getId());
|
||||
// assertNull(retrieved);
|
||||
// }
|
||||
//
|
||||
// /**
|
||||
// * @see DATAES-113
|
||||
// */
|
||||
// @Test
|
||||
// public void returnOneFromCustomImpl() {
|
||||
//
|
||||
// assertThat(personRepository.returnOne(), is(1));
|
||||
// }
|
||||
//}
|
||||
/*
|
||||
* Copyright 2014 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.elasticsearch.repositories.cdi;
|
||||
|
||||
import static org.hamcrest.CoreMatchers.is;
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
import org.apache.webbeans.cditest.CdiTestContainer;
|
||||
import org.apache.webbeans.cditest.CdiTestContainerLoader;
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.Before;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Test;
|
||||
import org.springframework.data.elasticsearch.entities.Product;
|
||||
|
||||
/**
|
||||
* @author Mohsin Husen
|
||||
*/
|
||||
|
||||
public class CdiRepositoryTests {
|
||||
|
||||
private static CdiTestContainer cdiContainer;
|
||||
private CdiProductRepository repository;
|
||||
private SamplePersonRepository personRepository;
|
||||
|
||||
@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();
|
||||
personRepository = client.getSamplePersonRepository();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCdiRepository() {
|
||||
assertNotNull(repository);
|
||||
|
||||
Product bean = new Product();
|
||||
bean.setId("id-1");
|
||||
bean.setName("cidContainerTest-1");
|
||||
|
||||
repository.save(bean);
|
||||
|
||||
assertTrue(repository.exists(bean.getId()));
|
||||
|
||||
Product retrieved = repository.findOne(bean.getId());
|
||||
assertNotNull(retrieved);
|
||||
assertEquals(bean.getId(), retrieved.getId());
|
||||
assertEquals(bean.getName(), retrieved.getName());
|
||||
|
||||
assertEquals(1, repository.count());
|
||||
|
||||
assertTrue(repository.exists(bean.getId()));
|
||||
|
||||
repository.delete(bean);
|
||||
|
||||
assertEquals(0, repository.count());
|
||||
retrieved = repository.findOne(bean.getId());
|
||||
assertNull(retrieved);
|
||||
}
|
||||
|
||||
/**
|
||||
* @see DATAES-113
|
||||
*/
|
||||
@Test
|
||||
public void returnOneFromCustomImpl() {
|
||||
|
||||
assertThat(personRepository.returnOne(), is(1));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user