Upgrade devicemanager-oran minus NTSim functionality
[oam.git] / features / devicemanager / o-ran / ru-fh / provider / src / test / java / org / oransc / oam / features / devicemanager / oran / test / TestORanToInternalDataModel.java
1 /*
2  * ============LICENSE_START========================================================================
3  * O-RAN-SC : oam/ccsdk feature sdnr wt
4  * =================================================================================================
5  * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property. All rights reserved.
6  * =================================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software distributed under the License
13  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
14  * or implied. See the License for the specific language governing permissions and limitations under
15  * the License.
16  * ============LICENSE_END==========================================================================
17  */
18 package org.oransc.oam.features.devicemanager.oran.test;
19
20 import static org.junit.Assert.assertEquals;
21 import static org.mockito.Mockito.mock;
22 import static org.mockito.Mockito.when;
23 import java.io.IOException;
24 import java.util.ArrayList;
25 import java.util.List;
26 import org.junit.After;
27 import org.junit.Before;
28 import org.junit.Test;
29 import org.mockito.Mockito;
30 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.iana.hardware.rev180313.HardwareClass;
31 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.hardware.rev180313.hardware.Component;
32 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.DateAndTime;
33 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid;
34 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NodeId;
35 import org.oransc.oam.features.devicemanager.oran.impl.ORanToInternalDataModel;
36
37 public class TestORanToInternalDataModel {
38
39     NodeId nodeId;
40     Component component;
41
42     @SuppressWarnings("unchecked")
43     @Before
44     public void init() throws InterruptedException, IOException {
45         nodeId = mock(NodeId.class);
46         component = mock(Component.class);
47
48         when(nodeId.getValue()).thenReturn("ORan-1000");
49         when(component.getParent()).thenReturn("Shelf");
50         when(component.getParentRelPos()).thenReturn(0);
51         when(component.getUuid()).thenReturn(new Uuid("0Aabcdef-0abc-0cfD-0abC-0123456789AB"));
52
53         List<String> list = new ArrayList<String>();
54         list.add("Card-01A");
55         list.add("Card-01B");
56
57         when(component.getContainsChild()).thenReturn(list);
58         when(component.getName()).thenReturn("Nokia");
59         when(component.getDescription()).thenReturn("ORAN Network Element NO-456");
60         Class<? extends HardwareClass> hwClass = TestHardwareClass.class;
61         Mockito.<Class<? extends HardwareClass>>when(component.getXmlClass()).thenReturn(hwClass);
62
63         DateAndTime dt = new DateAndTime("2020-02-05T12:30:45.283Z");
64         when(component.getMfgDate()).thenReturn(dt);
65
66     }
67
68     @Test
69     public void test() throws Exception {
70         ORanToInternalDataModel model = new ORanToInternalDataModel();
71         model.getInternalEquipment(nodeId, component);
72         assertEquals(component.getUuid().getValue(), "0Aabcdef-0abc-0cfD-0abC-0123456789AB");
73         assertEquals(component.getMfgDate().getValue(), "2020-02-05T12:30:45.283Z");
74
75     }
76
77     @After
78     public void cleanUp() throws Exception {
79
80     }
81 }