docs: change code blocks from "shell" to "console"
[vpp.git] / src / vpp-api / java / jvpp-acl / io / fd / vpp / jvpp / acl / 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.acl.test;
18
19 import io.fd.vpp.jvpp.Assertions;
20 import io.fd.vpp.jvpp.JVppRegistry;
21 import io.fd.vpp.jvpp.JVppRegistryImpl;
22 import io.fd.vpp.jvpp.acl.JVppAclImpl;
23 import io.fd.vpp.jvpp.acl.dto.AclDetailsReplyDump;
24 import io.fd.vpp.jvpp.acl.dto.AclDump;
25 import io.fd.vpp.jvpp.acl.future.FutureJVppAclFacade;
26
27 import java.util.concurrent.CompletableFuture;
28 import java.util.logging.Logger;
29
30 public class FutureApiTest {
31
32     private static final Logger LOG = Logger.getLogger(FutureApiTest.class.getName());
33
34     public static void main(String[] args) throws Exception {
35         testFutureApi(args);
36     }
37
38     private static void testFutureApi(String[] args) throws Exception {
39         LOG.info("Testing Java future API for core plugin");
40         try (final JVppRegistry registry = new JVppRegistryImpl("FutureApiTest", args[0]);
41              final FutureJVppAclFacade jvppFacade = new FutureJVppAclFacade(registry, new JVppAclImpl())) {
42             LOG.info("Successfully connected to VPP");
43
44             testAclDump(jvppFacade);
45
46             LOG.info("Disconnecting...");
47         }
48     }
49
50     private static void testAclDump(final FutureJVppAclFacade jvpp) throws Exception {
51         LOG.info("Sending AclDump request...");
52         final AclDump request = new AclDump();
53
54         final CompletableFuture<AclDetailsReplyDump>
55             replyFuture = jvpp.aclDump(request).toCompletableFuture();
56         final AclDetailsReplyDump reply = replyFuture.get();
57
58         Assertions.assertNotNull(reply);
59     }
60
61
62 }