alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

ActiveMQ example source code file (SslTransportServerTest.java)

This example ActiveMQ source code file (SslTransportServerTest.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - ActiveMQ tags/keywords

created, exception, exception, io, ioexception, ioexception, net, network, serversocket, ssltransportserver, ssltransportserver, string, string, stubsslserversocket, stubsslsocketfactory, unable, uri

The ActiveMQ SslTransportServerTest.java source code

/**
 * 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.activemq.transport.tcp;

import java.io.IOException;
import java.net.URI;

import junit.framework.TestCase;

public class SslTransportServerTest extends TestCase {
    private SslTransportServer sslTransportServer;
    private StubSSLServerSocket sslServerSocket;

    protected void setUp() throws Exception {
    }

    protected void tearDown() throws Exception {
        super.tearDown();
    }

    private void createAndBindTransportServer(boolean wantClientAuth, boolean needClientAuth, String options) throws IOException {
        sslServerSocket = new StubSSLServerSocket();

        StubSSLSocketFactory socketFactory = new StubSSLSocketFactory(sslServerSocket);

        try {
            sslTransportServer = new SslTransportServer(null, new URI("ssl://localhost:61616?" + options), socketFactory);
        } catch (Exception e) {
            fail("Unable to create SslTransportServer.");
        }

        sslTransportServer.setWantClientAuth(wantClientAuth);
        sslTransportServer.setNeedClientAuth(needClientAuth);

        sslTransportServer.bind();
    }

    public void testWantAndNeedClientAuthSetters() throws IOException {
        for (int i = 0; i < 4; ++i) {
            String options = "";
            singleTest(i, options);
            }
    }

    public void testWantAndNeedAuthReflection() throws IOException {
        for (int i = 0; i < 4; ++i) {
            String options = "wantClientAuth=" + (getWantClientAuth(i) ? "true" : "false") +
                "&needClientAuth=" + (getNeedClientAuth(i) ? "true" : "false");
            singleTest(i, options);
        }
    }

    private void singleTest(int i, String options) throws IOException {
        final boolean wantClientAuth = getWantClientAuth(i);
        final boolean needClientAuth = getNeedClientAuth(i);

        final int expectedWantStatus = (needClientAuth? StubSSLServerSocket.UNTOUCHED: wantClientAuth ? StubSSLServerSocket.TRUE : StubSSLServerSocket.UNTOUCHED);
        final int expectedNeedStatus = (needClientAuth ? StubSSLServerSocket.TRUE : StubSSLServerSocket.UNTOUCHED );


        createAndBindTransportServer(wantClientAuth, needClientAuth, options);

        assertEquals("Created ServerSocket did not have correct wantClientAuth status. wantClientAuth: " + wantClientAuth + ", needClientAuth: " + needClientAuth,
            expectedWantStatus, sslServerSocket.getWantClientAuthStatus());

        assertEquals("Created ServerSocket did not have correct needClientAuth status. wantClientAuth: " + wantClientAuth + ", needClientAuth: " + needClientAuth,
            expectedNeedStatus, sslServerSocket.getNeedClientAuthStatus());
    }

    private boolean getNeedClientAuth(int i) {
        return ((i & 0x2) == 0x2);
    }

    private boolean getWantClientAuth(int i) {
        return ((i & 0x1) == 0x1);
    }
}

Other ActiveMQ examples (source code examples)

Here is a short list of links related to this ActiveMQ SslTransportServerTest.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.