Package org.jdesktop.wonderland.serverlistenertest.client

Source Code of org.jdesktop.wonderland.serverlistenertest.client.ClientMain$TestThreeClient

/**
* Project Wonderland
*
* Copyright (c) 2004-2009, Sun Microsystems, Inc., All Rights Reserved
*
* Redistributions in source code form must reproduce the above
* copyright and this condition.
*
* The contents of this file are subject to the GNU General Public
* License, Version 2 (the "License"); you may not use this file
* except in compliance with the License. A copy of the License is
* available at http://www.opensource.org/licenses/gpl-license.php.
*
* Sun designates this particular file as subject to the "Classpath"
* exception as provided by Sun in the License file that accompanied
* this code.
*/
package org.jdesktop.wonderland.serverlistenertest.client;

import java.util.Properties;
import java.util.logging.Logger;
import org.jdesktop.wonderland.client.comms.BaseConnection;
import org.jdesktop.wonderland.client.comms.ConnectionFailureException;
import org.jdesktop.wonderland.client.comms.LoginParameters;
import org.jdesktop.wonderland.client.comms.WonderlandServerInfo;
import org.jdesktop.wonderland.client.comms.WonderlandSession;
import org.jdesktop.wonderland.client.comms.WonderlandSessionImpl;
import org.jdesktop.wonderland.client.comms.WonderlandSessionManager;
import org.jdesktop.wonderland.common.comms.ConnectionType;
import org.jdesktop.wonderland.common.messages.Message;
import org.jdesktop.wonderland.serverlistenertest.common.TestClientType;
import org.jdesktop.wonderland.serverlistenertest.common.TestMessageOne;
import org.jdesktop.wonderland.serverlistenertest.common.TestMessageThree;
import org.jdesktop.wonderland.serverlistenertest.common.TestMessageTwo;

/**
* Simple client
* @author jkaplan
*/
public class ClientMain {

    /** logger */
    private static final Logger logger =
            Logger.getLogger(ClientMain.class.getName());
   
    // the server info
    private WonderlandServerInfo serverInfo;
   
    // whether we are done
    boolean finished = false;

    // clients
    private TestOneClient   t1c;
    private TestTwoClient   t2c;
    private TestThreeClient t3c;
   
    // properties
    private Properties t2props;
   
    /**
     * Create a new client
     * @param serverInfo the information about the server
     */
    public ClientMain(WonderlandServerInfo serverInfo) {
        this.serverInfo = serverInfo;
    }

    /**
     * Run the test
     */
    public void runTest() throws Exception {
        // read the username and properties from files
        String username = System.getProperty("sgs.user", "sample");
        String password = System.getProperty("sgs.password", "sample");

        // create the client & login
        WonderlandSession session = new WonderlandSessionImpl(serverInfo);
        session.login(new LoginParameters(username, password.toCharArray()));

        logger.info("Login suceeded");
       
        testMessages(session);
        testDetached();
        testReattach(session);
       
        logger.info("Tests complete");
        session.logout();
    }
   
    public void testMessages(WonderlandSession session)
        throws ConnectionFailureException
    {
        logger.info("Sending test messages");
       
        t1c = new TestOneClient();
        t2c = new TestTwoClient();
        t3c = new TestThreeClient();
       
        t2props = new Properties();
        t2props.setProperty("test1", "123");
        t2props.setProperty("test2", "test456");
       
        t1c.connect(session);
        t2c.connect(session, t2props);
        t3c.connect(session);
       
        t1c.send(new TestMessageOne("TestOne"));
        t2c.send(new TestMessageTwo("TestTwo"));
        t3c.send(new TestMessageThree("TestThree", 42));
       
        t1c.disconnect();
        t2c.disconnect();
        t3c.disconnect();
    }
   
    // try to send to a detached session
    public void testDetached() {
        logger.info("Sending to detached client");
       
        try {
            t1c.send(new TestMessageOne("TestOne"));
            assert false : "Sending to detached channel should throw exception";
        } catch (IllegalStateException ise) {
            // good
        }
    }
   
    public void testReattach(WonderlandSession session)
        throws ConnectionFailureException
    {
        logger.info("Testing reattach");
       
        t2c = new TestTwoClient();
        t2c.connect(session, t2props);
        t2c.send(new TestMessageTwo("TestTwo"));

        // re-reattach
        try {
            t2c.connect(session);
            assert false : "Re-attaching client should fail";
        } catch (ConnectionFailureException afe) {
            // good
        }
       
        // attach new client of same type
        try {
            TestTwoClient t2c2 = new TestTwoClient();
            t2c2.connect(session);
            assert false : "Duplicate client should fail";
        } catch (ConnectionFailureException afe) {
            // good
        }
    }

    public static void main(String[] args) {
        // read server and port from properties
        String server = System.getProperty("sgs.server", "locahost");
        int port = Integer.parseInt(System.getProperty("sgs.port", "1139"));

        // create a login information object
        WonderlandServerInfo serverInfo = new WonderlandServerInfo(server, port);

        // the main client
        ClientMain cm = new ClientMain(serverInfo);

        try {
            cm.runTest();
        } catch (Exception ex) {
            System.out.println("Exception: " + ex);
            ex.printStackTrace();
        }
    }
   
    class TestOneClient extends BaseConnection {

        public ConnectionType getConnectionType() {
            return TestClientType.CLIENT_ONE_TYPE;
        }

        public void send(TestMessageOne message) {
            super.send(message);
        }
       
        public void handleMessage(Message message) {
            assert false : "TestOneClient received message: " + message;
        }
    }
   
    class TestTwoClient extends BaseConnection {

        public ConnectionType getConnectionType() {
            return TestClientType.CLIENT_TWO_TYPE;
        }

        public void send(TestMessageTwo message) {
            super.send(message);
        }
       
        public void handleMessage(Message message) {
             assert false : "TestOneClient received message: " + message;
        }
    }
   
    class TestThreeClient extends BaseConnection {

        public ConnectionType getConnectionType() {
            return TestClientType.CLIENT_THREE_TYPE;
        }

        @Override
        public void send(Message message) {
            super.send(message);
        }
       
        public void handleMessage(Message message) {
            assert false : "TestOneClient received message: " + message;
        }
    }
}
TOP

Related Classes of org.jdesktop.wonderland.serverlistenertest.client.ClientMain$TestThreeClient

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.