/* * Copyright 2014 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.xd.dirt.security; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; import static org.springframework.xd.dirt.security.SecurityTestUtils.basicAuthorizationHeader; import org.junit.ClassRule; import org.junit.Test; import org.junit.rules.RuleChain; import org.junit.rules.TestRule; /** * @author Marius Bogoevici */ public class SingleNodeApplicationWithLdapSimpleBindTest { private final static SpringXdResource springXdResource = new SpringXdResource("classpath:org/springframework/xd/dirt/security/ldapSimpleBind.yml"); @ClassRule public static TestRule springXdAndLdapServer = RuleChain .outerRule(new LdapServerResource()) .around(springXdResource); @Test public void testWrongUsernameFails() throws Exception { springXdResource.getMockMvc() .perform(get("/modules").header("Authorization", basicAuthorizationHeader("joe", "wrongspassword"))) .andDo(print()) .andExpect(status().isUnauthorized()); } @Test public void testDefaultSpringBootConfigurationFails() throws Exception { springXdResource.getMockMvc() .perform(get("/modules").header("Authorization", basicAuthorizationHeader("admin", "whosThere"))) .andDo(print()) .andExpect(status().isUnauthorized()); } @Test public void testWrongPasswordFails() throws Exception { springXdResource.getMockMvc() .perform(get("/modules").header("Authorization", basicAuthorizationHeader("bob", "bobpassword999"))) .andDo(print()) .andExpect(status().isUnauthorized()); } @Test public void testUnauthenticatedAccessToModulesEndpointFails() throws Exception { springXdResource.getMockMvc() .perform(get("/modules")) .andExpect(status().isUnauthorized()); } @Test public void testUnauthenticatedAccessToManagementEndpointFails() throws Exception { springXdResource.getMockMvc() .perform(get("/management/metrics")) .andExpect(status().isUnauthorized()); } @Test public void testAuthenticatedAccessToModulesEndpointSucceeds() throws Exception { springXdResource.getMockMvc() .perform(get("/modules").header("Authorization", basicAuthorizationHeader("joe", "joespassword"))) .andDo(print()) .andExpect(status().isOk()); } @Test public void testAuthenticatedAccessToManagementEndpointSucceeds() throws Exception { springXdResource.getMockMvc() .perform(get("/management/metrics").header("Authorization", basicAuthorizationHeader("joe", "joespassword"))) .andDo(print()) .andExpect(status().isOk()); } }