-
-
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.
This cop Identifies usages of `travel_to` with argument current time and change them to use `freeze_time` instead. @example ```ruby # bad travel_to(Time.now) travel_to(DateTime.now) travel_to(Time.current) travel_to(Time.zone.now) travel_to(Time.now.in_time_zone) travel_to(Time.current.to_time) # good freeze_time ```
- Loading branch information
Showing
5 changed files
with
141 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 @@ | ||
* [#714](https://github.com/rubocop/rubocop-rails/pull/714): Add new `Rails/FreezeTime` cop. ([@ydah][]) |
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,64 @@ | ||
# frozen_string_literal: true | ||
|
||
module RuboCop | ||
module Cop | ||
module Rails | ||
# Identifies usages of `travel_to` with argument current time and | ||
# change them to use `freeze_time` instead. | ||
# | ||
# @example | ||
# # bad | ||
# travel_to(Time.now) | ||
# travel_to(DateTime.now) | ||
# travel_to(Time.current) | ||
# travel_to(Time.zone.now) | ||
# travel_to(Time.now.in_time_zone) | ||
# travel_to(Time.current.to_time) | ||
# | ||
# # good | ||
# freeze_time | ||
# | ||
class FreezeTime < Base | ||
extend AutoCorrector | ||
|
||
MSG = 'Use `freeze_time` instead of `travel_to`.' | ||
NOW_METHODS = %i[now current].freeze | ||
CONV_METHODS = %i[to_time in_time_zone].freeze | ||
RESTRICT_ON_SEND = %i[travel_to].freeze | ||
|
||
# @!method time_now?(node) | ||
def_node_matcher :time_now?, <<~PATTERN | ||
(const nil? {:Time :DateTime}) | ||
PATTERN | ||
|
||
# @!method zoned_time_now?(node) | ||
def_node_matcher :zoned_time_now?, <<~PATTERN | ||
(send (const nil? :Time) :zone) | ||
PATTERN | ||
|
||
def on_send(node) | ||
child_node, method_name = *node.first_argument.children | ||
if current_time?(child_node, method_name) || | ||
current_time_with_convertion?(child_node, method_name) | ||
add_offense(node) { |corrector| corrector.replace(node, 'freeze_time') } | ||
end | ||
end | ||
|
||
private | ||
|
||
def current_time?(node, method_name) | ||
return false unless NOW_METHODS.include?(method_name) | ||
|
||
node.send_type? ? zoned_time_now?(node) : time_now?(node) | ||
end | ||
|
||
def current_time_with_convertion?(node, method_name) | ||
return false unless CONV_METHODS.include?(method_name) | ||
|
||
child_node, child_method_name = *node.children | ||
current_time?(child_node, child_method_name) | ||
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,70 @@ | ||
# frozen_string_literal: true | ||
|
||
RSpec.describe RuboCop::Cop::Rails::FreezeTime, :config do | ||
it 'registers an offense when using `travel_to`' do | ||
expect_offense(<<~RUBY) | ||
travel_to(Time.now) | ||
^^^^^^^^^^^^^^^^^^^ Use `freeze_time` instead of `travel_to`. | ||
travel_to(DateTime.now) | ||
^^^^^^^^^^^^^^^^^^^^^^^ Use `freeze_time` instead of `travel_to`. | ||
travel_to(Time.current) | ||
^^^^^^^^^^^^^^^^^^^^^^^ Use `freeze_time` instead of `travel_to`. | ||
travel_to(Time.zone.now) | ||
^^^^^^^^^^^^^^^^^^^^^^^^ Use `freeze_time` instead of `travel_to`. | ||
travel_to(Time.now.in_time_zone) | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use `freeze_time` instead of `travel_to`. | ||
travel_to(Time.current.to_time) | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use `freeze_time` instead of `travel_to`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
freeze_time | ||
freeze_time | ||
freeze_time | ||
freeze_time | ||
freeze_time | ||
freeze_time | ||
RUBY | ||
end | ||
|
||
it 'registers an offense when using `travel_to` with `do-end` block' do | ||
expect_offense(<<~RUBY) | ||
travel_to(Time.now) do | ||
^^^^^^^^^^^^^^^^^^^ Use `freeze_time` instead of `travel_to`. | ||
do_something | ||
end | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
freeze_time do | ||
do_something | ||
end | ||
RUBY | ||
end | ||
|
||
it 'registers an offense when using `travel_to` with `{}` block' do | ||
expect_offense(<<~RUBY) | ||
travel_to(Time.now) { do_something } | ||
^^^^^^^^^^^^^^^^^^^ Use `freeze_time` instead of `travel_to`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
freeze_time { do_something } | ||
RUBY | ||
end | ||
|
||
it 'does not register an offense when using `freeze_time`' do | ||
expect_no_offenses(<<~RUBY) | ||
freeze_time | ||
RUBY | ||
end | ||
|
||
it 'does not register an offense when using `travel_to` with argument is not now' do | ||
expect_no_offenses(<<~RUBY) | ||
travel_to(Time.current.yesterday) | ||
travel_to(Time.zone.tomorrow) | ||
travel_to(DateTime.next_day) | ||
travel_to(Time.zone.yesterday.in_time_zone) | ||
RUBY | ||
end | ||
end |