summaryrefslogtreecommitdiffstats
path: root/v3po/v3po2vpp/src/test/java/io/fd/hc2vpp/v3po/l2/L2FibEntryCustomizerTest.java
blob: e4f113aa6c9dd856c638166f998f0c4e658d014d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
/*
 * Copyright (c) 2016 Cisco and/or its affiliates.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package io.fd.hc2vpp.v3po.l2;

import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import static org.mockito.Matchers.any;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;

import io.fd.hc2vpp.common.test.write.WriterCustomizerTest;
import io.fd.hc2vpp.common.translate.util.NamingContext;
import io.fd.honeycomb.translate.write.WriteFailedException;
import io.fd.jvpp.VppBaseCallException;
import io.fd.jvpp.VppInvocationException;
import io.fd.jvpp.core.dto.L2FibAddDel;
import io.fd.jvpp.core.dto.L2FibAddDelReply;
import org.junit.Test;
import org.mockito.ArgumentCaptor;
import org.opendaylight.yang.gen.v1.http.fd.io.hc2vpp.yang.v3po.rev190527.BridgeDomains;
import org.opendaylight.yang.gen.v1.http.fd.io.hc2vpp.yang.v3po.rev190527.L2FibFilter;
import org.opendaylight.yang.gen.v1.http.fd.io.hc2vpp.yang.v3po.rev190527.L2FibForward;
import org.opendaylight.yang.gen.v1.http.fd.io.hc2vpp.yang.v3po.rev190527.bridge.domains.BridgeDomain;
import org.opendaylight.yang.gen.v1.http.fd.io.hc2vpp.yang.v3po.rev190527.bridge.domains.BridgeDomainKey;
import org.opendaylight.yang.gen.v1.http.fd.io.hc2vpp.yang.v3po.rev190527.l2.fib.attributes.L2FibTable;
import org.opendaylight.yang.gen.v1.http.fd.io.hc2vpp.yang.v3po.rev190527.l2.fib.attributes.l2.fib.table.L2FibEntry;
import org.opendaylight.yang.gen.v1.http.fd.io.hc2vpp.yang.v3po.rev190527.l2.fib.attributes.l2.fib.table.L2FibEntryBuilder;
import org.opendaylight.yang.gen.v1.http.fd.io.hc2vpp.yang.v3po.rev190527.l2.fib.attributes.l2.fib.table.L2FibEntryKey;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.PhysAddress;
import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;

public class L2FibEntryCustomizerTest extends WriterCustomizerTest {
    private static final String BD_CTX_NAME = "bd-test-instance";
    private static final String IFC_CTX_NAME = "ifc-test-instance";

    private static final String BD_NAME = "testBD0";
    private static final int BD_ID = 111;
    private static final String IFACE_NAME = "eth0";
    private static final int IFACE_ID = 123;
    private static final int NO_INTERFACE = -1;

    private L2FibEntryCustomizer customizer;

    private static InstanceIdentifier<L2FibEntry> getL2FibEntryId(final PhysAddress address) {
        return InstanceIdentifier.create(BridgeDomains.class).child(BridgeDomain.class, new BridgeDomainKey(BD_NAME))
                .child(L2FibTable.class).child(L2FibEntry.class, new L2FibEntryKey(address));
    }

    @Override
    public void setUpTest() throws Exception {
        defineMapping(mappingContext, BD_NAME, BD_ID, BD_CTX_NAME);
        defineMapping(mappingContext, IFACE_NAME, IFACE_ID, IFC_CTX_NAME);

        customizer = new L2FibEntryCustomizer(
                api,
                new NamingContext("generatedBdName", BD_CTX_NAME),
                new NamingContext("generatedIfaceName", IFC_CTX_NAME));
    }

    private void whenL2FibAddDelThenSuccess() {
        doReturn(future(new L2FibAddDelReply())).when(api).l2FibAddDel(any(L2FibAddDel.class));
    }

    private void whenL2FibAddDelThenFailure() {
        doReturn(failedFuture()).when(api).l2FibAddDel(any(L2FibAddDel.class));
    }

    private L2FibAddDel generateL2FibAddDelFilterRequest(final byte[] mac, final byte isAdd, final int ifaceIndex) {
        final L2FibAddDel request = new L2FibAddDel();
        request.mac = mac;
        request.bdId = BD_ID;
        request.swIfIndex = ifaceIndex;
        request.isAdd = isAdd;
        if (isAdd == 1) {
            request.staticMac = 1;
            request.filterMac = 1;
        }
        return request;
    }

    private L2FibAddDel generateL2FibAddDelForwardRequest(final byte[] mac, final byte isAdd, final int ifaceIndex) {
        final L2FibAddDel request = new L2FibAddDel();
        request.mac = mac;
        request.bdId = BD_ID;
        request.swIfIndex = ifaceIndex;
        request.isAdd = isAdd;
        if (isAdd == 1) {
            request.staticMac = 1;
            request.filterMac = 0;
        }
        return request;
    }

    private L2FibEntry generateL2FibFilterEntry(final PhysAddress address) {
        final L2FibEntryBuilder entry = new L2FibEntryBuilder();
        entry.withKey(new L2FibEntryKey(address));
        entry.setPhysAddress(address);
        entry.setStaticConfig(true);
        entry.setBridgedVirtualInterface(false);
        entry.setAction(L2FibFilter.class);
        return entry.build();
    }

    private L2FibEntry generateL2FibForwardEntry(final PhysAddress address) {
        final L2FibEntryBuilder entry = new L2FibEntryBuilder();
        entry.withKey(new L2FibEntryKey(address));
        entry.setPhysAddress(address);
        entry.setStaticConfig(true);
        entry.setBridgedVirtualInterface(false);
        entry.setAction(L2FibForward.class);
        entry.setOutgoingInterface(IFACE_NAME);
        return entry.build();
    }


    private void verifyL2FibAddDelWasInvoked(final L2FibAddDel expected) throws
            VppInvocationException {
        ArgumentCaptor<L2FibAddDel> argumentCaptor = ArgumentCaptor.forClass(L2FibAddDel.class);
        verify(api).l2FibAddDel(argumentCaptor.capture());
        final L2FibAddDel actual = argumentCaptor.getValue();
        assertArrayEquals(expected.mac, actual.mac);
        assertEquals(expected.bdId, actual.bdId);
        assertEquals(expected.swIfIndex, actual.swIfIndex);
        assertEquals(expected.isAdd, actual.isAdd);
        assertEquals(expected.staticMac, actual.staticMac);
        assertEquals(expected.filterMac, actual.filterMac);
    }

    @Test
    public void testCreateFilter() throws Exception {
        final byte[] address_vpp = new byte[]{1, 2, 3, 4, 5, 6};
        final PhysAddress address = new PhysAddress("01:02:03:04:05:06");
        final L2FibEntry entry = generateL2FibFilterEntry(address);
        final InstanceIdentifier<L2FibEntry> id = getL2FibEntryId(address);

        whenL2FibAddDelThenSuccess();

        customizer.writeCurrentAttributes(id, entry, writeContext);

        verifyL2FibAddDelWasInvoked(generateL2FibAddDelFilterRequest(address_vpp, (byte) 1, NO_INTERFACE));
    }

    @Test
    public void testCreateForward() throws Exception {
        final byte[] address_vpp = new byte[]{1, 2, 3, 4, 5, 6};
        final PhysAddress address = new PhysAddress("01:02:03:04:05:06");
        final L2FibEntry entry = generateL2FibForwardEntry(address);
        final InstanceIdentifier<L2FibEntry> id = getL2FibEntryId(address);

        whenL2FibAddDelThenSuccess();

        customizer.writeCurrentAttributes(id, entry, writeContext);

        verifyL2FibAddDelWasInvoked(generateL2FibAddDelForwardRequest(address_vpp, (byte) 1, IFACE_ID));
    }

    @Test
    public void testCreateFilterFailed() throws Exception {
        final byte[] address_vpp = new byte[]{0x11, 0x22 ,0x33, 0x44 ,0x55, 0x66};
        final PhysAddress address = new PhysAddress("11:22:33:44:55:66");
        final L2FibEntry entry = generateL2FibFilterEntry(address);
        final InstanceIdentifier<L2FibEntry> id = getL2FibEntryId(address);

        whenL2FibAddDelThenFailure();

        try {
            customizer.writeCurrentAttributes(id, entry, writeContext);
        } catch (WriteFailedException e) {
            assertTrue(e.getCause() instanceof VppBaseCallException);
            verifyL2FibAddDelWasInvoked(generateL2FibAddDelFilterRequest(address_vpp, (byte) 1, NO_INTERFACE));
            return;
        }
        fail("WriteFailedException.CreateFailedException was expected");
    }

    @Test
    public void testCreateForwardFailed() throws Exception {
        final byte[] address_vpp = new byte[]{0x11, 0x22 ,0x33, 0x44 ,0x55, 0x66};
        final PhysAddress address = new PhysAddress("11:22:33:44:55:66");
        final L2FibEntry entry = generateL2FibForwardEntry(address);
        final InstanceIdentifier<L2FibEntry> id = getL2FibEntryId(address);

        whenL2FibAddDelThenFailure();

        try {
            customizer.writeCurrentAttributes(id, entry, writeContext);
        } catch (WriteFailedException e) {
            assertTrue(e.getCause() instanceof VppBaseCallException);
            verifyL2FibAddDelWasInvoked(generateL2FibAddDelForwardRequest(address_vpp, (byte) 1, IFACE_ID));
            return;
        }
        fail("WriteFailedException.CreateFailedException was expected");
    }

    @Test(expected = UnsupportedOperationException.class)
    public void testUpdate() throws Exception {
        customizer.updateCurrentAttributes(InstanceIdentifier.create(L2FibEntry.class), mock(L2FibEntry.class),
                mock(L2FibEntry.class), writeContext);
    }

    @Test
    public void testDeleteFilter() throws Exception {
        final byte[] address_vpp = new byte[]{0x11, 0x22 ,0x33, 0x44 ,0x55, 0x66};
        final PhysAddress address = new PhysAddress("11:22:33:44:55:66");
        final L2FibEntry entry = generateL2FibFilterEntry(address);
        final InstanceIdentifier<L2FibEntry> id = getL2FibEntryId(address);

        whenL2FibAddDelThenSuccess();

        customizer.deleteCurrentAttributes(id, entry, writeContext);

        verifyL2FibAddDelWasInvoked(generateL2FibAddDelFilterRequest(address_vpp, (byte) 0, NO_INTERFACE));
    }

    @Test
    public void testDeleteForward() throws Exception {
        final byte[] address_vpp = new byte[]{0x11, 0x22 ,0x33, 0x44 ,0x55, 0x66};
        final PhysAddress address = new PhysAddress("11:22:33:44:55:66");
        final L2FibEntry entry = generateL2FibForwardEntry(address);
        final InstanceIdentifier<L2FibEntry> id = getL2FibEntryId(address);

        whenL2FibAddDelThenSuccess();

        customizer.deleteCurrentAttributes(id, entry, writeContext);

        verifyL2FibAddDelWasInvoked(generateL2FibAddDelForwardRequest(address_vpp, (byte) 0, IFACE_ID));
    }


    @Test
    public void testDeleteFilterFailed() throws Exception {
        final byte[] address_vpp = new byte[]{1, 2, 3, 4, 5, 6};
        final PhysAddress address = new PhysAddress("01:02:03:04:05:06");
        final L2FibEntry entry = generateL2FibFilterEntry(address);
        final InstanceIdentifier<L2FibEntry> id = getL2FibEntryId(address);

        whenL2FibAddDelThenFailure();

        try {
            customizer.deleteCurrentAttributes(id, entry, writeContext);
        } catch (WriteFailedException e) {
            assertTrue(e.getCause() instanceof VppBaseCallException);
            verifyL2FibAddDelWasInvoked(generateL2FibAddDelFilterRequest(address_vpp, (byte) 0, NO_INTERFACE));
            return;
        }
        fail("WriteFailedException.DeleteFailedException was expected");
    }

    @Test
    public void testDeleteForwardFailed() throws Exception {
        final byte[] address_vpp = new byte[]{1, 2, 3, 4, 5, 6};
        final PhysAddress address = new PhysAddress("01:02:03:04:05:06");
        final L2FibEntry entry = generateL2FibForwardEntry(address);
        final InstanceIdentifier<L2FibEntry> id = getL2FibEntryId(address);

        whenL2FibAddDelThenFailure();

        try {
            customizer.deleteCurrentAttributes(id, entry, writeContext);
        } catch (WriteFailedException e) {
            assertTrue(e.getCause() instanceof VppBaseCallException);
            verifyL2FibAddDelWasInvoked(generateL2FibAddDelForwardRequest(address_vpp, (byte) 0, IFACE_ID));
            return;
        }
        fail("WriteFailedException.DeleteFailedException was expected");
    }
}