HC2VPP-258: add support for MPLS label push 57/9457/4
authorMarek Gradzki <[email protected]>
Thu, 16 Nov 2017 11:56:19 +0000 (12:56 +0100)
committerMarek Gradzki <[email protected]>
Mon, 20 Nov 2017 09:45:07 +0000 (10:45 +0100)
Translates impose-and-forward operation of
/hc2vpp-ietf-routing:routing/hc2vpp-ietf-mpl:mpls/
hc2vpp-ietf-mpls-static:static-lsps/static-lsp

to ip_add_del_route call.

For single outgoing-label, use simple-path out-segment.
For multiple outgoing labels, use path-list out-segment
with single path (multiple path support is not implemented yet).

See postman collection for examples.

TODOs:

- only IPv4 prefixes and next-hops are supported (HC2VPP-264).

Change-Id: I318e722edbc1f7ffd3eff2f308fc73c2062283c0
Signed-off-by: Marek Gradzki <[email protected]>
mpls/impl/asciidoc/Readme.adoc
mpls/impl/src/main/java/io/fd/hc2vpp/mpls/MplsWriterFactory.java
mpls/impl/src/main/java/io/fd/hc2vpp/mpls/StaticLspCustomizer.java [new file with mode: 0644]
mpls/impl/src/test/java/io/fd/hc2vpp/mpls/StaticLspCustomizerTest.java [new file with mode: 0644]

index 22b60cb..064dd15 100644 (file)
@@ -1,8 +1,24 @@
 = mpls-impl
 
+== MPLS interface management
+
+Allows to enable/disable MPLS on given interface.
+
 Translates
 /ietf-routing:routing/ietf-mpls:mpls/interface
 
 to
 
-sw_interface_set_mpls_enable.
\ No newline at end of file
+sw_interface_set_mpls_enable.
+
+== Pushing MPLS labels
+
+Translates impose-and-forward operation of
+/hc2vpp-ietf-routing:routing/hc2vpp-ietf-mpl:mpls/
+hc2vpp-ietf-mpls-static:static-lsps/static-lsp
+
+to ip_add_del_route call.
+
+For single outgoing-label, use simple-path out-segment.
+For multiple outgoing labels, use path-list out-segment
+with single path (multiple path support is not implemented yet).
\ No newline at end of file
index 7d420e0..014fd26 100644 (file)
@@ -21,11 +21,18 @@ import com.google.inject.Inject;
 import com.google.inject.name.Named;
 import io.fd.hc2vpp.common.translate.util.NamingContext;
 import io.fd.honeycomb.translate.impl.write.GenericListWriter;
+import io.fd.honeycomb.translate.impl.write.GenericWriter;
 import io.fd.honeycomb.translate.write.WriterFactory;
 import io.fd.honeycomb.translate.write.registry.ModifiableWriterRegistryBuilder;
 import io.fd.vpp.jvpp.core.future.FutureJVppCore;
 import javax.annotation.Nonnull;
 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.interfaces.rev140508.Interfaces;
+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._static.lsp.Config;
+import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310._static.lsp_config.InSegment;
+import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310._static.lsp_config.out.segment.path.list.Paths;
+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.rev170702.Routing1;
 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls.rev170702.interfaces.mpls.Interface;
 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls.rev170702.routing.Mpls;
@@ -34,14 +41,19 @@ import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 
 final class MplsWriterFactory implements WriterFactory {
     private static final InstanceIdentifier<org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.interfaces.rev140508.interfaces.Interface>
-        IFC_ID =
-        InstanceIdentifier.create(Interfaces.class).child(
-            org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.interfaces.rev140508.interfaces.Interface.class);
+            IFC_ID =
+            InstanceIdentifier.create(Interfaces.class).child(
+                    org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.interfaces.rev140508.interfaces.Interface.class);
 
     private static final InstanceIdentifier<Routing> ROUTING_ID = InstanceIdentifier.create(Routing.class);
     private static final InstanceIdentifier<Mpls> MPLS_ID = ROUTING_ID.augmentation(Routing1.class).child(Mpls.class);
     private static final InstanceIdentifier<Interface> INTERFACE_ID = MPLS_ID.child(Interface.class);
 
+    private static final InstanceIdentifier<StaticLsp> STATIC_LSP_ID =
+            MPLS_ID.augmentation(Mpls1.class).child(StaticLsps.class).child(StaticLsp.class);
+    private static final InstanceIdentifier<Config> CONFIG_ID = InstanceIdentifier.create(StaticLsp.class).child
+            (Config.class);
+
     @Inject
     @Named("interface-context")
     private NamingContext ifcContext;
@@ -59,5 +71,18 @@ final class MplsWriterFactory implements WriterFactory {
                 org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls.rev170702.interfaces.mpls._interface.Config.class)),
             new GenericListWriter<>(INTERFACE_ID, new MplsInterfaceCustomizer(vppApi, ifcContext)),
             IFC_ID);
+
+        // /ietf-routing:routing/ietf-mpls:mpls/ietf-mpls-static:static-lsps/static-lsp
+        // after
+        // /ietf-routing:routing/ietf-mpls:mpls/interface
+        // First enable MPLS on interface, then configure it:
+        registry.subtreeAddAfter(
+                ImmutableSet.of(
+                        CONFIG_ID,
+                        InstanceIdentifier.create(StaticLsp.class).child(Config.class).child(InSegment.class),
+                        InstanceIdentifier.create(StaticLsp.class).child(Config.class).child(Paths.class)
+                        ),
+                new GenericWriter<>(STATIC_LSP_ID, new StaticLspCustomizer(vppApi, ifcContext)),
+                INTERFACE_ID);
     }
 }
diff --git a/mpls/impl/src/main/java/io/fd/hc2vpp/mpls/StaticLspCustomizer.java b/mpls/impl/src/main/java/io/fd/hc2vpp/mpls/StaticLspCustomizer.java
new file mode 100644 (file)
index 0000000..d29e866
--- /dev/null
@@ -0,0 +1,169 @@
+/*
+ * 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 com.google.common.base.Preconditions.checkArgument;
+import static com.google.common.base.Preconditions.checkNotNull;
+import static org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310.StaticLspConfig.Operation.ImposeAndForward;
+
+import com.google.common.annotations.VisibleForTesting;
+import io.fd.hc2vpp.common.translate.util.ByteDataTranslator;
+import io.fd.hc2vpp.common.translate.util.FutureJVppCustomizer;
+import io.fd.hc2vpp.common.translate.util.Ipv4Translator;
+import io.fd.hc2vpp.common.translate.util.JvppReplyConsumer;
+import io.fd.hc2vpp.common.translate.util.NamingContext;
+import io.fd.honeycomb.translate.MappingContext;
+import io.fd.honeycomb.translate.spi.write.ListWriterCustomizer;
+import io.fd.honeycomb.translate.write.WriteContext;
+import io.fd.honeycomb.translate.write.WriteFailedException;
+import io.fd.vpp.jvpp.core.dto.IpAddDelRoute;
+import io.fd.vpp.jvpp.core.future.FutureJVppCore;
+import java.util.List;
+import javax.annotation.Nonnull;
+import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress;
+import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Prefix;
+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.Config;
+import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310._static.lsp_config.InSegment;
+import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310._static.lsp_config.OutSegment;
+import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310._static.lsp_config.in.segment.type.IpPrefix;
+import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310._static.lsp_config.out.segment.PathList;
+import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310._static.lsp_config.out.segment.SimplePath;
+import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.mpls._static.rev170310._static.lsp_config.out.segment.path.list.Paths;
+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.StaticLspKey;
+import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.routing.types.rev170227.MplsLabel;
+import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+final class StaticLspCustomizer extends FutureJVppCustomizer implements
+    ListWriterCustomizer<StaticLsp, StaticLspKey>, JvppReplyConsumer, ByteDataTranslator, Ipv4Translator {
+    private static final Logger LOG = LoggerFactory.getLogger(StaticLspCustomizer.class);
+
+    /**
+     * Maximum number of MPLS labels supported by VPP. Value is based on type of next_hop_n_out_labels value which is
+     * u8.
+     */
+    private static final int MAX_LABELS = 255;
+
+    /**
+     * Constant used by VPP to disable optional parameters of mpls label type.
+     */
+    @VisibleForTesting
+    static final int MPLS_LABEL_INVALID = 0x100000;
+
+    private final NamingContext interfaceContext;
+
+    StaticLspCustomizer(@Nonnull final FutureJVppCore vppApi, @Nonnull NamingContext interfaceContext) {
+        super(vppApi);
+        this.interfaceContext = checkNotNull(interfaceContext, "interfaceContext should not be null");
+    }
+
+    @Override
+    public void writeCurrentAttributes(@Nonnull final InstanceIdentifier<StaticLsp> id,
+                                       @Nonnull final StaticLsp dataAfter,
+                                       @Nonnull final WriteContext writeContext) throws WriteFailedException {
+        LOG.debug("Adding MPLS LSP: {}", dataAfter);
+        imposeAndForward(id, validateConfig(dataAfter), writeContext, true);
+        LOG.debug("MPLS LSP successfully configured: {}", dataAfter);
+    }
+
+    @Override
+    public void deleteCurrentAttributes(@Nonnull final InstanceIdentifier<StaticLsp> id,
+                                        @Nonnull final StaticLsp dataBefore,
+                                        @Nonnull final WriteContext writeContext) throws WriteFailedException {
+        LOG.debug("Removing MPLS LSP: {}", dataBefore);
+        imposeAndForward(id, validateConfig(dataBefore), writeContext, false);
+        LOG.debug("MPLS LSP successfully removed: {}", dataBefore);
+    }
+
+    private static Config validateConfig(@Nonnull final StaticLsp data) {
+        final Config config = data.getConfig();
+        checkArgument(config != null, "Config node of static-lsp is missing.");
+        final StaticLspConfig.Operation operation = config.getOperation();
+        checkArgument(ImposeAndForward.equals(operation),
+            "Only impose-and-forward operation is supported, but %s given.", operation);
+        return config;
+    }
+
+    private void imposeAndForward(@Nonnull final InstanceIdentifier<StaticLsp> id, @Nonnull final Config lspConfig,
+                                  @Nonnull final WriteContext writeContext, final boolean isAdd)
+        throws WriteFailedException {
+        final IpAddDelRoute request = new IpAddDelRoute();
+        request.isAdd = booleanToByte(isAdd);
+        request.nextHopWeight = 1; // default value used in make test
+
+        final InSegment inSegment = lspConfig.getInSegment();
+        checkArgument(inSegment != null, "Configuring impose-and-forward, but in-segment is missing.");
+
+        checkArgument(inSegment.getType() instanceof IpPrefix, "Only ip-prefix type is supported, but %s given.",
+            inSegment.getType());
+        final Ipv4Prefix prefix = ((IpPrefix) inSegment.getType()).getIpPrefix().getIpv4Prefix();
+
+        // TODO(HC2VPP-264): add support for mpls + v6
+        request.dstAddressLength = extractPrefix(prefix);
+        request.dstAddress = ipv4AddressPrefixToArray(prefix);
+
+        final OutSegment outSegment = lspConfig.getOutSegment();
+        checkArgument(outSegment != null, "Configuring impose-and-forward, but out-segment is missing.");
+        translateOutSegment(outSegment, request, writeContext.getMappingContext());
+        getReplyForWrite(getFutureJVpp().ipAddDelRoute(request).toCompletableFuture(), id);
+    }
+
+    private void translateOutSegment(@Nonnull final OutSegment outSegment, @Nonnull final IpAddDelRoute request,
+                                     @Nonnull final MappingContext mappingContext) {
+        String outgoingInterface = null;
+        if (outSegment instanceof SimplePath) {
+            final SimplePath path = (SimplePath) outSegment;
+            outgoingInterface = path.getOutgoingInterface();
+            final IpAddress nextHop = path.getNextHop();
+            checkArgument(nextHop != null, "Configuring impose-and-forward, but next-hop is missing.");
+            // TODO(HC2VPP-264): add support for mpls + v6
+            checkArgument(nextHop.getIpv4Address() != null, "Only IPv4 next-hop address is supported.");
+            request.nextHopAddress = ipv4AddressNoZoneToArray(nextHop.getIpv4Address().getValue());
+            request.nextHopNOutLabels = 1;
+            checkArgument(path.getOutgoingLabel() != null,
+                "Configuring impose-and-forward, but outgoing-label is missing.");
+            request.nextHopOutLabelStack = new int[] {path.getOutgoingLabel().getValue().intValue()};
+        } else if (outSegment instanceof PathList) {
+            final PathList pathList = (PathList) outSegment;
+            checkArgument(pathList.getPaths() != null && pathList.getPaths().size() == 1,
+                "Only single path is supported");
+            final Paths paths = pathList.getPaths().get(0);
+            outgoingInterface = paths.getOutgoingInterface();
+            // TODO(HC2VPP-264): add support for mpls + v6
+            final IpAddress nextHop = paths.getNextHop();
+            checkArgument(nextHop != null, "Configuring impose-and-forward, but next-hop is missing.");
+            checkArgument(nextHop.getIpv4Address() != null, "Only IPv4 next-hop address is supported.");
+            request.nextHopAddress = ipv4AddressNoZoneToArray(nextHop.getIpv4Address().getValue());
+            final List<MplsLabel> outgoingLabels = paths.getOutgoingLabels();
+            final int numberOfLabels = outgoingLabels.size();
+            checkArgument(numberOfLabels > 0 && numberOfLabels < MAX_LABELS,
+                "Number of labels (%s) not in range (0, %s].", numberOfLabels, MAX_LABELS, numberOfLabels);
+            request.nextHopNOutLabels = (byte) numberOfLabels;
+            request.nextHopOutLabelStack =
+                outgoingLabels.stream().mapToInt(label -> label.getValue().intValue()).toArray();
+        } else {
+            throw new IllegalArgumentException("Unsupported out-segment type: " + outSegment);
+        }
+
+        checkArgument(outgoingInterface != null, "Configuring impose-and-forward, but outgoing-interface is missing.");
+        request.nextHopSwIfIndex = interfaceContext.getIndex(outgoingInterface, mappingContext);
+        request.nextHopViaLabel = MPLS_LABEL_INVALID;
+    }
+}
diff --git a/mpls/impl/src/test/java/io/fd/hc2vpp/mpls/StaticLspCustomizerTest.java b/mpls/impl/src/test/java/io/fd/hc2vpp/mpls/StaticLspCustomizerTest.java
new file mode 100644 (file)
index 0000000..f866853
--- /dev/null
@@ -0,0 +1,172 @@
+/*
+ * 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 StaticLspCustomizerTest 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 StaticLsp SIMPLE_LSP = getSimpleLsp();
+    private static final StaticLsp COMPLEX_LSP = getComplexLsp();
+
+    @Mock
+    private FutureJVppCoreFacade jvpp;
+    private StaticLspCustomizer customizer;
+
+    private static StaticLsp getSimpleLsp() {
+        final StaticLsp data = 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(111L))
+                    .build())
+                .build())
+            .build();
+        return data;
+    }
+
+    private static StaticLsp getComplexLsp() {
+        final StaticLsp data = 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();
+        return data;
+    }
+
+    @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 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) {
+        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 = StaticLspCustomizer.MPLS_LABEL_INVALID;
+        request.nextHopOutLabelStack = new int[] {111};
+        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 = StaticLspCustomizer.MPLS_LABEL_INVALID;
+        request.nextHopOutLabelStack = new int[] {102, 104};
+        return request;
+    }
+}