Implant vid-app-common org.onap.vid.job (main and test)
[vid.git] / vid-app-common / src / test / java / org / onap / vid / job / impl / DeleteOldJobsSchedulerInitializerTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.vid.job.impl;
22
23 import static org.hamcrest.MatcherAssert.assertThat;
24 import static org.hamcrest.Matchers.matchesPattern;
25 import static org.mockito.Mockito.mock;
26 import static org.onap.vid.testUtils.TestUtils.testWithSystemProperty;
27 import static org.testng.Assert.assertEquals;
28
29 import org.onap.vid.job.JobsBrokerService;
30 import org.quartz.JobDetail;
31 import org.quartz.impl.triggers.CronTriggerImpl;
32 import org.testng.annotations.Test;
33
34 public class DeleteOldJobsSchedulerInitializerTest {
35
36     @Test
37     public void testCreateJobDetail() throws Exception {
38         testWithSystemProperty("vid.asyncJob.howLongToKeepOldJobsInDays", "7", ()-> {
39             JobsBrokerService mockBroker = mock(JobsBrokerService.class);
40             DeleteOldJobsSchedulerInitializer underTest = new DeleteOldJobsSchedulerInitializer(mockBroker, null);
41             JobDetail jobDetail = underTest.createJobDetail();
42             assertEquals(DeleteOldJobsWorker.class, jobDetail.getJobClass());
43             assertEquals(mockBroker, jobDetail.getJobDataMap().get("jobsBrokerService"));
44             assertEquals(604800L, jobDetail.getJobDataMap().get("secondsAgo"));
45         });
46     }
47
48     @Test
49     public void testCreateTrigger() {
50         DeleteOldJobsSchedulerInitializer underTest = new DeleteOldJobsSchedulerInitializer(null, null);
51         CronTriggerImpl trigger = (CronTriggerImpl) underTest.createTrigger();
52         assertThat(trigger.getCronExpression(), matchesPattern("0 [1-5]?[0-9] 6 \\? \\* \\*"));
53     }
54
55 }