2 * Copyright (c) 2016 Cisco and/or its affiliates.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package io.fd.honeycomb.translate.v3po.interfaces.acl.ingress;
19 import static org.junit.Assert.assertArrayEquals;
20 import static org.junit.Assert.assertEquals;
21 import static org.mockito.MockitoAnnotations.initMocks;
23 import io.fd.vpp.jvpp.core.dto.ClassifyAddDelSession;
24 import io.fd.vpp.jvpp.core.dto.ClassifyAddDelTable;
25 import io.fd.vpp.jvpp.core.dto.InputAclSetInterface;
26 import io.fd.vpp.jvpp.core.future.FutureJVppCore;
27 import org.junit.Before;
28 import org.junit.Test;
29 import org.mockito.Mock;
30 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.access.control.list.rev160708.access.lists.acl.access.list.entries.ace.actions.PacketHandling;
31 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.access.control.list.rev160708.access.lists.acl.access.list.entries.ace.actions.packet.handling.DenyBuilder;
32 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.access.control.list.rev160708.access.lists.acl.access.list.entries.ace.matches.ace.type.AceEth;
33 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.access.control.list.rev160708.access.lists.acl.access.list.entries.ace.matches.ace.type.AceEthBuilder;
34 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.MacAddress;
36 public class AceEthWriterTest {
39 private FutureJVppCore jvpp;
40 private AceEthWriter writer;
41 private PacketHandling action;
42 private AceEth aceEth;
45 public void setUp() throws Exception {
47 writer = new AceEthWriter(jvpp);
48 action = new DenyBuilder().setDeny(true).build();
49 aceEth = new AceEthBuilder()
50 .setDestinationMacAddress(new MacAddress("11:22:33:44:55:66"))
51 .setDestinationMacAddressMask(new MacAddress("ff:ff:ff:ff:ff:ff"))
52 .setSourceMacAddress(new MacAddress("aa:bb:cc:dd:ee:ff"))
53 .setSourceMacAddressMask(new MacAddress("ff:ff:ff:00:00:00"))
58 public void testGetClassifyAddDelTableRequest() throws Exception {
59 final int nextTableIndex = 42;
60 final ClassifyAddDelTable request = writer.createClassifyTable(action, aceEth, nextTableIndex, 0);
62 assertEquals(1, request.isAdd);
63 assertEquals(-1, request.tableIndex);
64 assertEquals(1, request.nbuckets);
65 assertEquals(-1, request.missNextIndex);
66 assertEquals(nextTableIndex, request.nextTableIndex);
67 assertEquals(0, request.skipNVectors);
68 assertEquals(AceEthWriter.MATCH_N_VECTORS, request.matchNVectors);
69 assertEquals(AceEthWriter.TABLE_MEM_SIZE, request.memorySize);
71 byte[] expectedMask = new byte[] {
73 (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff,
75 (byte) 0xff, (byte) 0xff, (byte) 0xff, 0, 0, 0,
78 assertArrayEquals(expectedMask, request.mask);
82 public void testGetClassifyAddDelSessionRequest() throws Exception {
83 final int tableIndex = 123;
84 final ClassifyAddDelSession request = writer.createClassifySession(action, aceEth, tableIndex, 0);
86 assertEquals(1, request.isAdd);
87 assertEquals(tableIndex, request.tableIndex);
88 assertEquals(0, request.hitNextIndex);
90 byte[] expectedMatch = new byte[] {
92 (byte) 0x11, (byte) 0x22, (byte) 0x33, (byte) 0x44, (byte) 0x55, (byte) 0x66,
94 (byte) 0xaa, (byte) 0xbb, (byte) 0xcc, (byte) 0xdd, (byte) 0xee, (byte) 0xff,
97 assertArrayEquals(expectedMatch, request.match);
101 public void testSetClassifyTable() throws Exception {
102 final int tableIndex = 321;
103 final InputAclSetInterface request = new InputAclSetInterface();
104 writer.setClassifyTable(request, tableIndex);
105 assertEquals(tableIndex, request.l2TableIndex);