c352b510421e7f2a1b1a0fc806214bdb6969e02c
[hc2vpp.git] /
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
3  *
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:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16
17 package io.fd.honeycomb.translate.v3po.interfaces.acl.ingress;
18
19 import static org.junit.Assert.assertArrayEquals;
20 import static org.junit.Assert.assertEquals;
21 import static org.mockito.MockitoAnnotations.initMocks;
22
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;
35
36 public class AceEthWriterTest {
37
38     @Mock
39     private FutureJVppCore jvpp;
40     private AceEthWriter writer;
41     private PacketHandling action;
42     private AceEth aceEth;
43
44     @Before
45     public void setUp() throws Exception {
46         initMocks(this);
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"))
54             .build();
55     }
56
57     @Test
58     public void testGetClassifyAddDelTableRequest() throws Exception {
59         final int nextTableIndex = 42;
60         final ClassifyAddDelTable request = writer.createClassifyTable(action, aceEth, nextTableIndex, 0);
61
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);
70
71         byte[] expectedMask = new byte[] {
72             // destination MAC:
73             (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff,
74             // source MAC:
75             (byte) 0xff, (byte) 0xff, (byte) 0xff, 0, 0, 0,
76             0, 0, 0, 0
77         };
78         assertArrayEquals(expectedMask, request.mask);
79     }
80
81     @Test
82     public void testGetClassifyAddDelSessionRequest() throws Exception {
83         final int tableIndex = 123;
84         final ClassifyAddDelSession request = writer.createClassifySession(action, aceEth, tableIndex, 0);
85
86         assertEquals(1, request.isAdd);
87         assertEquals(tableIndex, request.tableIndex);
88         assertEquals(0, request.hitNextIndex);
89
90         byte[] expectedMatch = new byte[] {
91             // destination MAC:
92             (byte) 0x11, (byte) 0x22, (byte) 0x33, (byte) 0x44, (byte) 0x55, (byte) 0x66,
93             // source MAC:
94             (byte) 0xaa, (byte) 0xbb, (byte) 0xcc, (byte) 0xdd, (byte) 0xee, (byte) 0xff,
95             0, 0, 0, 0
96         };
97         assertArrayEquals(expectedMatch, request.match);
98     }
99
100     @Test
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);
106     }
107 }