chef 14.14.29-universal-mingw32 → 14.15.6-universal-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/README.md +18 -7
- data/Rakefile +7 -4
- data/chef.gemspec +1 -1
- data/lib/chef/knife/ssh.rb +6 -0
- data/lib/chef/provider/ifconfig.rb +14 -5
- data/lib/chef/provider/windows_task.rb +9 -5
- data/lib/chef/resource/kernel_module.rb +61 -0
- data/lib/chef/resource/windows_task.rb +4 -0
- data/lib/chef/version.rb +1 -1
- data/spec/data/cookbooks/openldap/metadata.rb +2 -2
- data/spec/data/metadata/quick_start/metadata.rb +2 -7
- data/spec/functional/audit/runner_spec.rb +1 -1
- data/spec/functional/dsl/reboot_pending_spec.rb +7 -25
- data/spec/functional/event_loggers/windows_eventlog_spec.rb +6 -4
- data/spec/functional/file_content_management/deploy_strategies_spec.rb +21 -21
- data/spec/functional/knife/exec_spec.rb +1 -1
- data/spec/functional/knife/ssh_spec.rb +3 -3
- data/spec/functional/mixin/user_context_spec.rb +3 -1
- data/spec/functional/rebooter_spec.rb +1 -1
- data/spec/functional/resource/aix_service_spec.rb +1 -1
- data/spec/functional/resource/aixinit_service_spec.rb +1 -1
- data/spec/functional/resource/apt_package_spec.rb +1 -1
- data/spec/functional/resource/chocolatey_package_spec.rb +2 -2
- data/spec/functional/resource/cookbook_file_spec.rb +1 -3
- data/spec/functional/resource/cron_spec.rb +4 -3
- data/spec/functional/resource/dpkg_package_spec.rb +4 -4
- data/spec/functional/resource/dsc_resource_spec.rb +2 -1
- data/spec/functional/resource/dsc_script_spec.rb +16 -20
- data/spec/functional/resource/execute_spec.rb +2 -2
- data/spec/functional/resource/git_spec.rb +6 -6
- data/spec/functional/resource/group_spec.rb +8 -6
- data/spec/functional/resource/ifconfig_spec.rb +3 -5
- data/spec/functional/resource/link_spec.rb +2 -2
- data/spec/functional/resource/mount_spec.rb +3 -7
- data/spec/functional/resource/powershell_script_spec.rb +9 -8
- data/spec/functional/resource/reboot_spec.rb +1 -1
- data/spec/functional/resource/remote_file_spec.rb +2 -2
- data/spec/functional/resource/template_spec.rb +1 -1
- data/spec/functional/resource/user/windows_spec.rb +2 -2
- data/spec/functional/resource/windows_certificate_spec.rb +3 -3
- data/spec/functional/resource/windows_service_spec.rb +3 -3
- data/spec/functional/resource/windows_task_spec.rb +51 -0
- data/spec/functional/run_lock_spec.rb +10 -3
- data/spec/functional/shell_spec.rb +1 -1
- data/spec/functional/util/powershell/cmdlet_spec.rb +1 -1
- data/spec/functional/version_spec.rb +1 -1
- data/spec/functional/win32/security_spec.rb +12 -7
- data/spec/functional/win32/service_manager_spec.rb +1 -1
- data/spec/functional/win32/version_info_spec.rb +4 -4
- data/spec/integration/client/client_spec.rb +114 -132
- data/spec/integration/client/exit_code_spec.rb +8 -8
- data/spec/integration/client/ipv6_spec.rb +5 -5
- data/spec/integration/knife/chef_fs_data_store_spec.rb +38 -38
- data/spec/integration/knife/chef_repo_path_spec.rb +42 -42
- data/spec/integration/knife/chef_repository_file_system_spec.rb +9 -9
- data/spec/integration/knife/chefignore_spec.rb +13 -13
- data/spec/integration/knife/client_bulk_delete_spec.rb +8 -8
- data/spec/integration/knife/client_create_spec.rb +1 -1
- data/spec/integration/knife/client_delete_spec.rb +4 -4
- data/spec/integration/knife/client_key_delete_spec.rb +1 -1
- data/spec/integration/knife/client_key_list_spec.rb +1 -1
- data/spec/integration/knife/client_list_spec.rb +1 -1
- data/spec/integration/knife/common_options_spec.rb +1 -1
- data/spec/integration/knife/config_get_spec.rb +1 -1
- data/spec/integration/knife/config_list_profiles_spec.rb +2 -1
- data/spec/integration/knife/cookbook_api_ipv6_spec.rb +3 -3
- data/spec/integration/knife/cookbook_bulk_delete_spec.rb +3 -3
- data/spec/integration/knife/cookbook_download_spec.rb +4 -4
- data/spec/integration/knife/cookbook_list_spec.rb +2 -2
- data/spec/integration/knife/cookbook_show_spec.rb +3 -3
- data/spec/integration/knife/cookbook_upload_spec.rb +6 -6
- data/spec/integration/knife/data_bag_delete_spec.rb +4 -4
- data/spec/integration/knife/data_bag_from_file_spec.rb +7 -7
- data/spec/integration/knife/data_bag_list_spec.rb +1 -1
- data/spec/integration/knife/delete_spec.rb +37 -37
- data/spec/integration/knife/deps_spec.rb +23 -23
- data/spec/integration/knife/diff_spec.rb +23 -23
- data/spec/integration/knife/download_spec.rb +79 -79
- data/spec/integration/knife/environment_compare_spec.rb +3 -3
- data/spec/integration/knife/environment_from_file_spec.rb +6 -6
- data/spec/integration/knife/environment_list_spec.rb +1 -1
- data/spec/integration/knife/environment_show_spec.rb +4 -4
- data/spec/integration/knife/list_spec.rb +25 -25
- data/spec/integration/knife/node_bulk_delete_spec.rb +2 -2
- data/spec/integration/knife/node_delete_spec.rb +2 -2
- data/spec/integration/knife/node_environment_set_spec.rb +1 -1
- data/spec/integration/knife/node_from_file_spec.rb +2 -2
- data/spec/integration/knife/node_list_spec.rb +1 -1
- data/spec/integration/knife/raw_spec.rb +12 -12
- data/spec/integration/knife/redirection_spec.rb +1 -1
- data/spec/integration/knife/role_bulk_delete_spec.rb +2 -2
- data/spec/integration/knife/role_delete_spec.rb +2 -2
- data/spec/integration/knife/role_from_file_spec.rb +5 -5
- data/spec/integration/knife/role_list_spec.rb +1 -1
- data/spec/integration/knife/role_show_spec.rb +1 -1
- data/spec/integration/knife/show_spec.rb +10 -10
- data/spec/integration/knife/upload_spec.rb +85 -85
- data/spec/integration/recipes/accumulator_spec.rb +4 -4
- data/spec/integration/recipes/lwrp_inline_resources_spec.rb +6 -6
- data/spec/integration/recipes/lwrp_spec.rb +6 -6
- data/spec/integration/recipes/notifies_spec.rb +45 -45
- data/spec/integration/recipes/notifying_block_spec.rb +4 -4
- data/spec/integration/recipes/provider_choice.rb +1 -2
- data/spec/integration/recipes/recipe_dsl_spec.rb +9 -9
- data/spec/integration/recipes/remote_directory.rb +2 -2
- data/spec/integration/recipes/resource_action_spec.rb +1 -1
- data/spec/integration/recipes/resource_converge_if_changed_spec.rb +19 -19
- data/spec/integration/solo/solo_spec.rb +29 -29
- data/spec/scripts/ssl-serve.rb +1 -1
- data/spec/spec_helper.rb +11 -14
- data/spec/stress/win32/security_spec.rb +1 -1
- data/spec/support/lib/chef/resource/zen_follower.rb +1 -1
- data/spec/support/lib/chef/resource/zen_master.rb +1 -1
- data/spec/support/mock/platform.rb +2 -2
- data/spec/support/platform_helpers.rb +12 -3
- data/spec/support/platforms/win32/spec_service.rb +6 -10
- data/spec/support/shared/context/client.rb +2 -1
- data/spec/support/shared/functional/execute_resource.rb +4 -4
- data/spec/support/shared/functional/file_resource.rb +1 -3
- data/spec/support/shared/functional/http.rb +20 -44
- data/spec/support/shared/functional/securable_resource.rb +4 -8
- data/spec/support/shared/functional/win32_service.rb +1 -1
- data/spec/support/shared/functional/windows_script.rb +2 -1
- data/spec/support/shared/integration/app_server_support.rb +3 -4
- data/spec/support/shared/integration/integration_helper.rb +1 -0
- data/spec/support/shared/integration/knife_support.rb +5 -5
- data/spec/support/shared/unit/application_dot_d.rb +10 -4
- data/spec/support/shared/unit/file_system_support.rb +3 -2
- data/spec/support/shared/unit/platform_introspector.rb +12 -12
- data/spec/support/shared/unit/provider/file.rb +1 -1
- data/spec/support/shared/unit/script_resource.rb +1 -1
- data/spec/support/shared/unit/windows_script_resource.rb +1 -1
- data/spec/tiny_server.rb +1 -1
- data/spec/unit/api_client/registration_spec.rb +1 -1
- data/spec/unit/api_client_spec.rb +5 -5
- data/spec/unit/api_client_v1_spec.rb +6 -6
- data/spec/unit/application/client_spec.rb +8 -8
- data/spec/unit/application/exit_code_spec.rb +3 -2
- data/spec/unit/application/knife_spec.rb +1 -2
- data/spec/unit/audit/audit_event_proxy_spec.rb +14 -7
- data/spec/unit/audit/audit_reporter_spec.rb +20 -11
- data/spec/unit/audit/control_group_data_spec.rb +17 -12
- data/spec/unit/chef_fs/config_spec.rb +3 -3
- data/spec/unit/chef_fs/file_system/repository/directory_spec.rb +1 -1
- data/spec/unit/chef_fs/parallelizer.rb +1 -1
- data/spec/unit/client_spec.rb +3 -3
- data/spec/unit/config_fetcher_spec.rb +1 -1
- data/spec/unit/cookbook/metadata_spec.rb +13 -13
- data/spec/unit/cookbook/synchronizer_spec.rb +6 -6
- data/spec/unit/cookbook_loader_spec.rb +17 -17
- data/spec/unit/cookbook_manifest_spec.rb +9 -9
- data/spec/unit/cookbook_site_streaming_uploader_spec.rb +1 -2
- data/spec/unit/cookbook_uploader_spec.rb +2 -2
- data/spec/unit/cookbook_version_file_specificity_spec.rb +9 -9
- data/spec/unit/cookbook_version_spec.rb +2 -2
- data/spec/unit/data_bag_item_spec.rb +7 -7
- data/spec/unit/data_bag_spec.rb +1 -1
- data/spec/unit/data_collector_spec.rb +23 -23
- data/spec/unit/decorator_spec.rb +2 -2
- data/spec/unit/deprecated_spec.rb +2 -2
- data/spec/unit/dsl/data_query_spec.rb +3 -2
- data/spec/unit/dsl/declare_resource_spec.rb +1 -1
- data/spec/unit/dsl/platform_introspection_spec.rb +2 -2
- data/spec/unit/encrypted_data_bag_item/check_encrypted_spec.rb +2 -1
- data/spec/unit/encrypted_data_bag_item_spec.rb +2 -1
- data/spec/unit/environment_spec.rb +13 -13
- data/spec/unit/event_dispatch/dsl_spec.rb +1 -1
- data/spec/unit/file_content_management/deploy/mv_unix_spec.rb +3 -3
- data/spec/unit/file_content_management/deploy/mv_windows_spec.rb +2 -2
- data/spec/unit/formatters/error_inspectors/resource_failure_inspector_spec.rb +3 -3
- data/spec/unit/guard_interpreter/resource_guard_interpreter_spec.rb +1 -1
- data/spec/unit/http/authenticator_spec.rb +4 -3
- data/spec/unit/http/json_input_spec.rb +1 -1
- data/spec/unit/http/socketless_chef_zero_client_spec.rb +15 -15
- data/spec/unit/key_spec.rb +8 -8
- data/spec/unit/knife/bootstrap_spec.rb +14 -10
- data/spec/unit/knife/client_bulk_delete_spec.rb +4 -4
- data/spec/unit/knife/configure_client_spec.rb +1 -1
- data/spec/unit/knife/configure_spec.rb +1 -1
- data/spec/unit/knife/cookbook_bulk_delete_spec.rb +1 -1
- data/spec/unit/knife/cookbook_delete_spec.rb +2 -2
- data/spec/unit/knife/cookbook_download_spec.rb +2 -2
- data/spec/unit/knife/cookbook_metadata_spec.rb +4 -4
- data/spec/unit/knife/cookbook_upload_spec.rb +7 -5
- data/spec/unit/knife/core/bootstrap_context_spec.rb +1 -1
- data/spec/unit/knife/core/cookbook_scm_repo_spec.rb +2 -2
- data/spec/unit/knife/core/gem_glob_loader_spec.rb +4 -4
- data/spec/unit/knife/core/hashed_command_loader_spec.rb +4 -2
- data/spec/unit/knife/core/node_editor_spec.rb +12 -12
- data/spec/unit/knife/core/ui_spec.rb +11 -11
- data/spec/unit/knife/data_bag_from_file_spec.rb +2 -1
- data/spec/unit/knife/data_bag_show_spec.rb +2 -1
- data/spec/unit/knife/key_create_spec.rb +1 -1
- data/spec/unit/knife/key_delete_spec.rb +3 -3
- data/spec/unit/knife/key_edit_spec.rb +4 -4
- data/spec/unit/knife/key_list_spec.rb +1 -1
- data/spec/unit/knife/key_show_spec.rb +3 -3
- data/spec/unit/knife/node_bulk_delete_spec.rb +3 -3
- data/spec/unit/knife/node_delete_spec.rb +2 -2
- data/spec/unit/knife/node_edit_spec.rb +1 -1
- data/spec/unit/knife/node_environment_set_spec.rb +1 -1
- data/spec/unit/knife/node_from_file_spec.rb +1 -1
- data/spec/unit/knife/node_policy_set_spec.rb +1 -1
- data/spec/unit/knife/node_run_list_add_spec.rb +1 -1
- data/spec/unit/knife/node_run_list_remove_spec.rb +1 -1
- data/spec/unit/knife/node_run_list_set_spec.rb +1 -1
- data/spec/unit/knife/node_show_spec.rb +1 -1
- data/spec/unit/knife/raw_spec.rb +2 -2
- data/spec/unit/knife/role_bulk_delete_spec.rb +2 -2
- data/spec/unit/knife/role_create_spec.rb +1 -1
- data/spec/unit/knife/role_delete_spec.rb +1 -1
- data/spec/unit/knife/role_edit_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_add_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_clear_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_remove_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_replace_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_set_spec.rb +1 -1
- data/spec/unit/knife/role_from_file_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_add_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_clear_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_remove_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_replace_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_set_spec.rb +1 -1
- data/spec/unit/knife/ssh_spec.rb +27 -17
- data/spec/unit/knife/ssl_check_spec.rb +4 -4
- data/spec/unit/knife/ssl_fetch_spec.rb +5 -5
- data/spec/unit/knife/status_spec.rb +3 -2
- data/spec/unit/knife/supermarket_download_spec.rb +4 -4
- data/spec/unit/knife/supermarket_install_spec.rb +5 -4
- data/spec/unit/knife/supermarket_share_spec.rb +1 -1
- data/spec/unit/knife_spec.rb +34 -33
- data/spec/unit/lwrp_spec.rb +19 -19
- data/spec/unit/mixin/homebrew_user_spec.rb +1 -1
- data/spec/unit/mixin/params_validate_spec.rb +10 -10
- data/spec/unit/mixin/properties_spec.rb +4 -4
- data/spec/unit/mixin/shell_out_spec.rb +27 -27
- data/spec/unit/mixin/template_spec.rb +4 -8
- data/spec/unit/mixin/unformatter_spec.rb +1 -2
- data/spec/unit/mixin/user_context_spec.rb +1 -2
- data/spec/unit/mixin/which.rb +2 -0
- data/spec/unit/mixin/windows_architecture_helper_spec.rb +3 -3
- data/spec/unit/node/attribute_spec.rb +79 -79
- data/spec/unit/node/immutable_collections_spec.rb +50 -50
- data/spec/unit/node_spec.rb +16 -16
- data/spec/unit/org_spec.rb +3 -3
- data/spec/unit/policy_builder/policyfile_spec.rb +2 -2
- data/spec/unit/property/state_spec.rb +26 -25
- data/spec/unit/property/validation_spec.rb +14 -13
- data/spec/unit/property_spec.rb +10 -9
- data/spec/unit/provider/apt_update_spec.rb +6 -6
- data/spec/unit/provider/cron_spec.rb +15 -15
- data/spec/unit/provider/dsc_resource_spec.rb +6 -3
- data/spec/unit/provider/dsc_script_spec.rb +1 -1
- data/spec/unit/provider/execute_spec.rb +5 -5
- data/spec/unit/provider/git_spec.rb +39 -39
- data/spec/unit/provider/group/dscl_spec.rb +3 -3
- data/spec/unit/provider/group/groupadd_spec.rb +1 -1
- data/spec/unit/provider/group_spec.rb +2 -3
- data/spec/unit/provider/ifconfig/aix_spec.rb +1 -1
- data/spec/unit/provider/ifconfig/debian_spec.rb +2 -2
- data/spec/unit/provider/ifconfig_spec.rb +45 -16
- data/spec/unit/provider/launchd_spec.rb +23 -15
- data/spec/unit/provider/link_spec.rb +22 -11
- data/spec/unit/provider/mount/aix_spec.rb +6 -6
- data/spec/unit/provider/mount/mount_spec.rb +31 -31
- data/spec/unit/provider/mount/solaris_spec.rb +11 -11
- data/spec/unit/provider/ohai_spec.rb +1 -1
- data/spec/unit/provider/osx_profile_spec.rb +5 -7
- data/spec/unit/provider/package/apt_spec.rb +5 -5
- data/spec/unit/provider/package/bff_spec.rb +1 -1
- data/spec/unit/provider/package/cab_spec.rb +1 -1
- data/spec/unit/provider/package/chocolatey_spec.rb +8 -8
- data/spec/unit/provider/package/freebsd/pkg_spec.rb +1 -1
- data/spec/unit/provider/package/ips_spec.rb +6 -6
- data/spec/unit/provider/package/macports_spec.rb +1 -1
- data/spec/unit/provider/package/msu_spec.rb +1 -1
- data/spec/unit/provider/package/openbsd_spec.rb +15 -11
- data/spec/unit/provider/package/pacman_spec.rb +3 -3
- data/spec/unit/provider/package/paludis_spec.rb +4 -4
- data/spec/unit/provider/package/portage_spec.rb +1 -1
- data/spec/unit/provider/package/powershell_spec.rb +1 -1
- data/spec/unit/provider/package/smartos_spec.rb +3 -3
- data/spec/unit/provider/package/solaris_spec.rb +1 -1
- data/spec/unit/provider/package/windows/exe_spec.rb +9 -9
- data/spec/unit/provider/package/windows/msi_spec.rb +7 -7
- data/spec/unit/provider/package/windows_spec.rb +2 -1
- data/spec/unit/provider/package/yum/yum_cache_spec.rb +1 -1
- data/spec/unit/provider/package/zypper_spec.rb +4 -4
- data/spec/unit/provider/package_spec.rb +1 -1
- data/spec/unit/provider/powershell_script_spec.rb +7 -7
- data/spec/unit/provider/registry_key_spec.rb +1 -1
- data/spec/unit/provider/remote_directory_spec.rb +6 -6
- data/spec/unit/provider/route_spec.rb +11 -11
- data/spec/unit/provider/service/arch_service_spec.rb +13 -13
- data/spec/unit/provider/service/debian_service_spec.rb +2 -1
- data/spec/unit/provider/service/freebsd_service_spec.rb +28 -24
- data/spec/unit/provider/service/gentoo_service_spec.rb +2 -2
- data/spec/unit/provider/service/init_service_spec.rb +11 -11
- data/spec/unit/provider/service/invokercd_service_spec.rb +11 -11
- data/spec/unit/provider/service/macosx_spec.rb +5 -5
- data/spec/unit/provider/service/openbsd_service_spec.rb +15 -11
- data/spec/unit/provider/service/simple_service_spec.rb +7 -7
- data/spec/unit/provider/service/upstart_service_spec.rb +14 -14
- data/spec/unit/provider/service/windows_spec.rb +53 -35
- data/spec/unit/provider/subversion_spec.rb +8 -4
- data/spec/unit/provider/systemd_unit_spec.rb +142 -142
- data/spec/unit/provider/template/content_spec.rb +29 -29
- data/spec/unit/provider/windows_task_spec.rb +1 -1
- data/spec/unit/provider_resolver_spec.rb +75 -75
- data/spec/unit/provider_spec.rb +2 -4
- data/spec/unit/recipe_spec.rb +4 -4
- data/spec/unit/resource/batch_spec.rb +1 -1
- data/spec/unit/resource/chef_gem_spec.rb +1 -1
- data/spec/unit/resource/chocolatey_config_spec.rb +1 -1
- data/spec/unit/resource/chocolatey_source_spec.rb +1 -1
- data/spec/unit/resource/directory_spec.rb +1 -1
- data/spec/unit/resource/dnf_package_spec.rb +1 -1
- data/spec/unit/resource/dsc_resource_spec.rb +1 -1
- data/spec/unit/resource/file/verification_spec.rb +1 -2
- data/spec/unit/resource/file_spec.rb +1 -1
- data/spec/unit/resource/group_spec.rb +1 -1
- data/spec/unit/resource/link_spec.rb +1 -1
- data/spec/unit/resource/osx_profile_spec.rb +2 -1
- data/spec/unit/resource/powershell_script_spec.rb +12 -7
- data/spec/unit/resource/registry_key_spec.rb +3 -3
- data/spec/unit/resource/rhsm_subscription_spec.rb +1 -1
- data/spec/unit/resource/service_spec.rb +1 -1
- data/spec/unit/resource/template_spec.rb +2 -2
- data/spec/unit/resource/windows_env_spec.rb +1 -1
- data/spec/unit/resource/windows_service_spec.rb +5 -5
- data/spec/unit/resource/windows_task_spec.rb +6 -2
- data/spec/unit/resource/yum_package_spec.rb +1 -1
- data/spec/unit/resource_collection/resource_list_spec.rb +1 -1
- data/spec/unit/resource_collection/resource_set_spec.rb +7 -7
- data/spec/unit/resource_collection/stepable_iterator_spec.rb +2 -2
- data/spec/unit/resource_collection_spec.rb +4 -4
- data/spec/unit/resource_definition_spec.rb +2 -2
- data/spec/unit/resource_inspector_spec.rb +1 -1
- data/spec/unit/resource_reporter_spec.rb +4 -4
- data/spec/unit/resource_spec.rb +22 -22
- data/spec/unit/role_spec.rb +3 -3
- data/spec/unit/run_context/cookbook_compiler_spec.rb +23 -23
- data/spec/unit/run_list/run_list_expansion_spec.rb +9 -6
- data/spec/unit/run_list_spec.rb +1 -1
- data/spec/unit/runner_spec.rb +3 -3
- data/spec/unit/search/query_spec.rb +3 -2
- data/spec/unit/shell/model_wrapper_spec.rb +1 -1
- data/spec/unit/shell/shell_session_spec.rb +8 -11
- data/spec/unit/shell_spec.rb +1 -2
- data/spec/unit/user_spec.rb +4 -4
- data/spec/unit/user_v1_spec.rb +3 -3
- data/spec/unit/util/backup_spec.rb +1 -1
- data/spec/unit/util/dsc/lcm_output_parser_spec.rb +13 -13
- data/spec/unit/util/dsc/local_configuration_manager_spec.rb +3 -3
- data/spec/unit/util/editor_spec.rb +1 -1
- data/spec/unit/util/powershell/ps_credential_spec.rb +3 -2
- data/spec/unit/util/threaded_job_queue_spec.rb +2 -2
- data/spec/unit/version_class_spec.rb +4 -4
- data/spec/unit/win32/registry_spec.rb +5 -5
- data/spec/unit/win32/security_spec.rb +2 -1
- data/tasks/announce.rb +4 -11
- metadata +10 -6
- data/tasks/maintainers.rb +0 -211
- data/tasks/templates/prerelease.md.erb +0 -35
data/spec/unit/lwrp_spec.rb
CHANGED
@@ -199,7 +199,7 @@ describe "LWRP" do
|
|
199
199
|
end
|
200
200
|
|
201
201
|
it "should create a method for each attribute" do
|
202
|
-
expect(get_lwrp(:lwrp_foo).new("blah").methods.map
|
202
|
+
expect(get_lwrp(:lwrp_foo).new("blah").methods.map(&:to_sym)).to include(:monkey)
|
203
203
|
end
|
204
204
|
|
205
205
|
it "should build attribute methods that respect validation rules" do
|
@@ -264,12 +264,12 @@ describe "LWRP" do
|
|
264
264
|
let(:lwrp) do
|
265
265
|
Class.new(Chef::Resource::LWRPBase) do
|
266
266
|
actions :eat, :sleep
|
267
|
-
default_action
|
267
|
+
default_action %i{eat sleep}
|
268
268
|
end
|
269
269
|
end
|
270
270
|
|
271
271
|
it "returns the array of default actions" do
|
272
|
-
expect(lwrp.default_action).to eq(
|
272
|
+
expect(lwrp.default_action).to eq(%i{eat sleep})
|
273
273
|
end
|
274
274
|
end
|
275
275
|
|
@@ -287,7 +287,7 @@ describe "LWRP" do
|
|
287
287
|
end
|
288
288
|
|
289
289
|
it "delegates #actions to the parent" do
|
290
|
-
expect(child.actions).to eq(
|
290
|
+
expect(child.actions).to eq(%i{nothing eat sleep})
|
291
291
|
end
|
292
292
|
|
293
293
|
it "delegates #default_action to the parent" do
|
@@ -304,7 +304,7 @@ describe "LWRP" do
|
|
304
304
|
end
|
305
305
|
|
306
306
|
it "does not delegate #actions to the parent" do
|
307
|
-
expect(child.actions).to eq(
|
307
|
+
expect(child.actions).to eq(%i{nothing dont_eat dont_sleep})
|
308
308
|
end
|
309
309
|
|
310
310
|
it "does not delegate #default_action to the parent" do
|
@@ -322,7 +322,7 @@ describe "LWRP" do
|
|
322
322
|
end
|
323
323
|
|
324
324
|
it "amends actions when they are already defined" do
|
325
|
-
expect(child.actions).to eq(
|
325
|
+
expect(child.actions).to eq(%i{nothing eat sleep drink})
|
326
326
|
end
|
327
327
|
end
|
328
328
|
end
|
@@ -330,40 +330,40 @@ describe "LWRP" do
|
|
330
330
|
describe "when actions is set to an array" do
|
331
331
|
let(:resource_class) do
|
332
332
|
Class.new(Chef::Resource::LWRPBase) do
|
333
|
-
actions
|
333
|
+
actions %i{eat sleep}
|
334
334
|
end
|
335
335
|
end
|
336
336
|
let(:resource) do
|
337
337
|
resource_class.new("blah")
|
338
338
|
end
|
339
339
|
it "actions includes those actions" do
|
340
|
-
expect(resource_class.actions).to eq
|
340
|
+
expect(resource_class.actions).to eq %i{nothing eat sleep}
|
341
341
|
end
|
342
342
|
it "allowed_actions includes those actions" do
|
343
|
-
expect(resource_class.allowed_actions).to eq
|
343
|
+
expect(resource_class.allowed_actions).to eq %i{nothing eat sleep}
|
344
344
|
end
|
345
345
|
it "resource.allowed_actions includes those actions" do
|
346
|
-
expect(resource.allowed_actions).to eq
|
346
|
+
expect(resource.allowed_actions).to eq %i{nothing eat sleep}
|
347
347
|
end
|
348
348
|
end
|
349
349
|
|
350
350
|
describe "when allowed_actions is set to an array" do
|
351
351
|
let(:resource_class) do
|
352
352
|
Class.new(Chef::Resource::LWRPBase) do
|
353
|
-
allowed_actions
|
353
|
+
allowed_actions %i{eat sleep}
|
354
354
|
end
|
355
355
|
end
|
356
356
|
let(:resource) do
|
357
357
|
resource_class.new("blah")
|
358
358
|
end
|
359
359
|
it "actions includes those actions" do
|
360
|
-
expect(resource_class.actions).to eq
|
360
|
+
expect(resource_class.actions).to eq %i{nothing eat sleep}
|
361
361
|
end
|
362
362
|
it "allowed_actions includes those actions" do
|
363
|
-
expect(resource_class.allowed_actions).to eq
|
363
|
+
expect(resource_class.allowed_actions).to eq %i{nothing eat sleep}
|
364
364
|
end
|
365
365
|
it "resource.allowed_actions includes those actions" do
|
366
|
-
expect(resource.allowed_actions).to eq
|
366
|
+
expect(resource.allowed_actions).to eq %i{nothing eat sleep}
|
367
367
|
end
|
368
368
|
end
|
369
369
|
end
|
@@ -590,7 +590,7 @@ describe "LWRP" do
|
|
590
590
|
|
591
591
|
it "get_lwrp(:lwrp_once).new is an instance of the LWRP class" do
|
592
592
|
lwrp = get_lwrp(:lwrp_once).new("hi")
|
593
|
-
expect(lwrp.
|
593
|
+
expect(lwrp.is_a?(test_lwrp_class)).to be_truthy
|
594
594
|
expect(lwrp.is_a?(test_lwrp_class)).to be_truthy
|
595
595
|
expect(get_lwrp(:lwrp_once) === lwrp).to be_truthy
|
596
596
|
expect(test_lwrp_class === lwrp).to be_truthy
|
@@ -603,28 +603,28 @@ describe "LWRP" do
|
|
603
603
|
|
604
604
|
it "subclass.new is a subclass" do
|
605
605
|
lwrp = subclass.new("hi")
|
606
|
-
expect(lwrp.
|
606
|
+
expect(lwrp.is_a?(subclass)).to be_truthy
|
607
607
|
expect(lwrp.is_a?(subclass)).to be_truthy
|
608
608
|
expect(subclass === lwrp).to be_truthy
|
609
609
|
expect(lwrp.class === subclass)
|
610
610
|
end
|
611
611
|
it "subclass.new is an instance of the LWRP class" do
|
612
612
|
lwrp = subclass.new("hi")
|
613
|
-
expect(lwrp.
|
613
|
+
expect(lwrp.is_a?(test_lwrp_class)).to be_truthy
|
614
614
|
expect(lwrp.is_a?(test_lwrp_class)).to be_truthy
|
615
615
|
expect(test_lwrp_class === lwrp).to be_truthy
|
616
616
|
expect(lwrp.class === test_lwrp_class)
|
617
617
|
end
|
618
618
|
it "subclass.new is a get_lwrp(:lwrp_once)" do
|
619
619
|
lwrp = subclass.new("hi")
|
620
|
-
expect(lwrp.
|
620
|
+
expect(lwrp.is_a?(get_lwrp(:lwrp_once))).to be_truthy
|
621
621
|
expect(lwrp.is_a?(get_lwrp(:lwrp_once))).to be_truthy
|
622
622
|
expect(get_lwrp(:lwrp_once) === lwrp).to be_truthy
|
623
623
|
expect(lwrp.class === get_lwrp(:lwrp_once))
|
624
624
|
end
|
625
625
|
it "get_lwrp(:lwrp_once).new is *not* a subclass" do
|
626
626
|
lwrp = get_lwrp(:lwrp_once).new("hi")
|
627
|
-
expect(lwrp.
|
627
|
+
expect(lwrp.is_a?(subclass)).to be_falsey
|
628
628
|
expect(lwrp.is_a?(subclass)).to be_falsey
|
629
629
|
expect(subclass === lwrp.class).to be_falsey
|
630
630
|
expect(subclass === get_lwrp(:lwrp_once)).to be_falsey
|
@@ -30,7 +30,7 @@ end
|
|
30
30
|
|
31
31
|
describe Chef::Mixin::ParamsValidate do
|
32
32
|
before(:each) do
|
33
|
-
@vo = TinyClass.new
|
33
|
+
@vo = TinyClass.new
|
34
34
|
end
|
35
35
|
|
36
36
|
it "should allow a hash and a hash as arguments to validate" do
|
@@ -44,7 +44,7 @@ describe Chef::Mixin::ParamsValidate do
|
|
44
44
|
it "should require validation map keys to be symbols or strings" do
|
45
45
|
expect { @vo.validate({ one: "two" }, { one: true }) }.not_to raise_error
|
46
46
|
expect { @vo.validate({ one: "two" }, { "one" => true }) }.not_to raise_error
|
47
|
-
expect { @vo.validate({ one: "two" }, {
|
47
|
+
expect { @vo.validate({ one: "two" }, { {} => true }) }.to raise_error(ArgumentError)
|
48
48
|
end
|
49
49
|
|
50
50
|
it "should allow options to be required with true" do
|
@@ -163,7 +163,7 @@ describe Chef::Mixin::ParamsValidate do
|
|
163
163
|
end
|
164
164
|
|
165
165
|
it "should let you set a default value with default => value" do
|
166
|
-
arguments =
|
166
|
+
arguments = {}
|
167
167
|
@vo.validate(arguments, {
|
168
168
|
one: {
|
169
169
|
default: "is the loneliest number",
|
@@ -236,7 +236,7 @@ describe Chef::Mixin::ParamsValidate do
|
|
236
236
|
{
|
237
237
|
one: {
|
238
238
|
kind_of: String,
|
239
|
-
respond_to:
|
239
|
+
respond_to: %i{to_s upcase},
|
240
240
|
regex: /^is good/,
|
241
241
|
callbacks: {
|
242
242
|
"should be your friend" => lambda do |a|
|
@@ -260,7 +260,7 @@ describe Chef::Mixin::ParamsValidate do
|
|
260
260
|
{
|
261
261
|
one: {
|
262
262
|
kind_of: String,
|
263
|
-
respond_to:
|
263
|
+
respond_to: %i{to_s upcase},
|
264
264
|
regex: /^is good/,
|
265
265
|
callbacks: {
|
266
266
|
"should be your friend" => lambda do |a|
|
@@ -321,7 +321,7 @@ describe Chef::Mixin::ParamsValidate do
|
|
321
321
|
end.not_to raise_error
|
322
322
|
expect do
|
323
323
|
@vo.validate(
|
324
|
-
{ one:
|
324
|
+
{ one: {} },
|
325
325
|
{
|
326
326
|
one: {
|
327
327
|
kind_of: [ String, Array ],
|
@@ -334,22 +334,22 @@ describe Chef::Mixin::ParamsValidate do
|
|
334
334
|
it "asserts that a value returns false from a predicate method" do
|
335
335
|
expect do
|
336
336
|
@vo.validate({ not_blank: "should pass" },
|
337
|
-
|
337
|
+
{ not_blank: { cannot_be: %i{nil empty} } })
|
338
338
|
end.not_to raise_error
|
339
339
|
expect do
|
340
340
|
@vo.validate({ not_blank: "" },
|
341
|
-
|
341
|
+
{ not_blank: { cannot_be: %i{nil empty} } })
|
342
342
|
end.to raise_error(Chef::Exceptions::ValidationFailed)
|
343
343
|
end
|
344
344
|
|
345
345
|
it "allows a custom validation message" do
|
346
346
|
expect do
|
347
347
|
@vo.validate({ not_blank: "should pass" },
|
348
|
-
|
348
|
+
{ not_blank: { cannot_be: %i{nil empty}, validation_message: "my validation message" } })
|
349
349
|
end.not_to raise_error
|
350
350
|
expect do
|
351
351
|
@vo.validate({ not_blank: "" },
|
352
|
-
|
352
|
+
{ not_blank: { cannot_be: %i{nil empty}, validation_message: "my validation message" } })
|
353
353
|
end.to raise_error(Chef::Exceptions::ValidationFailed, "my validation message")
|
354
354
|
end
|
355
355
|
|
@@ -31,7 +31,7 @@ module ChefMixinPropertiesSpec
|
|
31
31
|
end
|
32
32
|
|
33
33
|
it "A.properties has a, ab, and ac with types 'a', ['a', 'b'], and ['b', 'c']" do
|
34
|
-
expect(A.properties.keys).to eq
|
34
|
+
expect(A.properties.keys).to eq %i{a ab ac d}
|
35
35
|
expect(A.properties[:a].validation_options[:is]).to eq "a"
|
36
36
|
expect(A.properties[:ab].validation_options[:is]).to eq %w{a b}
|
37
37
|
expect(A.properties[:ac].validation_options[:is]).to eq %w{a c}
|
@@ -46,13 +46,13 @@ module ChefMixinPropertiesSpec
|
|
46
46
|
end
|
47
47
|
|
48
48
|
it "B.properties has b, ab, and bc with types 'b', nil and ['b', 'c']" do
|
49
|
-
expect(B.properties.keys).to eq
|
49
|
+
expect(B.properties.keys).to eq %i{b ab bc}
|
50
50
|
expect(B.properties[:b].validation_options[:is]).to eq "b"
|
51
51
|
expect(B.properties[:ab].validation_options[:is]).to be_nil
|
52
52
|
expect(B.properties[:bc].validation_options[:is]).to eq %w{b c}
|
53
53
|
end
|
54
54
|
it "C.properties has a, b, c, ac and bc with merged types" do
|
55
|
-
expect(C.properties.keys).to eq
|
55
|
+
expect(C.properties.keys).to eq %i{a ab ac d b bc c}
|
56
56
|
expect(C.properties[:a].validation_options[:is]).to eq "a"
|
57
57
|
expect(C.properties[:b].validation_options[:is]).to eq "b"
|
58
58
|
expect(C.properties[:c].validation_options[:is]).to eq "c"
|
@@ -99,7 +99,7 @@ module ChefMixinPropertiesSpec
|
|
99
99
|
end
|
100
100
|
|
101
101
|
it "Outerest.properties.validation_options[:is] inner, outer, outerest" do
|
102
|
-
expect(Outerest.properties.keys).to eq
|
102
|
+
expect(Outerest.properties.keys).to eq %i{inner outer outerest}
|
103
103
|
end
|
104
104
|
end
|
105
105
|
end
|
@@ -51,7 +51,7 @@ describe Chef::Mixin::ShellOut do
|
|
51
51
|
let(:retobj) { instance_double(Mixlib::ShellOut, "error!" => false) }
|
52
52
|
let(:cmd) { "echo '#{rand(1000)}'" }
|
53
53
|
|
54
|
-
|
54
|
+
%i{shell_out shell_out_compact shell_out_compact_timeout shell_out! shell_out_compact! shell_out_compact_timeout!}.each do |method|
|
55
55
|
describe "##{method}" do
|
56
56
|
before do
|
57
57
|
Chef::Config[:treat_deprecation_warnings_as_errors] = false
|
@@ -75,11 +75,11 @@ describe Chef::Mixin::ShellOut do
|
|
75
75
|
options = { environment: { "HOME" => "/Users/morty" } }
|
76
76
|
expect(Chef::Mixin::ShellOut).to receive(:shell_out_command).with(cmd, {
|
77
77
|
environment: {
|
78
|
-
"HOME"
|
79
|
-
"LC_ALL"
|
80
|
-
"LANG"
|
78
|
+
"HOME" => "/Users/morty",
|
79
|
+
"LC_ALL" => Chef::Config[:internal_locale],
|
80
|
+
"LANG" => Chef::Config[:internal_locale],
|
81
81
|
"LANGUAGE" => Chef::Config[:internal_locale],
|
82
|
-
env_path
|
82
|
+
env_path => sanitized_path,
|
83
83
|
},
|
84
84
|
}).and_return(retobj)
|
85
85
|
shell_out_obj.send(method, cmd, options)
|
@@ -89,11 +89,11 @@ describe Chef::Mixin::ShellOut do
|
|
89
89
|
options = { environment: { "HOME" => "/Users/morty" } }
|
90
90
|
expect(Chef::Mixin::ShellOut).to receive(:shell_out_command).with(cmd, {
|
91
91
|
environment: {
|
92
|
-
"HOME"
|
93
|
-
"LC_ALL"
|
94
|
-
"LANG"
|
92
|
+
"HOME" => "/Users/morty",
|
93
|
+
"LC_ALL" => Chef::Config[:internal_locale],
|
94
|
+
"LANG" => Chef::Config[:internal_locale],
|
95
95
|
"LANGUAGE" => Chef::Config[:internal_locale],
|
96
|
-
env_path
|
96
|
+
env_path => sanitized_path,
|
97
97
|
},
|
98
98
|
}).and_return(retobj)
|
99
99
|
shell_out_obj.send(method, cmd, options)
|
@@ -118,11 +118,11 @@ describe Chef::Mixin::ShellOut do
|
|
118
118
|
options = { env: { "HOME" => "/Users/morty" } }
|
119
119
|
expect(Chef::Mixin::ShellOut).to receive(:shell_out_command).with(cmd, {
|
120
120
|
env: {
|
121
|
-
"HOME"
|
122
|
-
"LC_ALL"
|
123
|
-
"LANG"
|
121
|
+
"HOME" => "/Users/morty",
|
122
|
+
"LC_ALL" => Chef::Config[:internal_locale],
|
123
|
+
"LANG" => Chef::Config[:internal_locale],
|
124
124
|
"LANGUAGE" => Chef::Config[:internal_locale],
|
125
|
-
env_path
|
125
|
+
env_path => sanitized_path,
|
126
126
|
},
|
127
127
|
}).and_return(retobj)
|
128
128
|
shell_out_obj.send(method, cmd, options)
|
@@ -132,11 +132,11 @@ describe Chef::Mixin::ShellOut do
|
|
132
132
|
options = { env: { "HOME" => "/Users/morty" } }
|
133
133
|
expect(Chef::Mixin::ShellOut).to receive(:shell_out_command).with(cmd, {
|
134
134
|
env: {
|
135
|
-
"HOME"
|
136
|
-
"LC_ALL"
|
137
|
-
"LANG"
|
135
|
+
"HOME" => "/Users/morty",
|
136
|
+
"LC_ALL" => Chef::Config[:internal_locale],
|
137
|
+
"LANG" => Chef::Config[:internal_locale],
|
138
138
|
"LANGUAGE" => Chef::Config[:internal_locale],
|
139
|
-
env_path
|
139
|
+
env_path => sanitized_path,
|
140
140
|
},
|
141
141
|
}).and_return(retobj)
|
142
142
|
shell_out_obj.send(method, cmd, options)
|
@@ -150,10 +150,10 @@ describe Chef::Mixin::ShellOut do
|
|
150
150
|
expect(Chef::Mixin::ShellOut).to receive(:shell_out_command).with(cmd, {
|
151
151
|
user: "morty",
|
152
152
|
environment: {
|
153
|
-
"LC_ALL"
|
154
|
-
"LANG"
|
153
|
+
"LC_ALL" => Chef::Config[:internal_locale],
|
154
|
+
"LANG" => Chef::Config[:internal_locale],
|
155
155
|
"LANGUAGE" => Chef::Config[:internal_locale],
|
156
|
-
env_path
|
156
|
+
env_path => sanitized_path,
|
157
157
|
},
|
158
158
|
}).and_return(retobj)
|
159
159
|
shell_out_obj.send(method, cmd, options)
|
@@ -165,10 +165,10 @@ describe Chef::Mixin::ShellOut do
|
|
165
165
|
it "should set environment language settings to the configured internal locale" do
|
166
166
|
expect(Chef::Mixin::ShellOut).to receive(:shell_out_command).with(cmd, {
|
167
167
|
environment: {
|
168
|
-
"LC_ALL"
|
169
|
-
"LANG"
|
168
|
+
"LC_ALL" => Chef::Config[:internal_locale],
|
169
|
+
"LANG" => Chef::Config[:internal_locale],
|
170
170
|
"LANGUAGE" => Chef::Config[:internal_locale],
|
171
|
-
env_path
|
171
|
+
env_path => sanitized_path,
|
172
172
|
},
|
173
173
|
}).and_return(retobj)
|
174
174
|
shell_out_obj.send(method, cmd)
|
@@ -301,7 +301,7 @@ describe Chef::Mixin::ShellOut do
|
|
301
301
|
end
|
302
302
|
|
303
303
|
describe "deprecations" do
|
304
|
-
|
304
|
+
%i{shell_out_with_systems_locale shell_out_compact shell_out_compact_timeout shell_out_with_systems_locale! shell_out_compact! shell_out_compact_timeout!}.each do |method|
|
305
305
|
it "should not respond to #{method} in Chef-15", chef: ">= 15" do
|
306
306
|
expect(shell_out_obj.respond_to?(method)).to be false
|
307
307
|
end
|
@@ -341,7 +341,7 @@ describe Chef::Mixin::ShellOut do
|
|
341
341
|
end
|
342
342
|
|
343
343
|
describe "on Chef-15", chef: ">= 15" do
|
344
|
-
|
344
|
+
%i{shell_out shell_out!}.each do |method|
|
345
345
|
stubbed_method = (method == :shell_out) ? :shell_out_compacted : :shell_out_compacted!
|
346
346
|
it "#{method} defaults to 900 seconds" do
|
347
347
|
expect(provider).to receive(stubbed_method).with("foo", timeout: 900)
|
@@ -377,7 +377,7 @@ describe Chef::Mixin::ShellOut do
|
|
377
377
|
let(:new_resource) { Chef::Resource::Package.new("foo") }
|
378
378
|
let(:provider) { new_resource.provider_for_action(:install) }
|
379
379
|
|
380
|
-
|
380
|
+
%i{shell_out shell_out!}.each do |method|
|
381
381
|
stubbed_method = (method == :shell_out) ? :shell_out_compacted : :shell_out_compacted!
|
382
382
|
it "#{method} defaults to 900 seconds" do
|
383
383
|
expect(provider).to receive(stubbed_method).with("foo", timeout: 900)
|
@@ -416,7 +416,7 @@ describe Chef::Mixin::ShellOut do
|
|
416
416
|
Chef::Config[:treat_deprecation_warnings_as_errors] = false
|
417
417
|
end
|
418
418
|
|
419
|
-
|
419
|
+
%i{shell_out_compact_timeout shell_out_compact_timeout!}.each do |method|
|
420
420
|
stubbed_method = (method == :shell_out_compact_timeout) ? :shell_out_compacted : :shell_out_compacted!
|
421
421
|
it "#{method} defaults to 900 seconds" do
|
422
422
|
expect(provider).to receive(stubbed_method).with("foo", timeout: 900)
|
@@ -242,17 +242,13 @@ describe Chef::Mixin::Template, "render_template" do
|
|
242
242
|
|
243
243
|
it "emits a warning when overriding 'core' methods" do
|
244
244
|
mod = Module.new do
|
245
|
-
def render
|
246
|
-
end
|
245
|
+
def render; end
|
247
246
|
|
248
|
-
def node
|
249
|
-
end
|
247
|
+
def node; end
|
250
248
|
|
251
|
-
def render_template
|
252
|
-
end
|
249
|
+
def render_template; end
|
253
250
|
|
254
|
-
def render_template_from_string
|
255
|
-
end
|
251
|
+
def render_template_from_string; end
|
256
252
|
end
|
257
253
|
%w{node render render_template render_template_from_string}.each do |method_name|
|
258
254
|
expect(Chef::Log).to receive(:warn).with(/^Core template method `#{method_name}' overridden by extension module/)
|
data/spec/unit/mixin/which.rb
CHANGED
@@ -88,11 +88,13 @@ describe Chef::Mixin::Which do
|
|
88
88
|
|
89
89
|
test_which("passes in the filename as the arg", "foo1", finds: "/dir1/foo1") do |f|
|
90
90
|
raise "bad arg to block" unless f == "/dir1/foo1"
|
91
|
+
|
91
92
|
true
|
92
93
|
end
|
93
94
|
|
94
95
|
test_which("arrays with blocks", "foo1", "foo2", finds: "/dir2/foo1", others: [ "/dir1/foo2" ]) do |f|
|
95
96
|
raise "bad arg to block" unless f == "/dir2/foo1" || f == "/dir1/foo2"
|
97
|
+
|
96
98
|
true
|
97
99
|
end
|
98
100
|
end
|