Skip to content

Commit

Permalink
Merge pull request #535 from chef/require_relative
Browse files Browse the repository at this point in the history
Add ChefModernize/UseRequireRelative
  • Loading branch information
tas50 authored Feb 22, 2020
2 parents 8d70ed2 + 31713ce commit 1b8d8f7
Show file tree
Hide file tree
Showing 4 changed files with 105 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .expeditor/run_linux_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ else
fi

echo "+++ bundle exec task"
bundle exec $1
bundle exec $@
10 changes: 10 additions & 0 deletions config/cookstyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1115,6 +1115,16 @@ ChefModernize/SimplifyAptPpaSetup:
- '**/attributes/*.rb'
- '**/Berksfile'


ChefModernize/UseRequireRelative:
Description: Instead of using require with a File.expand_path and __FILE__ use the simpler require_relative method.
Enabled: true
VersionAdded: '5.22.0'
Exclude:
- '**/metadata.rb'
- '**/attributes/*.rb'
- '**/Berksfile'

###############################
# ChefRedundantCode: Cleanup unnecessary code in your cookbooks regardless of Chef Infra Client release
###############################
Expand Down
61 changes: 61 additions & 0 deletions lib/rubocop/cop/chef/modernize/use_require_relative.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
#
# 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 ChefModernize
# Instead of using require with a File.expand_path and __FILE__ use the simpler require_relative method.
#
# @example
#
# # bad
# require File.expand_path('../../libraries/helpers', __FILE__)
#
# # good
# require_relative '../libraries/helpers'
#
class UseRequireRelative < Cop
MSG = 'Instead of using require with a File.expand_path and __FILE__ use the simpler require_relative method.'.freeze

def_node_matcher :require_with_expand_path?, <<-PATTERN
(send nil? :require
(send
(const nil? :File) :expand_path
$( str ... )
$( str ... )))
PATTERN

def on_send(node)
require_with_expand_path?(node) do |_file, path|
add_offense(node, location: :expression, message: MSG, severity: :refactor) if path.source == '__FILE__'
end
end

def autocorrect(node)
lambda do |corrector|
require_with_expand_path?(node) do |file, _path|
corrected_value = file.value
corrected_value.slice!(%r{^../}) # take the first ../ off the path
corrector.replace(node.loc.expression, "require_relative '#{corrected_value}'")
end
end
end
end
end
end
end
end
33 changes: 33 additions & 0 deletions spec/rubocop/cop/chef/modernize/use_require_relative_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#
# 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.
#

require 'spec_helper'

describe RuboCop::Cop::Chef::ChefModernize::UseRequireRelative, :config do
subject(:cop) { described_class.new(config) }

it 'registers an offense when using require with File.expand_path and __FILE__' do
expect_offense(<<~RUBY)
require File.expand_path('../../libraries/helpers', __FILE__)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Instead of using require with a File.expand_path and __FILE__ use the simpler require_relative method.
RUBY

expect_correction(<<~RUBY)
require_relative '../libraries/helpers'
RUBY
end
end

0 comments on commit 1b8d8f7

Please sign in to comment.