Merge "lowered code smells"
[portal.git] / ecomp-portal-BE-os / src / test / java / org / onap / portalapp / scheduler / SessionMgtRegistryTest.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : Portal
4  * ================================================================================
5  * Copyright (C) 2020 IBM 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 package org.onap.portalapp.scheduler;
21
22 import static org.junit.Assert.assertNotNull;
23 import java.text.ParseException;
24 import java.util.HashMap;
25 import java.util.Map;
26 import org.junit.Before;
27 import org.junit.Test;
28 import org.mockito.InjectMocks;
29 import org.mockito.Mock;
30 import org.mockito.MockitoAnnotations;
31 import org.onap.portalapp.service.sessionmgt.TimeoutHandler;
32 import org.springframework.scheduling.quartz.JobDetailFactoryBean;
33
34 public class SessionMgtRegistryTest {
35
36     @Mock
37     JobDetailFactoryBean job;
38     @Mock
39     TimeoutHandler lj;
40     @InjectMocks
41     SessionMgtRegistry lr;
42
43     String groupName = "AppGroup";
44     String jobName = "LogJob";
45     @Before
46     public void initialize(){
47         MockitoAnnotations.initMocks(this);
48     }
49     @Test
50     public void jobDetailFactoryBeantest() throws ParseException{
51
52         Map<String, Object> map = new HashMap<String, Object>();
53         map.put("units", "bytes");
54         job.setJobClass(TimeoutHandler.class);
55         job.setJobDataAsMap(map);
56         job.setGroup(groupName);
57         job.setName(jobName);
58         assertNotNull(lr.jobDetailFactoryBean());
59     }
60 }