/* * Copyright 2015-2016 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.rest.webmvc; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import static org.mockito.Mockito.*; import org.junit.Before; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.rest.tests.AbstractControllerIntegrationTests; import org.springframework.data.rest.webmvc.jpa.Book; import org.springframework.data.rest.webmvc.jpa.BookRepository; import org.springframework.data.rest.webmvc.jpa.JpaRepositoryConfig; import org.springframework.data.rest.webmvc.jpa.TestDataPopulator; import org.springframework.http.HttpStatus; import org.springframework.test.context.ContextConfiguration; import org.springframework.transaction.annotation.Transactional; /** * @author Oliver Gierke */ @ContextConfiguration(classes = JpaRepositoryConfig.class) @Transactional public class RepositoryPropertyReferenceControllerIntegrationTests extends AbstractControllerIntegrationTests { @Autowired RepositoryPropertyReferenceController controller; @Autowired TestDataPopulator populator; @Autowired BookRepository books; PersistentEntityResourceAssembler assembler; RootResourceInformation information; @Before public void setUp() { this.assembler = mock(PersistentEntityResourceAssembler.class); this.information = getResourceInformation(Book.class); this.populator.populateRepositories(); } @Test public void exposesResourceForCustomizedPropertyResourcePath() throws Exception { Book book = books.findAll().iterator().next(); assertThat(controller.followPropertyReference(information, book.id, "creators", assembler).getStatusCode(), is(HttpStatus.OK)); } @Test(expected = ResourceNotFoundException.class) public void doesNotExposeOriginalPathIfPropertyResourcePathIsCustomized() throws Exception { Book book = books.findAll().iterator().next(); controller.followPropertyReference(information, book.id, "authors", assembler); } }