2018-06-16 11:50:59 +00:00
|
|
|
require "../../../spec_helper"
|
2017-11-04 20:54:27 +00:00
|
|
|
|
|
|
|
module Ameba
|
2018-06-16 11:50:59 +00:00
|
|
|
subject = Rule::Style::MethodNames.new
|
2017-11-04 20:54:27 +00:00
|
|
|
|
2017-11-07 20:02:51 +00:00
|
|
|
private def it_reports_method_name(code, expected)
|
2017-11-04 20:54:27 +00:00
|
|
|
it "reports method name #{expected}" do
|
2017-11-07 20:02:51 +00:00
|
|
|
s = Source.new code
|
2018-06-16 11:50:59 +00:00
|
|
|
Rule::Style::MethodNames.new.catch(s).should_not be_valid
|
2018-06-10 21:15:12 +00:00
|
|
|
s.issues.first.message.should contain expected
|
2017-11-04 20:54:27 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-06-16 11:50:59 +00:00
|
|
|
describe Rule::Style::MethodNames do
|
2017-11-04 20:54:27 +00:00
|
|
|
it "passes if method names are underscore-cased" do
|
|
|
|
s = Source.new %(
|
|
|
|
class Person
|
|
|
|
def first_name
|
|
|
|
end
|
|
|
|
|
|
|
|
def date_of_birth
|
|
|
|
end
|
|
|
|
|
|
|
|
def homepage_url
|
|
|
|
end
|
|
|
|
|
|
|
|
def valid?
|
|
|
|
end
|
|
|
|
|
|
|
|
def name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)
|
|
|
|
subject.catch(s).should be_valid
|
|
|
|
end
|
|
|
|
|
|
|
|
it_reports_method_name %(def firstName; end), "first_name"
|
|
|
|
it_reports_method_name %(def date_of_Birth; end), "date_of_birth"
|
|
|
|
it_reports_method_name %(def homepageURL; end), "homepage_url"
|
|
|
|
|
|
|
|
it "reports rule, pos and message" do
|
|
|
|
s = Source.new %(
|
2018-11-24 22:54:25 +00:00
|
|
|
def bad_Name(a)
|
2017-11-04 20:54:27 +00:00
|
|
|
end
|
2017-11-07 20:02:51 +00:00
|
|
|
), "source.cr"
|
2017-11-04 20:54:27 +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-11-24 22:54:25 +00:00
|
|
|
issue.location.to_s.should eq "source.cr:1:5"
|
|
|
|
issue.end_location.to_s.should eq "source.cr:1:12"
|
2018-06-10 21:15:12 +00:00
|
|
|
issue.message.should eq(
|
2017-11-04 20:54:27 +00:00
|
|
|
"Method name should be underscore-cased: bad_name, not bad_Name"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|