blob: 1344290e8a6b835d18056a66b4bc1743da2a9eac [file] [log] [blame]
/*
* 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.geode.tools.pulse.tests.rules;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.HashMap;
import java.util.Properties;
import org.junit.rules.ExternalResource;
import org.apache.geode.internal.AvailablePort;
import org.apache.geode.internal.admin.SSLConfig;
import org.apache.geode.internal.cache.InternalHttpService;
import org.apache.geode.tools.pulse.internal.data.PulseConstants;
import org.apache.geode.tools.pulse.tests.Server;
public class ServerRule extends ExternalResource {
private static final String LOCALHOST = "localhost";
private static final String PULSE_CONTEXT = "/pulse/";
private InternalHttpService jetty;
private Server server;
private String pulseURL;
private String jsonAuthFile;
public ServerRule(String jsonAuthFile) {
this.jsonAuthFile = jsonAuthFile;
}
public String getPulseURL() {
return this.pulseURL;
}
@Override
protected void before() throws Throwable {
startServer();
startJetty();
}
@Override
protected void after() {
try {
stopJetty();
stopServer();
} catch (Exception e) {
throw new RuntimeException(e);
}
}
private void startServer() throws Exception {
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
String jmxPropertiesFile = classLoader.getResource("test.properties").getPath();
int jmxPort = AvailablePort.getRandomAvailablePort(AvailablePort.SOCKET);
System.setProperty(PulseConstants.SYSTEM_PROPERTY_PULSE_PORT, Integer.toString(jmxPort));
server = Server.createServer(jmxPort, jmxPropertiesFile, jsonAuthFile);
server.start();
}
private void startJetty() throws Exception {
System.setProperty(PulseConstants.SYSTEM_PROPERTY_PULSE_HOST, LOCALHOST);
System.setProperty(PulseConstants.SYSTEM_PROPERTY_PULSE_EMBEDDED,
String.valueOf(Boolean.TRUE));
int httpPort = AvailablePort.getRandomAvailablePort(AvailablePort.SOCKET);
jetty = new InternalHttpService();
jetty.createJettyServer(LOCALHOST, httpPort, new SSLConfig());
jetty.addWebApplication(PULSE_CONTEXT, getPulseWarPath(), new HashMap<>());
pulseURL = "http://" + LOCALHOST + ":" + httpPort + PULSE_CONTEXT;
}
private void stopServer() throws Exception {
server.stop();
}
private void stopJetty() throws Exception {
jetty.close();
}
private Path getPulseWarPath() throws IOException {
String warPath;
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
InputStream inputStream = classLoader.getResourceAsStream("GemFireVersion.properties");
Properties properties = new Properties();
properties.load(inputStream);
String version = properties.getProperty("Product-Version");
warPath = "geode-pulse-" + version + ".war";
String propFilePath = classLoader.getResource("GemFireVersion.properties").getPath();
warPath =
propFilePath.substring(0, propFilePath.indexOf("generated-resources")) + "libs/" + warPath;
return Paths.get(warPath);
}
}