All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wildfly.plugin.tests.TestEnvironment Maven / Gradle / Ivy

The newest version!
/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.wildfly.plugin.tests;

import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import org.jboss.logging.Logger;
import org.wildfly.plugin.common.Environment;

/**
 * @author James R. Perkins
 */
public class TestEnvironment extends Environment {

    /**
     * The default WildFly home directory specified by the {@code wildfly.dist} system property.
     * 

* Note that the {@code wildfly.dist} will not match the path specified here. The WildFly distribution is copied to * a temporary directory to keep the environment clean. * } */ public static final Path WILDFLY_HOME; /** * The host name specified by the {@code wildfly.management.hostname} system property or {@code localhost} by * default. */ public static final String HOSTNAME = System.getProperty("wildfly.management.hostname", "localhost"); /** * The port specified by the {@code wildfly.management.port} system property or {@code 9990} by default. */ public static final int PORT; /** * The port specified by the {@code wildfly.http.port} system property or {@code 8880} by default. */ public static final int HTTP_PORT; /** * The default server startup timeout specified by {@code wildfly.timeout}, default is 60 seconds. */ public static final long TIMEOUT; private static final boolean IS_MODULAR_JVM; static { final Logger logger = Logger.getLogger(TestEnvironment.class); Path wildflyHome = null; if (!Boolean.getBoolean("wildfly.test.bootable")) { // Get the WildFly home directory and copy to the temp directory final String wildflyDist = System.getProperty("jboss.home"); assert wildflyDist != null : "WildFly home property, jboss.home, was not set"; wildflyHome = Paths.get(wildflyDist); validateWildFlyHome(wildflyHome); } WILDFLY_HOME = wildflyHome; final String port = System.getProperty("wildfly.management.port", "9990"); try { PORT = Integer.parseInt(port); } catch (NumberFormatException e) { logger.debugf(e, "Invalid port: %s", port); throw new RuntimeException("Invalid port: " + port, e); } final String httpPort = System.getProperty("wildfly.http.port", "8080"); try { HTTP_PORT = Integer.parseInt(httpPort); } catch (NumberFormatException e) { logger.debugf(e, "Invalid port: %s", port); throw new RuntimeException("Invalid port: " + port, e); } final String timeout = System.getProperty("wildfly.timeout", "60"); try { TIMEOUT = Long.parseLong(timeout); } catch (NumberFormatException e) { logger.debugf(e, "Invalid timeout: %s", timeout); throw new RuntimeException("Invalid timeout: " + timeout, e); } final String javaVersion = System.getProperty("java.specification.version"); int vmVersion; try { final Matcher matcher = Pattern.compile("^(?:1\\.)?(\\d+)$").matcher(javaVersion); if (matcher.find()) { vmVersion = Integer.valueOf(matcher.group(1)); } else { throw new RuntimeException("Unknown version of jvm " + javaVersion); } } catch (Exception e) { vmVersion = 8; } IS_MODULAR_JVM = vmVersion > 8; } public static boolean isModularJvm() { return IS_MODULAR_JVM; } public static boolean isValidWildFlyHome(final Path wildflyHome) { return Files.exists(wildflyHome) && Files.isDirectory(wildflyHome) && Files.exists(wildflyHome.resolve("jboss-modules.jar")); } public static void validateWildFlyHome(final Path wildflyHome) { if (!isValidWildFlyHome(wildflyHome)) { throw new RuntimeException("Invalid WildFly home directory: " + wildflyHome); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy