Bump upstreams
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / serialization / actions / SetDlDstActionSerializerTest.java
1 /*
2  * Copyright (c) 2016 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 package org.opendaylight.openflowplugin.impl.protocol.serialization.actions;
9
10 import static org.junit.Assert.assertEquals;
11
12 import org.junit.Test;
13 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.IetfYangUtil;
14 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.MacAddress;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.Action;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.SetDlDstActionCase;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.SetDlDstActionCaseBuilder;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.set.dl.dst.action._case.SetDlDstActionBuilder;
19
20 public class SetDlDstActionSerializerTest extends AbstractSetFieldActionSerializerTest {
21     @Test
22     public void testSerialize() {
23         final MacAddress address = new MacAddress("00:01:02:03:04:05");
24
25         final Action action = new SetDlDstActionCaseBuilder()
26                 .setSetDlDstAction(new SetDlDstActionBuilder()
27                         .setAddress(address)
28                         .build())
29                 .build();
30
31         assertAction(action, out -> {
32             byte[] addressBytes = new byte[6];
33             out.readBytes(addressBytes);
34             assertEquals(address, IetfYangUtil.macAddressFor(addressBytes));
35         });
36     }
37
38     @Override
39     protected Class<? extends Action> getClazz() {
40         return SetDlDstActionCase.class;
41     }
42 }