|
@@ -1,95 +0,0 @@
|
|
|
-/*
|
|
|
- * Copyright 2012-2016 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.web.csrf;
|
|
|
-
|
|
|
-import java.lang.reflect.Method;
|
|
|
-
|
|
|
-import javax.servlet.http.Cookie;
|
|
|
-import javax.servlet.http.HttpServletRequest;
|
|
|
-import javax.servlet.http.HttpServletResponse;
|
|
|
-
|
|
|
-import org.junit.Test;
|
|
|
-import org.junit.runner.RunWith;
|
|
|
-import org.mockito.ArgumentCaptor;
|
|
|
-import org.mockito.Mock;
|
|
|
-import org.powermock.core.classloader.annotations.PrepareForTest;
|
|
|
-import org.powermock.modules.junit4.PowerMockRunner;
|
|
|
-
|
|
|
-import org.springframework.util.ReflectionUtils;
|
|
|
-
|
|
|
-import static org.mockito.Matchers.eq;
|
|
|
-import static org.mockito.Matchers.same;
|
|
|
-import static org.mockito.Mockito.mock;
|
|
|
-import static org.mockito.Mockito.never;
|
|
|
-import static org.mockito.Mockito.verify;
|
|
|
-import static org.powermock.api.mockito.PowerMockito.spy;
|
|
|
-import static org.powermock.api.mockito.PowerMockito.verifyStatic;
|
|
|
-import static org.powermock.api.mockito.PowerMockito.when;
|
|
|
-
|
|
|
-/**
|
|
|
- * @author Joe Grandja
|
|
|
- * @since 4.1
|
|
|
- */
|
|
|
-@RunWith(PowerMockRunner.class)
|
|
|
-@PrepareForTest({ ReflectionUtils.class, Method.class })
|
|
|
-public class CookieCsrfTokenRepositoryServlet3Tests {
|
|
|
-
|
|
|
- @Mock
|
|
|
- private Method method;
|
|
|
-
|
|
|
- @Test
|
|
|
- public void httpOnlyServlet30() throws Exception {
|
|
|
- spy(ReflectionUtils.class);
|
|
|
- when(ReflectionUtils.findMethod(Cookie.class, "setHttpOnly", boolean.class))
|
|
|
- .thenReturn(this.method);
|
|
|
-
|
|
|
- HttpServletRequest request = mock(HttpServletRequest.class);
|
|
|
- when(request.getContextPath()).thenReturn("/contextpath");
|
|
|
- HttpServletResponse response = mock(HttpServletResponse.class);
|
|
|
- ArgumentCaptor<Cookie> cookie = ArgumentCaptor.forClass(Cookie.class);
|
|
|
-
|
|
|
- CookieCsrfTokenRepository repository = new CookieCsrfTokenRepository();
|
|
|
-
|
|
|
- CsrfToken token = repository.generateToken(request);
|
|
|
- repository.saveToken(token, request, response);
|
|
|
-
|
|
|
- verify(response).addCookie(cookie.capture());
|
|
|
- verifyStatic(ReflectionUtils.class);
|
|
|
- ReflectionUtils.invokeMethod(same(this.method), eq(cookie.getValue()), eq(true));
|
|
|
- }
|
|
|
-
|
|
|
- @Test
|
|
|
- public void httpOnlyPreServlet30() throws Exception {
|
|
|
- spy(ReflectionUtils.class);
|
|
|
- when(ReflectionUtils.findMethod(Cookie.class, "setHttpOnly", boolean.class))
|
|
|
- .thenReturn(null);
|
|
|
-
|
|
|
- HttpServletRequest request = mock(HttpServletRequest.class);
|
|
|
- when(request.getContextPath()).thenReturn("/contextpath");
|
|
|
- HttpServletResponse response = mock(HttpServletResponse.class);
|
|
|
- ArgumentCaptor<Cookie> cookie = ArgumentCaptor.forClass(Cookie.class);
|
|
|
-
|
|
|
- CookieCsrfTokenRepository repository = new CookieCsrfTokenRepository();
|
|
|
-
|
|
|
- CsrfToken token = repository.generateToken(request);
|
|
|
- repository.saveToken(token, request, response);
|
|
|
-
|
|
|
- verify(response).addCookie(cookie.capture());
|
|
|
- verifyStatic(ReflectionUtils.class, never());
|
|
|
- ReflectionUtils.invokeMethod(same(this.method), eq(cookie.getValue()), eq(true));
|
|
|
- }
|
|
|
-
|
|
|
-}
|