integration.IntegrationTestsConfig.java Source code

Java tutorial

Introduction

Here is the source code for integration.IntegrationTestsConfig.java

Source

/**
 * This file is part of Graylog.
 *
 * Graylog is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Graylog is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Graylog.  If not, see <http://www.gnu.org/licenses/>.
 */
package integration;

import org.apache.http.client.utils.URIBuilder;

import java.net.MalformedURLException;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;

import static org.apache.commons.lang3.ObjectUtils.firstNonNull;

public class IntegrationTestsConfig {
    private static final String GL_BASE_URI = System.getProperty("gl.baseuri", "http://localhost:12900");
    private static final String GL_PORT = System.getProperty("gl.port");
    private static final String GL_ADMIN_USER = System.getProperty("gl.admin_user");
    private static final String GL_ADMIN_PASSWORD = System.getProperty("gl.admin_password");
    private static final String MONGODB_HOST = System.getProperty("mongodb.host", "localhost");
    private static final String MONGODB_PORT = System.getProperty("mongodb.port", "27017");
    private static final String MONGODB_DATABASE = System.getProperty("mongodb.database", "graylog_test");
    private static final String ES_HOST = System.getProperty("es.host", "localhost");
    private static final String ES_CLUSTER_NAME = System.getProperty("es.cluster.name", "graylog_test");
    private static final String ES_PORT = System.getProperty("es.port", "9300");

    public static URI getGlServerURL() throws MalformedURLException, URISyntaxException {
        URIBuilder result = new URIBuilder(GL_BASE_URI);
        if (GL_PORT != null) {
            result.setPort(Integer.parseInt(GL_PORT));
        }

        final String username;
        final String password;
        if (result.getUserInfo() == null) {
            username = GL_ADMIN_USER;
            password = GL_ADMIN_PASSWORD;
        } else {
            final String[] userInfo = result.getUserInfo().split(":");
            username = (GL_ADMIN_USER != null ? GL_ADMIN_USER : userInfo[0]);
            password = (GL_ADMIN_PASSWORD != null ? GL_ADMIN_PASSWORD : userInfo[1]);
        }

        result.setUserInfo(firstNonNull(username, "admin"), firstNonNull(password, "admin"));

        return result.build();
    }

    public static String getMongodbHost() {
        return MONGODB_HOST;
    }

    public static int getMongodbPort() {
        return Integer.parseInt(MONGODB_PORT);
    }

    public static String getMongodbDatabase() {
        return MONGODB_DATABASE;
    }

    public static String getEsHost() {
        return ES_HOST;
    }

    public static int getEsPort() {
        return Integer.parseInt(ES_PORT);
    }

    public static String getEsClusterName() {
        return ES_CLUSTER_NAME;
    }
}