Package org.springframework.security.test.web.servlet.request

Source Code of org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessorsUserTests

/*
* Copyright 2002-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.security.test.web.servlet.request;

import static org.fest.assertions.Assertions.assertThat;
import static org.mockito.Matchers.any;
import static org.mockito.Matchers.eq;
import static org.mockito.Mockito.verify;
import static org.powermock.api.mockito.PowerMockito.spy;
import static org.powermock.api.mockito.PowerMockito.when;
import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.user;

import java.util.Arrays;

import javax.servlet.http.HttpServletResponse;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.ArgumentCaptor;
import org.mockito.Captor;
import org.mockito.Mock;
import org.powermock.core.classloader.annotations.PrepareOnlyThisForTest;
import org.powermock.modules.junit4.PowerMockRunner;
import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.context.SecurityContext;
import org.springframework.security.test.context.TestSecurityContextHolder;
import org.springframework.security.test.web.support.WebTestUtils;
import org.springframework.security.web.context.SecurityContextRepository;

@RunWith(PowerMockRunner.class)
@PrepareOnlyThisForTest(WebTestUtils.class)
public class SecurityMockMvcRequestPostProcessorsUserTests {
    @Captor
    private ArgumentCaptor<SecurityContext> contextCaptor;
    @Mock
    private SecurityContextRepository repository;

    private MockHttpServletRequest request;

    @Mock
    private GrantedAuthority authority1;
    @Mock
    private GrantedAuthority authority2;

    @Before
    public void setup() {
        request = new MockHttpServletRequest();
        mockWebTestUtils();
    }

    @After
    public void cleanup() {
        TestSecurityContextHolder.clearContext();
    }

    @Test
    public void userWithDefaults() {
        String username = "userabc";

        user(username).postProcessRequest(request);

        verify(repository).saveContext(contextCaptor.capture(), eq(request), any(HttpServletResponse.class));
        SecurityContext context = contextCaptor.getValue();
        assertThat(context.getAuthentication()).isInstanceOf(UsernamePasswordAuthenticationToken.class);
        assertThat(context.getAuthentication().getName()).isEqualTo(username);
        assertThat(context.getAuthentication().getCredentials()).isEqualTo("password");
        assertThat(context.getAuthentication().getAuthorities()).onProperty("authority").containsOnly("ROLE_USER");
    }


    @Test
    public void userWithCustom() {
        String username = "customuser";

        user(username)
            .roles("CUSTOM","ADMIN")
            .password("newpass")
            .postProcessRequest(request);

        verify(repository).saveContext(contextCaptor.capture(), eq(request), any(HttpServletResponse.class));
        SecurityContext context = contextCaptor.getValue();
        assertThat(context.getAuthentication()).isInstanceOf(UsernamePasswordAuthenticationToken.class);
        assertThat(context.getAuthentication().getName()).isEqualTo(username);
        assertThat(context.getAuthentication().getCredentials()).isEqualTo("newpass");
        assertThat(context.getAuthentication().getAuthorities()).onProperty("authority").containsOnly("ROLE_CUSTOM","ROLE_ADMIN");
    }

    @Test
    public void userCustomAuthoritiesVarargs() {
        String username = "customuser";

        user(username)
            .authorities(authority1,authority2)
            .postProcessRequest(request);

        verify(repository).saveContext(contextCaptor.capture(), eq(request), any(HttpServletResponse.class));
        SecurityContext context = contextCaptor.getValue();
        assertThat(context.getAuthentication().getAuthorities()).containsOnly(authority1,authority2);
    }

    @Test(expected = IllegalArgumentException.class)
    public void userRolesWithRolePrefixErrors() {
        user("user")
            .roles("ROLE_INVALID")
            .postProcessRequest(request);
    }

    @Test
    public void userCustomAuthoritiesList() {
        String username = "customuser";

        user(username)
            .authorities(Arrays.asList(authority1,authority2))
            .postProcessRequest(request);

        verify(repository).saveContext(contextCaptor.capture(), eq(request), any(HttpServletResponse.class));
        SecurityContext context = contextCaptor.getValue();
        assertThat(context.getAuthentication().getAuthorities()).containsOnly(authority1,authority2);
    }

    private void mockWebTestUtils() {
        spy(WebTestUtils.class);
        when(WebTestUtils.getSecurityContextRepository(request)).thenReturn(repository);
    }
}
TOP

Related Classes of org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessorsUserTests

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.