2018-06-16 11:50:59 +00:00
|
|
|
require "../../../spec_helper"
|
2017-11-05 20:08:01 +00:00
|
|
|
|
|
|
|
module Ameba
|
2018-06-16 11:50:59 +00:00
|
|
|
subject = Rule::Style::ConstantNames.new
|
2017-11-05 20:08:01 +00:00
|
|
|
|
2021-10-27 22:58:58 +00:00
|
|
|
private def it_reports_constant(name, value, expected)
|
2017-11-05 20:08:01 +00:00
|
|
|
it "reports constant name #{expected}" do
|
2021-10-27 22:58:58 +00:00
|
|
|
rule = Rule::Style::ConstantNames.new
|
|
|
|
expect_issue rule, <<-CRYSTAL, name: name
|
|
|
|
%{name} = #{value}
|
|
|
|
# ^{name} error: Constant name should be screaming-cased: #{expected}, not #{name}
|
|
|
|
CRYSTAL
|
2017-11-05 20:08:01 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-06-16 11:50:59 +00:00
|
|
|
describe Rule::Style::ConstantNames do
|
2017-11-05 20:08:01 +00:00
|
|
|
it "passes if type names are screaming-cased" do
|
2021-10-27 22:58:58 +00:00
|
|
|
expect_no_issues subject, <<-CRYSTAL
|
2017-11-05 20:08:01 +00:00
|
|
|
LUCKY_NUMBERS = [3, 7, 11]
|
|
|
|
DOCUMENTATION_URL = "http://crystal-lang.org/docs"
|
|
|
|
|
|
|
|
Int32
|
|
|
|
|
|
|
|
s : String = "str"
|
|
|
|
|
|
|
|
def works(n : Int32)
|
|
|
|
end
|
|
|
|
|
2020-04-13 06:38:05 +00:00
|
|
|
Log = ::Log.for("db")
|
|
|
|
|
2017-11-05 20:08:01 +00:00
|
|
|
a = 1
|
|
|
|
myVar = 2
|
|
|
|
m_var = 3
|
2021-10-27 22:58:58 +00:00
|
|
|
CRYSTAL
|
2017-11-05 20:08:01 +00:00
|
|
|
end
|
|
|
|
|
2021-10-27 22:58:58 +00:00
|
|
|
# it_reports_constant "MyBadConstant", "1", "MYBADCONSTANT"
|
|
|
|
it_reports_constant "Wrong_NAME", "2", "WRONG_NAME"
|
|
|
|
it_reports_constant "Wrong_Name", "3", "WRONG_NAME"
|
2017-11-05 20:08:01 +00:00
|
|
|
|
|
|
|
it "reports rule, pos and message" do
|
|
|
|
s = Source.new %(
|
2020-04-13 06:38:05 +00:00
|
|
|
Const_Name = 1
|
2017-11-07 20:02:51 +00:00
|
|
|
), "source.cr"
|
2017-11-05 20:08:01 +00:00
|
|
|
subject.catch(s).should_not be_valid
|
2018-06-10 21:15:12 +00:00
|
|
|
issue = s.issues.first
|
|
|
|
issue.rule.should_not be_nil
|
2018-09-07 12:07:03 +00:00
|
|
|
issue.location.to_s.should eq "source.cr:1:1"
|
2020-04-13 06:38:05 +00:00
|
|
|
issue.end_location.to_s.should eq "source.cr:1:10"
|
2018-06-10 21:15:12 +00:00
|
|
|
issue.message.should eq(
|
2020-04-13 06:38:05 +00:00
|
|
|
"Constant name should be screaming-cased: CONST_NAME, not Const_Name"
|
2017-11-05 20:08:01 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|