/* * Copyright 2015 Harald Wellmann * * 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.ops4j.pax.exam.regression.web.spring; import static org.junit.Assert.assertEquals; import static org.ops4j.pax.exam.CoreOptions.maven; import static org.ops4j.pax.exam.CoreOptions.options; import static org.ops4j.pax.exam.CoreOptions.warProbe; import static org.ops4j.pax.exam.Info.getOps4jBaseVersion; import static org.ops4j.pax.exam.Info.getPaxExamVersion; import java.util.List; import javax.inject.Inject; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.ops4j.pax.exam.Configuration; import org.ops4j.pax.exam.Option; import org.ops4j.pax.exam.junit.PaxExam; import org.ops4j.pax.exam.sample6.model.Book; import org.ops4j.pax.exam.sample6.service.LibraryService; import org.ops4j.pax.exam.spi.reactors.ExamReactorStrategy; import org.ops4j.pax.exam.spi.reactors.PerClass; @RunWith(PaxExam.class) @ExamReactorStrategy(PerClass.class) public class AnotherUserProbeTest { @Inject private LibraryService service; @Configuration public Option[] createConfiguration() { System.setProperty("java.protocol.handler.pkgs", "org.ops4j.pax.url"); return options( warProbe() .library("target/test-classes") .overlay( maven("org.ops4j.pax.exam.samples", "pax-exam-sample6-web", getPaxExamVersion()) .type("war")) .library(maven("org.ops4j.pax.exam", "pax-exam-servlet-bridge", getPaxExamVersion())) .library(maven("org.ops4j.pax.exam", "pax-exam-spring", getPaxExamVersion())) .library(maven("org.ops4j.pax.exam", "pax-exam", getPaxExamVersion())) .library(maven("org.ops4j.base", "ops4j-base-spi", getOps4jBaseVersion())) .library(maven("junit", "junit", "4.9"))); } @Before public void setUp() { service.fillLibrary(); } @Test public void byAuthor() { List<Book> books = service.findBooksByAuthor("Mann"); assertEquals(1, books.size()); Book book = books.get(0); assertEquals("Buddenbrooks", book.getTitle()); } @Test public void numAuthors() { assertEquals(2, service.getNumAuthors()); service.createAuthor("Theodor", "Storm"); assertEquals(3, service.getNumAuthors()); } }