summaryrefslogtreecommitdiffstats
path: root/mpls/impl/src/test/java/io/fd/hc2vpp/mpls/ImposeAndForwardTest.java
blob: a4689a74c3093a6922c410b499bc9363933964bf (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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*
 * Copyright (c) 2017 Cisco and/or its affiliates.
 *
 * 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.mpls;

import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import static org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpPrefixBuilder.getDefaultInstance;

import io.fd.hc2vpp.common.test.write.WriterCustomizerTest;
import io.fd.hc2vpp.common.translate.util.ByteDataTranslator;
import io.fd.hc2vpp.common.translate.util.NamingContext;
import io.fd.honeycomb.translate.write.WriteFailedException;
import io.fd.vpp.jvpp.core.dto.IpAddDelRoute;
import io.fd.vpp.jvpp.core.dto.IpAddDelRouteReply;
import io.fd.vpp.jvpp.core.future.FutureJVppCoreFacade;
import java.util.Arrays;
import java.util.Collections;
import org.junit.Test;
import org.mockito.Mock;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddressBuilder;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310.Mpls1;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310.StaticLspConfig;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310._static.lsp.ConfigBuilder;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310._static.lsp_config.InSegmentBuilder;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310._static.lsp_config.in.segment.type.IpPrefixBuilder;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310._static.lsp_config.out.segment.PathListBuilder;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310._static.lsp_config.out.segment.SimplePathBuilder;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310._static.lsp_config.out.segment.path.list.PathsBuilder;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310.routing.mpls.StaticLsps;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310.routing.mpls._static.lsps.StaticLsp;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310.routing.mpls._static.lsps.StaticLspBuilder;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310.routing.mpls._static.lsps.StaticLspKey;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls.rev170702.Routing1;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls.rev170702.routing.Mpls;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.routing.rev140524.Routing;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.routing.types.rev170227.MplsLabel;
import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;

public class ImposeAndForwardTest extends WriterCustomizerTest implements ByteDataTranslator {

    private static final String IF_NAME = "local0";
    private static final int IF_INDEX = 123;
    private static final String LSP_NAME = "static-lsp0";
    private static final InstanceIdentifier<StaticLsp> IID = InstanceIdentifier.create(Routing.class).augmentation
        (Routing1.class).child(Mpls.class).augmentation(Mpls1.class).child(StaticLsps.class)
        .child(StaticLsp.class, new StaticLspKey(LSP_NAME));
    private static final int LABEL = 111;
    private static final StaticLsp SIMPLE_LSP = getSimpleLsp((long) LABEL);
    private static final StaticLsp COMPLEX_LSP = getComplexLsp();

    @Mock
    private FutureJVppCoreFacade jvpp;
    private StaticLspCustomizer customizer;

    private static StaticLsp getSimpleLsp(final long label) {
        return new StaticLspBuilder()
            .setName(LSP_NAME)
            .setConfig(new ConfigBuilder()
                .setInSegment(new InSegmentBuilder()
                    .setType(new IpPrefixBuilder().setIpPrefix(getDefaultInstance("1.2.3.4/24"))
                        .build())
                    .build()
                )
                .setOperation(StaticLspConfig.Operation.ImposeAndForward)
                .setOutSegment(new SimplePathBuilder()
                    .setNextHop(IpAddressBuilder.getDefaultInstance("5.6.7.8"))
                    .setOutgoingInterface(IF_NAME)
                    .setOutgoingLabel(new MplsLabel(label))
                    .build())
                .build())
            .build();
    }

    private static StaticLsp getComplexLsp() {
        return new StaticLspBuilder()
            .setName(LSP_NAME)
            .setConfig(new ConfigBuilder()
                .setInSegment(new InSegmentBuilder()
                    .setType(new IpPrefixBuilder().setIpPrefix(getDefaultInstance("10.10.24.0/24"))
                        .build())
                    .build()
                )
                .setOperation(StaticLspConfig.Operation.ImposeAndForward)
                .setOutSegment(new PathListBuilder()
                    .setPaths(Collections.singletonList(new PathsBuilder()
                        .setNextHop(IpAddressBuilder.getDefaultInstance("10.10.12.2"))
                        .setOutgoingInterface(IF_NAME)
                        .setOutgoingLabels(Arrays.asList(new MplsLabel(102L), new MplsLabel(104L)))
                        .build()))
                    .build())
                .build())
            .build();
    }

    @Override
    public void setUpTest() {
        final String ctxInstanceName = "test-ifc-context";
        customizer = new StaticLspCustomizer(jvpp, new NamingContext("test-prefix", ctxInstanceName));
        when(jvpp.ipAddDelRoute(any())).thenReturn(future(new IpAddDelRouteReply()));
        defineMapping(mappingContext, IF_NAME, IF_INDEX, ctxInstanceName);
    }

    @Test
    public void testWriteSimple() throws WriteFailedException {
        customizer.writeCurrentAttributes(IID, SIMPLE_LSP, writeContext);
        verify(jvpp).ipAddDelRoute(getRequestForSimpleLsp(true));
    }

    @Test
    public void testWriteComplex() throws WriteFailedException {
        customizer.writeCurrentAttributes(IID, COMPLEX_LSP, writeContext);
        verify(jvpp).ipAddDelRoute(getRequestForComplexLsp(true));
    }

    @Test
    public void testUpdateSimple() throws WriteFailedException {
        final int newLabel = LABEL + 1;
        customizer.updateCurrentAttributes(IID, SIMPLE_LSP, getSimpleLsp(newLabel), writeContext);
        verify(jvpp).ipAddDelRoute(getRequestForSimpleLsp(false, LABEL));
        verify(jvpp).ipAddDelRoute(getRequestForSimpleLsp(true, newLabel));
    }

    @Test
    public void testDeleteSimple() throws WriteFailedException {
        customizer.deleteCurrentAttributes(IID, SIMPLE_LSP, writeContext);
        verify(jvpp).ipAddDelRoute(getRequestForSimpleLsp(false));
    }

    @Test
    public void testDeleteComplex() throws WriteFailedException {
        customizer.deleteCurrentAttributes(IID, COMPLEX_LSP, writeContext);
        verify(jvpp).ipAddDelRoute(getRequestForComplexLsp(false));
    }

    private IpAddDelRoute getRequestForSimpleLsp(final boolean add) {
        return getRequestForSimpleLsp(add, LABEL);
    }

    private IpAddDelRoute getRequestForSimpleLsp(final boolean add, final int label) {
        final IpAddDelRoute request = new IpAddDelRoute();
        request.nextHopSwIfIndex = IF_INDEX;
        request.isAdd = booleanToByte(add);
        request.nextHopWeight = 1;
        request.dstAddressLength = (byte) 24;
        request.dstAddress = new byte[] {1, 2, 3, 4};
        request.nextHopAddress = new byte[] {5, 6, 7, 8};
        request.nextHopNOutLabels = 1;
        request.nextHopViaLabel = LspWriter.MPLS_LABEL_INVALID;
        request.nextHopOutLabelStack = new int[] {label};
        return request;
    }

    private IpAddDelRoute getRequestForComplexLsp(final boolean add) {
        final IpAddDelRoute request = new IpAddDelRoute();
        request.nextHopSwIfIndex = IF_INDEX;
        request.isAdd = booleanToByte(add);
        request.nextHopWeight = 1;
        request.dstAddressLength = (byte) 24;
        request.dstAddress = new byte[] {10, 10, 24, 0};
        request.nextHopAddress = new byte[] {10, 10, 12, 2};
        request.nextHopNOutLabels = 2;
        request.nextHopViaLabel = LspWriter.MPLS_LABEL_INVALID;
        request.nextHopOutLabelStack = new int[] {102, 104};
        return request;
    }
}