/* * JBoss, Home of Professional Open Source * Copyright 2012, Red Hat Middleware LLC, and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * 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 com.acme.spring.javaconfig.service.impl; import com.acme.spring.javaconfig.Deployments; import com.acme.spring.javaconfig.config.StockConfig; import com.acme.spring.javaconfig.domain.Stock; import com.acme.spring.javaconfig.service.StockService; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; import org.jboss.arquillian.spring.test.annotation.SpringAnnotatedConfiguration; import org.jboss.shrinkwrap.api.Archive; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import java.math.BigDecimal; import java.util.ArrayList; import java.util.Date; import java.util.List; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; /** * <p>Tests the {@link com.acme.spring.javaconfig.service.impl.DefaultStockService} class.</p> * * @author <a href="mailto:jmnarloch@gmail.com">Jakub Narloch</a> */ @RunWith(Arquillian.class) @SpringAnnotatedConfiguration(classes = StockConfig.class) public class DefaultStockServiceTestCase { /** * <p>Creates the test deployment.</p> * * @return the test deployment */ @Deployment public static Archive createTestArchive() { return Deployments.createDeployment(); } /** * <p>Injected {@link com.acme.spring.javaconfig.service.impl.DefaultStockService}.</p> */ @Autowired private StockService stockService; /** * <p>Tests the {@link com.acme.spring.javaconfig.service.impl.DefaultStockService#save(com.acme.spring.javaconfig.domain.Stock)} method.</p> */ @Test public void testSave() { Stock acme = createStock("Acme", "ACM", 123.21D, new Date()); Stock redhat = createStock("Red Hat", "RHC", 59.61D, new Date()); stockService.save(acme); stockService.save(redhat); assertTrue("The stock id hasn't been assigned.", acme.getId() > 0); assertTrue("The stock id hasn't been assigned.", redhat.getId() > 0); } /** * <p>Tests the {@link com.acme.spring.javaconfig.service.impl.DefaultStockService#update(Stock)} method.</p> */ @Test public void testUpdate() throws Exception { List<Stock> stocks = createStocks(); saveStocks(stocks); Stock acme = stocks.get(0); acme.setSymbol("ACE"); stockService.update(acme); } /** * <p>Tests the {@link com.acme.spring.javaconfig.service.impl.DefaultStockService#get(long)} method.</p> */ @Test public void testGet() throws Exception { List<Stock> stocks = createStocks(); saveStocks(stocks); Stock acme = stocks.get(0); Stock result = stockService.get(acme.getId()); assertNotNull("Method returned null result.", result); assertStock(acme, result); } /** * <p>Tests the {@link com.acme.spring.javaconfig.service.impl.DefaultStockService#getBySymbol(String)} method.</p> */ @Test public void testGetBySymbol() throws Exception { List<Stock> stocks = createStocks(); saveStocks(stocks); Stock acme = stocks.get(0); Stock result = stockService.getBySymbol(acme.getSymbol()); assertNotNull("Method returned null result.", result); assertStock(acme, result); } /** * <p>Tests the {@link com.acme.spring.javaconfig.service.impl.DefaultStockService#getAll()} method.</p> */ @Test public void testGetAll() throws Exception { List<Stock> stocks = createStocks(); saveStocks(stocks); List<Stock> result = stockService.getAll(); assertNotNull("Method returned null result.", result); assertEquals("Incorrect number of elements.", 2, result.size()); } /** * <p>Creates test stocks.</p> * * @return list of test stocks */ private List<Stock> createStocks() { List<Stock> stocks = new ArrayList<Stock>(); stocks.add(createStock("Acme", "ACM", 123.21D, new Date())); stocks.add(createStock("Red Hat", "RHC", 59.61D, new Date())); return stocks; } /** * <p>Fills the repository with tests data.</p> */ private void saveStocks(List<Stock> stocks) { for (Stock stock : stocks) { stockService.save(stock); } } /** * <p>Creates new stock instance</p> * * @param name the stock name * @param symbol the stock symbol * @param value the stock value * @param date the stock date * * @return the created stock instance */ private static Stock createStock(String name, String symbol, double value, Date date) { Stock result = new Stock(); result.setName(name); result.setSymbol(symbol); result.setValue(new BigDecimal(value)); result.setDate(date); return result; } /** * <p>Asserts that the actual stock's properties values are correct.</p> * * @param expected the expected stock object * @param actual the tested stock object */ private static void assertStock(Stock expected, Stock actual) { assertEquals("Stock has invalid id property.", expected.getId(), expected.getId()); assertEquals("Stock has invalid name property.", expected.getName(), expected.getName()); assertEquals("Stock has invalid symbol property.", expected.getSymbol(), expected.getSymbol()); assertEquals("Stock has invalid value property.", expected.getValue(), expected.getValue()); } }