blob: e22a1c10d2142ec94f9e517d397efeca9ef6d76a [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.atlas.web;
import org.apache.commons.configuration.PropertiesConfiguration;
import org.apache.commons.lang.RandomStringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.File;
import java.io.FileWriter;
public class TestUtils {
private static final Logger LOG = LoggerFactory.getLogger(TestUtils.class);
public static String random(){
return RandomStringUtils.randomAlphanumeric(10);
}
public static void writeConfiguration(PropertiesConfiguration configuration, String fileName) throws Exception {
LOG.debug("Storing configuration in file {}", fileName);
File file = new File(fileName);
File parentFile = file.getParentFile();
if (!parentFile.exists() && !parentFile.mkdirs()) {
throw new Exception("Failed to create dir " + parentFile.getAbsolutePath());
}
file.createNewFile();
configuration.save(new FileWriter(file));
}
public static String getTempDirectory() {
return System.getProperty("projectBaseDir") + "/webapp/target/" + random();
}
public static String getWarPath() {
return System.getProperty("projectBaseDir") + String.format("/webapp/target/atlas-webapp-%s",
System.getProperty("project.version"));
}
public static String getTargetDirectory() {
return System.getProperty("projectBaseDir") + "/webapp/target" ;
}
}