Move java api to extras/
[vpp.git] / extras / japi / java / jvpp-ioampot / io / fd / vpp / jvpp / ioampot / 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.ioampot.test;
18
19
20 import io.fd.vpp.jvpp.JVppRegistry;
21 import io.fd.vpp.jvpp.JVppRegistryImpl;
22 import io.fd.vpp.jvpp.ioampot.JVppIoampotImpl;
23 import io.fd.vpp.jvpp.ioampot.dto.PotProfileShowConfigDetailsReplyDump;
24 import io.fd.vpp.jvpp.ioampot.dto.PotProfileShowConfigDump;
25 import io.fd.vpp.jvpp.ioampot.future.FutureJVppIoampotFacade;
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.ioampot.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 ioampot plugin");
40         try (final JVppRegistry registry = new JVppRegistryImpl("FutureApiTest", args[0]);
41              final FutureJVppIoampotFacade jvpp = new FutureJVppIoampotFacade(registry, new JVppIoampotImpl())) {
42             LOG.info("Successfully connected to VPP");
43
44             testPotProfileShowConfigDump(jvpp);
45
46             LOG.info("Disconnecting...");
47         }
48     }
49
50     private static void testPotProfileShowConfigDump(FutureJVppIoampotFacade jvpp) throws Exception {
51         LOG.info("Sending PotProfileShowConfigDump request...");
52         final PotProfileShowConfigDump request = new PotProfileShowConfigDump();
53
54         final Future<PotProfileShowConfigDetailsReplyDump> replyFuture = jvpp.potProfileShowConfigDump(request).toCompletableFuture();
55         final PotProfileShowConfigDetailsReplyDump reply = replyFuture.get();
56
57         if (reply == null || reply.potProfileShowConfigDetails == null) {
58             throw new IllegalStateException("Received null response for empty dump: " + reply);
59         } else {
60             LOG.info(
61                     String.format(
62                             "Received pot profile show config dump reply: %s",
63                             reply.potProfileShowConfigDetails));
64         }
65     }
66 }