Skip to content

Add DelegatingSecurityContextTaskScheduler #6257

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
/*
* Copyright 2002-2018 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.scheduling;

import org.springframework.scheduling.TaskScheduler;
import org.springframework.scheduling.Trigger;
import org.springframework.util.Assert;

import java.util.Date;
import java.util.concurrent.ScheduledFuture;

/**
* An implementation of {@link TaskScheduler} invoking it whenever the trigger
* indicates a next execution time.
*
* @author Richard Valdivieso
* @since 5.1
*/
public class DelegatingSecurityContextTaskScheduler implements TaskScheduler {

private final TaskScheduler taskScheduler;

/**
* Creates a new {@link DelegatingSecurityContextTaskScheduler}
*
* @param taskScheduler the {@link TaskScheduler}
*/
public DelegatingSecurityContextTaskScheduler(TaskScheduler taskScheduler) {
Assert.notNull(taskScheduler, "Task scheduler must not be null");
this.taskScheduler = taskScheduler;
}

@Override
public ScheduledFuture<?> schedule(Runnable task, Trigger trigger) {
return taskScheduler.schedule(task, trigger);
}

@Override
public ScheduledFuture<?> schedule(Runnable task, Date startTime) {
return taskScheduler.schedule(task, startTime);
}

@Override
public ScheduledFuture<?> scheduleAtFixedRate(Runnable task, Date startTime, long period) {
return taskScheduler.scheduleAtFixedRate(task, startTime, period);
}

@Override
public ScheduledFuture<?> scheduleAtFixedRate(Runnable task, long period) {
return taskScheduler.scheduleAtFixedRate(task, period);
}

@Override
public ScheduledFuture<?> scheduleWithFixedDelay(Runnable task, Date startTime, long delay) {
return taskScheduler.scheduleWithFixedDelay(task, startTime, delay);
}

@Override
public ScheduledFuture<?> scheduleWithFixedDelay(Runnable task, long delay) {
return taskScheduler.scheduleWithFixedDelay(task, delay);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
/*
* Copyright 2002-2018 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.scheduling;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.springframework.scheduling.TaskScheduler;
import org.springframework.scheduling.Trigger;

import java.time.Duration;
import java.time.Instant;
import java.util.Date;

import static org.mockito.Mockito.*;

/**
* Test An implementation of {@link TaskScheduler} invoking it whenever the trigger
* indicates a next execution time.
*
* @author Richard Valdivieso
* @since 5.1
*/
public class DelegatingSecurityContextTaskSchedulerTests {

@Mock
private TaskScheduler scheduler;
@Mock
private Runnable runnable;
@Mock
private Trigger trigger;

private DelegatingSecurityContextTaskScheduler delegatingSecurityContextTaskScheduler;

@Before
public void setup() {
MockitoAnnotations.initMocks(this);
delegatingSecurityContextTaskScheduler = new DelegatingSecurityContextTaskScheduler(scheduler);
}

@After
public void cleanup() {
delegatingSecurityContextTaskScheduler = null;
}

@Test(expected = IllegalArgumentException.class)
public void testSchedulerIsNotNull() {
delegatingSecurityContextTaskScheduler = new DelegatingSecurityContextTaskScheduler(null);
}

@Test
public void testSchedulerWithRunnableAndTrigger() {
delegatingSecurityContextTaskScheduler.schedule(runnable, trigger);
verify(scheduler).schedule(any(Runnable.class), any(Trigger.class));
}

@Test
public void testSchedulerWithRunnableAndInstant() {
Instant date = Instant.now();
delegatingSecurityContextTaskScheduler.schedule(runnable, date);
verify(scheduler).schedule(any(Runnable.class), any(Date.class));
}

@Test
public void testScheduleAtFixedRateWithRunnableAndDate() {
Date date = new Date(1544751374L);
Duration duration = Duration.ofSeconds(4L);
delegatingSecurityContextTaskScheduler.scheduleAtFixedRate(runnable, date, 1000L);
verify(scheduler).scheduleAtFixedRate(isA(Runnable.class), isA(Date.class), eq(1000L));
}

@Test
public void testScheduleAtFixedRateWithRunnableAndLong() {
delegatingSecurityContextTaskScheduler.scheduleAtFixedRate(runnable, 1000L);
verify(scheduler).scheduleAtFixedRate(isA(Runnable.class), eq(1000L));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -165,3 +165,4 @@ They are quite self-explanatory once you understand the previous code.
* DelegatingSecurityContextSchedulingTaskExecutor
* DelegatingSecurityContextAsyncTaskExecutor
* DelegatingSecurityContextTaskExecutor
* DelegatingSecurityContextTaskScheduler