// 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.testutil.TestData.TestRule; import com.google.devtools.build.lib.analysis.ConfiguredRuleClassProvider; import com.google.devtools.build.lib.testutil.TestRuleClassProvider; 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 NO_FLAGS = ImmutableSet.of(); private static final ConfiguredRuleClassProvider provider = TestRuleClassProvider.getRuleClassProvider(); 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("").append(attr.getAttributeName()).append(""); 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.of(), provider); 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.of(), provider), 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.of(), provider), runtimeDepsAttr, false); checkAttributeForRule( new RuleDocumentation( "java_library", "LIBRARY", "JAVA", "", 0, "", ImmutableSet.of(), provider), runtimeDepsAttr, false); } @Test public void testRuleDocFlagSubstitution() throws BuildEncyclopediaDocException { RuleDocumentation ruleDoc = new RuleDocumentation( "rule", "OTHER", "FOO", "x", 0, "", ImmutableSet.of("DEPRECATED"), provider); 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.of(), provider); 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 testExtractExamples() throws BuildEncyclopediaDocException { RuleDocumentation ruleDoc = new RuleDocumentation( "rule", "OTHER", "FOO", Joiner.on("\n").join(new String[] { "x", "", "a", "", "y", "", "b", "", "z"}), 0, "", ImmutableSet.of(), provider); assertThat(ruleDoc.extractExamples()).isEqualTo(ImmutableSet.of("a\n", "b\n")); } @Test public void testCreateExceptions() throws BuildEncyclopediaDocException { RuleDocumentation ruleDoc = new RuleDocumentation( "foo_binary", "OTHER", "FOO", "", 10, "foo.txt", NO_FLAGS, provider); 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, provider)) .isEqualTo(new RuleDocumentation("rule", "OTHER", "FOO", "x", 0, "", NO_FLAGS, provider)); } @Test public void testNotEquals() throws BuildEncyclopediaDocException { assertThat( new RuleDocumentation("rule1", "OTHER", "FOO", "x", 0, "", NO_FLAGS, provider) .equals( new RuleDocumentation("rule2", "OTHER", "FOO", "y", 0, "", NO_FLAGS, provider))) .isFalse(); } @Test public void testCompareTo() throws BuildEncyclopediaDocException { assertThat( new RuleDocumentation("rule1", "OTHER", "FOO", "x", 0, "", NO_FLAGS, provider) .compareTo( new RuleDocumentation("rule2", "OTHER", "FOO", "x", 0, "", NO_FLAGS, provider))) .isEqualTo(-1); } @Test public void testHashCode() throws BuildEncyclopediaDocException { assertThat( new RuleDocumentation("rule", "OTHER", "FOO", "y", 0, "", NO_FLAGS, provider) .hashCode()) .isEqualTo( new RuleDocumentation("rule", "OTHER", "FOO", "x", 0, "", NO_FLAGS, provider) .hashCode()); } }