Sha256: bd5de4fed07c172e0c32d833bb2ab2ea265c695b6e784c19fa7d4346ee4cf737

Contents?: true

Size: 1.91 KB

Versions: 35

Compression:

Stored size: 1.91 KB

Contents

# frozen_string_literal: true
#
# Copyright:: 2019, 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 Deprecations
        # In Chef Infra Client 13 the "file" variable for use within the verify property was replaced with the "path" variable.
        #
        # @example
        #
        #   #### incorrect
        #   file '/etc/nginx.conf' do
        #     verify 'nginx -t -c %{file}'
        #   end
        #
        #   #### correct
        #   file '/etc/nginx.conf' do
        #     verify 'nginx -t -c %{path}'
        #   end
        #
        class VerifyPropertyUsesFileExpansion < Base
          include RuboCop::Chef::CookbookHelpers
          extend TargetChefVersion
          extend AutoCorrector

          minimum_target_chef_version '12.5'

          MSG = "Use the 'path' variable in the verify property and not the 'file' variable which was removed in Chef Infra Client 13."

          def on_block(node)
            match_property_in_resource?(nil, 'verify', node) do |verify|
              return unless verify.source.match?(/%{file}/)
              add_offense(verify, message: MSG, severity: :warning) do |corrector|
                corrector.replace(verify.loc.expression, verify.loc.expression.source.gsub('%{file}', '%{path}'))
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

35 entries across 35 versions & 1 rubygems

Version Path
cookstyle-7.15.1 lib/rubocop/cop/chef/deprecation/verify_property_file_expansion.rb
cookstyle-7.15.0 lib/rubocop/cop/chef/deprecation/verify_property_file_expansion.rb
cookstyle-7.14.2 lib/rubocop/cop/chef/deprecation/verify_property_file_expansion.rb
cookstyle-7.13.0 lib/rubocop/cop/chef/deprecation/verify_property_file_expansion.rb
cookstyle-7.12.6 lib/rubocop/cop/chef/deprecation/verify_property_file_expansion.rb
cookstyle-7.12.5 lib/rubocop/cop/chef/deprecation/verify_property_file_expansion.rb
cookstyle-7.12.3 lib/rubocop/cop/chef/deprecation/verify_property_file_expansion.rb
cookstyle-7.12.2 lib/rubocop/cop/chef/deprecation/verify_property_file_expansion.rb
cookstyle-7.11.3 lib/rubocop/cop/chef/deprecation/verify_property_file_expansion.rb
cookstyle-7.11.1 lib/rubocop/cop/chef/deprecation/verify_property_file_expansion.rb
cookstyle-7.10.1 lib/rubocop/cop/chef/deprecation/verify_property_file_expansion.rb
cookstyle-7.10.0 lib/rubocop/cop/chef/deprecation/verify_property_file_expansion.rb
cookstyle-7.9.0 lib/rubocop/cop/chef/deprecation/verify_property_file_expansion.rb
cookstyle-7.8.3 lib/rubocop/cop/chef/deprecation/verify_property_file_expansion.rb
cookstyle-7.8.0 lib/rubocop/cop/chef/deprecation/verify_property_file_expansion.rb