jdk/test/java/rmi/module/src/mtest/testpkg/DummyApp.java
author xiaofeya
Sun, 29 May 2016 18:22:21 -0700
changeset 38588 1186d7bd7de9
permissions -rw-r--r--
8078812: Test RMI with client and servers as modules Reviewed-by: smarks Contributed-by: Felix Yang <felix.yang@oracle.com>

/*
 * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

package testpkg;

import java.rmi.server.UnicastRemoteObject;

import clientpkg.Client;
import serverpkg.Hello;
import serverpkg.Server;

public class DummyApp {

    public static void main(String args[]) {
        try {
            Hello obj = new Server();
            Hello stub = (Hello) UnicastRemoteObject.exportObject(obj, 0);

            Client client = new Client(stub);
            String testStubReturn = client.testStub();
            System.out.println("Stub is: " + testStubReturn);
            if (!testStubReturn.equals(obj.sayHello())) {
                throw new RuntimeException("Unexpected string from stub call, expected \""
                        + testStubReturn + "\", actual \"" + obj.sayHello() + "\"");
            } else {
                System.out.println("Test passed");
            }

            System.exit(0);
        } catch (Throwable e) {
            e.printStackTrace();
            System.exit(-1);
        }
    }
}