com.github.alexcojocaru.mojo.elasticsearch.v2.step.ValidatePathConfStep Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-maven-plugin Show documentation
Show all versions of elasticsearch-maven-plugin Show documentation
A Maven plugin to run a single node Elasticsearch cluster during the integration test phase of a build
package com.github.alexcojocaru.mojo.elasticsearch.v2.step;
import java.io.File;
import org.apache.commons.lang3.StringUtils;
import com.github.alexcojocaru.mojo.elasticsearch.v2.ClusterConfiguration;
import com.github.alexcojocaru.mojo.elasticsearch.v2.ElasticsearchSetupException;
/**
* Validate that the provided pathConf, if any, points to an existing directory.
*
* @author Alex Cojocaru
*/
public class ValidatePathConfStep
implements ClusterStep
{
@Override
public void execute(ClusterConfiguration config)
{
String pathConf = config.getPathConf();
if (StringUtils.isNotBlank(pathConf) && new File(pathConf).isDirectory() == false)
{
throw new ElasticsearchSetupException(String.format(
"The value of the 'pathConf' parameter ('%1$s') must be the absolute path"
+ " (or relative to the maven project) of an existing directory.", pathConf));
}
}
}