Update license header in appc-event-listener files
[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-2018 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  * ============LICENSE_END=========================================================
22  */
23 package org.onap.appc.listener.LCM.model;
24
25 import static org.junit.Assert.assertEquals;
26
27 import org.junit.Before;
28 import org.junit.Test;
29
30 public class ActionIdentifiersTest {
31
32     private ActionIdentifiers actionIdentifiers;
33
34
35     @Before
36     public void setup(){
37         actionIdentifiers = new ActionIdentifiers();
38     }
39
40     @Test
41     public void should_set_properties(){
42
43         actionIdentifiers.setServiceInstanceId("test-instance-id");
44         actionIdentifiers.setVnfID("test-vnf-id");
45         actionIdentifiers.setVnfcName("test-name");
46         actionIdentifiers.setVserverId("test-vserver-id");
47
48
49         assertEquals("test-instance-id", actionIdentifiers.getServiceInstanceId());
50         assertEquals("test-vnf-id", actionIdentifiers.getVnfID());
51         assertEquals("test-name", actionIdentifiers.getVnfcName());
52         assertEquals("test-vserver-id", actionIdentifiers.getVserverId());
53     }
54
55     @Test
56     public void should_initialize_parameters_from_constructor(){
57
58         actionIdentifiers.setServiceInstanceId("test-instance-id");
59         actionIdentifiers.setVnfID("test-vnf-id");
60         actionIdentifiers.setVnfcName("test-name");
61         actionIdentifiers.setVserverId("test-vserver-id");
62
63         ActionIdentifiers testObject = new ActionIdentifiers(actionIdentifiers);
64
65         assertEquals("test-instance-id", testObject.getServiceInstanceId());
66         assertEquals("test-vnf-id",  testObject.getVnfID());
67         assertEquals("test-name",  testObject.getVnfcName());
68         assertEquals("test-vserver-id",  testObject.getVserverId());
69     }
70 }