blob: 0c556bbf0f4d9a86f4681b96b348f1028d155859 [file] [log] [blame]
// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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.google.devtools.build.docgen;
import static com.google.common.truth.Truth.assertThat;
import static com.google.common.truth.Truth.assertWithMessage;
import com.google.common.base.Joiner;
import com.google.common.collect.ImmutableSet;
import com.google.devtools.build.docgen.DocgenConsts.RuleType;
import com.google.devtools.build.docgen.testutil.TestData.TestRule;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/**
* A test class for RuleDocumentation.
*/
@RunWith(JUnit4.class)
public class RuleDocumentationTest {
private static final ImmutableSet<String> NO_FLAGS = ImmutableSet.<String>of();
private static void assertContains(String base, String value) {
assertWithMessage(base + " is expected to contain " + value)
.that(base.contains(value))
.isTrue();
}
private void checkAttributeForRule(RuleDocumentation rule, RuleDocumentationAttribute attr,
boolean isCommonAttribute) {
rule.addAttribute(attr);
String signature = rule.getAttributeSignature();
StringBuilder sb = new StringBuilder();
if (isCommonAttribute) {
sb.append("<a href=\"common-definitions.html#");
} else {
sb.append("<a href=\"#");
}
sb.append(attr.getGeneratedInRule(rule.getRuleName())).append(".");
sb.append(attr.getAttributeName()).append("\">").append(attr.getAttributeName()).append("</a>");
assertContains(signature, sb.toString());
}
@Test
public void testVariableSubstitution() throws BuildEncyclopediaDocException {
RuleDocumentation ruleDoc =
new RuleDocumentation(
"rule",
"OTHER",
"FOO",
Joiner.on("\n").join(new String[] {"x", "${VAR}", "z"}),
0,
"",
ImmutableSet.<String>of());
ruleDoc.addDocVariable("VAR", "y");
assertThat(ruleDoc.getHtmlDocumentation()).isEqualTo("x\ny\nz");
}
@Test
public void testSignatureContainsCommonAttribute() throws Exception {
RuleDocumentationAttribute licensesAttr = RuleDocumentationAttribute.create(
"licenses", "common", "attribute doc");
checkAttributeForRule(
new RuleDocumentation(
"java_binary", "BINARY", "JAVA", "", 0, "", ImmutableSet.<String>of()),
licensesAttr,
true);
}
@Test
public void testInheritedAttributeGeneratesSignature() throws Exception {
RuleDocumentationAttribute runtimeDepsAttr = RuleDocumentationAttribute.create(TestRule.class,
"runtime_deps", "attribute doc", 0, "", NO_FLAGS);
checkAttributeForRule(
new RuleDocumentation(
"java_binary", "BINARY", "JAVA", "", 0, "", ImmutableSet.<String>of()),
runtimeDepsAttr,
false);
checkAttributeForRule(
new RuleDocumentation(
"java_library", "LIBRARY", "JAVA", "", 0, "", ImmutableSet.<String>of()),
runtimeDepsAttr,
false);
}
@Test
public void testRuleDocFlagSubstitution() throws BuildEncyclopediaDocException {
RuleDocumentation ruleDoc =
new RuleDocumentation(
"rule", "OTHER", "FOO", "x", 0, "", ImmutableSet.<String>of("DEPRECATED"));
ruleDoc.addDocVariable("VAR", "y");
assertThat(ruleDoc.getHtmlDocumentation()).isEqualTo("x");
}
@Test
public void testCommandLineDocumentation() throws BuildEncyclopediaDocException {
RuleDocumentation ruleDoc =
new RuleDocumentation(
"foo_binary",
"OTHER",
"FOO",
Joiner.on("\n").join(new String[] {"x", "y", "z", "${VAR}"}),
0,
"",
ImmutableSet.<String>of());
ruleDoc.addDocVariable("VAR", "w");
RuleDocumentationAttribute attributeDoc = RuleDocumentationAttribute.create(TestRule.class,
"srcs", "attribute doc", 0, "", NO_FLAGS);
ruleDoc.addAttribute(attributeDoc);
assertThat(ruleDoc.getCommandLineDocumentation()).isEqualTo("\nx\ny\nz\n\n");
}
@Test
public void testCreateExceptions() throws BuildEncyclopediaDocException {
RuleDocumentation ruleDoc =
new RuleDocumentation("foo_binary", "OTHER", "FOO", "", 10, "foo.txt", NO_FLAGS);
BuildEncyclopediaDocException e = ruleDoc.createException("msg");
assertThat(e).hasMessageThat().isEqualTo("Error in foo.txt:10: msg");
}
@Test
public void testEquals() throws BuildEncyclopediaDocException {
assertThat(new RuleDocumentation("rule", "OTHER", "FOO", "y", 0, "", NO_FLAGS))
.isEqualTo(new RuleDocumentation("rule", "OTHER", "FOO", "x", 0, "", NO_FLAGS));
}
@Test
public void testNotEquals() throws BuildEncyclopediaDocException {
assertThat(
new RuleDocumentation("rule1", "OTHER", "FOO", "x", 0, "", NO_FLAGS)
.equals(new RuleDocumentation("rule2", "OTHER", "FOO", "y", 0, "", NO_FLAGS)))
.isFalse();
}
@Test
public void testCompareTo() throws BuildEncyclopediaDocException {
assertThat(
new RuleDocumentation("rule1", "OTHER", "FOO", "x", 0, "", NO_FLAGS)
.compareTo(new RuleDocumentation("rule2", "OTHER", "FOO", "x", 0, "", NO_FLAGS)))
.isEqualTo(-1);
}
@Test
public void testHashCode() throws BuildEncyclopediaDocException {
assertThat(new RuleDocumentation("rule", "OTHER", "FOO", "y", 0, "", NO_FLAGS).hashCode())
.isEqualTo(new RuleDocumentation("rule", "OTHER", "FOO", "x", 0, "", NO_FLAGS).hashCode());
}
@Test
public void testRuleTypeIsOtherForGenericRules() throws Exception {
assertThat(
new RuleDocumentation(
"rule", "BINARY", "FOO", "y", 0, "", ImmutableSet.of("GENERIC_RULE"))
.getRuleType())
.isEqualTo(RuleType.OTHER);
assertThat(
new RuleDocumentation("rule", null, "FOO", "y", 0, "", ImmutableSet.of("GENERIC_RULE"))
.getRuleType())
.isEqualTo(RuleType.OTHER);
}
}