Merge "Adding Junit"
[portal.git] / ecomp-portal-BE-os / src / test / java / org / onap / portalapp / scheduler / RegistryAdapterTest.java
1  /*
2 * ============LICENSE_START=======================================================
3 * ONAP : Portal
4 * ================================================================================
5 * Copyright 2018 TechMahindra
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.*;
23 import org.junit.Before;
24 import org.junit.Test;
25 import org.mockito.Mock;
26 import org.onap.portalsdk.core.scheduler.Registerable;
27 import org.onap.portalsdk.workflow.services.WorkflowScheduleService;
28 import org.springframework.scheduling.quartz.SchedulerFactoryBean;
29
30 public class RegistryAdapterTest {
31         
32         RegistryAdapter ra=new RegistryAdapter();
33         @Mock
34         Registerable registry;
35         @Mock
36         WorkflowScheduleService workflowScheduleService;
37         SchedulerFactoryBean _schedulerBean=new SchedulerFactoryBean();
38         @Before
39         public void before(){
40                 ra.setRegistry(registry);
41                 ra.setSchedulerBean(_schedulerBean);
42                 ra.setWorkflowScheduleService(workflowScheduleService);
43         }
44         @Test
45         public void testSchedulerBean(){
46                 //negative test
47                 assertNotEquals(ra.getSchedulerBean(), registry);
48                 //positive test
49                 assertEquals(ra.getSchedulerBean(), _schedulerBean);
50         }
51         @Test
52         public void testRegistry(){
53                 //negative test
54                 assertNotEquals(ra.getRegistry(), _schedulerBean);
55                 //positive test
56                 assertEquals(ra.getRegistry(), registry);
57         }
58         @Test
59         public void testWorkflowScheduleService(){
60                 //negative test
61                 assertNotEquals(ra.getWorkflowScheduleService(), _schedulerBean);
62                 //positive test
63                 assertEquals(ra.getWorkflowScheduleService(),workflowScheduleService);
64         }
65 }