org.apache.hadoop.gateway.websockets.BadUrlTest.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.hadoop.gateway.websockets.BadUrlTest.java

Source

/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.apache.hadoop.gateway.websockets;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.net.URI;
import java.net.URL;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.TimeUnit;

import javax.websocket.CloseReason;
import javax.websocket.ContainerProvider;
import javax.websocket.WebSocketContainer;

import org.apache.commons.io.FileUtils;
import org.apache.hadoop.gateway.config.GatewayConfig;
import org.apache.hadoop.gateway.config.impl.GatewayConfigImpl;
import org.apache.hadoop.gateway.deploy.DeploymentFactory;
import org.apache.hadoop.gateway.services.DefaultGatewayServices;
import org.apache.hadoop.gateway.services.GatewayServices;
import org.apache.hadoop.gateway.services.ServiceLifecycleException;
import org.apache.hadoop.gateway.services.topology.TopologyService;
import org.apache.hadoop.gateway.topology.TopologyEvent;
import org.apache.hadoop.gateway.topology.TopologyListener;
import org.apache.hadoop.test.TestUtils;
import org.easymock.EasyMock;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.server.ServerConnector;
import org.eclipse.jetty.server.handler.ContextHandler;
import org.eclipse.jetty.server.handler.HandlerCollection;
import org.hamcrest.CoreMatchers;
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;

import com.mycila.xmltool.XMLDoc;
import com.mycila.xmltool.XMLTag;

/**
 * Test for bad URLs.
 * <p>
 * This test will set up a bad URL through the topology, so this test case will
 * attempt to test the bad url case and also the plumbing around it.
 * @since 0.10
 */
public class BadUrlTest {

    /**
     * Non-existant backend websocket server
     */
    private static String BACKEND = "http://localhost:9999";

    /**
     * Mock Gateway server
     */
    private static Server gatewayServer;

    /**
     * Mock gateway config
     */
    private static GatewayConfig gatewayConfig;

    private static GatewayServices services;

    /**
     * URI for gateway server
     */
    private static URI serverUri;

    private static File topoDir;

    public BadUrlTest() {
        super();
    }

    @BeforeClass
    public static void startServers() throws Exception {

        startGatewayServer();

    }

    @AfterClass
    public static void stopServers() {
        try {
            gatewayServer.stop();
        } catch (final Exception e) {
            e.printStackTrace(System.err);
        }

        /* Cleanup the created files */
        FileUtils.deleteQuietly(topoDir);

    }

    /**
     * Test websocket proxying through gateway.
     *
     * @throws Exception
     */

    @Test
    public void testBadUrl() throws Exception {
        WebSocketContainer container = ContainerProvider.getWebSocketContainer();

        WebsocketClient client = new WebsocketClient();

        container.connectToServer(client, new URI(serverUri.toString() + "gateway/websocket/ws"));

        client.awaitClose(CloseReason.CloseCodes.UNEXPECTED_CONDITION.getCode(), 1000, TimeUnit.MILLISECONDS);

        Assert.assertThat(client.close.getCloseCode().getCode(),
                CoreMatchers.is(CloseReason.CloseCodes.UNEXPECTED_CONDITION.getCode()));

    }

    /**
     * Start Gateway Server.
     *
     * @throws Exception
     */
    private static void startGatewayServer() throws Exception {
        gatewayServer = new Server();
        final ServerConnector connector = new ServerConnector(gatewayServer);
        gatewayServer.addConnector(connector);

        /* workaround so we can add our handler later at runtime */
        HandlerCollection handlers = new HandlerCollection(true);

        /* add some initial handlers */
        ContextHandler context = new ContextHandler();
        context.setContextPath("/");
        handlers.addHandler(context);

        gatewayServer.setHandler(handlers);

        // Start Server
        gatewayServer.start();

        String host = connector.getHost();
        if (host == null) {
            host = "localhost";
        }
        int port = connector.getLocalPort();
        serverUri = new URI(String.format("ws://%s:%d/", host, port));

        /* Setup websocket handler */
        setupGatewayConfig(BACKEND);

        final GatewayWebsocketHandler gatewayWebsocketHandler = new GatewayWebsocketHandler(gatewayConfig,
                services);
        handlers.addHandler(gatewayWebsocketHandler);
        gatewayWebsocketHandler.start();
    }

    /**
     * Initialize the configs and components required for this test.
     *
     * @param backend
     * @throws IOException
     */
    private static void setupGatewayConfig(final String backend) throws IOException {
        services = new DefaultGatewayServices();

        topoDir = createDir();
        URL serviceUrl = ClassLoader.getSystemResource("websocket-services");

        final File descriptor = new File(topoDir, "websocket.xml");
        final FileOutputStream stream = new FileOutputStream(descriptor);
        createKnoxTopology(backend).toStream(stream);
        stream.close();

        final TestTopologyListener topoListener = new TestTopologyListener();

        final Map<String, String> options = new HashMap<>();
        options.put("persist-master", "false");
        options.put("master", "password");

        gatewayConfig = EasyMock.createNiceMock(GatewayConfig.class);
        EasyMock.expect(gatewayConfig.getGatewayTopologyDir()).andReturn(topoDir.toString()).anyTimes();

        EasyMock.expect(gatewayConfig.getGatewayServicesDir()).andReturn(serviceUrl.getFile()).anyTimes();

        EasyMock.expect(gatewayConfig.getEphemeralDHKeySize()).andReturn("2048").anyTimes();

        EasyMock.expect(gatewayConfig.getGatewaySecurityDir()).andReturn(topoDir.toString()).anyTimes();

        /* Websocket configs */
        EasyMock.expect(gatewayConfig.isWebsocketEnabled()).andReturn(true).anyTimes();

        EasyMock.expect(gatewayConfig.getWebsocketMaxTextMessageSize())
                .andReturn(GatewayConfigImpl.DEFAULT_WEBSOCKET_MAX_TEXT_MESSAGE_SIZE).anyTimes();

        EasyMock.expect(gatewayConfig.getWebsocketMaxBinaryMessageSize())
                .andReturn(GatewayConfigImpl.DEFAULT_WEBSOCKET_MAX_BINARY_MESSAGE_SIZE).anyTimes();

        EasyMock.expect(gatewayConfig.getWebsocketMaxTextMessageBufferSize())
                .andReturn(GatewayConfigImpl.DEFAULT_WEBSOCKET_MAX_TEXT_MESSAGE_BUFFER_SIZE).anyTimes();

        EasyMock.expect(gatewayConfig.getWebsocketMaxBinaryMessageBufferSize())
                .andReturn(GatewayConfigImpl.DEFAULT_WEBSOCKET_MAX_BINARY_MESSAGE_BUFFER_SIZE).anyTimes();

        EasyMock.expect(gatewayConfig.getWebsocketInputBufferSize())
                .andReturn(GatewayConfigImpl.DEFAULT_WEBSOCKET_INPUT_BUFFER_SIZE).anyTimes();

        EasyMock.expect(gatewayConfig.getWebsocketAsyncWriteTimeout())
                .andReturn(GatewayConfigImpl.DEFAULT_WEBSOCKET_ASYNC_WRITE_TIMEOUT).anyTimes();

        EasyMock.expect(gatewayConfig.getWebsocketIdleTimeout())
                .andReturn(GatewayConfigImpl.DEFAULT_WEBSOCKET_IDLE_TIMEOUT).anyTimes();

        EasyMock.replay(gatewayConfig);

        try {
            services.init(gatewayConfig, options);
        } catch (ServiceLifecycleException e) {
            e.printStackTrace();
        }

        DeploymentFactory.setGatewayServices(services);
        final TopologyService monitor = services.getService(GatewayServices.TOPOLOGY_SERVICE);
        monitor.addTopologyChangeListener(topoListener);
        monitor.reloadTopologies();

    }

    private static File createDir() throws IOException {
        return TestUtils.createTempDir(WebsocketEchoTest.class.getSimpleName() + "-");
    }

    /**
     * Intentionally add bad URL
     *
     * @param backend
     * @return
     */
    private static XMLTag createKnoxTopology(final String backend) {
        XMLTag xml = XMLDoc.newDocument(true).addRoot("topology").addTag("service").addTag("role")
                .addText("WEBSOCKET").addTag("url").addText(backend).gotoParent().gotoRoot();
        // System.out.println( "GATEWAY=" + xml.toString() );
        return xml;
    }

    private static class TestTopologyListener implements TopologyListener {

        public ArrayList<List<TopologyEvent>> events = new ArrayList<List<TopologyEvent>>();

        @Override
        public void handleTopologyEvent(List<TopologyEvent> events) {
            this.events.add(events);

            synchronized (this) {
                for (TopologyEvent event : events) {
                    if (!event.getType().equals(TopologyEvent.Type.DELETED)) {

                        /* for this test we only care about this part */
                        DeploymentFactory.createDeployment(gatewayConfig, event.getTopology());

                    }
                }

            }

        }

    }
}