org.glowroot.agent.it.harness.Containers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glowroot-agent-it-harness Show documentation
Show all versions of glowroot-agent-it-harness Show documentation
Glowroot Agent Integration Test Harness
/*
* Copyright 2011-2019 the original author or authors.
*
* Licensed 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.glowroot.agent.it.harness;
import java.io.File;
import org.glowroot.agent.it.harness.shaded.javax.annotation.Nullable;
import org.glowroot.agent.shaded.org.slf4j.Logger;
import org.glowroot.agent.shaded.org.slf4j.LoggerFactory;
import org.glowroot.agent.it.harness.impl.JavaagentContainer;
import org.glowroot.agent.it.harness.impl.LocalContainer;
public class Containers {
private static final Logger logger = LoggerFactory.getLogger(Containers.class);
private static final String INTEGRATION_TEST_HARNESS_PROPERTY_NAME = "glowroot.it.harness";
private static final Harness harness;
static {
String value = System.getProperty(INTEGRATION_TEST_HARNESS_PROPERTY_NAME);
if (value == null) {
// this default is provided primarily for running tests from IDE
harness = Harness.LOCAL;
} else if (value.equals("javaagent")) {
harness = Harness.JAVAAGENT;
} else if (value.equals("local")) {
harness = Harness.LOCAL;
} else {
throw new IllegalStateException(
"Unexpected " + INTEGRATION_TEST_HARNESS_PROPERTY_NAME + " value: " + value);
}
}
private Containers() {}
public static Container create() throws Exception {
return create(null);
}
public static Container create(@Nullable File testDir) throws Exception {
switch (harness) {
case JAVAAGENT:
// this is the most realistic way to run tests because it launches an external JVM
// process using -javaagent:glowroot.jar
logger.debug("create(): using javaagent container");
return JavaagentContainer.create(testDir);
case LOCAL:
// this is the easiest way to run/debug tests inside of Eclipse
logger.debug("create(): using local container");
return LocalContainer.create(testDir);
default:
throw new IllegalStateException("Unexpected harness enum value: " + harness);
}
}
public static boolean useJavaagent() {
return harness == Harness.JAVAAGENT;
}
private enum Harness {
JAVAAGENT, LOCAL;
}
}