d224a067ffac2a2fab397ed1225b7d475b9283bf
[honeycomb.git] / v3po / v3po2vpp / src / test / java / io / fd / honeycomb / translate / v3po / interfaces / acl / common / AceIpAndEthWriterTest.java
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.common;
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 org.junit.Before;
26 import org.junit.Test;
27 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;
28 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;
29 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Prefix;
30 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.PortNumber;
31 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.packet.fields.rev160708.acl.transport.header.fields.DestinationPortRangeBuilder;
32 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.packet.fields.rev160708.acl.transport.header.fields.SourcePortRangeBuilder;
33 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.MacAddress;
34 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.vpp.acl.rev161214.InterfaceMode;
35 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.vpp.acl.rev161214.access.lists.acl.access.list.entries.ace.matches.ace.type.AceIpAndEth;
36 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.vpp.acl.rev161214.access.lists.acl.access.list.entries.ace.matches.ace.type.AceIpAndEthBuilder;
37 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.vpp.acl.rev161214.access.lists.acl.access.list.entries.ace.matches.ace.type.ace.ip.and.eth.ace.ip.version.AceIpv4Builder;
38
39 public class AceIpAndEthWriterTest {
40
41     private AceIpAndEthWriter writer;
42     private PacketHandling action;
43     private AceIpAndEth ace;
44
45     @Before
46     public void setUp() {
47         initMocks(this);
48         writer = new AceIpAndEthWriter();
49         action = new DenyBuilder().setDeny(true).build();
50         ace = new AceIpAndEthBuilder()
51             .setDestinationMacAddress(new MacAddress("11:22:33:44:55:66"))
52             .setSourceMacAddress(new MacAddress("aa:bb:cc:dd:ee:ff"))
53             .setAceIpVersion(new AceIpv4Builder()
54                 .setSourceIpv4Network(new Ipv4Prefix("1.2.3.4/32")).build())
55             .setSourcePortRange(new SourcePortRangeBuilder().setLowerPort(new PortNumber(0x1111)).build())
56             .setDestinationPortRange(new DestinationPortRangeBuilder().setLowerPort(new PortNumber(0x2222)).build())
57             .build();
58     }
59
60     @Test
61     public void testCreateTable() {
62         final int nextTableIndex = 42;
63         final ClassifyAddDelTable request = writer.createTable(ace, InterfaceMode.L2, nextTableIndex, 0);
64
65         assertEquals(1, request.isAdd);
66         assertEquals(-1, request.tableIndex);
67         assertEquals(1, request.nbuckets);
68         assertEquals(nextTableIndex, request.nextTableIndex);
69         assertEquals(0, request.skipNVectors);
70         assertEquals(3, request.matchNVectors);
71         assertEquals(AceEthWriter.TABLE_MEM_SIZE, request.memorySize);
72
73         byte[] expectedMask = new byte[] {
74             // destination MAC:
75             -1, -1, -1, -1, -1, -1,
76             // source MAC:
77             -1, -1, -1, -1, -1, -1,
78             // ether type:
79             -1, -1,
80             // IP header
81             0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
82             // source address:
83             -1, -1, -1, -1,
84             // destination address:
85             0, 0, 0, 0,
86             // source and destination port:
87             -1, -1, -1, -1,
88             // padding:
89             0, 0, 0, 0, 0, 0, 0, 0, 0, 0
90         };
91         assertArrayEquals(expectedMask, request.mask);
92     }
93
94     @Test
95     public void testCreateClassifySession() {
96         final int tableIndex = 123;
97         final ClassifyAddDelSession request = writer.createSession(action, ace, InterfaceMode.L2, tableIndex, 0).get(0);
98
99         assertEquals(1, request.isAdd);
100         assertEquals(tableIndex, request.tableIndex);
101         assertEquals(0, request.hitNextIndex);
102
103         byte[] expectedMatch = new byte[] {
104             // destination MAC:
105             (byte) 0x11, (byte) 0x22, (byte) 0x33, (byte) 0x44, (byte) 0x55, (byte) 0x66,
106             // source MAC:
107             (byte) 0xaa, (byte) 0xbb, (byte) 0xcc, (byte) 0xdd, (byte) 0xee, (byte) 0xff,
108             // ether type (IP4):
109             0x08, 0,
110             // IP header
111             0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
112             // source address:
113             1, 2, 3, 4,
114             // destination address:
115             0, 0, 0, 0,
116             // source and destination port:
117             0x11, 0x11, 0x22, 0x22,
118             // padding:
119             0, 0, 0, 0, 0, 0, 0, 0, 0, 0
120         };
121         assertArrayEquals(expectedMatch, request.match);
122     }
123 }