/* Copyright 2013 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 io.neba.core.mvc; import org.apache.sling.api.SlingHttpServletRequest; import org.apache.sling.api.SlingHttpServletResponse; import org.apache.sling.api.servlets.ServletResolver; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.InjectMocks; import org.mockito.Mock; import org.mockito.Spy; import org.mockito.runners.MockitoJUnitRunner; import org.osgi.framework.Bundle; import org.osgi.framework.BundleContext; import org.osgi.framework.Version; import org.springframework.beans.factory.config.ConfigurableListableBeanFactory; import javax.servlet.ServletConfig; import javax.servlet.ServletException; import java.io.IOException; import static org.assertj.core.api.Assertions.assertThat; import static org.mockito.Matchers.anyString; import static org.mockito.Matchers.isA; import static org.mockito.Mockito.*; /** * @author Olaf Otto */ @RunWith(MockitoJUnitRunner.class) public class MvcServletTest { @Mock private ConfigurableListableBeanFactory factory; @Mock private BundleContext context; @Mock private Bundle bundle; @Mock private BundleSpecificDispatcherServlet dispatcherServlet; @Mock private SlingHttpServletRequest request; @Mock private SlingHttpServletResponse response; @Mock private ServletConfig servletConfig; @Mock private ServletResolver servletResolver; private BundleSpecificDispatcherServlet injectedDispatcherServlet; @InjectMocks @Spy private MvcServlet testee; @Before public void setUp() throws Exception { doAnswer(invocation -> { injectedDispatcherServlet = (BundleSpecificDispatcherServlet) invocation.getArguments()[1]; return null; }).when(this.factory).registerSingleton(anyString(), isA(BundleSpecificDispatcherServlet.class)); doReturn(this.bundle).when(this.context).getBundle(); doReturn("symbolic-name").when(this.bundle).getSymbolicName(); doReturn(new Version(1, 2, 3)).when(this.bundle).getVersion(); doReturn(this.dispatcherServlet).when(this.testee).createBundleSpecificDispatcherServlet(factory, context); } @Test public void testEnableMvc() throws Exception { enableMvc(); verifyMvcContextIsInjectedIntoFactory(); assertInjectMvcContextIsNotNull(); } @Test public void testOnlyResponsibleContextsServiceRequests() throws Exception { enableMvc(); handleRequest(); verifyMvcContextDoesNotServiceRequest(); withMvcContextResponsible(); handleRequest(); verifyMvcContextServicedRequestOnce(); } @Test public void testRemovalOfMvcCapabilities() throws Exception { enableMvc(); withMvcContextResponsible(); handleRequest(); verifyMvcContextServicedRequestOnce(); disableMvc(); handleRequest(); verifyMvcContextServicedRequestOnce(); } @Test public void testServletConfigurationProvidedToBundleSpecificDispatcherServletHasSensibleServletName() throws Exception { withRealDispatcherServletCreated(); enableMvc(); assertServletNameOfBundleSpecificDispatcherServletIs("BundleSpecificDispatcherServlet for bundle symbolic-name 1.2.3"); } private void withRealDispatcherServletCreated() { doCallRealMethod().when(this.testee).createBundleSpecificDispatcherServlet(this.factory, this.context); } private void assertServletNameOfBundleSpecificDispatcherServletIs(String servletName) { assertThat(this.injectedDispatcherServlet.getServletConfig().getServletName()).isEqualTo(servletName); } private void disableMvc() { this.testee.disableMvc(this.bundle); } private void verifyMvcContextServicedRequestOnce() throws ServletException, IOException { verify(this.dispatcherServlet).service(isA(SlingMvcServletRequest.class), isA(SlingHttpServletResponse.class)); } private void withMvcContextResponsible() { doReturn(true).when(this.dispatcherServlet).hasHandlerFor(isA(SlingMvcServletRequest.class)); } private void verifyMvcContextDoesNotServiceRequest() throws ServletException, IOException { verify(this.dispatcherServlet, never()).service(isA(SlingMvcServletRequest.class), isA(SlingHttpServletResponse.class)); } private void handleRequest() throws ServletException, IOException { this.testee.handle(this.request, this.response); } private void assertInjectMvcContextIsNotNull() { assertThat(this.injectedDispatcherServlet).isNotNull(); } private void enableMvc() { this.testee.enableMvc(this.factory, this.context); } private void verifyMvcContextIsInjectedIntoFactory() { verify(this.factory).registerSingleton(anyString(), isA(BundleSpecificDispatcherServlet.class)); } }