mirror of
https://gitea.invidious.io/iv-org/shard-ameba.git
synced 2024-08-15 00:53:29 +00:00
Add Lint/NotNilWithNoBang
rule
This commit is contained in:
parent
8d4a4dfd7a
commit
9515e624c3
2 changed files with 136 additions and 0 deletions
75
spec/ameba/rule/lint/not_nil_with_no_bang_spec.cr
Normal file
75
spec/ameba/rule/lint/not_nil_with_no_bang_spec.cr
Normal file
|
@ -0,0 +1,75 @@
|
|||
require "../../../spec_helper"
|
||||
|
||||
module Ameba::Rule::Lint
|
||||
subject = NotNilWithNoBang.new
|
||||
|
||||
describe NotNilWithNoBang do
|
||||
it "passes for valid cases" do
|
||||
expect_no_issues subject, <<-CRYSTAL
|
||||
(1..3).index(1).not_nil!(:foo)
|
||||
(1..3).index { |i| i > 2 }.not_nil!(:foo)
|
||||
(1..3).find { |i| i > 2 }.not_nil!(:foo)
|
||||
CRYSTAL
|
||||
end
|
||||
|
||||
it "reports if there is an `index` call followed by `not_nil!`" do
|
||||
source = expect_issue subject, <<-CRYSTAL
|
||||
(1..3).index(1).not_nil!
|
||||
# ^^^^^^^^^^^^^^^^^ error: Use `index! {...}` instead of `index {...}.not_nil!`
|
||||
CRYSTAL
|
||||
|
||||
expect_correction source, <<-CRYSTAL
|
||||
(1..3).index!(1)
|
||||
CRYSTAL
|
||||
end
|
||||
|
||||
it "reports if there is an `index` call with block followed by `not_nil!`" do
|
||||
source = expect_issue subject, <<-CRYSTAL
|
||||
(1..3).index { |i| i > 2 }.not_nil!
|
||||
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ error: Use `index! {...}` instead of `index {...}.not_nil!`
|
||||
CRYSTAL
|
||||
|
||||
expect_correction source, <<-CRYSTAL
|
||||
(1..3).index! { |i| i > 2 }
|
||||
CRYSTAL
|
||||
end
|
||||
|
||||
it "reports if there is a `find` call with block followed by `not_nil!`" do
|
||||
source = expect_issue subject, <<-CRYSTAL
|
||||
(1..3).find { |i| i > 2 }.not_nil!
|
||||
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^ error: Use `find! {...}` instead of `find {...}.not_nil!`
|
||||
CRYSTAL
|
||||
|
||||
expect_correction source, <<-CRYSTAL
|
||||
(1..3).find! { |i| i > 2 }
|
||||
CRYSTAL
|
||||
end
|
||||
|
||||
it "passes if there is a `find` call without block followed by `not_nil!`" do
|
||||
expect_no_issues subject, <<-CRYSTAL
|
||||
(1..3).find(1).not_nil!
|
||||
CRYSTAL
|
||||
end
|
||||
|
||||
context "macro" do
|
||||
it "doesn't report in macro scope" do
|
||||
expect_no_issues subject, <<-CRYSTAL
|
||||
{{ [1, 2, 3].index(1).not_nil! }}
|
||||
CRYSTAL
|
||||
end
|
||||
end
|
||||
|
||||
it "reports rule, pos and message" do
|
||||
s = Source.new %(
|
||||
(1..3).index(1).not_nil!
|
||||
), "source.cr"
|
||||
subject.catch(s).should_not be_valid
|
||||
issue = s.issues.first
|
||||
|
||||
issue.rule.should_not be_nil
|
||||
issue.location.to_s.should eq "source.cr:1:8"
|
||||
issue.end_location.to_s.should eq "source.cr:1:24"
|
||||
issue.message.should eq "Use `index! {...}` instead of `index {...}.not_nil!`"
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue