Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to voxpupuli-rubocop #124

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 3 additions & 21 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,12 @@
---
inherit_from: .rubocop_todo.yml

require:
- rubocop-performance
- rubocop-rspec

AllCops:
Exclude:
- Gemfile
- Rakefile
- spec/fixtures/**/*
- vendor/bundle/**/*
NewCops: enable
SuggestExtensions: false
TargetRubyVersion: '2.7'
inherit_gem:
voxpupuli-rubocop: rubocop.yml

# Disabled
Style/ClassAndModuleChildren:
Enabled: false

Layout/LineLength:
Max: 200

####################################################
# Cops below here due for deprecation
####################################################
# ``Rspec/FilePath`` is going to be deprecated in the next major release of rubocop >=3.0.0: see <https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/FilePath>
# As the new cops are already present, e.g., Rspec/SpecFilePathPathFormat, then disabling this in preparation
Gemspec/RequireMFA:
Enabled: false
102 changes: 52 additions & 50 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2024-01-22 15:56:59 UTC using RuboCop version 1.50.2.
# on 2024-07-05 20:35:14 UTC using RuboCop version 1.64.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
Expand All @@ -26,11 +26,17 @@ Lint/EmptyBlock:
- 'spec/unit/adapters_spec.rb'

# Offense count: 3
# Configuration parameters: AllowedParentClasses.
Lint/MissingSuper:
Exclude:
- 'lib/rspec-puppet/errors.rb'
- 'lib/rspec-puppet/sensitive.rb'

# Offense count: 1
Lint/MixedRegexpCaptureTypes:
Exclude:
- 'Gemfile'

# Offense count: 1
Lint/RescueException:
Exclude:
Expand All @@ -50,64 +56,20 @@ Lint/SuppressedException:

# Offense count: 2
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: AllowUnusedKeywordArguments, IgnoreEmptyMethods, IgnoreNotImplementedMethods.
# Configuration parameters: AutoCorrect, AllowUnusedKeywordArguments, IgnoreEmptyMethods, IgnoreNotImplementedMethods.
Lint/UnusedMethodArgument:
Exclude:
- 'lib/rspec-puppet/support.rb'

# Offense count: 5
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: AutoCorrect.
Lint/UselessAssignment:
Exclude:
- 'lib/rspec-puppet/example/function_example_group.rb'
- 'lib/rspec-puppet/matchers/create_generic.rb'
- 'lib/rspec-puppet/monkey_patches.rb'

# Offense count: 27
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
Metrics/AbcSize:
Max: 59

# Offense count: 7
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns, inherit_mode.
# AllowedMethods: refine
Metrics/BlockLength:
Max: 111

# Offense count: 1
# Configuration parameters: CountBlocks.
Metrics/BlockNesting:
Max: 4

# Offense count: 6
# Configuration parameters: CountComments, CountAsOne.
Metrics/ClassLength:
Max: 297

# Offense count: 18
# Configuration parameters: AllowedMethods, AllowedPatterns.
Metrics/CyclomaticComplexity:
Max: 18

# Offense count: 47
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
Metrics/MethodLength:
Max: 53

# Offense count: 2
# Configuration parameters: CountComments, CountAsOne.
Metrics/ModuleLength:
Max: 383

# Offense count: 2
# Configuration parameters: CountKeywordArgs, MaxOptionalParameters.
Metrics/ParameterLists:
Max: 9

# Offense count: 13
# Configuration parameters: AllowedMethods, AllowedPatterns.
Metrics/PerceivedComplexity:
Max: 20

# Offense count: 2
Naming/AccessorMethodName:
Exclude:
Expand All @@ -125,6 +87,7 @@ Naming/ConstantName:
# AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
Naming/FileName:
Exclude:
- 'Rakefile.rb'
- 'lib/rspec-puppet.rb'
- 'spec/functions/camelCaseFunction_spec.rb'

Expand All @@ -138,6 +101,7 @@ Naming/HeredocDelimiterNaming:
- 'spec/unit/matchers/compile_spec.rb'

# Offense count: 1
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: EnforcedStyleForLeadingUnderscores.
# SupportedStylesForLeadingUnderscores: disallowed, required, optional
Naming/MemoizedInstanceVariableName:
Expand Down Expand Up @@ -199,6 +163,12 @@ RSpec/DescribeClass:
RSpec/ExampleLength:
Max: 12

# Offense count: 16
# Configuration parameters: Include, CustomTransform, IgnoreMethods, SpecSuffixOnly.
# Include: **/*_spec*rb*, **/spec/**/*
RSpec/FilePath:
Enabled: false

# Offense count: 2
RSpec/ImplicitBlockExpectation:
Exclude:
Expand Down Expand Up @@ -232,7 +202,7 @@ RSpec/MultipleDescribes:
- 'spec/unit/example/function_example_group_spec.rb'
- 'spec/unit/monkey_patches_spec.rb'

# Offense count: 45
# Offense count: 49
RSpec/MultipleExpectations:
Max: 8

Expand All @@ -241,7 +211,7 @@ RSpec/MultipleExpectations:
RSpec/MultipleMemoizedHelpers:
Max: 7

# Offense count: 263
# Offense count: 274
# Configuration parameters: EnforcedStyle, IgnoreSharedExamples.
# SupportedStyles: always, named_only
RSpec/NamedSubject:
Expand Down Expand Up @@ -323,6 +293,12 @@ RSpec/VerifiedDoubles:
- 'spec/unit/matchers/allow_value_spec.rb'
- 'spec/unit/sensitive_spec.rb'

# Offense count: 5
# This cop supports safe autocorrection (--autocorrect).
Rake/Desc:
Exclude:
- 'Rakefile'

# Offense count: 1
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: AllowOnConstant, AllowOnSelfClass.
Expand All @@ -336,6 +312,7 @@ Style/ClassVars:
- 'lib/rspec-puppet/support.rb'

# Offense count: 1
# This cop supports unsafe autocorrection (--autocorrect-all).
Style/CombinableLoops:
Exclude:
- 'spec/classes/catalogue_cache_spec.rb'
Expand All @@ -353,6 +330,23 @@ Style/FormatString:
Exclude:
- 'lib/rspec-puppet/coverage.rb'

# Offense count: 2
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: EnforcedStyle.
# SupportedStyles: always, always_true, never
Style/FrozenStringLiteralComment:
Exclude:
- 'Gemfile'
- 'Rakefile'

# Offense count: 1
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: AllowedReceivers.
# AllowedReceivers: Thread.current
Style/HashEachMethods:
Exclude:
- 'Rakefile'

# Offense count: 14
# This cop supports safe autocorrection (--autocorrect).
Style/IfUnlessModifier:
Expand Down Expand Up @@ -390,6 +384,14 @@ Style/SlicingWithRange:
Exclude:
- 'lib/rspec-puppet/monkey_patches.rb'

# Offense count: 2
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: RequireEnglish, EnforcedStyle.
# SupportedStyles: use_perl_names, use_english_names, use_builtin_english_names
Style/SpecialGlobalVars:
Exclude:
- 'Rakefile'

# Offense count: 2
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: Mode.
Expand Down
20 changes: 9 additions & 11 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
source ENV['GEM_SOURCE'] || "https://rubygems.org"
# frozen_string_literal: true

source ENV['GEM_SOURCE'] || 'https://rubygems.org'

gemspec

def location_for(place_or_version, fake_version = nil)
git_url_regex = %r{\A(?<url>(https?|git)[:@][^#]*)(#(?<branch>.*))?}
file_url_regex = %r{\Afile:\/\/(?<path>.*)}
git_url_regex = /\A(?<url>(https?|git)[:@][^#]*)(#(?<branch>.*))?/
file_url_regex = %r{\Afile://(?<path>.*)}

if place_or_version && (git_url = place_or_version.match(git_url_regex))
[fake_version, { git: git_url[:url], branch: git_url[:branch], require: false }].compact
Expand All @@ -16,27 +18,23 @@ def location_for(place_or_version, fake_version = nil)
end

group :development do
gem 'fuubar'
gem 'pry'
gem 'pry-stack_explorer'
gem 'fuubar'
end

group :test do

gem 'puppet', *location_for(ENV['PUPPET_GEM_VERSION'])
gem 'facter', *location_for(ENV['FACTER_GEM_VERSION'])
gem 'facter', *location_for(ENV.fetch('FACTER_GEM_VERSION', nil))
gem 'puppet', *location_for(ENV.fetch('PUPPET_GEM_VERSION', nil))

gem 'json_pure'
gem 'sync'

gem 'rake', require: false

gem 'rspec', '~> 3.0', require: false
gem 'rubocop', '~> 1.64.0', require: false
gem 'rubocop-performance', '~> 1.16', require: false
gem 'rubocop-rspec', '~> 3.0', require: false
gem 'simplecov', require: false
gem 'simplecov-console', require: false

gem 'win32-taskscheduler', :platforms => [:mingw, :x64_mingw, :mswin]
gem 'win32-taskscheduler', platforms: %i[mingw x64_mingw mswin]
end
65 changes: 32 additions & 33 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,29 +1,31 @@
# frozen_string_literal: true

require 'rake'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'
require 'bundler/gem_tasks'
require 'fileutils'
require 'puppet'

task :default => :test
task :spec => :test
task default: :test
task spec: :test

require 'rspec-puppet/tasks/release_test'

fixtures_dir = File.expand_path(File.join(__FILE__, '..', 'spec', 'fixtures', 'modules'))
fixtures = {
'augeas_core' => {
:url => 'https://github.com/puppetlabs/puppetlabs-augeas_core',
:requirement => Gem::Requirement.new('>= 6.0.0'),
url: 'https://github.com/puppetlabs/puppetlabs-augeas_core',
requirement: Gem::Requirement.new('>= 6.0.0'),
},
'stdlib' => {
:url => 'https://github.com/puppetlabs/puppetlabs-stdlib',
:requirement => Gem::Requirement.new('>= 0'),
:ref => '4.2.0',
'stdlib' => {
url: 'https://github.com/puppetlabs/puppetlabs-stdlib',
requirement: Gem::Requirement.new('>= 0'),
ref: '4.2.0',
},
'registry' => {
:url => 'https://github.com/puppetlabs/puppetlabs-registry',
:requirement => Gem::Requirement.new('>= 0'),
'registry' => {
url: 'https://github.com/puppetlabs/puppetlabs-registry',
requirement: Gem::Requirement.new('>= 0'),
},
}

Expand All @@ -49,13 +51,13 @@ namespace :test do
next unless fixture[:requirement].satisfied_by?(puppet_version)

system('git', 'clone', fixture[:url], name)
fail unless $?.success?
raise unless $?.success?

next unless fixture.key?(:ref)

if fixture.key?(:ref)
Dir.chdir(name) do
system('git', 'checkout', fixture[:ref])
fail unless $?.success?
end
Dir.chdir(name) do
system('git', 'checkout', fixture[:ref])
raise unless $?.success?
end
end
end
Expand All @@ -65,40 +67,37 @@ namespace :test do
Dir.chdir(fixtures_dir) do
fixtures.each do |name, _|
next unless File.directory?(name)

FileUtils.rm_r(name)
end
end
end

task :unit do
begin
Rake::Task['test:setup'].invoke
ENV['COVERAGE'] = 'local'
Rake::Task['test:spec_unit'].invoke
ensure
ENV.delete('COVERAGE')
Rake::Task['test:teardown'].invoke
end
end
end

task :test do
begin
Rake::Task['test:setup'].invoke
Rake::Task['test:spec'].invoke
ENV['COVERAGE'] = 'local'
Rake::Task['test:spec_unit'].invoke
ensure
ENV.delete('COVERAGE')
Rake::Task['test:teardown'].invoke
end
end

task :test do
Rake::Task['test:setup'].invoke
Rake::Task['test:spec'].invoke
ensure
Rake::Task['test:teardown'].invoke
end

RuboCop::RakeTask.new(:rubocop) do |task|
task.options = %w[-D -S -E]
end

namespace :spec do
desc 'Run RSpec code examples with coverage collection'
task :coverage do
ENV['COVERAGE'] = 'yes'
Rake::Task['test'].invoke
ENV['COVERAGE'] = 'yes'
Rake::Task['test'].invoke
end
end
Loading
Loading