OPNFLWPLUG-1032: Neon-MRI: Bump odlparent, yangtools, mdsal
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / deserialization / factories / BarrierReplyMessageFactoryTest.java
1 /*
2  * Copyright (c) 2013 Pantheon Technologies s.r.o. and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.openflowjava.protocol.impl.deserialization.factories;
10
11 import io.netty.buffer.ByteBuf;
12 import java.util.ArrayList;
13 import java.util.Arrays;
14 import java.util.Collections;
15 import java.util.List;
16 import org.junit.Test;
17 import org.opendaylight.openflowjava.protocol.api.keys.MessageCodeKey;
18 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
19 import org.opendaylight.openflowjava.protocol.impl.util.BufferHelper;
20 import org.opendaylight.openflowjava.protocol.impl.util.DefaultDeserializerFactoryTest;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.BarrierOutput;
22
23 /**
24  * Test for {@link org.opendaylight.openflowjava.protocol.impl.deserialization.factories.BarrierReplyMessageFactory}.
25  * @author michal.polkorab
26  * @author timotej.kubas
27  */
28 public class BarrierReplyMessageFactoryTest extends DefaultDeserializerFactoryTest<BarrierOutput> {
29
30     /**
31      * Initializes deserializer registry and lookups OF13 deserializer.
32      */
33     public BarrierReplyMessageFactoryTest() {
34         super(new MessageCodeKey(EncodeConstants.OF13_VERSION_ID, 21, BarrierOutput.class));
35     }
36
37     /**
38      * Testing of {@link BarrierReplyMessageFactory} for correct header version.
39      */
40     @Test
41     public void testVersions() {
42         List<Byte> versions = new ArrayList<>(Arrays.asList(
43                 EncodeConstants.OF13_VERSION_ID,
44                 EncodeConstants.OF14_VERSION_ID,
45                 EncodeConstants.OF15_VERSION_ID
46         ));
47         ByteBuf bb = BufferHelper.buildBuffer();
48         testHeaderVersions(versions, bb);
49
50         // OFP v1.0 need to be tested separately cause of different message type value
51         messageCodeKey = new MessageCodeKey(EncodeConstants.OF10_VERSION_ID, 19, BarrierOutput.class);
52         testHeaderVersions(Collections.singletonList(EncodeConstants.OF10_VERSION_ID), bb);
53     }
54 }