ActionIdentifiers unit tests
[appc.git] / appc-event-listener / appc-event-listener-bundle / src / test / java / org / onap / appc / listener / LCM / model / ActionIdentifiersTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2018 Nokia Solutions and Networks
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24 package org.onap.appc.listener.LCM.model;
25
26 import static org.junit.Assert.assertEquals;
27
28 import org.junit.Before;
29 import org.junit.Test;
30
31 public class ActionIdentifiersTest {
32
33     private ActionIdentifiers actionIdentifiers;
34
35
36     @Before
37     public void setup(){
38         actionIdentifiers = new ActionIdentifiers();
39     }
40
41     @Test
42     public void should_set_properties(){
43
44         actionIdentifiers.setServiceInstanceId("test-instance-id");
45         actionIdentifiers.setVnfID("test-vnf-id");
46         actionIdentifiers.setVnfcName("test-name");
47         actionIdentifiers.setVserverId("test-vserver-id");
48
49
50         assertEquals("test-instance-id", actionIdentifiers.getServiceInstanceId());
51         assertEquals("test-vnf-id", actionIdentifiers.getVnfID());
52         assertEquals("test-name", actionIdentifiers.getVnfcName());
53         assertEquals("test-vserver-id", actionIdentifiers.getVserverId());
54     }
55
56     @Test
57     public void should_initialize_parameters_from_constructor(){
58
59         actionIdentifiers.setServiceInstanceId("test-instance-id");
60         actionIdentifiers.setVnfID("test-vnf-id");
61         actionIdentifiers.setVnfcName("test-name");
62         actionIdentifiers.setVserverId("test-vserver-id");
63
64         ActionIdentifiers testObject = new ActionIdentifiers(actionIdentifiers);
65
66         assertEquals("test-instance-id", testObject.getServiceInstanceId());
67         assertEquals("test-vnf-id",  testObject.getVnfID());
68         assertEquals("test-name",  testObject.getVnfcName());
69         assertEquals("test-vserver-id",  testObject.getVserverId());
70     }
71 }