CronDefinitionIssue25IntegrationTest.java
/*
* Copyright 2015 jmrozanec
* 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 com.cronutils.model.definition;
import com.cronutils.model.Cron;
import com.cronutils.model.field.CronFieldName;
import com.cronutils.model.time.ExecutionTime;
import com.cronutils.parser.CronParser;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class CronDefinitionIssue25IntegrationTest {
private CronDefinition cronDefinition;
static final String CRON_EXPRESSION = "0 18 1";
@BeforeEach
public void setUp() {
cronDefinition =
CronDefinitionBuilder.defineCron()
.withMinutes().and()
.withHours().and()
.withDayOfWeek().and()
.instance();
}
@Test
public void testParser() {
final CronParser parser = new CronParser(cronDefinition);
final Cron cron = parser.parse(CRON_EXPRESSION);
assertEquals("0", cron.retrieve(CronFieldName.MINUTE).getExpression().asString());
assertEquals("18", cron.retrieve(CronFieldName.HOUR).getExpression().asString());
assertEquals("1", cron.retrieve(CronFieldName.DAY_OF_WEEK).getExpression().asString());
}
/**
* Issue #25: next execution time produces NullPointerException for custom cron definitions.
*/
@Test
public void testExecutionTime() {
final CronParser parser = new CronParser(cronDefinition);
final Cron cron = parser.parse(CRON_EXPRESSION);
ExecutionTime.forCron(cron);
}
}