blob: cec3a81965d54c80b376d9bc62c0b425835e0dfc [file] [log] [blame]
// 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.skylark.skylint;
import com.google.common.truth.Truth;
import com.google.devtools.build.lib.syntax.BuildFileAST;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/** Tests the lint done by {@link com.google.devtools.skylark.skylint.NamingConventionsChecker}. */
@RunWith(JUnit4.class)
public class NamingConventionsCheckerTest {
private static List<Issue> findIssues(String... lines) {
String content = String.join("\n", lines);
BuildFileAST ast =
BuildFileAST.parseString(
event -> {
throw new IllegalArgumentException(event.getMessage());
},
content);
return NamingConventionsChecker.check(ast);
}
@Test
public void testBadLetterCase() throws Exception {
String errorMessage =
findIssues(
"badGlobalVariableName = 0",
"BadProviderWithoutInfoSuffix = _BadProviderWithoutInfoSuffix",
"def BAD_FUNCTION_NAME(BadParameterName):",
" badLocalVariableName = 1")
.toString();
Truth.assertThat(errorMessage)
.contains(
"'badGlobalVariableName' should be lower_snake_case (for variables)"
+ " or UPPER_SNAKE_CASE (for constants)"
+ " or UpperCamelCase and end in \"Info\" (for providers; example: FizzBuzzInfo)"
+ " [name-with-wrong-case]");
Truth.assertThat(errorMessage)
.contains(
"'BadProviderWithoutInfoSuffix' should be lower_snake_case (for variables)"
+ " or UPPER_SNAKE_CASE (for constants)"
+ " or UpperCamelCase and end in \"Info\" (for providers; example: FizzBuzzInfo)"
+ " [name-with-wrong-case]");
Truth.assertThat(errorMessage)
.contains("'BAD_FUNCTION_NAME' should be lower_snake_case [name-with-wrong-case]");
Truth.assertThat(errorMessage)
.contains("'BadParameterName' should be lower_snake_case [name-with-wrong-case]");
Truth.assertThat(errorMessage)
.contains(
"'badLocalVariableName' should be lower_snake_case (for variables)"
+ " or UPPER_SNAKE_CASE (for constants)"
+ " or UpperCamelCase and end in \"Info\" (for providers; example: FizzBuzzInfo)"
+ " [name-with-wrong-case]");
}
@Test
public void testConfusingNames() throws Exception {
String errorMessage = findIssues("O = 0", "def fail():", " True = False").toString();
Truth.assertThat(errorMessage)
.contains(
"never use 'l', 'I', or 'O' as names"
+ " (they're too easily confused with 'I', 'l', or '0') [confusing-name]");
Truth.assertThat(errorMessage)
.contains(
"identifier 'fail' shadows a builtin; please pick a different name [confusing-name]");
Truth.assertThat(errorMessage)
.contains(
"identifier 'True' shadows a builtin; please pick a different name [confusing-name]");
}
@Test
public void testUnderscoreNames() throws Exception {
Truth.assertThat(findIssues("a, _ = (1, 2) # underscore to ignore assignment")).isEmpty();
Truth.assertThat(findIssues("_ = 1", "print(_)").toString())
.contains(
"2:7-2:7:"
+ " don't use '_' as an identifier, only to ignore the result in an assignment"
+ " [confusing-name]");
Truth.assertThat(findIssues("__ = 1").toString())
.contains(
"1:1-1:2:"
+ " identifier '__' consists only of underscores; please pick a different name"
+ " [confusing-name]");
}
@Test
public void testImportsNoIssues() throws Exception {
Truth.assertThat(
findIssues("load(':foo.bzl', 'badName', 'BadName', 'O', 'I', 'l', '_', '__', 'fail')"))
.isEmpty();
}
@Test
public void testNoIssues() throws Exception {
Truth.assertThat(
findIssues(
"GOOD_GLOBAL_VARIABLE_NAME = 0",
"GoodAliasedProviderInfo = _GoodAliasedProviderInfo",
"def good_function_name(good_parameter_name):",
" GOOD_LOCAL_CONSTANT_NAME = 1"))
.isEmpty();
}
@Test
public void testProviderNameMustBeCamelCase() throws Exception {
Truth.assertThat(findIssues("FooBarInfo = provider()")).isEmpty();
Truth.assertThat(findIssues("_FooBarInfo = provider()")).isEmpty();
Truth.assertThat(findIssues("foo_bar = provider()").toString())
.contains("provider name 'foo_bar' should be UpperCamelCase [name-with-wrong-case]");
}
@Test
public void testProviderNameMustEndInInfo() throws Exception {
Truth.assertThat(findIssues("FooBar = provider()").toString())
.contains("provider name 'FooBar' should end in the suffix 'Info' [provider-name-suffix]");
}
@Test
public void testNoDuplicates() throws Exception {
Truth.assertThat(findIssues("def foo():", " badName = 1", " badName += 1")).hasSize(1);
Truth.assertThat(findIssues("def foo():", " Bad = 1", " [[] for Bad in []]")).hasSize(2);
}
}