JUnit additions for SDK-APP
[policy/engine.git] / ONAP-SDK-APP / src / test / java / org / onap / portalapp / scheduler / RegistryAdapterTest.java
1 /*-
2  * ================================================================================
3  * ONAP Portal SDK
4  * ================================================================================
5  * Copyright (C) 2018 AT&T Intellectual Property
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  * ================================================================================
19  */
20
21 package org.onap.portalapp.scheduler;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.fail;
25 import org.junit.Rule;
26 import org.junit.Test;
27 import org.junit.rules.ExpectedException;
28 import org.onap.portalsdk.core.scheduler.Registerable;
29 import org.onap.portalsdk.workflow.services.WorkflowScheduleService;
30 import org.springframework.scheduling.quartz.SchedulerFactoryBean;
31
32 public class RegistryAdapterTest {
33         @Rule 
34         public final ExpectedException thrown = ExpectedException.none();
35
36         @Test
37         public void testRegistryAdapter() {
38                 RegistryAdapter adapter = new RegistryAdapter();
39                 SchedulerFactoryBean schedulerBean = new SchedulerFactoryBean();
40                 Registerable registry = null;
41                 WorkflowScheduleService workflowScheduleService = null;
42
43                 adapter.setSchedulerBean(schedulerBean);
44                 assertEquals(adapter.getSchedulerBean(), schedulerBean);
45                 adapter.setRegistry(registry);
46                 assertEquals(adapter.getRegistry(), registry);
47                 adapter.setWorkflowScheduleService(workflowScheduleService);
48                 assertEquals(adapter.getWorkflowScheduleService(), workflowScheduleService);
49         }
50         
51         @Test
52         public void testRegistryAdapterNegCase1() {
53                 thrown.expect(NullPointerException.class);
54
55                 RegistryAdapter adapter = new RegistryAdapter();
56                 adapter.getTriggers();
57                 fail("Expecting an exception.");
58         }
59         
60         @Test
61         public void testRegistryAdapterNegCase2() {
62                 thrown.expect(NullPointerException.class);
63
64                 RegistryAdapter adapter = new RegistryAdapter();
65                 adapter.addCoreTriggers();
66                 fail("Expecting an exception.");
67         }
68 }