summaryrefslogtreecommitdiff
path: root/rubocop/cop/rspec/timecop_freeze.rb
blob: 70e37ecfa55c4522c3265e5f4bd3945ce571290f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# frozen_string_literal: true

module RuboCop
  module Cop
    module RSpec
      # This cop checks for `Timecop.freeze` usage in specs.
      #
      # @example
      #
      #   # bad
      #   Timecop.freeze(Time.current) { example.run }
      #
      #   # good
      #   freeze_time(Time.current) { example.run }
      #
      class TimecopFreeze < RuboCop::Cop::Base
        extend RuboCop::Cop::AutoCorrector

        include MatchRange
        MESSAGE = 'Do not use `Timecop.freeze`, use `freeze_time` instead. ' \
                  'See https://gitlab.com/gitlab-org/gitlab/-/issues/214432 for more info.'

        def_node_matcher :timecop_freeze?, <<~PATTERN
          (send (const nil? :Timecop) :freeze ?_)
        PATTERN

        def on_send(node)
          return unless timecop_freeze?(node)

          add_offense(node, message: MESSAGE) do |corrector|
            each_match_range(node.source_range, /^(Timecop\.freeze)/) do |match_range|
              corrector.replace(match_range, 'freeze_time')
            end
          end
        end
      end
    end
  end
end