mirror of
https://gitea.invidious.io/iv-org/shard-ameba.git
synced 2024-08-15 00:53:29 +00:00
Remove “join” from the list of trigger methods
This commit is contained in:
parent
9a25214bb5
commit
2694a0c865
2 changed files with 13 additions and 16 deletions
|
@ -6,30 +6,29 @@ module Ameba::Rule::Performance
|
||||||
describe MapInsteadOfBlock do
|
describe MapInsteadOfBlock do
|
||||||
it "passes if there is no potential performance improvements" do
|
it "passes if there is no potential performance improvements" do
|
||||||
source = Source.new %(
|
source = Source.new %(
|
||||||
(1..3).join(&.to_s)
|
|
||||||
(1..3).sum(&.*(2))
|
(1..3).sum(&.*(2))
|
||||||
(1..3).product(&.*(2))
|
(1..3).product(&.*(2))
|
||||||
)
|
)
|
||||||
subject.catch(source).should be_valid
|
subject.catch(source).should be_valid
|
||||||
end
|
end
|
||||||
|
|
||||||
it "reports if there is map followed by join without a block" do
|
it "reports if there is map followed by sum without a block" do
|
||||||
source = Source.new %(
|
source = Source.new %(
|
||||||
(1..3).map(&.to_s).join
|
(1..3).map(&.to_u64).sum
|
||||||
)
|
)
|
||||||
subject.catch(source).should_not be_valid
|
subject.catch(source).should_not be_valid
|
||||||
end
|
end
|
||||||
|
|
||||||
it "reports if there is map followed by join without a block (with argument)" do
|
it "reports if there is map followed by sum without a block (with argument)" do
|
||||||
source = Source.new %(
|
source = Source.new %(
|
||||||
(1..3).map(&.to_s).join('.')
|
(1..3).map(&.to_u64).sum(0)
|
||||||
)
|
)
|
||||||
subject.catch(source).should_not be_valid
|
subject.catch(source).should_not be_valid
|
||||||
end
|
end
|
||||||
|
|
||||||
it "reports if there is map followed by join with a block" do
|
it "reports if there is map followed by sum with a block" do
|
||||||
source = Source.new %(
|
source = Source.new %(
|
||||||
(1..3).map(&.to_s).join(&.itself)
|
(1..3).map(&.to_u64).sum(&.itself)
|
||||||
)
|
)
|
||||||
subject.catch(source).should_not be_valid
|
subject.catch(source).should_not be_valid
|
||||||
end
|
end
|
||||||
|
@ -37,7 +36,7 @@ module Ameba::Rule::Performance
|
||||||
context "macro" do
|
context "macro" do
|
||||||
it "doesn't report in macro scope" do
|
it "doesn't report in macro scope" do
|
||||||
source = Source.new %(
|
source = Source.new %(
|
||||||
{{ [1, 2, 3].map(&.to_s).join }}
|
{{ [1, 2, 3].map(&.to_u64).sum }}
|
||||||
)
|
)
|
||||||
subject.catch(source).should be_valid
|
subject.catch(source).should be_valid
|
||||||
end
|
end
|
||||||
|
@ -45,15 +44,15 @@ module Ameba::Rule::Performance
|
||||||
|
|
||||||
it "reports rule, pos and message" do
|
it "reports rule, pos and message" do
|
||||||
s = Source.new %(
|
s = Source.new %(
|
||||||
(1..3).map(&.to_s).join
|
(1..3).map(&.to_u64).sum
|
||||||
), "source.cr"
|
), "source.cr"
|
||||||
subject.catch(s).should_not be_valid
|
subject.catch(s).should_not be_valid
|
||||||
issue = s.issues.first
|
issue = s.issues.first
|
||||||
|
|
||||||
issue.rule.should_not be_nil
|
issue.rule.should_not be_nil
|
||||||
issue.location.to_s.should eq "source.cr:1:8"
|
issue.location.to_s.should eq "source.cr:1:8"
|
||||||
issue.end_location.to_s.should eq "source.cr:1:24"
|
issue.end_location.to_s.should eq "source.cr:1:25"
|
||||||
issue.message.should eq "Use `join {...}` instead of `map {...}.join`"
|
issue.message.should eq "Use `sum {...}` instead of `map {...}.sum`"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,18 +1,16 @@
|
||||||
module Ameba::Rule::Performance
|
module Ameba::Rule::Performance
|
||||||
# This rule is used to identify usage of `join/sum/product` calls
|
# This rule is used to identify usage of `sum/product` calls
|
||||||
# that follow `map`.
|
# that follow `map`.
|
||||||
#
|
#
|
||||||
# For example, this is considered inefficient:
|
# For example, this is considered inefficient:
|
||||||
#
|
#
|
||||||
# ```
|
# ```
|
||||||
# (1..3).map(&.to_s).join('.')
|
|
||||||
# (1..3).map(&.*(2)).sum
|
# (1..3).map(&.*(2)).sum
|
||||||
# ```
|
# ```
|
||||||
#
|
#
|
||||||
# And can be written as this:
|
# And can be written as this:
|
||||||
#
|
#
|
||||||
# ```
|
# ```
|
||||||
# (1..3).join('.', &.to_s)
|
|
||||||
# (1..3).sum(&.*(2))
|
# (1..3).sum(&.*(2))
|
||||||
# ```
|
# ```
|
||||||
#
|
#
|
||||||
|
@ -25,10 +23,10 @@ module Ameba::Rule::Performance
|
||||||
class MapInsteadOfBlock < Base
|
class MapInsteadOfBlock < Base
|
||||||
properties do
|
properties do
|
||||||
enabled false
|
enabled false
|
||||||
description "Identifies usage of `join/sum/product` calls that follow `map`."
|
description "Identifies usage of `sum/product` calls that follow `map`."
|
||||||
end
|
end
|
||||||
|
|
||||||
CALL_NAMES = %w(join sum product)
|
CALL_NAMES = %w(sum product)
|
||||||
MAP_NAME = "map"
|
MAP_NAME = "map"
|
||||||
MSG = "Use `%s {...}` instead of `map {...}.%s`"
|
MSG = "Use `%s {...}` instead of `map {...}.%s`"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue