mirror of
https://gitea.invidious.io/iv-org/shard-ameba.git
synced 2024-08-15 00:53:29 +00:00
parent
946ec67fae
commit
a5dd07e9e4
7 changed files with 355 additions and 43 deletions
|
@ -0,0 +1,26 @@
|
|||
require "../../../spec_helper"
|
||||
|
||||
module Ameba::AST
|
||||
source = Source.new ""
|
||||
rule = RedundantControlExpressionRule.new
|
||||
|
||||
describe RedundantControlExpressionVisitor do
|
||||
node = as_node %(
|
||||
a = 1
|
||||
b = 2
|
||||
return a + b
|
||||
)
|
||||
subject = RedundantControlExpressionVisitor.new(rule, source, node)
|
||||
|
||||
it "assigns valid attributes" do
|
||||
subject.rule.should eq rule
|
||||
subject.source.should eq source
|
||||
subject.node.should eq node
|
||||
end
|
||||
|
||||
it "fires a callback with a valid node" do
|
||||
rule.nodes.size.should eq 1
|
||||
rule.nodes.first.to_s.should eq "return a + b"
|
||||
end
|
||||
end
|
||||
end
|
179
spec/ameba/rule/style/redundant_next_spec.cr
Normal file
179
spec/ameba/rule/style/redundant_next_spec.cr
Normal file
|
@ -0,0 +1,179 @@
|
|||
require "../../../spec_helper"
|
||||
|
||||
module Ameba::Rule::Style
|
||||
subject = RedundantNext.new
|
||||
|
||||
describe RedundantNext do
|
||||
it "does not report if there is no redundant next" do
|
||||
s = Source.new %(
|
||||
array.map { |x| x + 1 }
|
||||
)
|
||||
subject.catch(s).should be_valid
|
||||
end
|
||||
|
||||
it "reports if there is redundant next in the block" do
|
||||
s = Source.new %(
|
||||
block do |v|
|
||||
p v + 1
|
||||
next
|
||||
end
|
||||
)
|
||||
subject.catch(s).should_not be_valid
|
||||
end
|
||||
|
||||
it "reports if there is redundant next with argument in the block" do
|
||||
s = Source.new %(
|
||||
block do |v|
|
||||
next v + 1
|
||||
end
|
||||
)
|
||||
subject.catch(s).should_not be_valid
|
||||
end
|
||||
|
||||
context "if" do
|
||||
it "doesn't report if there is not redundant next in if branch" do
|
||||
s = Source.new %(
|
||||
block do |v|
|
||||
next if v > 10
|
||||
end
|
||||
)
|
||||
subject.catch(s).should be_valid
|
||||
end
|
||||
|
||||
it "reports if there is redundant next in if/else branch" do
|
||||
s = Source.new %(
|
||||
block do |a|
|
||||
if a > 0
|
||||
next a + 1
|
||||
else
|
||||
next a + 2
|
||||
end
|
||||
end
|
||||
)
|
||||
subject.catch(s).should_not be_valid
|
||||
s.issues.size.should eq 2
|
||||
s.issues.first.location.to_s.should eq ":3:5"
|
||||
s.issues.last.location.to_s.should eq ":5:5"
|
||||
end
|
||||
end
|
||||
|
||||
context "unless" do
|
||||
it "doesn't report if there is no redundant next in unless branch" do
|
||||
s = Source.new %(
|
||||
block do |v|
|
||||
next unless v > 10
|
||||
end
|
||||
)
|
||||
subject.catch(s).should be_valid
|
||||
end
|
||||
|
||||
it "reports if there is redundant next in unless/else branch" do
|
||||
s = Source.new %(
|
||||
block do |a|
|
||||
unless a > 0
|
||||
next a + 1
|
||||
else
|
||||
next a + 2
|
||||
end
|
||||
end
|
||||
)
|
||||
subject.catch(s).should_not be_valid
|
||||
s.issues.size.should eq 2
|
||||
s.issues.first.location.to_s.should eq ":3:5"
|
||||
s.issues.last.location.to_s.should eq ":5:5"
|
||||
end
|
||||
end
|
||||
|
||||
context "expressions" do
|
||||
it "doesn't report if there is no redundant next in expressions" do
|
||||
s = Source.new %(
|
||||
block do |v|
|
||||
a = 1
|
||||
a + v
|
||||
end
|
||||
)
|
||||
subject.catch(s).should be_valid
|
||||
end
|
||||
|
||||
it "reports if there is redundant next in expressions" do
|
||||
s = Source.new %(
|
||||
block do |a|
|
||||
a = 1
|
||||
next
|
||||
end
|
||||
)
|
||||
subject.catch(s).should_not be_valid
|
||||
s.issues.size.should eq 1
|
||||
s.issues.first.location.to_s.should eq ":3:3"
|
||||
end
|
||||
end
|
||||
|
||||
context "binary-op" do
|
||||
it "doesn't report if there is no redundant next in binary op" do
|
||||
s = Source.new %(
|
||||
block do |v|
|
||||
a && v
|
||||
end
|
||||
)
|
||||
subject.catch(s).should be_valid
|
||||
end
|
||||
|
||||
it "reports if there is redundant next in binary op" do
|
||||
s = Source.new %(
|
||||
block do |a|
|
||||
a && next
|
||||
end
|
||||
)
|
||||
subject.catch(s).should_not be_valid
|
||||
s.issues.size.should eq 1
|
||||
s.issues.first.location.to_s.should eq ":2:8"
|
||||
end
|
||||
end
|
||||
|
||||
context "expception handler" do
|
||||
it "doesn't report if there is no redundant next in exception handler" do
|
||||
s = Source.new %(
|
||||
block do |v|
|
||||
v + 1
|
||||
rescue e
|
||||
next if v > 0
|
||||
end
|
||||
)
|
||||
subject.catch(s).should be_valid
|
||||
end
|
||||
|
||||
it "reports if there is redundant next in exception handler" do
|
||||
s = Source.new %(
|
||||
block do |a|
|
||||
next a + 1
|
||||
rescue ArgumentError
|
||||
next a + 2
|
||||
rescue Exception
|
||||
a + 2
|
||||
next
|
||||
end
|
||||
)
|
||||
subject.catch(s).should_not be_valid
|
||||
s.issues.size.should eq 3
|
||||
s.issues[0].location.to_s.should eq ":2:3"
|
||||
s.issues[1].location.to_s.should eq ":4:3"
|
||||
s.issues[2].location.to_s.should eq ":7:3"
|
||||
end
|
||||
end
|
||||
|
||||
it "reports correct rule, error message and position" do
|
||||
s = Source.new %(
|
||||
block do |v|
|
||||
next v + 1
|
||||
end
|
||||
), "source.cr"
|
||||
subject.catch(s).should_not be_valid
|
||||
s.issues.size.should eq 1
|
||||
issue = s.issues.first
|
||||
issue.rule.should_not be_nil
|
||||
issue.location.to_s.should eq "source.cr:2:3"
|
||||
issue.end_location.to_s.should eq "source.cr:2:12"
|
||||
issue.message.should eq "Redundant `next` detected"
|
||||
end
|
||||
end
|
||||
end
|
|
@ -81,6 +81,17 @@ module Ameba
|
|||
end
|
||||
end
|
||||
|
||||
struct RedundantControlExpressionRule < Rule::Base
|
||||
getter nodes = [] of Crystal::ASTNode
|
||||
|
||||
def test(source)
|
||||
end
|
||||
|
||||
def test(source, node, visitor : AST::RedundantControlExpressionVisitor)
|
||||
nodes << node
|
||||
end
|
||||
end
|
||||
|
||||
# A rule that always raises an error
|
||||
struct RaiseRule < Rule::Base
|
||||
property should_raise = false
|
||||
|
@ -145,6 +156,7 @@ module Ameba
|
|||
Crystal::While,
|
||||
Crystal::MacroLiteral,
|
||||
Crystal::Expressions,
|
||||
Crystal::ControlExpression,
|
||||
]
|
||||
|
||||
def initialize(node)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue