shard-ameba/spec/ameba/rule/style/negated_conditions_in_unles...

70 lines
1.5 KiB
Crystal
Raw Normal View History

require "../../../spec_helper"
2017-11-01 19:29:37 +00:00
module Ameba::Rule::Style
2017-11-01 19:29:37 +00:00
subject = NegatedConditionsInUnless.new
describe NegatedConditionsInUnless do
it "passes with a unless without negated condition" do
s = Source.new %(
unless a
:ok
end
:ok unless b
unless s.empty?
:ok
end
)
2017-11-01 20:05:41 +00:00
subject.catch(s).should be_valid
2017-11-01 19:29:37 +00:00
end
it "fails if there is a negated condition in unless" do
s = Source.new %(
unless !a
:nok
end
)
2017-11-01 20:05:41 +00:00
subject.catch(s).should_not be_valid
2017-11-01 19:29:37 +00:00
end
it "fails if one of AND conditions is negated" do
s = Source.new %(
unless a && !b
:nok
end
)
2017-11-01 20:05:41 +00:00
subject.catch(s).should_not be_valid
2017-11-01 19:29:37 +00:00
end
it "fails if one of OR conditions is negated" do
s = Source.new %(
unless a || !b
:nok
end
)
2017-11-01 20:05:41 +00:00
subject.catch(s).should_not be_valid
2017-11-01 19:29:37 +00:00
end
it "fails if one of inner conditions is negated" do
s = Source.new %(
unless a && (b || !c)
:nok
end
)
2017-11-01 20:05:41 +00:00
subject.catch(s).should_not be_valid
2017-11-01 19:29:37 +00:00
end
it "reports rule, pos and message" do
s = Source.new ":nok unless !s.empty?", "source.cr"
2017-11-01 20:05:41 +00:00
subject.catch(s).should_not be_valid
2017-11-01 19:29:37 +00:00
2018-06-10 21:15:12 +00:00
issue = s.issues.first
issue.rule.should_not be_nil
issue.location.to_s.should eq "source.cr:1:1"
2018-11-24 17:38:13 +00:00
issue.end_location.to_s.should eq "source.cr:1:21"
2018-06-10 21:15:12 +00:00
issue.message.should eq "Avoid negated conditions in unless blocks"
2017-11-01 19:29:37 +00:00
end
end
end