Пересмешивающий вызов супер-метода с использованием easymock / powermock - PullRequest
0 голосов
/ 01 июля 2018

Я интегрировал easymock с моим проектом Spring и выполнил большинство модульных тестов. Но есть проблема с не в состоянии высмеять супер метод. Когда я запускаю свой тестовый класс, он говорит, что метод не поддерживается.

Любая идея, что происходит не так, как я старался изо всех сил в последние пару дней и не смог понять, как насмехаться над супер-методом.

org.springframework.security.authentication.AuthenticationServiceException: Authentication method not supported: 
    at org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter.attemptAuthentication(UsernamePasswordAuthenticationFilter.java:71)
    at com.dashboard.core.CustomAuthenticationFilter.attemptAuthentication(CustomAuthenticationFilter.java:20)
    at com.dashboard.core.CustomAuthenticationFilterTest.testAttemptAuthentication(CustomAuthenticationFilterTest.java:64)

Класс, который подлежит проверке:

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.lang.StringUtils;
import org.springframework.security.authentication.BadCredentialsException;
import org.springframework.security.core.Authentication;
import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter;

import com.dashboard.domain.ApplicationConstant;

public class CustomAuthenticationFilter extends UsernamePasswordAuthenticationFilter {

    @Override
    public Authentication attemptAuthentication(HttpServletRequest request, HttpServletResponse response){
        String username = request.getParameter("j_username");
        String password = request.getParameter("j_password");
        if(isValidUsername(username) && isValidPassword(password) ){
            return super.attemptAuthentication(request, response);
        }
        throw new BadCredentialsException(ApplicationConstant.CREDENTIALS_NOT_FORMAT.getValue());
    }

    private static boolean isValidUsername(String username){
        return !StringUtils.isEmpty(username) && username.matches(ApplicationConstant.USERNAME_PATTERN.getValue());
    }

    private static boolean isValidPassword(String password){
        return !StringUtils.isEmpty(password) && password.matches(ApplicationConstant.PWD_PATTERN.getValue());
    }
}

Мой тестовый класс:

import java.util.ArrayList;
import java.util.List;

import org.easymock.EasyMock;
import org.easymock.EasyMockRunner;
import org.easymock.EasyMockSupport;
import org.easymock.Mock;
import org.easymock.TestSubject;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.mock.web.MockHttpServletResponse;
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.authority.SimpleGrantedAuthority;
import org.springframework.security.core.userdetails.User;
import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter;

@RunWith(EasyMockRunner.class)
public class CustomAuthenticationFilterTest extends EasyMockSupport{

    @TestSubject
    CustomAuthenticationFilter customAuthenticationFilter  = new CustomAuthenticationFilter();

    @Mock
    UsernamePasswordAuthenticationFilter usernamePasswordAuthenticationFilter;

    @Test
    public void testAttemptAuthentication() throws Exception{   
        MockHttpServletRequest request = new MockHttpServletRequest();
        request.setParameter("j_username", "Sundar1234");
        request.setParameter("j_password", "Sundar1234$$");
        MockHttpServletResponse response = new MockHttpServletResponse();
        SimpleGrantedAuthority authority = new SimpleGrantedAuthority("ROLE_USER");
        List<SimpleGrantedAuthority> updatedAuthorities = new ArrayList<SimpleGrantedAuthority>();
        updatedAuthorities.add(authority);
        User user = new User("Sundar1234", "Sundar1234$$", updatedAuthorities);
        Authentication auth = new UsernamePasswordAuthenticationToken(user,null);
        EasyMock.expect(usernamePasswordAuthenticationFilter.attemptAuthentication(request, response)).andReturn(auth);
        EasyMock.replay(usernamePasswordAuthenticationFilter);
        Assert.assertNotNull(customAuthenticationFilter.attemptAuthentication(request, response));
        EasyMock.verify(usernamePasswordAuthenticationFilter);
    }
}

1 Ответ

0 голосов
/ 09 июля 2018

UsernamePasswordAuthenticationFilter - это базовый класс, а не внедренная зависимость. Обычно вы можете обойти это, используя частичное макетирование . Но вы не можете, так как CustomAuthenticationFilter звонит super.attemptAuthentication, что не может быть осмеяно.

Ваши решения:

  1. Тест CustomAuthenticationFilter и его суперкласс в целом
  2. Вместо этого используйте шаблон делегирования

Но из-за текущей конструкции Spring для такого фильтра делегирование кажется неуклюжим. Поэтому я считаю, что лучше всего тестировать.

...