VPP-205: jvpp plugin support.
[vpp.git] / vpp-api / java / jvpp-core / org / openvpp / jvpp / core / test / ControlPingTest.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 org.openvpp.jvpp.core.test;
18
19 import org.openvpp.jvpp.JVpp;
20 import org.openvpp.jvpp.JVppRegistry;
21 import org.openvpp.jvpp.JVppRegistryImpl;
22 import org.openvpp.jvpp.VppCallbackException;
23 import org.openvpp.jvpp.core.JVppCoreImpl;
24 import org.openvpp.jvpp.callback.ControlPingCallback;
25 import org.openvpp.jvpp.dto.ControlPing;
26 import org.openvpp.jvpp.dto.ControlPingReply;
27
28 public class ControlPingTest {
29
30     private static void testControlPing() throws Exception {
31         System.out.println("Testing ControlPing using Java callback API");
32         JVppRegistry registry = new JVppRegistryImpl("ControlPingTest");
33         JVpp jvpp = new JVppCoreImpl();
34
35         registry.register(jvpp, new ControlPingCallback() {
36             @Override
37             public void onControlPingReply(final ControlPingReply reply) {
38                 System.out.printf("Received ControlPingReply: context=%d, clientIndex=%d vpePid=%d\n",
39                     reply.context, reply.clientIndex, reply.vpePid);
40             }
41
42             @Override
43             public void onError(VppCallbackException ex) {
44                 System.out.printf("Received onError exception: call=%s, reply=%d, context=%d ", ex.getMethodName(),
45                     ex.getErrorCode(), ex.getCtxId());
46             }
47
48         });
49         System.out.println("Successfully connected to VPP");
50         Thread.sleep(1000);
51
52         System.out.println("Sending control ping using JVppRegistry");
53         registry.controlPing(jvpp.getClass());
54
55         Thread.sleep(2000);
56
57         System.out.println("Sending control ping using JVpp plugin");
58         jvpp.send(new ControlPing());
59
60         Thread.sleep(2000);
61
62         System.out.println("Disconnecting...");
63         registry.close();
64         Thread.sleep(1000);
65     }
66
67     public static void main(String[] args) throws Exception {
68         testControlPing();
69     }
70 }