e5efb1b402d7cd51fded2a0854c412093905aefd
[ccsdk/features.git] /
1 /*
2  * ============LICENSE_START========================================================================
3  * ONAP : 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.onap.ccsdk.features.sdnr.wt.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
24 import java.util.List;
25 import java.util.Optional;
26 import java.io.IOException;
27 import java.util.ArrayList;
28
29 import org.eclipse.jdt.annotation.Nullable;
30 import org.junit.After;
31 import org.junit.Before;
32 import org.junit.Test;
33 import org.mockito.Mockito;
34 import org.onap.ccsdk.features.sdnr.wt.devicemanager.oran.impl.ORanToInternalDataModel;
35 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.iana.hardware.rev180313.HardwareClass;
36 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.hardware.rev180313.hardware.Component;
37 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.DateAndTime;
38 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid;
39 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NodeId;
40 import org.onap.ccsdk.features.sdnr.wt.devicemanager.oran.test.TestHardwareClass;
41
42 public class TestORanToInternalDataModel {
43
44     NodeId nodeId;
45     Component component;
46
47     @SuppressWarnings("unchecked")
48     @Before
49     public void init() throws InterruptedException, IOException {
50         nodeId = mock(NodeId.class);
51         component = mock(Component.class);
52
53         when(nodeId.getValue()).thenReturn("ORan-1000");
54         when(component.getParent()).thenReturn("Shelf");
55         when(component.getParentRelPos()).thenReturn(0);
56         when(component.getUuid()).thenReturn(new Uuid("0Aabcdef-0abc-0cfD-0abC-0123456789AB"));
57
58         List<String> list = new ArrayList<String>();
59         list.add("Card-01A");
60         list.add("Card-01B");
61
62         when(component.getContainsChild()).thenReturn(list);
63         when(component.getName()).thenReturn("Nokia");
64         when(component.getDescription()).thenReturn("ORAN Network Element NO-456");
65         Class<? extends HardwareClass> hwClass = TestHardwareClass.class;
66         Mockito.<Class<? extends HardwareClass>>when(component.getXmlClass()).thenReturn(hwClass);
67
68         DateAndTime dt = new DateAndTime("2020-02-05T12:30:45.283Z");
69         when(component.getMfgDate()).thenReturn(dt);
70
71     }
72
73     @Test
74     public void test() throws Exception {
75         ORanToInternalDataModel model = new ORanToInternalDataModel();
76         model.getInternalEquipment(nodeId, component);
77         assertEquals(component.getUuid().getValue(), "0Aabcdef-0abc-0cfD-0abC-0123456789AB");
78         assertEquals(component.getMfgDate().getValue(), "2020-02-05T12:30:45.283Z");
79
80     }
81
82     @After
83     public void cleanUp() throws Exception {
84
85     }
86 }