Refined CronSequenceGenerator's rounding up of seconds to address second-specific cron expressions

Issue: SPR-9459
This commit is contained in:
Juergen Hoeller
2013-02-08 21:13:04 +01:00
parent 89c3d03083
commit af8e6255e2
3 changed files with 72 additions and 6 deletions

View File

@@ -0,0 +1,48 @@
/*
* Copyright 2002-2013 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.scheduling.support;
import java.util.Date;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* @author Juergen Hoeller
*/
public class CronSequenceGeneratorTests {
@Test
public void testAt50Seconds() {
assertEquals(new Date(2012, 6, 2, 1, 0),
new CronSequenceGenerator("*/15 * 1-4 * * *").next(new Date(2012, 6, 1, 9, 53, 50)));
}
@Test
public void testAt0Seconds() {
assertEquals(new Date(2012, 6, 2, 1, 0),
new CronSequenceGenerator("*/15 * 1-4 * * *").next(new Date(2012, 6, 1, 9, 53)));
}
@Test
public void testAt0Minutes() {
assertEquals(new Date(2012, 6, 2, 1, 0),
new CronSequenceGenerator("0 */2 1-4 * * *").next(new Date(2012, 6, 1, 9, 0)));
}
}

View File

@@ -41,7 +41,7 @@ import static org.junit.Assert.*;
@RunWith(Parameterized.class)
public class CronTriggerTests {
private Calendar calendar = new GregorianCalendar();
private final Calendar calendar = new GregorianCalendar();
private final Date date;
@@ -49,8 +49,8 @@ public class CronTriggerTests {
public CronTriggerTests(Date date, TimeZone timeZone) {
this.timeZone = timeZone;
this.date = date;
this.timeZone = timeZone;
}
@Parameters
@@ -66,6 +66,7 @@ public class CronTriggerTests {
calendar.set(Calendar.MILLISECOND, 0);
}
@Before
public void setUp() {
calendar.setTimeZone(timeZone);