/* * 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.qpid.jms; import static org.junit.Assert.assertNotNull; import java.net.URI; import javax.net.ssl.SSLContext; import org.apache.activemq.broker.BrokerService; import org.apache.activemq.broker.SslContext; import org.apache.activemq.broker.TransportConnector; import org.apache.qpid.jms.transports.TransportSslOptions; import org.apache.qpid.jms.transports.TransportSupport; import org.junit.After; import org.junit.Before; import org.junit.Test; /** * Test that we can connect to a broker over SSL. */ public class JmsSSLConnectionTest { private BrokerService brokerService; private static final String PASSWORD = "password"; private static final String KEYSTORE = "src/test/resources/broker-jks.keystore"; private static final String TRUSTSTORE = "src/test/resources/client-jks.truststore"; private URI connectionURI; @Before public void setUp() throws Exception { brokerService = new BrokerService(); brokerService.setPersistent(false); brokerService.setAdvisorySupport(false); brokerService.setDeleteAllMessagesOnStartup(true); brokerService.setUseJmx(false); // Setup broker SSL context... TransportSslOptions sslOptions = new TransportSslOptions(); sslOptions.setKeyStoreLocation(KEYSTORE); sslOptions.setKeyStorePassword(PASSWORD); sslOptions.setVerifyHost(false); SSLContext sslContext = TransportSupport.createSslContext(sslOptions); final SslContext brokerContext = new SslContext(); brokerContext.setSSLContext(sslContext); brokerService.setSslContext(brokerContext); TransportConnector connector = brokerService.addConnector("amqp+ssl://localhost:0"); brokerService.start(); brokerService.waitUntilStarted(); connectionURI = connector.getPublishableConnectURI(); } @After public void tearDown() throws Exception { brokerService.stop(); brokerService.waitUntilStopped(); } public String getConnectionURI(boolean verifyHost) throws Exception { String baseURI = "amqps://localhost:" + connectionURI.getPort() + "?transport.trustStoreLocation=" + TRUSTSTORE + "&transport.trustStorePassword=" + PASSWORD; if (verifyHost) { return baseURI; } else { return baseURI + "&transport.verifyHost=false"; } } @Test(timeout=30000) public void testCreateConnectionAndStart() throws Exception { JmsConnectionFactory factory = new JmsConnectionFactory(getConnectionURI(true)); JmsConnection connection = (JmsConnection) factory.createConnection(); assertNotNull(connection); connection.start(); connection.close(); } }