// Copyright 2017 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.common.options; import static com.google.common.truth.Truth.assertThat; import com.google.common.escape.Escaper; import com.google.common.html.HtmlEscapers; import com.google.devtools.common.options.OptionsParser.HelpVerbosity; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.JUnit4; /** Unit test for {@link OptionsUsage}. */ @RunWith(JUnit4.class) public final class OptionsUsageTest { private OptionsData data; private static final Escaper HTML_ESCAPER = HtmlEscapers.htmlEscaper(); @Before public void setUp() { data = OptionsParser.getOptionsDataInternal(TestOptions.class); } private String getHtmlUsage(String fieldName) { StringBuilder builder = new StringBuilder(); OptionsUsage.getUsageHtml( data.getOptionDefinitionFromName(fieldName), builder, HTML_ESCAPER, data); return builder.toString(); } private String getTerminalUsage(String fieldName, HelpVerbosity verbosity) { StringBuilder builder = new StringBuilder(); OptionsUsage.getUsage(data.getOptionDefinitionFromName(fieldName), builder, verbosity, data); return builder.toString(); } @Test public void stringValue_shortTerminalOutput() { assertThat(getTerminalUsage("test_string", HelpVerbosity.SHORT)).isEqualTo(" --test_string\n"); } @Test public void stringValue_mediumTerminalOutput() { assertThat(getTerminalUsage("test_string", HelpVerbosity.MEDIUM)) .isEqualTo(" --test_string (a string; default: \"test string default\")\n"); } @Test public void stringValue_longTerminalOutput() { assertThat(getTerminalUsage("test_string", HelpVerbosity.LONG)) .isEqualTo( " --test_string (a string; default: \"test string default\")\n" + " a string-valued option to test simple option operations\n"); } @Test public void stringValue_htmlOutput() { assertThat(getHtmlUsage("test_string")) .isEqualTo( "
" + "--test_string=<a string> default: \"test string default\"
\n" + "
\n" + "a string-valued option to test simple option operations\n" + "
\n"); } @Test public void intValue_shortTerminalOutput() { assertThat(getTerminalUsage("expanded_c", HelpVerbosity.SHORT)).isEqualTo(" --expanded_c\n"); } @Test public void intValue_mediumTerminalOutput() { assertThat(getTerminalUsage("expanded_c", HelpVerbosity.MEDIUM)) .isEqualTo(" --expanded_c (an integer; default: \"12\")\n"); } @Test public void intValue_longTerminalOutput() { assertThat(getTerminalUsage("expanded_c", HelpVerbosity.LONG)) .isEqualTo( " --expanded_c (an integer; default: \"12\")\n" + " an int-value'd flag used to test expansion logic\n"); } @Test public void intValue_htmlOutput() { assertThat(getHtmlUsage("expanded_c")) .isEqualTo( "
" + "--expanded_c=<an integer> default: \"12\"
\n" + "
\n" + "an int-value'd flag used to test expansion logic\n" + "
\n"); } @Test public void booleanValue_shortTerminalOutput() { assertThat(getTerminalUsage("expanded_a", HelpVerbosity.SHORT)) .isEqualTo(" --[no]expanded_a\n"); } @Test public void booleanValue_mediumTerminalOutput() { assertThat(getTerminalUsage("expanded_a", HelpVerbosity.MEDIUM)) .isEqualTo(" --[no]expanded_a (a boolean; default: \"true\")\n"); } @Test public void booleanValue_longTerminalOutput() { assertThat(getTerminalUsage("expanded_a", HelpVerbosity.LONG)) .isEqualTo(" --[no]expanded_a (a boolean; default: \"true\")\n"); } @Test public void booleanValue_htmlOutput() { assertThat(getHtmlUsage("expanded_a")) .isEqualTo( "
" + "--[no]expanded_a default: \"true\"
\n" + "
\n" + "
\n"); } @Test public void multipleValue_shortTerminalOutput() { assertThat(getTerminalUsage("test_multiple_string", HelpVerbosity.SHORT)) .isEqualTo(" --test_multiple_string\n"); } @Test public void multipleValue_mediumTerminalOutput() { assertThat(getTerminalUsage("test_multiple_string", HelpVerbosity.MEDIUM)) .isEqualTo(" --test_multiple_string (a string; may be used multiple times)\n"); } @Test public void multipleValue_longTerminalOutput() { assertThat(getTerminalUsage("test_multiple_string", HelpVerbosity.LONG)) .isEqualTo( " --test_multiple_string (a string; may be used multiple times)\n" + " a repeatable string-valued flag with its own unhelpful help text\n"); } @Test public void multipleValue_htmlOutput() { assertThat(getHtmlUsage("test_multiple_string")) .isEqualTo( "
" + "--test_multiple_string=<a string> " + "multiple uses are accumulated
\n" + "
\n" + "a repeatable string-valued flag with its own unhelpful help text\n" + "
\n"); } @Test public void customConverterValue_shortTerminalOutput() { assertThat(getTerminalUsage("test_list_converters", HelpVerbosity.SHORT)) .isEqualTo(" --test_list_converters\n"); } @Test public void customConverterValue_mediumTerminalOutput() { assertThat(getTerminalUsage("test_list_converters", HelpVerbosity.MEDIUM)) .isEqualTo(" --test_list_converters (a list of strings; may be used multiple times)\n"); } @Test public void customConverterValue_longTerminalOutput() { assertThat(getTerminalUsage("test_list_converters", HelpVerbosity.LONG)) .isEqualTo( " --test_list_converters (a list of strings; may be used multiple times)\n" + " a repeatable flag that accepts lists, but doesn't want to have lists of \n" + " lists as a final type\n"); } @Test public void customConverterValue_htmlOutput() { assertThat(getHtmlUsage("test_list_converters")) .isEqualTo( "
" + "--test_list_converters=<a list of strings> " + "multiple uses are accumulated
\n" + "
\n" + "a repeatable flag that accepts lists, but doesn't want to have lists of \n" + "lists as a final type\n" + "
\n"); } @Test public void staticExpansionOption_shortTerminalOutput() { assertThat(getTerminalUsage("test_expansion", HelpVerbosity.SHORT)) .isEqualTo(" --test_expansion\n"); } @Test public void staticExpansionOption_mediumTerminalOutput() { assertThat(getTerminalUsage("test_expansion", HelpVerbosity.MEDIUM)) .isEqualTo(" --test_expansion\n"); } @Test public void staticExpansionOption_longTerminalOutput() { assertThat(getTerminalUsage("test_expansion", HelpVerbosity.LONG)) .isEqualTo( " --test_expansion\n" + " this expands to an alphabet soup.\n" + " Expands to: --noexpanded_a --expanded_b=false --expanded_c 42 --\n" + " expanded_d bar \n"); } @Test public void staticExpansionOption_htmlOutput() { assertThat(getHtmlUsage("test_expansion")) .isEqualTo( "
" + "--test_expansion
\n" + "
\n" + "this expands to an alphabet soup.\n" + "
\n" + "Expands to:
\n" + "  --noexpanded_a
\n" + "  --expanded_b=false
\n" + "  --expanded_c
\n" + "  42
\n" + "  --expanded_d
\n" + "  bar
\n" + "
\n"); } @Test public void recursiveExpansionOption_shortTerminalOutput() { assertThat(getTerminalUsage("test_recursive_expansion_top_level", HelpVerbosity.SHORT)) .isEqualTo(" --test_recursive_expansion_top_level\n"); } @Test public void recursiveExpansionOption_mediumTerminalOutput() { assertThat(getTerminalUsage("test_recursive_expansion_top_level", HelpVerbosity.MEDIUM)) .isEqualTo(" --test_recursive_expansion_top_level\n"); } @Test public void recursiveExpansionOption_longTerminalOutput() { assertThat(getTerminalUsage("test_recursive_expansion_top_level", HelpVerbosity.LONG)) .isEqualTo( " --test_recursive_expansion_top_level\n" + " Lets the children do all the work.\n" + " Expands to: --test_recursive_expansion_middle1 --\n" + " test_recursive_expansion_middle2 \n"); } @Test public void recursiveExpansionOption_htmlOutput() { assertThat(getHtmlUsage("test_recursive_expansion_top_level")) .isEqualTo( "
" + "--test_recursive_expansion_top_level
\n" + "
\n" + "Lets the children do all the work.\n" + "
\n" + "Expands to:
\n" + "  --test_recursive_expansion_middle1
\n" + "  --test_recursive_expansion_middle2
\n" + "
\n"); } @Test public void expansionToMultipleValue_shortTerminalOutput() { assertThat(getTerminalUsage("test_expansion_to_repeatable", HelpVerbosity.SHORT)) .isEqualTo(" --test_expansion_to_repeatable\n"); } @Test public void expansionToMultipleValue_mediumTerminalOutput() { assertThat(getTerminalUsage("test_expansion_to_repeatable", HelpVerbosity.MEDIUM)) .isEqualTo(" --test_expansion_to_repeatable\n"); } @Test public void expansionToMultipleValue_longTerminalOutput() { assertThat(getTerminalUsage("test_expansion_to_repeatable", HelpVerbosity.LONG)) .isEqualTo( " --test_expansion_to_repeatable\n" + " Go forth and multiply, they said.\n" + " Expands to: --test_multiple_string=expandedFirstValue --\n" + " test_multiple_string=expandedSecondValue \n"); } @Test public void expansionToMultipleValue_htmlOutput() { assertThat(getHtmlUsage("test_expansion_to_repeatable")) .isEqualTo( "
" + "--test_expansion_to_repeatable
\n" + "
\n" + "Go forth and multiply, they said.\n" + "
\n" + "Expands to:
\n" + "  --test_multiple_string=expandedFirstValue
\n" + "  --test_multiple_string=expandedSecondValue
\n" + "
\n"); } @Test public void implicitRequirementOption_shortTerminalOutput() { assertThat(getTerminalUsage("test_implicit_requirement", HelpVerbosity.SHORT)) .isEqualTo(" --test_implicit_requirement\n"); } @Test public void implicitRequirementOption_mediumTerminalOutput() { assertThat(getTerminalUsage("test_implicit_requirement", HelpVerbosity.MEDIUM)) .isEqualTo(" --test_implicit_requirement (a string; default: \"direct implicit\")\n"); } @Test public void implicitRequirementOption_longTerminalOutput() { assertThat(getTerminalUsage("test_implicit_requirement", HelpVerbosity.LONG)) .isEqualTo( " --test_implicit_requirement (a string; default: \"direct implicit\")\n" + " this option really needs that other one, isolation of purpose has failed.\n" + " Using this option will also add: --implicit_requirement_a=implicit \n" + " requirement, required \n"); } @Test public void implicitRequirementOption_htmlOutput() { assertThat(getHtmlUsage("test_implicit_requirement")) .isEqualTo( "
" + "--test_implicit_requirement=<a string> " + "default: \"direct implicit\"
\n" + "
\n" + "this option really needs that other one, isolation of purpose has failed.\n" + "
\n"); } @Test public void expansionFunctionOptionThatReadsUserValue_shortTerminalOutput() { assertThat(getTerminalUsage("test_expansion_function", HelpVerbosity.SHORT)) .isEqualTo(" --test_expansion_function\n"); } @Test public void expansionFunctionOptionThatReadsUserValue_mediumTerminalOutput() { assertThat(getTerminalUsage("test_expansion_function", HelpVerbosity.MEDIUM)) .isEqualTo(" --test_expansion_function\n"); } @Test public void expansionFunctionOptionThatReadsUserValue_longTerminalOutput() { assertThat(getTerminalUsage("test_expansion_function", HelpVerbosity.LONG)) .isEqualTo( " --test_expansion_function\n" + " this is for testing expansion-by-function functionality.\n" + " Expands to unknown options.\n"); } @Test public void expansionFunctionOptionThatReadsUserValue_htmlOutput() { assertThat(getHtmlUsage("test_expansion_function")) .isEqualTo( "
" + "--test_expansion_function
\n" + "
\n" + "this is for testing expansion-by-function functionality.\n" + "
\n" + "Expands to unknown options.
\n" + "
\n"); } @Test public void expansionFunctionOptionThatExpandsBasedOnOtherLoadedOptions_shortTerminalOutput() { assertThat(getTerminalUsage("prefix_expansion", HelpVerbosity.SHORT)) .isEqualTo(" --prefix_expansion\n"); } @Test public void expansionFunctionOptionThatExpandsBasedOnOtherLoadedOptions_mediumTerminalOutput() { assertThat(getTerminalUsage("prefix_expansion", HelpVerbosity.MEDIUM)) .isEqualTo(" --prefix_expansion\n"); } @Test public void expansionFunctionOptionThatExpandsBasedOnOtherLoadedOptions_longTerminalOutput() { assertThat(getTerminalUsage("prefix_expansion", HelpVerbosity.LONG)) .isEqualTo( " --prefix_expansion\n" + " Expands to all options with a specific prefix.\n" + " Expands to: --specialexp_bar --specialexp_foo \n"); } @Test public void expansionFunctionOptionThatExpandsBasedOnOtherLoadedOptions_htmlOutput() { assertThat(getHtmlUsage("prefix_expansion")) .isEqualTo( "
" + "--prefix_expansion
\n" + "
\n" + "Expands to all options with a specific prefix.\n" + "
\n" + "Expands to:
\n" + "  --specialexp_bar
\n" + "  --specialexp_foo
\n" + "
\n"); } }