/* * Copyright (c) 2016 Pantheon Technologies s.r.o. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.openflowplugin.impl.protocol.deserialization.match; import static org.junit.Assert.assertEquals; import java.util.Iterator; import io.netty.buffer.ByteBuf; import io.netty.buffer.UnpooledByteBufAllocator; import org.junit.Test; import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants; import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants; import org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.common.IpConversionUtil; import org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.match.MatchConvertorUtil; import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IetfInetUtil; import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Address; import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Prefix; import org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026.match.layer._3.match.Ipv4Match; public class Ipv4SourceEntryDeserializerTest extends AbstractMatchEntryDeserializerTest { @Test public void deserializeEntry() throws Exception { final ByteBuf in = UnpooledByteBufAllocator.DEFAULT.buffer(); final Ipv4Prefix address = new Ipv4Prefix("192.168.72.0/24"); final Iterator<String> addressParts = IpConversionUtil.splitToParts(address); writeHeader(in, true); in.writeBytes(IetfInetUtil.INSTANCE.ipv4AddressBytes(new Ipv4Address(addressParts.next()))); in.writeBytes(MatchConvertorUtil.extractIpv4Mask(addressParts)); final Ipv4Match match = Ipv4Match.class.cast(deserialize(in).getLayer3Match()); assertEquals(address.getValue(), match.getIpv4Source().getValue()); assertEquals(0, in.readableBytes()); } @Override protected int getOxmClassCode() { return OxmMatchConstants.OPENFLOW_BASIC_CLASS; } @Override protected int getOxmFieldCode() { return OxmMatchConstants.IPV4_SRC; } @Override protected int getValueLength() { return EncodeConstants.GROUPS_IN_IPV4_ADDRESS; } }