Sha256: dc8b06f93adc779fc56cc2341679edb601adff1555cb7a3ecc4b8a904a26c57e

Contents?: true

Size: 1.64 KB

Versions: 6

Compression:

Stored size: 1.64 KB

Contents

#
# Copyright:: Copyright 2019-2019, Chef Software Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
module RuboCop
  module Cop
    module Chef
      module ChefDeprecations
        # The node.set method has been removed in Chef-13 and must be replaced by node.normal.
        #
        # Note that node.normal keeps the semantics identical, but the use of node.normal is
        # also discouraged.
        #
        # @example
        #
        #   # bad
        #   node.set['foo'] = true
        #
        #   # good
        #   node.normal['foo'] = true
        #
        class NodeSet < Cop
          MSG = 'Do not use node.set. Replace with node.normal to keep identical behavior.'.freeze

          def_node_matcher :node_set?, <<-PATTERN
            (send (send _ :node) $:set)
          PATTERN

          def on_send(node)
            node_set?(node) do
              add_offense(node, location: :selector, message: MSG, severity: :refactor)
            end
          end

          def autocorrect(node)
            lambda do |corrector|
              corrector.replace(node.loc.selector, 'normal')
            end
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
cookstyle-5.9.3 lib/rubocop/cop/chef/deprecation/node_set.rb
cookstyle-5.8.1 lib/rubocop/cop/chef/deprecation/node_set.rb
cookstyle-5.7.0 lib/rubocop/cop/chef/deprecation/node_set.rb
cookstyle-5.6.5 lib/rubocop/cop/chef/deprecation/node_set.rb
cookstyle-5.6.2 lib/rubocop/cop/chef/deprecation/node_set.rb
cookstyle-5.5.7 lib/rubocop/cop/chef/deprecation/node_set.rb