mirror of https://github.com/apache/activemq.git
Test cleanup: use available port instead of hardcoded
This commit is contained in:
parent
4b7131ff85
commit
4bf5d0fc13
|
@ -21,11 +21,14 @@ import static org.junit.Assert.assertTrue;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.net.ServerSocket;
|
||||||
import java.net.Socket;
|
import java.net.Socket;
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.net.URISyntaxException;
|
import java.net.URISyntaxException;
|
||||||
import java.net.UnknownHostException;
|
import java.net.UnknownHostException;
|
||||||
|
|
||||||
|
import javax.net.ServerSocketFactory;
|
||||||
|
|
||||||
import org.apache.activemq.broker.BrokerFactory;
|
import org.apache.activemq.broker.BrokerFactory;
|
||||||
import org.apache.activemq.broker.BrokerService;
|
import org.apache.activemq.broker.BrokerService;
|
||||||
import org.apache.activemq.spring.SpringSslContext;
|
import org.apache.activemq.spring.SpringSslContext;
|
||||||
|
@ -60,6 +63,7 @@ public class WSTransportTest {
|
||||||
private File profileDir;
|
private File profileDir;
|
||||||
|
|
||||||
private String stompUri;
|
private String stompUri;
|
||||||
|
private int proxyPort = 0;
|
||||||
protected String wsUri;
|
protected String wsUri;
|
||||||
|
|
||||||
private StompConnection stompConnection = new StompConnection();
|
private StompConnection stompConnection = new StompConnection();
|
||||||
|
@ -101,16 +105,33 @@ public class WSTransportTest {
|
||||||
context.setServer(server);
|
context.setServer(server);
|
||||||
|
|
||||||
server.setHandler(context);
|
server.setHandler(context);
|
||||||
server.setConnectors(new Connector[] {
|
server.setConnectors(new Connector[] { connector });
|
||||||
connector
|
|
||||||
});
|
|
||||||
server.start();
|
server.start();
|
||||||
return server;
|
return server;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected Connector createJettyConnector() {
|
protected int getProxyPort() {
|
||||||
|
if (proxyPort == 0) {
|
||||||
|
ServerSocket ss = null;
|
||||||
|
try {
|
||||||
|
ss = ServerSocketFactory.getDefault().createServerSocket(0);
|
||||||
|
proxyPort = ss.getLocalPort();
|
||||||
|
} catch (IOException e) { // ignore
|
||||||
|
} finally {
|
||||||
|
try {
|
||||||
|
if (ss != null ) {
|
||||||
|
ss.close();
|
||||||
|
}
|
||||||
|
} catch (IOException e) { // ignore
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return proxyPort;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected Connector createJettyConnector() {
|
||||||
SelectChannelConnector connector = new SelectChannelConnector();
|
SelectChannelConnector connector = new SelectChannelConnector();
|
||||||
connector.setPort(8080);
|
connector.setPort(getProxyPort());
|
||||||
return connector;
|
return connector;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -208,7 +229,8 @@ public class WSTransportTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
protected String getTestURI() {
|
protected String getTestURI() {
|
||||||
return "http://localhost:8080/websocket.html#" + wsUri;
|
int port = getProxyPort();
|
||||||
|
return "http://localhost:" + port + "/websocket.html#" + wsUri;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void doTestWebSockets(WebDriver driver) throws Exception {
|
public void doTestWebSockets(WebDriver driver) throws Exception {
|
||||||
|
|
|
@ -30,7 +30,7 @@ public class WSSTransportTest extends WSTransportTest {
|
||||||
contextFactory.setKeyStorePassword("password");
|
contextFactory.setKeyStorePassword("password");
|
||||||
contextFactory.setTrustStore("src/test/resources/client.keystore");
|
contextFactory.setTrustStore("src/test/resources/client.keystore");
|
||||||
contextFactory.setTrustStorePassword("password");
|
contextFactory.setTrustStorePassword("password");
|
||||||
sslConnector.setPort(8080);
|
sslConnector.setPort(getProxyPort());
|
||||||
return sslConnector;
|
return sslConnector;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -41,6 +41,7 @@ public class WSSTransportTest extends WSTransportTest {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected String getTestURI() {
|
protected String getTestURI() {
|
||||||
return "https://localhost:8080/websocket.html#wss://localhost:61623";
|
int port = getProxyPort();
|
||||||
|
return "https://localhost:" + port + "/websocket.html#wss://localhost:61623";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue