aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/devicemanager-onap/openroadm71/provider/src/test/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/openroadm/test/TestOpenRoadmAlarmNotification.java
blob: 674c9d0dee59b706c8441614c16b131ec5a5b908 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
 * ============LICENSE_START=======================================================
 * ONAP : ccsdk features
 * ================================================================================
 * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
 * All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 *
 */
package org.onap.ccsdk.features.sdnr.wt.devicemanager.openroadm.test;

import static org.junit.Assert.assertEquals;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import java.io.IOException;
import org.eclipse.jdt.annotation.NonNull;
import org.junit.BeforeClass;
import org.junit.Test;
import org.onap.ccsdk.features.sdnr.wt.devicemanager.openroadm71.impl.OpenroadmFaultNotificationListener;
import org.onap.ccsdk.features.sdnr.wt.devicemanager.service.DeviceManagerServiceProvider;
import org.onap.ccsdk.features.sdnr.wt.devicemanager.service.FaultService;
import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.NetconfBindingAccessor;
import org.onap.ccsdk.features.sdnr.wt.websocketmanager.model.WebsocketManagerService;
import org.opendaylight.yang.gen.v1.http.org.openroadm.alarm.rev200529.AlarmNotification;
import org.opendaylight.yang.gen.v1.http.org.openroadm.alarm.rev200529.Severity;
import org.opendaylight.yang.gen.v1.http.org.openroadm.alarm.rev200529.alarm.ProbableCause;
import org.opendaylight.yang.gen.v1.http.org.openroadm.alarm.rev200529.alarm.ProbableCauseBuilder;
import org.opendaylight.yang.gen.v1.http.org.openroadm.alarm.rev200529.alarm.Resource;
import org.opendaylight.yang.gen.v1.http.org.openroadm.alarm.rev200529.alarm.ResourceBuilder;
import org.opendaylight.yang.gen.v1.http.org.openroadm.common.node.types.rev191129.NodeIdType;
import org.opendaylight.yang.gen.v1.http.org.openroadm.probablecause.rev200529.ProbableCauseEnum;
import org.opendaylight.yang.gen.v1.http.org.openroadm.resource.rev200529.resource.Device;
import org.opendaylight.yang.gen.v1.http.org.openroadm.resource.rev200529.resource.DeviceBuilder;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.DateAndTime;
import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NodeId;

public class TestOpenRoadmAlarmNotification {
    private static final String myCircuitId = "Test_Id";
    private static final String myId = "Alarm_Id";
    DateAndTime myRaiseTime = new DateAndTime("2020-02-25T10:08:06.7Z");
    ProbableCause myProbableCause =
            new ProbableCauseBuilder().setCause(ProbableCauseEnum.AutomaticLaserShutdown).build();
    Device device = new DeviceBuilder().setNodeId(NodeIdType.getDefaultInstance("zNhe2i5")).build();
    org.opendaylight.yang.gen.v1.http.org.openroadm.resource.rev200529.resource.resource.resource.CircuitPack resVal =
            new org.opendaylight.yang.gen.v1.http.org.openroadm.resource.rev200529.resource.resource.resource.CircuitPackBuilder()
            .setCircuitPackName("Slot-0-Port-A").build();
    org.opendaylight.yang.gen.v1.http.org.openroadm.resource.rev200529.resource.Resource affectedResource =
            new org.opendaylight.yang.gen.v1.http.org.openroadm.resource.rev200529.resource.ResourceBuilder().setResource(resVal).build();
    Resource myResource = new ResourceBuilder().setResource(affectedResource).setDevice(device).build();


    static DeviceManagerServiceProvider serviceProvider;
    static @NonNull FaultService faultService;
    static AlarmNotification notification;
    Severity severity;
    static NetconfBindingAccessor accessor;
    static WebsocketManagerService notificationService;
    static NodeId nNodeId = new NodeId("nSky");
    @BeforeClass
    public static void init() throws InterruptedException, IOException {

        accessor = mock(NetconfBindingAccessor.class);
        serviceProvider = mock(DeviceManagerServiceProvider.class);
        faultService = mock(FaultService.class);
        notificationService = mock(WebsocketManagerService.class);
    }



    @Test
    public void testNotification() {
        severity = Severity.Critical;
        when(accessor.getNodeId()).thenReturn(nNodeId);
        when(serviceProvider.getFaultService()).thenReturn(faultService);
        when(serviceProvider.getWebsocketService()).thenReturn(notificationService);
        OpenroadmFaultNotificationListener alarmListener =
                new OpenroadmFaultNotificationListener(accessor, serviceProvider);
        notification = mock(AlarmNotification.class);

        when(notification.getId()).thenReturn(myId);
        when(notification.getCircuitId()).thenReturn(myCircuitId);
        when(notification.getRaiseTime()).thenReturn(myRaiseTime);
        when(notification.getProbableCause()).thenReturn(myProbableCause);
        when(notification.getResource()).thenReturn(myResource);
        when(notification.getSeverity()).thenReturn(severity);
        alarmListener.onAlarmNotification(notification);
        System.out.println(notification.getId());
        assertEquals(myId, notification.getId());
        assertEquals(myCircuitId, notification.getCircuitId());
        assertEquals(myRaiseTime, notification.getRaiseTime());
        assertEquals(myProbableCause, notification.getProbableCause());
        assertEquals(myResource, notification.getResource());
        assertEquals(severity, notification.getSeverity());


    }

}