/* * Copyright 2002-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.concurrent; import static org.assertj.core.api.Assertions.assertThat; import static org.mockito.Mockito.doAnswer; import static org.mockito.Mockito.verify; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.Future; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mock; import org.mockito.invocation.InvocationOnMock; import org.mockito.runners.MockitoJUnitRunner; import org.mockito.stubbing.Answer; import org.springframework.core.task.SyncTaskExecutor; import org.springframework.core.task.support.ExecutorServiceAdapter; import org.springframework.security.core.context.SecurityContext; import org.springframework.security.core.context.SecurityContextHolder; /** * * @author Rob Winch * @since 3.2 */ @RunWith(MockitoJUnitRunner.class) public class DelegatingSecurityContextRunnableTests { @Mock private Runnable delegate; @Mock private SecurityContext securityContext; @Mock private Object callableResult; private Runnable runnable; private ExecutorService executor; private SecurityContext originalSecurityContext; @Before public void setUp() throws Exception { originalSecurityContext = SecurityContextHolder.createEmptyContext(); doAnswer(new Answer<Object>() { public Object answer(InvocationOnMock invocation) throws Throwable { assertThat(SecurityContextHolder.getContext()).isEqualTo(securityContext); return null; } }).when(delegate).run(); executor = Executors.newFixedThreadPool(1); } @After public void tearDown() { SecurityContextHolder.clearContext(); } // --- constructor --- @Test(expected = IllegalArgumentException.class) public void constructorNullDelegate() { new DelegatingSecurityContextRunnable(null); } @Test(expected = IllegalArgumentException.class) public void constructorNullDelegateNonNullSecurityContext() { new DelegatingSecurityContextRunnable(null, securityContext); } @Test(expected = IllegalArgumentException.class) public void constructorNullDelegateAndSecurityContext() { new DelegatingSecurityContextRunnable(null, null); } @Test(expected = IllegalArgumentException.class) public void constructorNullSecurityContext() { new DelegatingSecurityContextRunnable(delegate, null); } // --- run --- @Test public void call() throws Exception { runnable = new DelegatingSecurityContextRunnable(delegate, securityContext); assertWrapped(runnable); } @Test public void callDefaultSecurityContext() throws Exception { SecurityContextHolder.setContext(securityContext); runnable = new DelegatingSecurityContextRunnable(delegate); SecurityContextHolder.clearContext(); // ensure runnable is what sets up the // SecurityContextHolder assertWrapped(runnable); } // SEC-3031 @Test public void callOnSameThread() throws Exception { originalSecurityContext = securityContext; SecurityContextHolder.setContext(originalSecurityContext); executor = synchronousExecutor(); runnable = new DelegatingSecurityContextRunnable(delegate, securityContext); assertWrapped(runnable); } // --- create --- @Test(expected = IllegalArgumentException.class) public void createNullDelegate() { DelegatingSecurityContextRunnable.create(null, securityContext); } @Test(expected = IllegalArgumentException.class) public void createNullDelegateAndSecurityContext() { DelegatingSecurityContextRunnable.create(null, null); } @Test public void createNullSecurityContext() throws Exception { SecurityContextHolder.setContext(securityContext); runnable = DelegatingSecurityContextRunnable.create(delegate, null); SecurityContextHolder.clearContext(); // ensure runnable is what sets up the // SecurityContextHolder assertWrapped(runnable); } @Test public void create() throws Exception { runnable = DelegatingSecurityContextRunnable.create(delegate, securityContext); assertWrapped(runnable); } // --- toString // SEC-2682 @Test public void toStringDelegates() { runnable = new DelegatingSecurityContextRunnable(delegate, securityContext); assertThat(runnable.toString()).isEqualTo(delegate.toString()); } private void assertWrapped(Runnable runnable) throws Exception { Future<?> submit = executor.submit(runnable); submit.get(); verify(delegate).run(); assertThat(SecurityContextHolder.getContext()).isEqualTo( originalSecurityContext); } private static ExecutorService synchronousExecutor() { return new ExecutorServiceAdapter(new SyncTaskExecutor()); } }