/** * 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 * <p/> * http://www.apache.org/licenses/LICENSE-2.0 * <p/> * 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.superbiz.moviefun; import org.junit.After; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; import javax.ejb.embeddable.EJBContainer; import java.util.List; import static org.junit.Assert.assertEquals; public class MoviesEmbeddedEJBTest { private static EJBContainer ejbContainer; @BeforeClass public static void setUp() throws Exception { ejbContainer = EJBContainer.createEJBContainer(); } @AfterClass public static void tearDown() { if (ejbContainer != null) { ejbContainer.close(); } } @Before @After public void clean() throws Exception { MoviesBean movies = (MoviesBean) ejbContainer.getContext().lookup("java:global/moviefun-rest/MoviesBean!org.superbiz.moviefun.MoviesBean"); movies.clean(); } @Test public void testShouldAddAMovie() throws Exception { final MoviesBean movies = (MoviesBean) ejbContainer.getContext().lookup("java:global/moviefun-rest/MoviesBean!org.superbiz.moviefun.MoviesBean"); final Movie movie = new Movie(); movie.setDirector("Michael Bay"); movie.setGenre("Action"); movie.setRating(9); movie.setTitle("Bad Boys"); movie.setYear(1995); movies.addMovie(movie); assertEquals(1, movies.count("title", "Bad Boys")); final List<Movie> moviesFound = movies.getMovies(0, 100, "title", "Bad Boys"); assertEquals(1, moviesFound.size()); assertEquals("Michael Bay", moviesFound.get(0).getDirector()); assertEquals("Action", moviesFound.get(0).getGenre()); assertEquals(9, moviesFound.get(0).getRating()); assertEquals("Bad Boys", moviesFound.get(0).getTitle()); assertEquals(1995, moviesFound.get(0).getYear()); } }