cookstyle-ng 8.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +25 -0
- data/LICENSE +201 -0
- data/bin/cookstyle +26 -0
- data/bin/cookstyle-profile +31 -0
- data/config/cookstyle.yml +3248 -0
- data/cookstyle.gemspec +30 -0
- data/lib/cookstyle/version.rb +5 -0
- data/lib/cookstyle.rb +44 -0
- data/lib/rubocop/chef/autocorrect_helpers.rb +33 -0
- data/lib/rubocop/chef/cookbook_helpers.rb +127 -0
- data/lib/rubocop/chef/cookbook_only.rb +76 -0
- data/lib/rubocop/chef/platform_helpers.rb +72 -0
- data/lib/rubocop/chef.rb +11 -0
- data/lib/rubocop/cop/chef/correctness/block_guard_clause_string_only.rb +61 -0
- data/lib/rubocop/cop/chef/correctness/chef_application_fatal.rb +56 -0
- data/lib/rubocop/cop/chef/correctness/conditional_ruby_shellout.rb +69 -0
- data/lib/rubocop/cop/chef/correctness/dnf_package_allow_downgrades.rb +55 -0
- data/lib/rubocop/cop/chef/correctness/incorrect_library_injection.rb +77 -0
- data/lib/rubocop/cop/chef/correctness/invalid_cookbook_name.rb +47 -0
- data/lib/rubocop/cop/chef/correctness/invalid_default_action.rb +48 -0
- data/lib/rubocop/cop/chef/correctness/invalid_notification_resource.rb +59 -0
- data/lib/rubocop/cop/chef/correctness/invalid_notification_timing.rb +55 -0
- data/lib/rubocop/cop/chef/correctness/invalid_platform_family_helper.rb +72 -0
- data/lib/rubocop/cop/chef/correctness/invalid_platform_family_values_in_case.rb +70 -0
- data/lib/rubocop/cop/chef/correctness/invalid_platform_helper.rb +57 -0
- data/lib/rubocop/cop/chef/correctness/invalid_platform_metadata.rb +89 -0
- data/lib/rubocop/cop/chef/correctness/invalid_platform_values_in_case.rb +70 -0
- data/lib/rubocop/cop/chef/correctness/invalid_value_for_platform_family_helper.rb +70 -0
- data/lib/rubocop/cop/chef/correctness/invalid_value_for_platform_helper.rb +69 -0
- data/lib/rubocop/cop/chef/correctness/invalid_version_metadata.rb +48 -0
- data/lib/rubocop/cop/chef/correctness/lazy_eval_node_attribute_defaults.rb +53 -0
- data/lib/rubocop/cop/chef/correctness/lazy_in_resource_guard.rb +67 -0
- data/lib/rubocop/cop/chef/correctness/macos_userdefaults_invalid_type.rb +67 -0
- data/lib/rubocop/cop/chef/correctness/malformed_value_for_platform.rb +67 -0
- data/lib/rubocop/cop/chef/correctness/metadata_malformed_version.rb +58 -0
- data/lib/rubocop/cop/chef/correctness/metadata_missing_name.rb +54 -0
- data/lib/rubocop/cop/chef/correctness/metadata_missing_version.rb +51 -0
- data/lib/rubocop/cop/chef/correctness/node_normal.rb +53 -0
- data/lib/rubocop/cop/chef/correctness/node_normal_unless.rb +53 -0
- data/lib/rubocop/cop/chef/correctness/node_save.rb +46 -0
- data/lib/rubocop/cop/chef/correctness/notifies_action_not_symbol.rb +64 -0
- data/lib/rubocop/cop/chef/correctness/octal_mode_as_string.rb +48 -0
- data/lib/rubocop/cop/chef/correctness/openssl_password_helpers.rb +46 -0
- data/lib/rubocop/cop/chef/correctness/powershell_delete_file.rb +54 -0
- data/lib/rubocop/cop/chef/correctness/powershell_file_exists.rb +50 -0
- data/lib/rubocop/cop/chef/correctness/property_without_type.rb +59 -0
- data/lib/rubocop/cop/chef/correctness/resource_sets_internal_properties.rb +51 -0
- data/lib/rubocop/cop/chef/correctness/resource_sets_name_property.rb +50 -0
- data/lib/rubocop/cop/chef/correctness/resource_with_none_action.rb +56 -0
- data/lib/rubocop/cop/chef/correctness/scoped_file_exist.rb +52 -0
- data/lib/rubocop/cop/chef/correctness/service_resource.rb +56 -0
- data/lib/rubocop/cop/chef/correctness/supports_must_be_float.rb +52 -0
- data/lib/rubocop/cop/chef/correctness/tmp_path.rb +59 -0
- data/lib/rubocop/cop/chef/deprecation/cb_depends_on_self.rb +57 -0
- data/lib/rubocop/cop/chef/deprecation/chef_handler_recipe.rb +52 -0
- data/lib/rubocop/cop/chef/deprecation/chef_handler_supports.rb +55 -0
- data/lib/rubocop/cop/chef/deprecation/chef_rest.rb +57 -0
- data/lib/rubocop/cop/chef/deprecation/chef_rewind.rb +98 -0
- data/lib/rubocop/cop/chef/deprecation/chef_shellout.rb +83 -0
- data/lib/rubocop/cop/chef/deprecation/chef_sugar_helpers.rb +55 -0
- data/lib/rubocop/cop/chef/deprecation/chef_windows_platform_helper.rb +55 -0
- data/lib/rubocop/cop/chef/deprecation/chefdk_generators.rb +56 -0
- data/lib/rubocop/cop/chef/deprecation/cheffile.rb +39 -0
- data/lib/rubocop/cop/chef/deprecation/chefspec_coverage_report.rb +49 -0
- data/lib/rubocop/cop/chef/deprecation/chefspec_legacy_runner.rb +61 -0
- data/lib/rubocop/cop/chef/deprecation/chocolatey_package_uninstall_action.rb +56 -0
- data/lib/rubocop/cop/chef/deprecation/delivery.rb +48 -0
- data/lib/rubocop/cop/chef/deprecation/depends_chef_nginx_cookbook.rb +54 -0
- data/lib/rubocop/cop/chef/deprecation/depends_chef_reporting_cookbook.rb +51 -0
- data/lib/rubocop/cop/chef/deprecation/depends_compat_resource.rb +54 -0
- data/lib/rubocop/cop/chef/deprecation/depends_omnibus_updater_cookbook.rb +54 -0
- data/lib/rubocop/cop/chef/deprecation/depends_partial_search.rb +50 -0
- data/lib/rubocop/cop/chef/deprecation/depends_poise.rb +48 -0
- data/lib/rubocop/cop/chef/deprecation/deprecated_chefspec_platform.rb +129 -0
- data/lib/rubocop/cop/chef/deprecation/deprecated_mixins.rb +78 -0
- data/lib/rubocop/cop/chef/deprecation/deprecated_platform_methods.rb +61 -0
- data/lib/rubocop/cop/chef/deprecation/deprecated_shellout_methods.rb +64 -0
- data/lib/rubocop/cop/chef/deprecation/deprecated_sudo_actions.rb +65 -0
- data/lib/rubocop/cop/chef/deprecation/deprecated_windows_version_check.rb +42 -0
- data/lib/rubocop/cop/chef/deprecation/deprecated_yum_repository_actions.rb +67 -0
- data/lib/rubocop/cop/chef/deprecation/deprecated_yum_repository_properties.rb +69 -0
- data/lib/rubocop/cop/chef/deprecation/easy_install.rb +42 -0
- data/lib/rubocop/cop/chef/deprecation/eol_audit_mode.rb +49 -0
- data/lib/rubocop/cop/chef/deprecation/epic_fail.rb +51 -0
- data/lib/rubocop/cop/chef/deprecation/erl_call.rb +42 -0
- data/lib/rubocop/cop/chef/deprecation/execute_path_property.rb +50 -0
- data/lib/rubocop/cop/chef/deprecation/execute_relative_creates_without_cwd.rb +66 -0
- data/lib/rubocop/cop/chef/deprecation/foodcritic_file.rb +41 -0
- data/lib/rubocop/cop/chef/deprecation/foodcritic_testing.rb +43 -0
- data/lib/rubocop/cop/chef/deprecation/hwrp_without_provides.rb +140 -0
- data/lib/rubocop/cop/chef/deprecation/hwrp_without_unified_mode_true.rb +86 -0
- data/lib/rubocop/cop/chef/deprecation/inherits_compat_resource.rb +59 -0
- data/lib/rubocop/cop/chef/deprecation/launchd_deprecated_hash_property.rb +56 -0
- data/lib/rubocop/cop/chef/deprecation/legacy_notify_syntax.rb +91 -0
- data/lib/rubocop/cop/chef/deprecation/legacy_yum_cookbook_recipes.rb +53 -0
- data/lib/rubocop/cop/chef/deprecation/librarian_chefspec.rb +42 -0
- data/lib/rubocop/cop/chef/deprecation/locale_lc_all_property.rb +46 -0
- data/lib/rubocop/cop/chef/deprecation/log_resource_notifications.rb +63 -0
- data/lib/rubocop/cop/chef/deprecation/macos_userdefaults_global_property.rb +60 -0
- data/lib/rubocop/cop/chef/deprecation/name_property_and_default.rb +60 -0
- data/lib/rubocop/cop/chef/deprecation/node_deep_fetch.rb +65 -0
- data/lib/rubocop/cop/chef/deprecation/node_methods_not_attributes.rb +80 -0
- data/lib/rubocop/cop/chef/deprecation/node_set.rb +54 -0
- data/lib/rubocop/cop/chef/deprecation/node_set_unless.rb +54 -0
- data/lib/rubocop/cop/chef/deprecation/node_set_without_level.rb +70 -0
- data/lib/rubocop/cop/chef/deprecation/partial_search_class_usage.rb +67 -0
- data/lib/rubocop/cop/chef/deprecation/partial_search_helper_usage.rb +61 -0
- data/lib/rubocop/cop/chef/deprecation/poise_archive.rb +63 -0
- data/lib/rubocop/cop/chef/deprecation/policyfile_community_source.rb +53 -0
- data/lib/rubocop/cop/chef/deprecation/powershell_cookbook_helpers.rb +59 -0
- data/lib/rubocop/cop/chef/deprecation/require_recipe.rb +53 -0
- data/lib/rubocop/cop/chef/deprecation/resource_overrides_provides_method.rb +48 -0
- data/lib/rubocop/cop/chef/deprecation/resource_uses_dsl_name_method.rb +46 -0
- data/lib/rubocop/cop/chef/deprecation/resource_uses_only_resource_name.rb +84 -0
- data/lib/rubocop/cop/chef/deprecation/resource_uses_provider_base_method.rb +40 -0
- data/lib/rubocop/cop/chef/deprecation/resource_uses_updated_method.rb +50 -0
- data/lib/rubocop/cop/chef/deprecation/resource_without_unified_mode_true.rb +87 -0
- data/lib/rubocop/cop/chef/deprecation/ruby_27_keyword_argument_warnings.rb +56 -0
- data/lib/rubocop/cop/chef/deprecation/ruby_block_create_action.rb +62 -0
- data/lib/rubocop/cop/chef/deprecation/run_command_helper.rb +63 -0
- data/lib/rubocop/cop/chef/deprecation/search_uses_positional_parameters.rb +136 -0
- data/lib/rubocop/cop/chef/deprecation/use_automatic_resource_name.rb +52 -0
- data/lib/rubocop/cop/chef/deprecation/use_inline_resources.rb +57 -0
- data/lib/rubocop/cop/chef/deprecation/use_yaml_dump.rb +47 -0
- data/lib/rubocop/cop/chef/deprecation/user_supports_property.rb +71 -0
- data/lib/rubocop/cop/chef/deprecation/verify_property_file_expansion.rb +57 -0
- data/lib/rubocop/cop/chef/deprecation/windows_feature_servermanagercmd.rb +58 -0
- data/lib/rubocop/cop/chef/deprecation/windows_package_installer_type_string.rb +60 -0
- data/lib/rubocop/cop/chef/deprecation/windows_task_change_action.rb +83 -0
- data/lib/rubocop/cop/chef/deprecation/windows_version_helpers.rb +71 -0
- data/lib/rubocop/cop/chef/deprecation/xml_ruby_recipe.rb +51 -0
- data/lib/rubocop/cop/chef/deprecation/yum_dnf_compat_recipe.rb +53 -0
- data/lib/rubocop/cop/chef/effortless/berksfile.rb +39 -0
- data/lib/rubocop/cop/chef/effortless/chef_vault_used.rb +87 -0
- data/lib/rubocop/cop/chef/effortless/data_bags.rb +40 -0
- data/lib/rubocop/cop/chef/effortless/depends_chef_vault.rb +47 -0
- data/lib/rubocop/cop/chef/effortless/node_environment.rb +45 -0
- data/lib/rubocop/cop/chef/effortless/node_policygroup.rb +44 -0
- data/lib/rubocop/cop/chef/effortless/node_roles.rb +45 -0
- data/lib/rubocop/cop/chef/effortless/search_for_environments_or_roles.rb +43 -0
- data/lib/rubocop/cop/chef/effortless/search_used.rb +40 -0
- data/lib/rubocop/cop/chef/modernize/action_method_in_resource.rb +57 -0
- data/lib/rubocop/cop/chef/modernize/allowed_actions_initializer.rb +77 -0
- data/lib/rubocop/cop/chef/modernize/apt_default_recipe.rb +54 -0
- data/lib/rubocop/cop/chef/modernize/berksfile_source.rb +70 -0
- data/lib/rubocop/cop/chef/modernize/build_essential.rb +55 -0
- data/lib/rubocop/cop/chef/modernize/chef_14_resources.rb +60 -0
- data/lib/rubocop/cop/chef/modernize/chef_15_resources.rb +57 -0
- data/lib/rubocop/cop/chef/modernize/chef_gem_nokogiri.rb +63 -0
- data/lib/rubocop/cop/chef/modernize/class_eval_action_class.rb +63 -0
- data/lib/rubocop/cop/chef/modernize/compile_time_resources.rb +53 -0
- data/lib/rubocop/cop/chef/modernize/conditional_using_test.rb +55 -0
- data/lib/rubocop/cop/chef/modernize/cron_d_file_or_template.rb +121 -0
- data/lib/rubocop/cop/chef/modernize/cron_manage_resource.rb +50 -0
- data/lib/rubocop/cop/chef/modernize/databag_helpers.rb +59 -0
- data/lib/rubocop/cop/chef/modernize/declare_action_class.rb +54 -0
- data/lib/rubocop/cop/chef/modernize/default_action_initializer.rb +74 -0
- data/lib/rubocop/cop/chef/modernize/defines_chefspec_matchers.rb +54 -0
- data/lib/rubocop/cop/chef/modernize/definitions.rb +36 -0
- data/lib/rubocop/cop/chef/modernize/depends_chef_vault_cookbook.rb +54 -0
- data/lib/rubocop/cop/chef/modernize/depends_chocolatey_cookbooks.rb +55 -0
- data/lib/rubocop/cop/chef/modernize/depends_kernel_module_cookbook.rb +54 -0
- data/lib/rubocop/cop/chef/modernize/depends_locale_cookbook.rb +54 -0
- data/lib/rubocop/cop/chef/modernize/depends_openssl_cookbook.rb +54 -0
- data/lib/rubocop/cop/chef/modernize/depends_timezone_lwrp_cookbook.rb +54 -0
- data/lib/rubocop/cop/chef/modernize/depends_windows_firewall_cookbook.rb +54 -0
- data/lib/rubocop/cop/chef/modernize/depends_zypper_cookbook.rb +54 -0
- data/lib/rubocop/cop/chef/modernize/dsl_include_in_resource.rb +55 -0
- data/lib/rubocop/cop/chef/modernize/empty_resource_initialize.rb +52 -0
- data/lib/rubocop/cop/chef/modernize/execute_apt_update.rb +81 -0
- data/lib/rubocop/cop/chef/modernize/execute_sc_exe.rb +67 -0
- data/lib/rubocop/cop/chef/modernize/execute_sleep.rb +76 -0
- data/lib/rubocop/cop/chef/modernize/execute_sysctl.rb +70 -0
- data/lib/rubocop/cop/chef/modernize/execute_tzutil.rb +83 -0
- data/lib/rubocop/cop/chef/modernize/foodcritic_comments.rb +46 -0
- data/lib/rubocop/cop/chef/modernize/if_provides_default_action.rb +48 -0
- data/lib/rubocop/cop/chef/modernize/includes_mixin_shellout.rb +83 -0
- data/lib/rubocop/cop/chef/modernize/libarchive_file.rb +70 -0
- data/lib/rubocop/cop/chef/modernize/macos_user_defaults.rb +58 -0
- data/lib/rubocop/cop/chef/modernize/minitest_handler_usage.rb +51 -0
- data/lib/rubocop/cop/chef/modernize/node_init_package.rb +89 -0
- data/lib/rubocop/cop/chef/modernize/node_roles_include.rb +57 -0
- data/lib/rubocop/cop/chef/modernize/ohai_default_recipe.rb +47 -0
- data/lib/rubocop/cop/chef/modernize/openssl_rsa_key_resource.rb +54 -0
- data/lib/rubocop/cop/chef/modernize/openssl_x509_resource.rb +60 -0
- data/lib/rubocop/cop/chef/modernize/osx_config_profile_resource.rb +51 -0
- data/lib/rubocop/cop/chef/modernize/powershell_expand_archive.rb +50 -0
- data/lib/rubocop/cop/chef/modernize/powershell_guard_interpreter.rb +68 -0
- data/lib/rubocop/cop/chef/modernize/powershell_install_package.rb +53 -0
- data/lib/rubocop/cop/chef/modernize/powershell_install_windowsfeature.rb +56 -0
- data/lib/rubocop/cop/chef/modernize/property_with_name_attribute.rb +56 -0
- data/lib/rubocop/cop/chef/modernize/provides_initializer.rb +68 -0
- data/lib/rubocop/cop/chef/modernize/resource_name_initializer.rb +63 -0
- data/lib/rubocop/cop/chef/modernize/resource_set_or_return.rb +49 -0
- data/lib/rubocop/cop/chef/modernize/resource_with_attributes.rb +66 -0
- data/lib/rubocop/cop/chef/modernize/respond_to_compile_time.rb +94 -0
- data/lib/rubocop/cop/chef/modernize/respond_to_metadata.rb +77 -0
- data/lib/rubocop/cop/chef/modernize/respond_to_provides.rb +63 -0
- data/lib/rubocop/cop/chef/modernize/respond_to_resource_name.rb +52 -0
- data/lib/rubocop/cop/chef/modernize/sc_windows_resource.rb +53 -0
- data/lib/rubocop/cop/chef/modernize/seven_zip_archive.rb +46 -0
- data/lib/rubocop/cop/chef/modernize/shell_out_helper.rb +60 -0
- data/lib/rubocop/cop/chef/modernize/shellouts_to_chocolatey.rb +58 -0
- data/lib/rubocop/cop/chef/modernize/simplify_apt_ppa_setup.rb +63 -0
- data/lib/rubocop/cop/chef/modernize/sysctl_param_resource.rb +55 -0
- data/lib/rubocop/cop/chef/modernize/unnecessary_mixlib_shellout_require.rb +51 -0
- data/lib/rubocop/cop/chef/modernize/use_chef_language_cloud_helpers.rb +93 -0
- data/lib/rubocop/cop/chef/modernize/use_chef_language_env_helpers.rb +69 -0
- data/lib/rubocop/cop/chef/modernize/use_chef_language_systemd_helper.rb +60 -0
- data/lib/rubocop/cop/chef/modernize/use_multipackage_installs.rb +113 -0
- data/lib/rubocop/cop/chef/modernize/use_require_relative.rb +60 -0
- data/lib/rubocop/cop/chef/modernize/whyrun_supported_true.rb +58 -0
- data/lib/rubocop/cop/chef/modernize/windows_default_recipe.rb +52 -0
- data/lib/rubocop/cop/chef/modernize/windows_registry_uac.rb +92 -0
- data/lib/rubocop/cop/chef/modernize/windows_zipfile.rb +46 -0
- data/lib/rubocop/cop/chef/modernize/zipfile_resource.rb +59 -0
- data/lib/rubocop/cop/chef/modernize/zypper_repo.rb +60 -0
- data/lib/rubocop/cop/chef/redundant/apt_repository_distribution_default.rb +65 -0
- data/lib/rubocop/cop/chef/redundant/apt_repository_notifies_apt_update.rb +60 -0
- data/lib/rubocop/cop/chef/redundant/attribute_metadata.rb +52 -0
- data/lib/rubocop/cop/chef/redundant/conflicts_metadata.rb +46 -0
- data/lib/rubocop/cop/chef/redundant/custom_resource_with_allowed_actions.rb +60 -0
- data/lib/rubocop/cop/chef/redundant/double_compile_time.rb +68 -0
- data/lib/rubocop/cop/chef/redundant/grouping_metadata.rb +46 -0
- data/lib/rubocop/cop/chef/redundant/long_description_metadata.rb +46 -0
- data/lib/rubocop/cop/chef/redundant/multiple_platform_checks.rb +58 -0
- data/lib/rubocop/cop/chef/redundant/name_property_and_required.rb +81 -0
- data/lib/rubocop/cop/chef/redundant/ohai_attribute_to_string.rb +65 -0
- data/lib/rubocop/cop/chef/redundant/property_splat_regex.rb +59 -0
- data/lib/rubocop/cop/chef/redundant/property_with_default_and_required.rb +61 -0
- data/lib/rubocop/cop/chef/redundant/provides_metadata.rb +46 -0
- data/lib/rubocop/cop/chef/redundant/recipe_metadata.rb +47 -0
- data/lib/rubocop/cop/chef/redundant/replaces_metadata.rb +46 -0
- data/lib/rubocop/cop/chef/redundant/resource_with_nothing_action.rb +52 -0
- data/lib/rubocop/cop/chef/redundant/sensitive_property_in_resource.rb +50 -0
- data/lib/rubocop/cop/chef/redundant/string_property_with_nil_default.rb +64 -0
- data/lib/rubocop/cop/chef/redundant/suggests_metadata.rb +46 -0
- data/lib/rubocop/cop/chef/redundant/unnecessary_desired_state.rb +60 -0
- data/lib/rubocop/cop/chef/redundant/unnecessary_name_property.rb +67 -0
- data/lib/rubocop/cop/chef/redundant/use_create_if_missing.rb +116 -0
- data/lib/rubocop/cop/chef/security/ssh_private_key.rb +49 -0
- data/lib/rubocop/cop/chef/sharing/default_maintainer_metadata.rb +50 -0
- data/lib/rubocop/cop/chef/sharing/empty_metadata_field.rb +47 -0
- data/lib/rubocop/cop/chef/sharing/include_property_descriptions.rb +55 -0
- data/lib/rubocop/cop/chef/sharing/include_resource_descriptions.rb +52 -0
- data/lib/rubocop/cop/chef/sharing/include_resource_examples.rb +60 -0
- data/lib/rubocop/cop/chef/sharing/insecure_cookbook_url.rb +62 -0
- data/lib/rubocop/cop/chef/sharing/invalid_license_string.rb +542 -0
- data/lib/rubocop/cop/chef/style/attribute_keys.rb +95 -0
- data/lib/rubocop/cop/chef/style/chef_whaaat.rb +49 -0
- data/lib/rubocop/cop/chef/style/comment_sentence_spacing.rb +42 -0
- data/lib/rubocop/cop/chef/style/comments_copyright_format.rb +101 -0
- data/lib/rubocop/cop/chef/style/comments_default_copyright.rb +50 -0
- data/lib/rubocop/cop/chef/style/comments_format.rb +71 -0
- data/lib/rubocop/cop/chef/style/file_mode.rb +86 -0
- data/lib/rubocop/cop/chef/style/immediate_notification_timing.rb +59 -0
- data/lib/rubocop/cop/chef/style/include_recipe_with_parentheses.rb +58 -0
- data/lib/rubocop/cop/chef/style/negating_only_if.rb +69 -0
- data/lib/rubocop/cop/chef/style/overly_complex_supports_depends_metadata.rb +70 -0
- data/lib/rubocop/cop/chef/style/simplify_platform_major_version_check.rb +89 -0
- data/lib/rubocop/cop/chef/style/true_false_resource_properties.rb +53 -0
- data/lib/rubocop/cop/chef/style/unnecessary_os_check.rb +103 -0
- data/lib/rubocop/cop/chef/style/unnecessary_platform_case_statement.rb +100 -0
- data/lib/rubocop/cop/chef/style/use_platform_helpers.rb +86 -0
- data/lib/rubocop/cop/inspec/deprecation/attribute_default.rb +53 -0
- data/lib/rubocop/cop/inspec/deprecation/attribute_helper.rb +47 -0
- data/lib/rubocop/cop/target_chef_version.rb +22 -0
- data/lib/rubocop/monkey_patches/allow_invalid_ruby.rb +28 -0
- data/lib/rubocop/monkey_patches/base.rb +11 -0
- data/lib/rubocop/monkey_patches/config.rb +15 -0
- data/lib/rubocop/monkey_patches/directive_comment.rb +12 -0
- data/lib/rubocop/monkey_patches/registry_cop.rb +15 -0
- data/lib/rubocop/monkey_patches/team.rb +27 -0
- metadata +340 -0
@@ -0,0 +1,63 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
#
|
3
|
+
# Copyright:: 2019, Chef Software Inc.
|
4
|
+
# Author:: Tim Smith (<tsmith84@gmail.com>)
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
module RuboCop
|
19
|
+
module Cop
|
20
|
+
module Chef
|
21
|
+
module Modernize
|
22
|
+
# The nokogiri gem ships in Chef Infra Client 12+ and does not need to be installed before being used
|
23
|
+
#
|
24
|
+
# @example
|
25
|
+
#
|
26
|
+
# ### incorrect
|
27
|
+
# chef_gem 'nokogiri'
|
28
|
+
#
|
29
|
+
class ChefGemNokogiri < Base
|
30
|
+
extend AutoCorrector
|
31
|
+
include RangeHelp
|
32
|
+
include RuboCop::Chef::CookbookHelpers
|
33
|
+
|
34
|
+
MSG = 'The nokogiri gem ships in Chef Infra Client 12+ and does not need to be installed before being used.'
|
35
|
+
RESTRICT_ON_SEND = [:chef_gem].freeze
|
36
|
+
|
37
|
+
def_node_matcher :nokogiri_install?, <<-PATTERN
|
38
|
+
(send nil? :chef_gem (str "nokogiri"))
|
39
|
+
PATTERN
|
40
|
+
|
41
|
+
def on_block(node)
|
42
|
+
match_property_in_resource?(:chef_gem, 'package_name', node) do |pkg_name|
|
43
|
+
return unless pkg_name.arguments&.first&.str_content == 'nokogiri'
|
44
|
+
add_offense(node, severity: :refactor) do |corrector|
|
45
|
+
node = node.parent if node.parent&.block_type? # make sure we get the whole block not just the method in the block
|
46
|
+
corrector.remove(range_with_surrounding_space(range: node.loc.expression, side: :left))
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
def on_send(node)
|
52
|
+
nokogiri_install?(node) do
|
53
|
+
add_offense(node, severity: :refactor) do |corrector|
|
54
|
+
node = node.parent if node.parent&.block_type? # make sure we get the whole block not just the method in the block
|
55
|
+
corrector.remove(range_with_surrounding_space(range: node.loc.expression, side: :left))
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
#
|
3
|
+
# Copyright:: 2021, Chef Software, Inc.
|
4
|
+
# Author:: Tim Smith (<tsmith84@gmail.com>)
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
module RuboCop
|
19
|
+
module Cop
|
20
|
+
module Chef
|
21
|
+
module Modernize
|
22
|
+
# In Chef Infra Client 12.9 and later it is no longer necessary to call the class_eval method on the action class block.
|
23
|
+
#
|
24
|
+
# @example
|
25
|
+
#
|
26
|
+
# ### incorrect
|
27
|
+
# action_class.class_eval do
|
28
|
+
# foo
|
29
|
+
# end
|
30
|
+
#
|
31
|
+
# ### correct
|
32
|
+
# action_class do
|
33
|
+
# foo
|
34
|
+
# end
|
35
|
+
#
|
36
|
+
class ClassEvalActionClass < Base
|
37
|
+
extend TargetChefVersion
|
38
|
+
extend AutoCorrector
|
39
|
+
|
40
|
+
minimum_target_chef_version '12.9'
|
41
|
+
|
42
|
+
MSG = 'In Chef Infra Client 12.9 and later it is no longer necessary to call the class_eval method on the action class block.'
|
43
|
+
|
44
|
+
def_node_matcher :class_eval_action_class?, <<-PATTERN
|
45
|
+
(block
|
46
|
+
(send
|
47
|
+
(send nil? :action_class) :class_eval)
|
48
|
+
(args)
|
49
|
+
... )
|
50
|
+
PATTERN
|
51
|
+
|
52
|
+
def on_block(node)
|
53
|
+
class_eval_action_class?(node) do
|
54
|
+
add_offense(node, severity: :refactor) do |corrector|
|
55
|
+
corrector.replace(node, node.source.gsub('.class_eval', ''))
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
#
|
3
|
+
# Copyright:: 2020, Chef Software, Inc.
|
4
|
+
# Author:: Tim Smith (<tsmith84@gmail.com>)
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
module RuboCop
|
19
|
+
module Cop
|
20
|
+
module Chef
|
21
|
+
module Modernize
|
22
|
+
# The hostname, build_essential, chef_gem, and ohai_hint resources include 'compile_time' properties, which should be used to force the resources to run at compile time by setting `compile_time true`.
|
23
|
+
#
|
24
|
+
# @example
|
25
|
+
#
|
26
|
+
# ### incorrect
|
27
|
+
# build_essential 'install build tools' do
|
28
|
+
# action :nothing
|
29
|
+
# end.run_action(:install)
|
30
|
+
#
|
31
|
+
# ### correct
|
32
|
+
# build_essential 'install build tools' do
|
33
|
+
# compile_time true
|
34
|
+
# end
|
35
|
+
#
|
36
|
+
class ResourceForcingCompileTime < Base
|
37
|
+
MSG = "Set 'compile_time true' in resources when available instead of forcing resources to run at compile time by setting an action on the block."
|
38
|
+
RESTRICT_ON_SEND = [:run_action].freeze
|
39
|
+
|
40
|
+
def_node_matcher :compile_time_resource?, <<-PATTERN
|
41
|
+
(send (block (send nil? {:build_essential :chef_gem :hostname :ohai_hint} (...)) (args) (...)) $:run_action (sym ...))
|
42
|
+
PATTERN
|
43
|
+
|
44
|
+
def on_send(node)
|
45
|
+
compile_time_resource?(node) do
|
46
|
+
add_offense(node, severity: :refactor)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
#
|
3
|
+
# Copyright:: 2019, Chef Software, Inc.
|
4
|
+
# Author:: Tim Smith (<tsmith84@gmail.com>)
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
module RuboCop
|
19
|
+
module Cop
|
20
|
+
module Chef
|
21
|
+
module Modernize
|
22
|
+
# Use ::File.exist?('/foo/bar') instead of the slower 'test -f /foo/bar' which requires shelling out
|
23
|
+
#
|
24
|
+
# @example
|
25
|
+
#
|
26
|
+
# ### incorrect
|
27
|
+
# only_if 'test -f /bin/foo'
|
28
|
+
#
|
29
|
+
# ### correct
|
30
|
+
# only_if { ::File.exist?('bin/foo') }
|
31
|
+
#
|
32
|
+
class ConditionalUsingTest < Base
|
33
|
+
extend AutoCorrector
|
34
|
+
|
35
|
+
MSG = "Use ::File.exist?('/foo/bar') instead of the slower 'test -f /foo/bar' which requires shelling out"
|
36
|
+
RESTRICT_ON_SEND = [:not_if, :only_if].freeze
|
37
|
+
|
38
|
+
def_node_matcher :resource_conditional?, <<~PATTERN
|
39
|
+
(send nil? {:not_if :only_if} $str )
|
40
|
+
PATTERN
|
41
|
+
|
42
|
+
def on_send(node)
|
43
|
+
resource_conditional?(node) do |conditional|
|
44
|
+
return unless conditional.value.match?(/^test -[ef] \S*$/)
|
45
|
+
add_offense(node, severity: :refactor) do |corrector|
|
46
|
+
new_string = "{ ::File.exist?('#{conditional.value.match(/^test -[ef] (\S*)$/)[1]}') }"
|
47
|
+
corrector.replace(conditional, new_string)
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
@@ -0,0 +1,121 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
#
|
3
|
+
# Copyright:: 2020-2022, Chef Software, Inc.
|
4
|
+
# Author:: Tim Smith (<tsmith84@gmail.com>)
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
module RuboCop
|
19
|
+
module Cop
|
20
|
+
module Chef
|
21
|
+
module Modernize
|
22
|
+
# Use the cron_d resource that ships with Chef Infra Client 14.4+ instead of manually creating the file with template, file, or cookbook_file resources.
|
23
|
+
#
|
24
|
+
# @example
|
25
|
+
#
|
26
|
+
# ### incorrect
|
27
|
+
# template '/etc/cron.d/backup' do
|
28
|
+
# source 'cron_backup_job.erb'
|
29
|
+
# owner 'root'
|
30
|
+
# group 'root'
|
31
|
+
# mode '644'
|
32
|
+
# end
|
33
|
+
#
|
34
|
+
# cookbook_file '/etc/cron.d/backup' do
|
35
|
+
# owner 'root'
|
36
|
+
# group 'root'
|
37
|
+
# mode '644'
|
38
|
+
# end
|
39
|
+
#
|
40
|
+
# file '/etc/cron.d/backup' do
|
41
|
+
# content '*/30 * * * * backup /usr/local/bin/backup_script.sh'
|
42
|
+
# owner 'root'
|
43
|
+
# group 'root'
|
44
|
+
# mode '644'
|
45
|
+
# end
|
46
|
+
#
|
47
|
+
# file '/etc/cron.d/blogs' do
|
48
|
+
# action :delete
|
49
|
+
# end
|
50
|
+
#
|
51
|
+
# file "/etc/cron.d/#{job_name}" do
|
52
|
+
# action :delete
|
53
|
+
# end
|
54
|
+
#
|
55
|
+
# file File.join('/etc/cron.d', job) do
|
56
|
+
# action :delete
|
57
|
+
# end
|
58
|
+
#
|
59
|
+
# file 'delete old cron job' do
|
60
|
+
# path '/etc/cron.d/backup'
|
61
|
+
# action :delete
|
62
|
+
# end
|
63
|
+
#
|
64
|
+
# file 'delete old cron job' do
|
65
|
+
# path "/etc/cron.d/#{job}"
|
66
|
+
# action :delete
|
67
|
+
# end
|
68
|
+
#
|
69
|
+
# file 'delete old cron job' do
|
70
|
+
# path ::File.join('/etc/cron.d', job)
|
71
|
+
# action :delete
|
72
|
+
# end
|
73
|
+
#
|
74
|
+
# ### correct
|
75
|
+
# cron_d 'backup' do
|
76
|
+
# minute '1'
|
77
|
+
# hour '1'
|
78
|
+
# mailto 'sysadmins@example.com'
|
79
|
+
# command '/usr/local/bin/backup_script.sh'
|
80
|
+
# end
|
81
|
+
#
|
82
|
+
# cron_d 'blogs' do
|
83
|
+
# action :delete
|
84
|
+
# end
|
85
|
+
#
|
86
|
+
class CronDFileOrTemplate < Base
|
87
|
+
include RuboCop::Chef::CookbookHelpers
|
88
|
+
extend TargetChefVersion
|
89
|
+
|
90
|
+
minimum_target_chef_version '14.4'
|
91
|
+
|
92
|
+
MSG = 'Use the cron_d resource that ships with Chef Infra Client 14.4+ instead of manually creating the file with template, file, or cookbook_file resources'
|
93
|
+
|
94
|
+
def_node_matcher :file_or_template?, <<-PATTERN
|
95
|
+
(block
|
96
|
+
(send nil? {:template :file :cookbook_file}
|
97
|
+
{(str $_) | (dstr (str $_) ...) | (send _ _ (str $_) ...)})
|
98
|
+
...
|
99
|
+
)
|
100
|
+
PATTERN
|
101
|
+
|
102
|
+
def on_block(node)
|
103
|
+
file_or_template?(node) do |file_name|
|
104
|
+
break unless file_name.start_with?(%r{/etc/cron\.d\b}i)
|
105
|
+
add_offense(node, severity: :refactor)
|
106
|
+
end
|
107
|
+
|
108
|
+
match_property_in_resource?(%i(template file cookbook_file), 'path', node) do |code_property|
|
109
|
+
# instead of using CookbookHelpers#method_arg_ast_to_string, walk the property's descendants
|
110
|
+
# and check if their value contains '/etc/cron.d'
|
111
|
+
# covers the case where the argument to the path property is provided via a method like File.join
|
112
|
+
code_property.each_descendant do |d|
|
113
|
+
add_offense(node, severity: :refactor) if d.respond_to?(:value) && d.value.match?(%r{/etc/cron\.d\b}i)
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
117
|
+
end
|
118
|
+
end
|
119
|
+
end
|
120
|
+
end
|
121
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
#
|
3
|
+
# Copyright:: 2019, Chef Software, Inc.
|
4
|
+
# Author:: Tim Smith (<tsmith84@gmail.com>)
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
module RuboCop
|
19
|
+
module Cop
|
20
|
+
module Chef
|
21
|
+
module Modernize
|
22
|
+
# The cron_manage resource was renamed to cron_access in the 6.1 release of the cron cookbook, and later shipped in Chef Infra Client 14.4. The new resource name should be used.
|
23
|
+
#
|
24
|
+
# @example
|
25
|
+
#
|
26
|
+
# ### incorrect
|
27
|
+
# cron_manage 'mike'
|
28
|
+
#
|
29
|
+
# ### correct
|
30
|
+
# cron_access 'mike'
|
31
|
+
#
|
32
|
+
class CronManageResource < Base
|
33
|
+
extend TargetChefVersion
|
34
|
+
extend AutoCorrector
|
35
|
+
|
36
|
+
minimum_target_chef_version '14.4'
|
37
|
+
|
38
|
+
MSG = 'The cron_manage resource was renamed to cron_access in the 6.1 release of the cron cookbook and later shipped in Chef Infra Client 14.4. The new resource name should be used.'
|
39
|
+
RESTRICT_ON_SEND = [:cron_manage].freeze
|
40
|
+
|
41
|
+
def on_send(node)
|
42
|
+
add_offense(node, severity: :refactor) do |corrector|
|
43
|
+
corrector.replace(node, node.source.gsub(/^cron_manage/, 'cron_access'))
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
#
|
3
|
+
# Copyright:: 2020, Chef Software, Inc.
|
4
|
+
# Author:: Tim Smith (<tsmith84@gmail.com>)
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
module RuboCop
|
19
|
+
module Cop
|
20
|
+
module Chef
|
21
|
+
module Modernize
|
22
|
+
# Use the `data_bag_item` helper instead of `Chef::DataBagItem.load` or `Chef::EncryptedDataBagItem.load`.
|
23
|
+
#
|
24
|
+
# @example
|
25
|
+
#
|
26
|
+
# ### incorrect
|
27
|
+
# plain_text_data = Chef::DataBagItem.load('foo', 'bar')
|
28
|
+
# encrypted_data = Chef::EncryptedDataBagItem.load('foo2', 'bar2')
|
29
|
+
#
|
30
|
+
# ### correct
|
31
|
+
# plain_text_data = data_bag_item('foo', 'bar')
|
32
|
+
# encrypted_data = data_bag_item('foo2', 'bar2')
|
33
|
+
#
|
34
|
+
class DatabagHelpers < Base
|
35
|
+
extend AutoCorrector
|
36
|
+
|
37
|
+
MSG = 'Use the `data_bag_item` helper instead of `Chef::DataBagItem.load` or `Chef::EncryptedDataBagItem.load`.'
|
38
|
+
RESTRICT_ON_SEND = [:load].freeze
|
39
|
+
|
40
|
+
def_node_matcher :data_bag_class_load?, <<-PATTERN
|
41
|
+
(send
|
42
|
+
(const
|
43
|
+
(const nil? :Chef) {:DataBagItem :EncryptedDataBagItem}) :load
|
44
|
+
...)
|
45
|
+
PATTERN
|
46
|
+
|
47
|
+
def on_send(node)
|
48
|
+
data_bag_class_load?(node) do
|
49
|
+
add_offense(node, severity: :refactor) do |corrector|
|
50
|
+
corrector.replace(node,
|
51
|
+
node.source.gsub(/Chef::(EncryptedDataBagItem|DataBagItem).load/, 'data_bag_item'))
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
#
|
3
|
+
# Copyright:: 2021, Chef Software, Inc.
|
4
|
+
# Author:: Tim Smith (<tsmith84@gmail.com>)
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
module RuboCop
|
19
|
+
module Cop
|
20
|
+
module Chef
|
21
|
+
module Modernize
|
22
|
+
# In Chef Infra Client 12.9 and later `action_class` can be used instead of `declare_action_class`.
|
23
|
+
#
|
24
|
+
# @example
|
25
|
+
#
|
26
|
+
# ### incorrect
|
27
|
+
# declare_action_class do
|
28
|
+
# foo
|
29
|
+
# end
|
30
|
+
#
|
31
|
+
# ### correct
|
32
|
+
# action_class do
|
33
|
+
# foo
|
34
|
+
# end
|
35
|
+
#
|
36
|
+
class DeclareActionClass < Base
|
37
|
+
extend TargetChefVersion
|
38
|
+
extend AutoCorrector
|
39
|
+
|
40
|
+
minimum_target_chef_version '12.9'
|
41
|
+
|
42
|
+
MSG = 'In Chef Infra Client 12.9 and later `action_class` can be used instead of `declare_action_class`.'
|
43
|
+
RESTRICT_ON_SEND = [:declare_action_class].freeze
|
44
|
+
|
45
|
+
def on_send(node)
|
46
|
+
add_offense(node, severity: :refactor) do |corrector|
|
47
|
+
corrector.replace(node, node.source.gsub('declare_action_class', 'action_class'))
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -0,0 +1,74 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
#
|
3
|
+
# Copyright:: 2019-2020, Chef Software Inc.
|
4
|
+
# Author:: Tim Smith (<tsmith84@gmail.com>)
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
module RuboCop
|
19
|
+
module Cop
|
20
|
+
module Chef
|
21
|
+
module Modernize
|
22
|
+
# The default actions can now be specified using the `default_action` helper instead of using the @action variable in the resource provider initialize method. In general we recommend against writing HWRPs, but if HWRPs are necessary you should utilize as much of the resource DSL as possible.
|
23
|
+
#
|
24
|
+
# @example
|
25
|
+
#
|
26
|
+
# ### incorrect
|
27
|
+
# def initialize(*args)
|
28
|
+
# super
|
29
|
+
# @action = :create
|
30
|
+
# end
|
31
|
+
#
|
32
|
+
# ### incorrect
|
33
|
+
# def initialize(*args)
|
34
|
+
# super
|
35
|
+
# @default_action = :create
|
36
|
+
# end
|
37
|
+
#
|
38
|
+
# ### correct
|
39
|
+
# default_action :create
|
40
|
+
|
41
|
+
class DefaultActionFromInitialize < Base
|
42
|
+
extend AutoCorrector
|
43
|
+
include RangeHelp
|
44
|
+
|
45
|
+
MSG = 'The default action of a resource can be set with the "default_action" helper instead of using the initialize method.'
|
46
|
+
|
47
|
+
def_node_matcher :action_variable_assignment?, <<-PATTERN
|
48
|
+
(ivasgn {:@action :@default_action} $(...))
|
49
|
+
PATTERN
|
50
|
+
|
51
|
+
def_node_search :initialize_method, '(def :initialize ... )'
|
52
|
+
|
53
|
+
def_node_search :default_action_method?, '(send nil? :default_action ... )'
|
54
|
+
|
55
|
+
def on_ivasgn(node)
|
56
|
+
action_variable_assignment?(node) do
|
57
|
+
return unless initialize_method(node.parent.parent)
|
58
|
+
add_offense(node, severity: :refactor) do |corrector|
|
59
|
+
# insert the new default_action call above the initialize method, but not if one already exists (this is sadly common)
|
60
|
+
unless default_action_method?(processed_source.ast)
|
61
|
+
initialize_node = initialize_method(processed_source.ast).first
|
62
|
+
corrector.insert_before(initialize_node.source_range, "default_action #{node.descendants.first.source}\n\n")
|
63
|
+
end
|
64
|
+
|
65
|
+
# remove the variable from the initialize method
|
66
|
+
corrector.remove(range_with_surrounding_space(range: node.loc.expression, side: :left))
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
#
|
3
|
+
# Copyright:: 2019, Chef Software, Inc.
|
4
|
+
# Author:: Tim Smith (<tsmith84@gmail.com>)
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
module RuboCop
|
19
|
+
module Cop
|
20
|
+
module Chef
|
21
|
+
module Modernize
|
22
|
+
# ChefSpec 7.1 and later auto generate ChefSpec matchers. Matchers in cookbooks can now be removed.
|
23
|
+
#
|
24
|
+
# @example
|
25
|
+
#
|
26
|
+
# ### incorrect
|
27
|
+
# if defined?(ChefSpec)
|
28
|
+
# def create_yum_repository(resource_name)
|
29
|
+
# ChefSpec::Matchers::ResourceMatcher.new(:yum_repository, :create, resource_name)
|
30
|
+
# end
|
31
|
+
# end
|
32
|
+
#
|
33
|
+
class DefinesChefSpecMatchers < Base
|
34
|
+
extend AutoCorrector
|
35
|
+
include RangeHelp
|
36
|
+
|
37
|
+
MSG = 'ChefSpec matchers are now auto generated by ChefSpec 7.1+ and do not need to be defined in a cookbook'
|
38
|
+
|
39
|
+
def_node_matcher :chefspec_matcher?, <<-PATTERN
|
40
|
+
(if ( :defined? (const nil? :ChefSpec)) ... )
|
41
|
+
PATTERN
|
42
|
+
|
43
|
+
def on_if(node)
|
44
|
+
chefspec_matcher?(node) do
|
45
|
+
add_offense(node, severity: :refactor) do |corrector|
|
46
|
+
corrector.remove(range_with_surrounding_space(range: node.loc.expression, side: :left))
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
#
|
3
|
+
# Copyright:: 2019, Chef Software, Inc.
|
4
|
+
# Author:: Tim Smith (<tsmith84@gmail.com>)
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
module RuboCop
|
19
|
+
module Cop
|
20
|
+
module Chef
|
21
|
+
module Modernize
|
22
|
+
# In 2016 with Chef Infra Client 12.5 Custom Resources were introduced as a way of writing reusable resource code that could be shipped in cookbooks. Custom Resources offer many advantages of legacy Definitions including unit testing with ChefSpec, input validation, actions, common properties like not_if/only_if, and resource reporting.
|
23
|
+
#
|
24
|
+
class Definitions < Base
|
25
|
+
include RuboCop::Chef::CookbookHelpers
|
26
|
+
|
27
|
+
MSG = 'Legacy Chef Infra definitions should be rewritten as custom resources to take full advantage of the Chef Infra feature set.'
|
28
|
+
|
29
|
+
def on_block(node)
|
30
|
+
add_offense(node, severity: :refactor) if node.respond_to?(:method_name) && node.method?(:define)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|