blob: 77b45df118ad612791a00d66b9e0ea7121401a06 [file] [log] [blame]
/*
* Copyright 2012-present Facebook, Inc.
*
* 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 com.facebook.buck.rules;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import com.facebook.buck.model.BuildTargetFactory;
import com.facebook.buck.model.BuildTargetPattern;
import com.google.common.collect.Maps;
import org.junit.Test;
import java.io.File;
import java.util.Map;
public class JavaBinaryRuleTest {
private static final String PATH_TO_GUAVA_JAR = "third_party/guava/guava-10.0.1.jar";
private static final String PATH_TO_GENERATOR_JAR = "third_party/guava/generator.jar";
@Test
public void testGetExecutableCommand() {
Map<String, BuildRule> buildRuleIndex = Maps.newHashMap();
// prebuilt_jar //third_party/generator:generator
PrebuiltJarRule prebuiltGeneratorJarRule = PrebuiltJarRule.newPrebuiltJarRuleBuilder()
.setBuildTarget(BuildTargetFactory.newInstance("//third_party/generator:generator"))
.setBinaryJar(PATH_TO_GENERATOR_JAR)
.addVisibilityPattern(BuildTargetPattern.MATCH_ALL)
.build(buildRuleIndex);
buildRuleIndex.put(prebuiltGeneratorJarRule.getFullyQualifiedName(), prebuiltGeneratorJarRule);
// prebuilt_jar //third_party/guava:guava
PrebuiltJarRule prebuiltJarRule = PrebuiltJarRule.newPrebuiltJarRuleBuilder()
.setBuildTarget(BuildTargetFactory.newInstance("//third_party/guava:guava"))
.setBinaryJar(PATH_TO_GUAVA_JAR)
.addVisibilityPattern(BuildTargetPattern.MATCH_ALL)
.build(buildRuleIndex);
buildRuleIndex.put(prebuiltJarRule.getFullyQualifiedName(), prebuiltJarRule);
// java_library //java/com/facebook/base:base
JavaLibraryRule javaLibraryRule = DefaultJavaLibraryRule.newJavaLibraryRuleBuilder()
.setBuildTarget(BuildTargetFactory.newInstance("//java/com/facebook/base:base"))
.addSrc("java/com/facebook/base/Base.java")
.addDep("//third_party/guava:guava")
.build(buildRuleIndex);
buildRuleIndex.put(javaLibraryRule.getFullyQualifiedName(), javaLibraryRule);
// java_binary //java/com/facebook/base:Main
JavaBinaryRule javaBinaryRule = JavaBinaryRule.newJavaBinaryRuleBuilder()
.setBuildTarget(BuildTargetFactory.newInstance("//java/com/facebook/base:Main"))
.addDep("//java/com/facebook/base:base")
.setMainClass("com.facebook.base.Main")
.build(buildRuleIndex);
buildRuleIndex.put(javaBinaryRule.getFullyQualifiedName(), javaBinaryRule);
// Strip the trailing "." from the absolute path to the current directory.
String basePath = new File(".").getAbsolutePath().replaceFirst("\\.$", "");
// Each classpath entry is specified via its absolute path so that the executable command can be
// run from a /tmp directory, if necessary.
String expectedClasspath =
basePath + PATH_TO_GUAVA_JAR + ":" +
basePath + javaLibraryRule.getOutput().getPath();
String expectedCommand = String.format("java -classpath %s com.facebook.base.Main",
expectedClasspath);
assertEquals(expectedCommand, javaBinaryRule.getExecutableCommand());
assertFalse(
"Library rules that are used exclusively by genrules should not be part of the classpath.",
expectedClasspath.contains(PATH_TO_GENERATOR_JAR));
}
}