summaryrefslogtreecommitdiffstats
path: root/v3po/v3po2vpp/src/test/java/io/fd/hc2vpp/v3po/interfacesstate/InterfaceStatisticsCustomizerTest.java
blob: 549d821051aa3bea29307493d9a17c8315a82c2b (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
111
112
113
114
115
116
117
118
119
120
121
/*
 * Copyright (c) 2019 PANTHEON.tech.
 *
 * 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.
 */

package io.fd.hc2vpp.v3po.interfacesstate;

import static org.mockito.ArgumentMatchers.anyInt;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;

import io.fd.hc2vpp.common.test.read.ReaderCustomizerTest;
import io.fd.hc2vpp.common.translate.util.NamingContext;
import io.fd.hc2vpp.v3po.interfacesstate.cache.InterfaceCacheStatisticsDumpManager;
import io.fd.hc2vpp.v3po.interfacesstate.cache.InterfaceCacheStatisticsSample;
import io.fd.honeycomb.translate.read.ReadFailedException;
import io.fd.honeycomb.translate.spi.read.ReaderCustomizer;
import io.fd.vpp.jvpp.core.dto.VnetPerInterfaceCombinedCounters;
import io.fd.vpp.jvpp.core.types.VnetCombinedCounter;
import java.math.BigInteger;
import java.time.LocalDateTime;
import org.junit.Assert;
import org.junit.Test;
import org.mockito.Mock;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.interfaces.rev140508.InterfacesState;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.interfaces.rev140508.interfaces.state.Interface;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.interfaces.rev140508.interfaces.state.InterfaceBuilder;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.interfaces.rev140508.interfaces.state.InterfaceKey;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.interfaces.rev140508.interfaces.state._interface.Statistics;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.interfaces.rev140508.interfaces.state._interface.StatisticsBuilder;
import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;

public class InterfaceStatisticsCustomizerTest extends ReaderCustomizerTest<Statistics, StatisticsBuilder> {

    private static final String IFC_CTX_NAME = "ifc-test-instance";
    private static final String IF_NAME = "tap";
    private static final int RX_BROADCAST_P = 8;
    private static final int RX_MULTICAST_P = 7;
    private static final int RX_UNICAST_P = 6;
    private static final int RX_BYTES = 1000;
    private static final int TX_BROADCAST_P = 88;
    private static final int TX_MULTICAST_P = 77;
    private static final int TX_UNICAST_P = 66;
    private static final int TX_BYTES = 1100;

    private NamingContext namingContext;
    private static final InstanceIdentifier<Statistics> IID =
            InstanceIdentifier.create(InterfacesState.class).child(Interface.class, new InterfaceKey(IF_NAME))
                    .child(Statistics.class);
    @Mock
    private InterfaceCacheStatisticsDumpManager statManager;


    public InterfaceStatisticsCustomizerTest() {
        super(Statistics.class, InterfaceBuilder.class);
    }

    @Override
    protected void setUp() throws Exception {
        namingContext = new NamingContext("generatedIfaceName", IFC_CTX_NAME);
        defineMapping(mappingContext, IF_NAME, 1, IFC_CTX_NAME);
    }

    @Override
    protected ReaderCustomizer<Statistics, StatisticsBuilder> initCustomizer() {
        return new InterfaceStatisticsCustomizer(namingContext, statManager);
    }

    @Test
    public void testRead() throws ReadFailedException {
        when(statManager.getStatisticsData(anyInt())).thenReturn(
                (new InterfaceCacheStatisticsSample(getDummyPerIfcCombinedCounters(), LocalDateTime.now())));
        StatisticsBuilder builder = new StatisticsBuilder();
        getCustomizer().readCurrentAttributes(IID, builder, ctx);
        verify(statManager).getStatisticsData(anyInt());
        Assert.assertEquals(BigInteger.valueOf(TX_BROADCAST_P), builder.getOutBroadcastPkts().getValue());
        Assert.assertEquals(BigInteger.valueOf(TX_MULTICAST_P), builder.getOutMulticastPkts().getValue());
        Assert.assertEquals(BigInteger.valueOf(TX_UNICAST_P), builder.getOutUnicastPkts().getValue());
        Assert.assertEquals(BigInteger.valueOf(TX_BYTES), builder.getOutOctets().getValue());
        Assert.assertEquals(BigInteger.valueOf(RX_BROADCAST_P), builder.getInBroadcastPkts().getValue());
        Assert.assertEquals(BigInteger.valueOf(RX_MULTICAST_P), builder.getInMulticastPkts().getValue());
        Assert.assertEquals(BigInteger.valueOf(RX_UNICAST_P), builder.getInUnicastPkts().getValue());
        Assert.assertEquals(BigInteger.valueOf(RX_BYTES), builder.getInOctets().getValue());
    }

    @Test
    public void testReadFailed() throws ReadFailedException {
        when(statManager.getStatisticsData(anyInt())).thenReturn(null);
        StatisticsBuilder builder = new StatisticsBuilder();
        getCustomizer().readCurrentAttributes(IID, builder, ctx);
        Assert.assertEquals(BigInteger.ZERO, builder.getInUnicastPkts().getValue());
    }

    private VnetPerInterfaceCombinedCounters getDummyPerIfcCombinedCounters() {
        VnetPerInterfaceCombinedCounters counters = new VnetPerInterfaceCombinedCounters();
        counters.count = 1;
        counters.timestamp = 1;
        VnetCombinedCounter data = new VnetCombinedCounter();
        data.rxBroadcastPackets = RX_BROADCAST_P;
        data.rxMulticastPackets = RX_MULTICAST_P;
        data.rxUnicastPackets = RX_UNICAST_P;
        data.rxBytes = RX_BYTES;
        data.txBroadcastPackets = TX_BROADCAST_P;
        data.txMulticastPackets = TX_MULTICAST_P;
        data.txUnicastPackets = TX_UNICAST_P;
        data.txBytes = TX_BYTES;
        counters.data = new VnetCombinedCounter[]{data};
        return counters;
    }
}