/** * 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.stomp.auto; import static org.junit.Assert.assertTrue; import java.io.IOException; import java.net.Socket; import java.security.cert.X509Certificate; import java.util.Arrays; import java.util.Collection; import java.util.List; import javax.jms.Connection; import javax.net.SocketFactory; import javax.net.ssl.SSLSocketFactory; import org.apache.activemq.broker.Broker; import org.apache.activemq.broker.BrokerFilter; import org.apache.activemq.broker.BrokerPlugin; import org.apache.activemq.broker.ConnectionContext; import org.apache.activemq.command.ConnectionInfo; import org.apache.activemq.transport.stomp.Stomp; import org.apache.activemq.transport.stomp.StompTestSupport; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameters; @RunWith(Parameterized.class) public class StompAutoSslAuthTest extends StompTestSupport { private final boolean isNio; private boolean hasCertificate = false; private Connection connection; @Parameters(name="isNio={0}") public static Collection<Object[]> data() { return Arrays.asList(new Object[][] { {false}, {true} }); } /** * @param isNio */ public StompAutoSslAuthTest(boolean isNio) { this.isNio = isNio; } @Override protected boolean isUseAutoSslConnector() { return !isNio; } @Override protected boolean isUseAutoNioPlusSslConnector() { return isNio; } @Override public void setUp() throws Exception { super.setUp(); hasCertificate = false; stompConnect(); connection = cf.createConnection("system", "manager"); connection.start(); } @Override public void tearDown() throws Exception { try { connection.close(); } catch (Exception ex) {} super.tearDown(); } @Override protected Socket createSocket() throws IOException { SocketFactory factory = SSLSocketFactory.getDefault(); return factory.createSocket("127.0.0.1", isNio ? this.autoNioSslPort : this.autoSslPort); } @Override protected String getAdditionalConfig() { return "?transport.needClientAuth=true"; } @Override protected void addAdditionalPlugins(List<BrokerPlugin> plugins) throws Exception { super.addAdditionalPlugins(plugins); plugins.add(new BrokerPlugin() { @Override public Broker installPlugin(Broker broker) throws Exception { return new BrokerFilter(broker) { @Override public void addConnection(ConnectionContext context, ConnectionInfo info) throws Exception { super.addConnection(context, info); //The second time should contain the certificate hasCertificate = info.getTransportContext() instanceof X509Certificate[]; } }; } }); } @Test(timeout = 60000) public void testConnect() throws Exception { String connectFrame = "CONNECT\n" + "login:system\n" + "passcode:manager\n" + "request-id:1\n" + "\n" + Stomp.NULL; stompConnection.sendFrame(connectFrame); String f = stompConnection.receiveFrame(); assertTrue(f.startsWith("CONNECTED")); assertTrue(f.indexOf("response-id:1") >= 0); assertTrue(hasCertificate); } }