summaryrefslogtreecommitdiff
path: root/rubocop/cop/gitlab/change_timezone.rb
blob: a5d9393b6c3b88325df22f4322143f6b8b3ae2b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module RuboCop
  module Cop
    module Gitlab
      class ChangeTimezone < RuboCop::Cop::Base
        MSG = "Do not change timezone in the runtime (application or rspec), " \
          "it could result in silently modifying other behavior."

        def_node_matcher :changing_timezone?, <<~PATTERN
          (send (const nil? :Time) :zone= ...)
        PATTERN

        def on_send(node)
          changing_timezone?(node) { add_offense(node) }
        end
      end
    end
  end
end