26d6b98e443a5dd983cd5e8d04c54a8fd67889d3
[vpp.git] / src / vpp-api / java / jvpp-nat / io / fd / vpp / jvpp / nat / test / FutureApiTest.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.vpp.jvpp.nat.test;
18
19
20 import io.fd.vpp.jvpp.JVppRegistry;
21 import io.fd.vpp.jvpp.JVppRegistryImpl;
22 import io.fd.vpp.jvpp.nat.JVppNatImpl;
23 import io.fd.vpp.jvpp.nat.dto.Nat44AddressDetailsReplyDump;
24 import io.fd.vpp.jvpp.nat.dto.Nat44AddressDump;
25 import io.fd.vpp.jvpp.nat.future.FutureJVppNatFacade;
26
27 import java.util.concurrent.Future;
28 import java.util.logging.Logger;
29
30 public class FutureApiTest {
31
32     private static final Logger LOG = Logger.getLogger(io.fd.vpp.jvpp.nat.test.FutureApiTest.class.getName());
33
34     public static void main(String[] args) throws Exception {
35         testCallbackApi(args);
36     }
37
38     private static void testCallbackApi(String[] args) throws Exception {
39         LOG.info("Testing Java callback API for nat plugin");
40         try (final JVppRegistry registry = new JVppRegistryImpl("FutureApiTest", args[0]);
41              final FutureJVppNatFacade jvpp = new FutureJVppNatFacade(registry, new JVppNatImpl())) {
42             LOG.info("Successfully connected to VPP");
43
44             testAclDump(jvpp);
45
46             LOG.info("Disconnecting...");
47         }
48     }
49
50     private static void testAclDump(FutureJVppNatFacade jvpp) throws Exception {
51         LOG.info("Sending Nat44AddressDump request...");
52         final Nat44AddressDump request = new Nat44AddressDump();
53
54         final Future<Nat44AddressDetailsReplyDump> replyFuture = jvpp.nat44AddressDump(request).toCompletableFuture();
55         final Nat44AddressDetailsReplyDump reply = replyFuture.get();
56
57         if (reply == null || reply.nat44AddressDetails == null) {
58             throw new IllegalStateException("Received null response for empty dump: " + reply);
59         } else {
60             LOG.info(
61                     String.format(
62                             "Received nat address dump reply with list of nat address: %s",
63                             reply.nat44AddressDetails));
64         }
65     }
66 }