-
-
Notifications
You must be signed in to change notification settings - Fork 263
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
102 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* [#1376](https://github.com/rubocop/rubocop-rails/issues/1376): Add new `Rails/Env` cop. ([@cdudas17][]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# frozen_string_literal: true | ||
|
||
module RuboCop | ||
module Cop | ||
module Rails | ||
# Checks for usage of `Rails.env` which can be replaced with Feature Flags | ||
# | ||
# @example | ||
# | ||
# # bad | ||
# Rails.env.production? || Rails.env.local? | ||
# | ||
# # good | ||
# if FeatureFlag.enabled?(:new_feature) | ||
# # new feature code | ||
# end | ||
# | ||
class Env < Base | ||
MSG = 'Use Feature Flags or config instead of `Rails.env`.' | ||
RESTRICT_ON_SEND = %i[env].freeze | ||
# This allow list is derived from (Rails.env.methods - Object.methods).select { |m| m.to_s.end_with?('?') } | ||
# and then removing the environment specific methods like development?, test?, production?, local? | ||
ALLOWED_LIST = Set.new( | ||
%i[ | ||
unicode_normalized? | ||
exclude? | ||
empty? | ||
starts_with? | ||
acts_like_string? | ||
ends_with? | ||
contains_mb4_chars? | ||
casecmp? | ||
match? | ||
blank_as? | ||
start_with? | ||
end_with? | ||
is_utf8? | ||
valid_encoding? | ||
ascii_only? | ||
colorized? | ||
between? | ||
] | ||
).freeze | ||
|
||
def on_send(node) | ||
return unless node.receiver&.const_name == 'Rails' | ||
|
||
parent = node.parent | ||
return unless parent&.predicate_method? | ||
|
||
return if ALLOWED_LIST.include?(parent.method_name) | ||
|
||
add_offense(parent) | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# frozen_string_literal: true | ||
|
||
RSpec.describe RuboCop::Cop::Rails::Env, :config do | ||
it 'registers an offense for `Rails.env.development? || Rails.env.test?`' do | ||
expect_offense(<<~RUBY) | ||
Rails.env.development? || Rails.env.test? | ||
^^^^^^^^^^^^^^^ Use Feature Flags or config instead of `Rails.env`. | ||
^^^^^^^^^^^^^^^^^^^^^^ Use Feature Flags or config instead of `Rails.env`. | ||
RUBY | ||
end | ||
|
||
it 'registers an offense for `Rails.env.production?`' do | ||
expect_offense(<<~RUBY) | ||
Rails.env.production? | ||
^^^^^^^^^^^^^^^^^^^^^ Use Feature Flags or config instead of `Rails.env`. | ||
RUBY | ||
end | ||
|
||
it 'does not register an offense for `Rails.env`' do | ||
expect_no_offenses(<<~RUBY) | ||
Rails.env | ||
RUBY | ||
end | ||
|
||
it 'does not register an offense for valid Rails.env methods' do | ||
expect_no_offenses(<<~RUBY) | ||
Rails.env.capitalize | ||
Rails.env.empty? | ||
RUBY | ||
end | ||
|
||
it 'does not register an offense for unrelated config' do | ||
expect_no_offenses(<<~RUBY) | ||
Rails.environment | ||
RUBY | ||
end | ||
end |