0

次のロジックで SecurityContextHolder から名前を取得するため、モック テストを完了するための解決策を見つけることができませんでした。

String userName = SecurityContextHolder.getContext()
            .getAuthentication().getName();

模擬試験:

@RunWith(PowerMockRunner.class)
@PrepareForTest(CustomAuthenticationSuccessHandlerTest.class)
public class CustomAuthenticationSuccessHandlerTest {

private CustomAuthenticationSuccessHandler successHandler;

    @Before
    public void setUp() {
        successHandler = new CustomAuthenticationSuccessHandler();
    }

    // https://github.com/pkainulainen/spring-mvc-test-examples/blob/master/security-url-based/src/test/java/net/petrikainulainen/spring/testmvc/security/util/SecurityContextUtilTest.java

    @Test
    public void test() {

         HttpServletRequest mockRequest = PowerMockito.mock(HttpServletRequest.class);
         HttpServletResponse mockResponse = PowerMockito.mock(HttpServletResponse.class);

        PowerMockito.mockStatic(SecurityContextHolder.class);
        SecurityContext mockSecurityContext = PowerMockito.mock(SecurityContext.class);
        Authentication authenticationMock = PowerMockito.mock(Authentication.class);
        PowerMockito.when(SecurityContextHolder.getContext()).thenReturn(mockSecurityContext);
        PowerMockito.when(mockSecurityContext.getAuthentication()).thenReturn(authenticationMock);
        PowerMockito.when(authenticationMock.getName()).thenReturn("userName");

...

Maven の依存関係

<!-- Mock Objects Library for Java -->
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <version>1.10.19</version>
            <scope>test</scope>
        </dependency>

<powermock.version>1.6.2</powermock.version>

互換性があります..しかし、それでも応答は正しくありません。

4

1 に答える 1

0

あなたのコードを見て、 に何かがあるような気がしmockStaticますSecurityContextHolder.class

編集:あなたが使用していることもわかりますPrepareForTest(YourTestClass)が、なぜこれを行うのかわかりません。この@PrepareForTestステートメントは (オブジェクトではなく) クラスに対してのみ使用されるため、インスタンス化する前にクラスを変更する必要があります。たとえば、そのクラスのすべてのインスタンスの一部のコードの動作を変更するときにPrepareForTestSecurityContextHolder.classクラスを変更する必要があります(たとえば、静的...)

これを試すことができます:

@RunWith(PowerMockRunner.class)
@PrepareForTest(SecurityContextHolder.class)
public testClass{         
    @Test
    public void testSomething(){
        // this prepares the class; all static methods get a default return value (in this case type Object is returned and the default returned object is null)
        PowerMockito.mockStatic(SecurityContextHolder.class, new Answer<Object>() 
        {
            @Override
            public Object answer(InvocationOnMock invocation) throws Throwable {
                return null;
            }
        });

        //Now the class is prepared, we can just change the behaviour of the static method in the way we would like.
        String in = "example input string";
        String out = "example output string";        

        PowerMockito.when(SecurityContextHolder.getContext()).thenReturn(out);
    }
    //..body
}
于 2015-10-09T13:34:04.297 に答える