Remove APIs marked for removal

See gh-30604
This commit is contained in:
Arjen Poutsma
2023-06-07 10:20:27 +02:00
parent 7f6f47b97b
commit df7223f39c
6 changed files with 11 additions and 720 deletions

View File

@@ -1,107 +0,0 @@
/*
* Copyright 2002-2022 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
*
* https://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.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/**
* @author Juergen Hoeller
* @author Ruslan Sibgatullin
*/
@SuppressWarnings({ "removal", "deprecation" })
public class CronSequenceGeneratorTests {
@Test
public void at50Seconds() {
assertThat(new CronSequenceGenerator("*/15 * 1-4 * * *").next(new Date(2012, 6, 1, 9, 53, 50))).isEqualTo(new Date(2012, 6, 2, 1, 0));
}
@Test
public void at0Seconds() {
assertThat(new CronSequenceGenerator("*/15 * 1-4 * * *").next(new Date(2012, 6, 1, 9, 53))).isEqualTo(new Date(2012, 6, 2, 1, 0));
}
@Test
public void at0Minutes() {
assertThat(new CronSequenceGenerator("0 */2 1-4 * * *").next(new Date(2012, 6, 1, 9, 0))).isEqualTo(new Date(2012, 6, 2, 1, 0));
}
@Test
public void with0Increment() {
assertThatIllegalArgumentException().isThrownBy(() ->
new CronSequenceGenerator("*/0 * * * * *").next(new Date(2012, 6, 1, 9, 0)));
}
@Test
public void withNegativeIncrement() {
assertThatIllegalArgumentException().isThrownBy(() ->
new CronSequenceGenerator("*/-1 * * * * *").next(new Date(2012, 6, 1, 9, 0)));
}
@Test
public void withInvertedMinuteRange() {
assertThatIllegalArgumentException().isThrownBy(() ->
new CronSequenceGenerator("* 6-5 * * * *").next(new Date(2012, 6, 1, 9, 0)));
}
@Test
public void withInvertedHourRange() {
assertThatIllegalArgumentException().isThrownBy(() ->
new CronSequenceGenerator("* * 6-5 * * *").next(new Date(2012, 6, 1, 9, 0)));
}
@Test
public void withSameMinuteRange() {
new CronSequenceGenerator("* 6-6 * * * *").next(new Date(2012, 6, 1, 9, 0));
}
@Test
public void withSameHourRange() {
new CronSequenceGenerator("* * 6-6 * * *").next(new Date(2012, 6, 1, 9, 0));
}
@Test
public void validExpression() {
assertThat(CronSequenceGenerator.isValidExpression("0 */2 1-4 * * *")).isTrue();
}
@Test
public void invalidExpressionWithLength() {
assertThat(CronSequenceGenerator.isValidExpression("0 */2 1-4 * * * *")).isFalse();
}
@Test
public void invalidExpressionWithSeconds() {
assertThat(CronSequenceGenerator.isValidExpression("100 */2 1-4 * * *")).isFalse();
}
@Test
public void invalidExpressionWithMonths() {
assertThat(CronSequenceGenerator.isValidExpression("0 */2 1-4 * INVALID *")).isFalse();
}
@Test
public void nullExpression() {
assertThat(CronSequenceGenerator.isValidExpression(null)).isFalse();
}
}