Sha256: fa75f6f0a99f12cc1567ac6f3fa8ebc298216bafde57b99edb20efe6c144c073

Contents?: true

Size: 1.98 KB

Versions: 5

Compression:

Stored size: 1.98 KB

Contents

# frozen_string_literal: true
#
# Copyright:: 2020, Chef Software Inc.
# Author:: Tim Smith (<tsmith@chef.io>)
#
# 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 ChefCorrectness
        # When setting a node attribute as the default value for a custom resource property, wrap the node attribute in `lazy {}` so that its value is available when the resource executes.
        #
        # @example
        #
        #   # bad
        #   property :Something, String, default: node['hostname']
        #
        #   # good
        #   property :Something, String, default: lazy { node['hostname'] }
        #
        class LazyEvalNodeAttributeDefaults < Base
          extend AutoCorrector
          include RuboCop::Chef::CookbookHelpers

          MSG = 'When setting a node attribute as the default value for a custom resource property, wrap the node attribute in `lazy {}` so that its value is available when the resource executes.'

          def_node_matcher :non_lazy_node_attribute_default?, <<-PATTERN
            (send nil? :property (sym _) ... (hash <(pair (sym :default) $(send (send _ :node) :[] _) ) ...>))
          PATTERN

          def on_send(node)
            non_lazy_node_attribute_default?(node) do |default|
              add_offense(default, message: MSG, severity: :refactor) do |corrector|
                corrector.replace(default, "lazy { #{default.source} }")
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
cookstyle-6.21.1 lib/rubocop/cop/chef/correctness/lazy_eval_node_attribute_defaults.rb
cookstyle-6.20.2 lib/rubocop/cop/chef/correctness/lazy_eval_node_attribute_defaults.rb
cookstyle-6.20.1 lib/rubocop/cop/chef/correctness/lazy_eval_node_attribute_defaults.rb
cookstyle-6.19.11 lib/rubocop/cop/chef/correctness/lazy_eval_node_attribute_defaults.rb
cookstyle-6.19.5 lib/rubocop/cop/chef/correctness/lazy_eval_node_attribute_defaults.rb