| // Copyright 2017-2020 The Verible Authors. |
| // |
| // 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. |
| |
| #include "verilog/analysis/checkers/parameter_name_style_rule.h" |
| |
| #include <initializer_list> |
| #include <string> |
| |
| #include "absl/status/status.h" |
| #include "absl/strings/str_cat.h" |
| #include "absl/strings/string_view.h" |
| #include "common/analysis/linter_test_utils.h" |
| #include "common/analysis/syntax_tree_linter_test_utils.h" |
| #include "gtest/gtest.h" |
| #include "verilog/analysis/verilog_analyzer.h" |
| #include "verilog/parser/verilog_token_enum.h" |
| |
| namespace verilog { |
| namespace analysis { |
| namespace { |
| |
| using verible::LintTestCase; |
| using verible::RunConfiguredLintTestCases; |
| using verible::RunLintTestCases; |
| |
| // Tests that ParameterNameStyleRule correctly accepts valid names. |
| TEST(ParameterNameStyleRuleTest, AcceptTests) { |
| const std::initializer_list<LintTestCase> kTestCases = { |
| {""}, |
| {"module foo; endmodule"}, |
| {"module foo (input bar); endmodule"}, |
| {"module foo; localparam type Bar_1 = 1; endmodule"}, |
| {"module foo; localparam Bar = 1; endmodule"}, |
| {"module foo; localparam int Bar = 1; endmodule"}, |
| {"module foo; localparam int P = 1; endmodule"}, |
| {"module foo; parameter int HelloWorld = 1; endmodule"}, |
| {"module foo #(parameter int HelloWorld_1 = 1); endmodule"}, |
| {"module foo #(parameter type Foo); endmodule"}, |
| {"module foo #(int Foo = 8); endmodule"}, |
| {"module foo; localparam int Bar = 1; localparam int BarSecond = 2; " |
| "endmodule"}, |
| {"class foo; localparam int Bar = 1; endclass"}, |
| {"class foo #(parameter int Bar = 1); endclass"}, |
| {"package foo; parameter Bar = 1; endpackage"}, |
| {"package foo; parameter int HELLO_WORLD = 1; endpackage"}, |
| {"package foo; parameter int Bar = 1; endpackage"}, |
| {"parameter int Foo = 1;"}, |
| {"parameter type FooBar;"}, |
| {"parameter Foo = 1;"}, |
| {"parameter P = 1;"}, |
| |
| // Make sure parameter type triggers no violation |
| {"module foo; localparam type Bar_Hello_1 = 1; endmodule"}, |
| {"module foo #(parameter type Bar_1_Hello__); endmodule"}, |
| {"package foo; parameter type Hello_world; endpackage"}, |
| }; |
| RunLintTestCases<VerilogAnalyzer, ParameterNameStyleRule>(kTestCases); |
| } |
| |
| // Tests that ParameterNameStyleRule rejects invalid names. |
| TEST(ParameterNameStyleRuleTest, RejectTests) { |
| constexpr int kToken = SymbolIdentifier; |
| const std::initializer_list<LintTestCase> kTestCases = { |
| {"module foo; localparam ", {kToken, "Bar_Hello"}, " = 1; endmodule"}, |
| {"module foo; localparam int ", {kToken, "Bar_Hello"}, " = 1; endmodule"}, |
| {"module foo; parameter int ", {kToken, "__Bar"}, " = 1; endmodule"}, |
| {"module foo; parameter int ", |
| {kToken, "__Foo"}, |
| " = 1, ", |
| {kToken, "__Bar"}, |
| " = 1; " |
| "endmodule"}, |
| {"module foo; localparam int ", |
| {kToken, "__Foo"}, |
| " = 1, ", |
| {kToken, "__Bar"}, |
| " = 1; " |
| "endmodule"}, |
| {"module foo #(parameter int ", |
| {kToken, "Bar_1_Hello"}, |
| " = 1); endmodule"}, |
| {"module foo #(int ", {kToken, "Bar_1_Two"}, "); endmodule"}, |
| {"module foo; localparam int ", |
| {kToken, "bar"}, |
| " = 1; localparam int BarSecond = 2; " |
| "endmodule"}, |
| {"module foo; localparam int ", |
| {kToken, "bar"}, |
| " = 1; localparam int ", |
| {kToken, "Bar_Second"}, |
| " = 2; " |
| "endmodule"}, |
| {"class foo; localparam int ", {kToken, "helloWorld"}, " = 1; endclass"}, |
| {"class foo #(parameter int ", |
| {kToken, "hello_world"}, |
| " = 1); endclass"}, |
| {"package foo; parameter ", {kToken, "hello__1"}, " = 1; endpackage"}, |
| {"package foo; parameter ", {kToken, "HELLO_WORLd"}, " = 1; endpackage"}, |
| {"package foo; parameter int ", {kToken, "_1Bar"}, " = 1; endpackage"}, |
| {"package foo; parameter int ", |
| {kToken, "HELLO_World"}, |
| " = 1; parameter int ", |
| {kToken, "bar"}, |
| " = 2; " |
| "endpackage"}, |
| {"parameter int ", {kToken, "HelloWorld_"}, " = 1;"}, |
| {"parameter ", {kToken, "HelloWorld__"}, " = 1;"}, |
| }; |
| RunLintTestCases<VerilogAnalyzer, ParameterNameStyleRule>(kTestCases); |
| } |
| |
| TEST(ParameterNameStyleRuleTest, ConfigurationStyleParameterAssignment) { |
| constexpr int kToken = SymbolIdentifier; |
| |
| // Make sure configuration parameter name matches corresponding style |
| |
| { // parameter:CamelCase, localparam:ALL_CAPS |
| const std::initializer_list<LintTestCase> kTestCases = { |
| {"package a; parameter int FooBar = 1; endpackage"}, |
| {"package a; parameter int ", {kToken, "FOO_BAR"}, " = 1; endpackage"}, |
| {"module a; localparam int ", {kToken, "FooBar"}, " = 1; endmodule"}, |
| {"module a; localparam int FOO_BAR = 1; endmodule"}, |
| }; |
| RunConfiguredLintTestCases<VerilogAnalyzer, ParameterNameStyleRule>( |
| kTestCases, "parameter_style:CamelCase;localparam_style:ALL_CAPS"); |
| } |
| { // parameter:ALL_CAPS, localparam:CamelCase |
| const std::initializer_list<LintTestCase> kTestCases = { |
| {"package a; parameter int ", {kToken, "FooBar"}, " = 1; endpackage"}, |
| {"package a; parameter int FOO_BAR = 1; endpackage"}, |
| {"module a; localparam int FooBar = 1; endmodule"}, |
| {"module a; localparam int ", {kToken, "FOO_BAR"}, " = 1; endmodule"}, |
| }; |
| RunConfiguredLintTestCases<VerilogAnalyzer, ParameterNameStyleRule>( |
| kTestCases, "parameter_style:ALL_CAPS;localparam_style:CamelCase"); |
| } |
| } |
| |
| TEST(ParameterNameStyleRuleTest, ConfigurationFlavorCombinations) { |
| constexpr int kToken = SymbolIdentifier; |
| { // CamelCase|ALL_CAPS configured |
| const std::initializer_list<LintTestCase> kTestCases = { |
| // Single-letter uppercase matches both styles: |
| {"package a; parameter int N = 1; endpackage"}, |
| // all-lowercase matches none of the styles: |
| {"package a; parameter int ", {kToken, "no_style"}, " = 1; endpackage"}, |
| // Various CamelCase and ALL_CAPS styles: |
| {"package a; parameter int Foo = 1; endpackage"}, |
| {"package a; parameter int FooBar = 1; endpackage"}, |
| {"package a; parameter int FOO_BAR = 1; endpackage"}, |
| {"module a; localparam int N = 1; endmodule"}, |
| {"module a; localparam int ", {kToken, "no_style"}, " = 1; endmodule"}, |
| {"module a; localparam int Foo = 1; endmodule"}, |
| {"module a; localparam int FooBar = 1; endmodule"}, |
| {"module a; localparam int FOO_BAR = 1; endmodule"}, |
| }; |
| RunConfiguredLintTestCases<VerilogAnalyzer, ParameterNameStyleRule>( |
| kTestCases, |
| "parameter_style:CamelCase|ALL_CAPS;" |
| "localparam_style:CamelCase|ALL_CAPS"); |
| } |
| { // CamelCase configured |
| const std::initializer_list<LintTestCase> kTestCases = { |
| {"package a; parameter int N = 1; endpackage"}, |
| {"package a; parameter int ", {kToken, "no_style"}, " = 1; endpackage"}, |
| {"package a; parameter int Foo = 1; endpackage"}, |
| {"package a; parameter int FooBar = 1; endpackage"}, |
| {"package a; parameter int ", {kToken, "FOO_BAR"}, " = 1; endpackage"}, |
| {"module a; localparam int N = 1; endmodule"}, |
| {"module a; localparam int ", {kToken, "no_style"}, " = 1; endmodule"}, |
| {"module a; localparam int Foo = 1; endmodule"}, |
| {"module a; localparam int FooBar = 1; endmodule"}, |
| {"module a; localparam int ", {kToken, "FOO_BAR"}, " = 1; endmodule"}, |
| }; |
| RunConfiguredLintTestCases<VerilogAnalyzer, ParameterNameStyleRule>( |
| kTestCases, "parameter_style:CamelCase;localparam_style:CamelCase"); |
| } |
| { // ALL_CAPS configured |
| const std::initializer_list<LintTestCase> kTestCases = { |
| {"package a; parameter int N = 1; endpackage"}, |
| {"package a; parameter int ", {kToken, "no_style"}, " = 1; endpackage"}, |
| {"package a; parameter int ", {kToken, "Foo"}, " = 1; endpackage"}, |
| {"package a; parameter int ", {kToken, "FooBar"}, " = 1; endpackage"}, |
| {"package a; parameter int FOO_BAR = 1; endpackage"}, |
| {"module a; localparam int N = 1; endmodule"}, |
| {"module a; localparam int ", {kToken, "no_style"}, " = 1; endmodule"}, |
| {"module a; localparam int ", {kToken, "Foo"}, " = 1; endmodule"}, |
| {"module a; localparam int ", {kToken, "FooBar"}, " = 1; endmodule"}, |
| {"module a; localparam int FOO_BAR = 1; endmodule"}, |
| }; |
| RunConfiguredLintTestCases<VerilogAnalyzer, ParameterNameStyleRule>( |
| kTestCases, "parameter_style:ALL_CAPS;localparam_style:ALL_CAPS"); |
| } |
| { // No styles configured |
| const std::initializer_list<LintTestCase> kTestCases = { |
| {"package a; parameter int N = 1; endpackage"}, |
| {"package a; parameter int no_style = 1; endpackage"}, |
| {"package a; parameter int Foo = 1; endpackage"}, |
| {"package a; parameter int FooBar = 1; endpackage"}, |
| {"package a; parameter int FOO_BAR = 1; endpackage"}, |
| {"module a; localparam int N = 1; endmodule"}, |
| {"module a; localparam int no_style = 1; endmodule"}, |
| {"module a; localparam int Foo = 1; endmodule"}, |
| {"module a; localparam int FooBar = 1; endmodule"}, |
| {"module a; localparam int FOO_BAR = 1; endmodule"}, |
| }; |
| RunConfiguredLintTestCases<VerilogAnalyzer, ParameterNameStyleRule>( |
| kTestCases, "parameter_style:;localparam_style:"); |
| } |
| } |
| |
| TEST(ParameterNameStyleRuleTest, ConfigurationPass) { |
| ParameterNameStyleRule rule; |
| absl::Status status; |
| |
| // Upper Camel Case (may end in _[0-9]+) |
| constexpr absl::string_view kUpperCamelCaseRegex = |
| "(([A-Z0-9]+[a-z0-9]*)+(_[0-9]+)?)"; |
| // ALL_CAPS |
| constexpr absl::string_view kAllCapsRegex = "([A-Z_0-9]+)"; |
| |
| const std::string default_localparam_regex = |
| std::string(kUpperCamelCaseRegex); |
| const std::string default_parameter_regex = |
| absl::StrCat(kUpperCamelCaseRegex, "|", kAllCapsRegex); |
| |
| // Default Config |
| EXPECT_TRUE((status = rule.Configure("")).ok()) << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), default_localparam_regex); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), default_parameter_regex); |
| |
| // Set to ALL_CAPS using *_style |
| EXPECT_TRUE((status = rule.Configure("localparam_style:ALL_CAPS")).ok()) |
| << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), kAllCapsRegex); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), default_parameter_regex); |
| |
| EXPECT_TRUE((status = rule.Configure("parameter_style:ALL_CAPS")).ok()) |
| << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), default_localparam_regex); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), kAllCapsRegex); |
| |
| // Set to CamelCase using *_style |
| EXPECT_TRUE((status = rule.Configure("localparam_style:CamelCase")).ok()) |
| << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), kUpperCamelCaseRegex); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), default_parameter_regex); |
| |
| EXPECT_TRUE((status = rule.Configure("parameter_style:CamelCase")).ok()) |
| << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), default_localparam_regex); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), kUpperCamelCaseRegex); |
| |
| // Set to ALL_CAPS | CamelCase using *_style |
| EXPECT_TRUE( |
| (status = rule.Configure("localparam_style:ALL_CAPS|CamelCase")).ok()) |
| << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), |
| absl::StrCat(kUpperCamelCaseRegex, "|", kAllCapsRegex)); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), default_parameter_regex); |
| |
| EXPECT_TRUE( |
| (status = rule.Configure("parameter_style:ALL_CAPS|CamelCase")).ok()) |
| << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), default_localparam_regex); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), |
| absl::StrCat(kUpperCamelCaseRegex, "|", kAllCapsRegex)); |
| |
| // Set *_style_regex without setting *_style, expect default configuration and |
| // regex |
| EXPECT_TRUE((status = rule.Configure("localparam_style_regex:[a-z_]+")).ok()) |
| << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), |
| absl::StrCat(default_localparam_regex, "|([a-z_]+)")); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), default_parameter_regex); |
| |
| EXPECT_TRUE((status = rule.Configure("parameter_style_regex:[a-z_]+")).ok()) |
| << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), default_localparam_regex); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), |
| absl::StrCat(default_parameter_regex, "|([a-z_]+)")); |
| |
| // Set using just a regex pattern |
| EXPECT_TRUE((status = rule.Configure( |
| "localparam_style:;localparam_style_regex:[a-z_]+")) |
| .ok()) |
| << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), "([a-z_]+)"); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), default_parameter_regex); |
| |
| EXPECT_TRUE((status = rule.Configure( |
| "parameter_style:;parameter_style_regex:[a-z_]+")) |
| .ok()) |
| << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), default_localparam_regex); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), "([a-z_]+)"); |
| |
| // Set ALL_CAPS and user regex |
| EXPECT_TRUE((status = rule.Configure( |
| "localparam_style:ALL_CAPS;localparam_style_regex:[a-z_]+")) |
| .ok()) |
| << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), |
| absl::StrCat(kAllCapsRegex, "|([a-z_]+)")); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), default_parameter_regex); |
| |
| EXPECT_TRUE((status = rule.Configure( |
| "parameter_style:ALL_CAPS;parameter_style_regex:[a-z_]+")) |
| .ok()) |
| << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), default_localparam_regex); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), |
| absl::StrCat(kAllCapsRegex, "|([a-z_]+)")); |
| |
| // Set CamelCase and user regex |
| EXPECT_TRUE((status = rule.Configure( |
| "localparam_style:CamelCase;localparam_style_regex:[a-z_]+")) |
| .ok()) |
| << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), |
| absl::StrCat(kUpperCamelCaseRegex, "|([a-z_]+)")); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), default_parameter_regex); |
| |
| EXPECT_TRUE((status = rule.Configure( |
| "parameter_style:CamelCase;parameter_style_regex:[a-z_]+")) |
| .ok()) |
| << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), default_localparam_regex); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), |
| absl::StrCat(kUpperCamelCaseRegex, "|([a-z_]+)")); |
| |
| // Set CamelCase|All_CAPS and set user regex (everything) |
| EXPECT_TRUE((status = rule.Configure("localparam_style:CamelCase|ALL_CAPS;" |
| "localparam_style_regex:[a-z_]+")) |
| .ok()) |
| << status.message(); |
| EXPECT_EQ( |
| rule.localparam_style_regex()->pattern(), |
| absl::StrCat(kUpperCamelCaseRegex, "|", kAllCapsRegex, "|([a-z_]+)")); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), default_parameter_regex); |
| |
| EXPECT_TRUE( |
| (status = rule.Configure( |
| "parameter_style:CamelCase|ALL_CAPS;parameter_style_regex:[a-z_]+")) |
| .ok()) |
| << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), default_localparam_regex); |
| EXPECT_EQ( |
| rule.parameter_style_regex()->pattern(), |
| absl::StrCat(kUpperCamelCaseRegex, "|", kAllCapsRegex, "|([a-z_]+)")); |
| |
| // Test *_style with regex and not setting *_style_regex. The rule should not |
| // violate any style |
| EXPECT_TRUE((status = rule.Configure("localparam_style:")).ok()) |
| << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), ".*"); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), default_parameter_regex); |
| |
| EXPECT_TRUE((status = rule.Configure("parameter_style:")).ok()) |
| << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), default_localparam_regex); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), ".*"); |
| |
| // test empty *style (empty string) and setting *_style_regex with empty |
| // string |
| EXPECT_TRUE( |
| (status = rule.Configure("localparam_style:;localparam_style_regex:")) |
| .ok()) |
| << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), ".*"); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), default_parameter_regex); |
| |
| EXPECT_TRUE( |
| (status = rule.Configure("parameter_style:;parameter_style_regex:")).ok()) |
| << status.message(); |
| EXPECT_EQ(rule.localparam_style_regex()->pattern(), default_localparam_regex); |
| EXPECT_EQ(rule.parameter_style_regex()->pattern(), ".*"); |
| |
| // FIXME: test invalid regex |
| EXPECT_FALSE((status = rule.Configure("localparam_style_regex:[a-z")).ok()) |
| << status.message(); |
| EXPECT_FALSE((status = rule.Configure("parameter_style_regex:[a-z")).ok()) |
| << status.message(); |
| |
| // FIXME: test invalid style |
| EXPECT_FALSE((status = rule.Configure("localparam_style:invalid_style")).ok()) |
| << status.message(); |
| EXPECT_FALSE((status = rule.Configure("parameter_style:invalid_style")).ok()) |
| << status.message(); |
| } |
| |
| } // namespace |
| } // namespace analysis |
| } // namespace verilog |