Package org.activeio.oneport

Source Code of org.activeio.oneport.OnePortAsyncChannelServerTest

/**
*
* Copyright 2004 Hiram Chirino
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
**/
package org.activeio.oneport;

import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;

import javax.naming.NamingException;

import junit.framework.TestCase;

import org.activeio.AcceptListener;
import org.activeio.AsynchChannel;
import org.activeio.AsynchChannelFactory;
import org.activeio.AsynchChannelServer;
import org.activeio.Channel;
import org.activeio.FilterAsynchChannelServer;
import org.activeio.FilterSynchChannel;
import org.activeio.Packet;
import org.activeio.SynchChannel;
import org.activeio.adapter.AsynchToSynchChannelAdapter;
import org.activeio.adapter.SynchToAsynchChannelFactoryAdaptor;
import org.activeio.net.SocketMetadata;
import org.activeio.net.SocketSynchChannelFactory;
import org.activeio.packet.ByteArrayPacket;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import EDU.oswego.cs.dl.util.concurrent.Slot;
import EDU.oswego.cs.dl.util.concurrent.SynchronizedInt;
import EDU.oswego.cs.dl.util.concurrent.ThreadFactory;
import EDU.oswego.cs.dl.util.concurrent.ThreadedExecutor;

/**
*/
public class OnePortAsyncChannelServerTest extends TestCase {

    static private Log log = LogFactory.getLog(OnePortAsyncChannelServerTest.class);
    static public SynchronizedInt serverPacketCounter = new SynchronizedInt(0);

    public OnePortAsynchChannelServer server;
    public AsynchChannelServer httpServer;
    public AsynchChannelServer iiopServer;
    public SocketSynchChannelFactory channelFactory;
    public Slot resultSlot = new Slot();

    public void testIIOPAccept() throws Exception {
        serverPacketCounter.set(0);
        hitIIOPServer();
        String type = (String) resultSlot.poll(1000 * 5);
        assertEquals("IIOP", type);
        // Verify that a request when through the one port.
        assertTrue(serverPacketCounter.get()>0);
    }

    public void testHttpAccept() throws IOException, URISyntaxException, InterruptedException {
        serverPacketCounter.set(0);
        hitHttpServer();
        String type = (String) resultSlot.poll(1000 * 5 * 10000);
        assertEquals("HTTP", type);
        // Verify that a request when through the one port.
        assertTrue(serverPacketCounter.get()>0);
    }

    protected void hitHttpServer() throws IOException, MalformedURLException {
        URI connectURI = server.getConnectURI();
        String url = "http://" + connectURI.getHost() + ":" + connectURI.getPort() + "/index.action";
        log.info(url);
        InputStream is = new URL(url).openStream();
        StringBuffer b = new StringBuffer();
        int c;
        while ((c = is.read()) >= 0) {
            b.append((char) c);
        }

        log.info("HTTP response: " + b);
    }

    protected void hitIIOPServer() throws Exception {
        SynchChannel channel = channelFactory.openSynchChannel(server.getConnectURI());
        ((SocketMetadata)channel.narrow(SocketMetadata.class)).setTcpNoDelay(true);
        channel.write(new ByteArrayPacket("GIOPcrapcrap".getBytes("UTF-8")));
        channel.flush();
        channel.dispose();
    }

    public void testUnknownAccept() throws IOException, URISyntaxException, InterruptedException {
        SynchChannel channel = channelFactory.openSynchChannel(server.getConnectURI());
        ((SocketMetadata)channel.narrow(SocketMetadata.class)).setTcpNoDelay(true);
        channel
                .write(new ByteArrayPacket("Licensed under the Apache License, Version 2.0 (the \"License\")"
                        .getBytes("UTF-8")));
        channel.flush();
        String type = (String) resultSlot.poll(1000 * 5);
        assertNull(type);
        channel.dispose();
    }

    protected void setUp() throws Exception {
        channelFactory = new SocketSynchChannelFactory();
        ThreadedExecutor executor = new ThreadedExecutor();
        executor.setThreadFactory(new ThreadFactory(){
            int count=0;
            public Thread newThread(Runnable arg0) {
                return new Thread(arg0, "activeio:"+(count++));
            }});
        AsynchChannelFactory factory = SynchToAsynchChannelFactoryAdaptor.adapt(channelFactory,executor);

        AsynchChannelServer cs = factory.bindAsynchChannel(new URI("tcp://localhost:0"));
        cs = new FilterAsynchChannelServer(cs) {
            public void onAccept(Channel channel) {
                SynchChannel synchChannel = AsynchToSynchChannelAdapter.adapt(channel);               
                super.onAccept(new FilterSynchChannel(synchChannel) {
                    public org.activeio.Packet read(long timeout) throws IOException {
                        Packet packet = super.read(timeout);
                        if( packet!=null && packet.hasRemaining() )
                            serverPacketCounter.increment();
                        return packet;
                    }
                });
            }
        };
       
        server = new OnePortAsynchChannelServer(cs);
        server.start();

        startHTTPServer();
        startIIOPServer();

        log.info("Running on: "+server.getConnectURI());
    }

    /**
     * @throws IOException
     * @throws NamingException
     */
    protected void startIIOPServer() throws Exception {
        iiopServer = server.bindAsynchChannel(IIOPRecognizer.IIOP_RECOGNIZER);
        iiopServer.setAcceptListener(new AcceptListener() {
            public void onAccept(Channel channel) {
                try {
                    log.info("Got a IIOP connection.");
                    resultSlot.offer("IIOP", 1);
                    channel.dispose();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }

            public void onAcceptError(IOException error) {
            }
        });
        iiopServer.start();
    }

    /**
     * @throws IOException
     * @throws Exception
     */
    protected void startHTTPServer() throws Exception {
        httpServer = server.bindAsynchChannel(HttpRecognizer.HTTP_RECOGNIZER);
        httpServer.setAcceptListener(new AcceptListener() {
            public void onAccept(Channel channel) {
                try {
                    log.info("Got a HTTP connection.");
                    resultSlot.offer("HTTP", 1);

                    byte data[] = ("HTTP/1.1 200 OK\r\n" + "Content-Type: text/html; charset=UTF-8\r\n" + "\r\n"
                            + "Hello World").getBytes("UTF-8");

                    ((SocketMetadata)channel.narrow(SocketMetadata.class)).setTcpNoDelay(true);
                    ((AsynchChannel) channel).write(new ByteArrayPacket(data));

                    channel.dispose();
                } catch (Throwable e) {
                    e.printStackTrace();
                }
            }

            public void onAcceptError(IOException error) {
            }
        });
        httpServer.start();
    }

    protected void tearDown() throws Exception {
        stopIIOPServer();
        stopHTTPServer();
        server.dispose();
    }

    /**
     * @throws InterruptedException
     *
     */
    protected void stopHTTPServer() throws InterruptedException {
        httpServer.dispose();
    }

    /**
     * @throws Exception
     *
     */
    protected void stopIIOPServer() throws Exception {
        iiopServer.dispose();
    }
}
TOP

Related Classes of org.activeio.oneport.OnePortAsyncChannelServerTest

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.