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
@@ -23,9 +23,10 @@ require "chef/chef_fs/file_system/memory/memory_file"
|
|
23
23
|
|
24
24
|
module FileSystemSupport
|
25
25
|
def memory_fs(pretty_name, value, cannot_be_in_regex = nil)
|
26
|
-
|
26
|
+
unless value.is_a?(Hash)
|
27
27
|
raise "memory_fs() must take a Hash"
|
28
28
|
end
|
29
|
+
|
29
30
|
dir = Chef::ChefFS::FileSystem::Memory::MemoryRoot.new(pretty_name, cannot_be_in_regex)
|
30
31
|
value.each do |key, child|
|
31
32
|
dir.add_child(memory_fs_value(child, key.to_s, dir))
|
@@ -55,7 +56,7 @@ module FileSystemSupport
|
|
55
56
|
|
56
57
|
def no_blocking_calls_allowed
|
57
58
|
[ Chef::ChefFS::FileSystem::Memory::MemoryFile, Chef::ChefFS::FileSystem::Memory::MemoryDir ].each do |c|
|
58
|
-
|
59
|
+
%i{children exists? read}.each do |m|
|
59
60
|
allow_any_instance_of(c).to receive(m).and_raise("#{m} should not be called")
|
60
61
|
end
|
61
62
|
end
|
@@ -36,14 +36,14 @@ shared_examples_for "a platform introspector" do
|
|
36
36
|
|
37
37
|
@platform_family_hash = {
|
38
38
|
"debian" => "debian value",
|
39
|
-
|
39
|
+
%i{rhel fedora} => "redhatty value",
|
40
40
|
"suse" => "suse value",
|
41
41
|
:default => "default value",
|
42
42
|
}
|
43
43
|
end
|
44
44
|
|
45
45
|
it "returns a default value when there is no known platform" do
|
46
|
-
node =
|
46
|
+
node = {}
|
47
47
|
expect(platform_introspector.value_for_platform(@platform_hash)).to eq("default")
|
48
48
|
end
|
49
49
|
|
@@ -125,7 +125,7 @@ shared_examples_for "a platform introspector" do
|
|
125
125
|
|
126
126
|
it "returns true if the node is a provided platform and platforms are provided as symbols" do
|
127
127
|
node.automatic_attrs[:platform] = "ubuntu"
|
128
|
-
expect(platform_introspector.platform?(
|
128
|
+
expect(platform_introspector.platform?(%i{redhat ubuntu})).to eq(true)
|
129
129
|
end
|
130
130
|
|
131
131
|
it "returns true if the node is a provided platform and platforms are provided as strings" do
|
@@ -143,7 +143,7 @@ shared_examples_for "a platform introspector" do
|
|
143
143
|
|
144
144
|
it "returns true if the node is in a provided platform family and families are provided as symbols" do
|
145
145
|
node.automatic_attrs[:platform_family] = "debian"
|
146
|
-
expect(platform_introspector.platform_family?(
|
146
|
+
expect(platform_introspector.platform_family?(%i{rhel debian})).to eq(true)
|
147
147
|
end
|
148
148
|
|
149
149
|
it "returns true if the node is a provided platform and platforms are provided as strings" do
|
@@ -165,24 +165,24 @@ shared_examples_for "a platform introspector" do
|
|
165
165
|
describe "when the value is an array" do
|
166
166
|
before do
|
167
167
|
@platform_hash = {
|
168
|
-
"debian" => { "4.0" =>
|
169
|
-
"ubuntu" => { "default" =>
|
170
|
-
"centos" => { "default" =>
|
171
|
-
"redhat" => { "default" =>
|
172
|
-
"fedora" => { "default" =>
|
173
|
-
"default" => { "default" =>
|
168
|
+
"debian" => { "4.0" => %i{restart reload}, "default" => %i{restart reload status} },
|
169
|
+
"ubuntu" => { "default" => %i{restart reload status} },
|
170
|
+
"centos" => { "default" => %i{restart reload status} },
|
171
|
+
"redhat" => { "default" => %i{restart reload status} },
|
172
|
+
"fedora" => { "default" => %i{restart reload status} },
|
173
|
+
"default" => { "default" => %i{restart reload} } }
|
174
174
|
end
|
175
175
|
|
176
176
|
it "returns the correct default for a given platform" do
|
177
177
|
node.automatic_attrs[:platform] = "debian"
|
178
178
|
node.automatic_attrs[:platform_version] = "9000"
|
179
|
-
expect(platform_introspector.value_for_platform(@platform_hash)).to eq(
|
179
|
+
expect(platform_introspector.value_for_platform(@platform_hash)).to eq(%i{restart reload status})
|
180
180
|
end
|
181
181
|
|
182
182
|
it "returns the correct platform+version specific value " do
|
183
183
|
node.automatic_attrs[:platform] = "debian"
|
184
184
|
node.automatic_attrs[:platform_version] = "4.0"
|
185
|
-
expect(platform_introspector.value_for_platform(@platform_hash)).to eq(
|
185
|
+
expect(platform_introspector.value_for_platform(@platform_hash)).to eq(%i{restart reload})
|
186
186
|
end
|
187
187
|
end
|
188
188
|
|
@@ -417,7 +417,7 @@ shared_examples_for Chef::Provider::File do
|
|
417
417
|
context "when the enclosing directory does not exist" do
|
418
418
|
before { setup_missing_enclosing_directory }
|
419
419
|
|
420
|
-
|
420
|
+
%i{create create_if_missing touch}.each do |action|
|
421
421
|
context "action #{action}" do
|
422
422
|
it "raises EnclosingDirectoryDoesNotExist" do
|
423
423
|
expect { provider.run_action(action) }.to raise_error(Chef::Exceptions::EnclosingDirectoryDoesNotExist)
|
@@ -66,7 +66,7 @@ shared_examples_for "a script resource" do
|
|
66
66
|
|
67
67
|
it "inherits exactly the :cwd, :environment, :group, :path, :user, and :umask attributes from a parent resource class" do
|
68
68
|
inherited_difference = Chef::Resource::Script.guard_inherited_attributes -
|
69
|
-
|
69
|
+
%i{cwd environment group path user umask}
|
70
70
|
|
71
71
|
expect(inherited_difference).to eq([])
|
72
72
|
end
|
@@ -25,7 +25,7 @@ shared_examples_for "a Windows script resource" do
|
|
25
25
|
before(:each) do
|
26
26
|
node = Chef::Node.new
|
27
27
|
|
28
|
-
node.default["kernel"] =
|
28
|
+
node.default["kernel"] = {}
|
29
29
|
node.default["kernel"][:machine] = :x86_64.to_s
|
30
30
|
|
31
31
|
run_context = Chef::RunContext.new(node, nil, nil)
|
data/spec/tiny_server.rb
CHANGED
@@ -135,7 +135,7 @@ module TinyServer
|
|
135
135
|
if response = response_for_request(env)
|
136
136
|
response.call
|
137
137
|
else
|
138
|
-
debug_info = { message: "no data matches the request for #{env[
|
138
|
+
debug_info = { message: "no data matches the request for #{env["REQUEST_URI"]}",
|
139
139
|
available_routes: @routes, request: env }
|
140
140
|
# Uncomment me for glorious debugging
|
141
141
|
# pp :not_found => debug_info
|
@@ -98,7 +98,7 @@ describe Chef::ApiClient::Registration do
|
|
98
98
|
it "has an HTTP client configured with validator credentials" do
|
99
99
|
expect(registration.http_api).to be_a_kind_of(Chef::ServerAPI)
|
100
100
|
expect(registration.http_api.options[:client_name]).to eq("test-validator")
|
101
|
-
auth = registration.http_api.middlewares.find { |klass| klass.
|
101
|
+
auth = registration.http_api.middlewares.find { |klass| klass.is_a? Chef::HTTP::Authenticator }
|
102
102
|
expect(auth.client_name).to eq("test-validator")
|
103
103
|
end
|
104
104
|
|
@@ -41,7 +41,7 @@ describe Chef::ApiClient do
|
|
41
41
|
end
|
42
42
|
|
43
43
|
it "only allows string values for the name" do
|
44
|
-
expect { @client.name
|
44
|
+
expect { @client.name({}) }.to raise_error(ArgumentError)
|
45
45
|
end
|
46
46
|
|
47
47
|
it "has an admin flag attribute" do
|
@@ -55,7 +55,7 @@ describe Chef::ApiClient do
|
|
55
55
|
|
56
56
|
it "allows only boolean values for the admin flag" do
|
57
57
|
expect { @client.admin(false) }.not_to raise_error
|
58
|
-
expect { @client.admin(
|
58
|
+
expect { @client.admin({}) }.to raise_error(ArgumentError)
|
59
59
|
end
|
60
60
|
|
61
61
|
it "has a 'validator' flag attribute" do
|
@@ -69,7 +69,7 @@ describe Chef::ApiClient do
|
|
69
69
|
|
70
70
|
it "allows only boolean values for the 'validator' flag" do
|
71
71
|
expect { @client.validator(false) }.not_to raise_error
|
72
|
-
expect { @client.validator(
|
72
|
+
expect { @client.validator({}) }.to raise_error(ArgumentError)
|
73
73
|
end
|
74
74
|
|
75
75
|
it "has a public key attribute" do
|
@@ -79,7 +79,7 @@ describe Chef::ApiClient do
|
|
79
79
|
|
80
80
|
it "accepts only String values for the public key" do
|
81
81
|
expect { @client.public_key "" }.not_to raise_error
|
82
|
-
expect { @client.public_key
|
82
|
+
expect { @client.public_key({}) }.to raise_error(ArgumentError)
|
83
83
|
end
|
84
84
|
|
85
85
|
it "has a private key attribute" do
|
@@ -89,7 +89,7 @@ describe Chef::ApiClient do
|
|
89
89
|
|
90
90
|
it "accepts only String values for the private key" do
|
91
91
|
expect { @client.private_key "" }.not_to raise_error
|
92
|
-
expect { @client.private_key
|
92
|
+
expect { @client.private_key({}) }.to raise_error(ArgumentError)
|
93
93
|
end
|
94
94
|
|
95
95
|
describe "when serializing to JSON" do
|
@@ -36,7 +36,7 @@ describe Chef::ApiClientV1 do
|
|
36
36
|
end
|
37
37
|
|
38
38
|
it "only allows string values for the name" do
|
39
|
-
expect { @client.name
|
39
|
+
expect { @client.name({}) }.to raise_error(ArgumentError)
|
40
40
|
end
|
41
41
|
|
42
42
|
it "has an admin flag attribute" do
|
@@ -50,7 +50,7 @@ describe Chef::ApiClientV1 do
|
|
50
50
|
|
51
51
|
it "allows only boolean values for the admin flag" do
|
52
52
|
expect { @client.admin(false) }.not_to raise_error
|
53
|
-
expect { @client.admin(
|
53
|
+
expect { @client.admin({}) }.to raise_error(ArgumentError)
|
54
54
|
end
|
55
55
|
|
56
56
|
it "has an create_key flag attribute" do
|
@@ -64,7 +64,7 @@ describe Chef::ApiClientV1 do
|
|
64
64
|
|
65
65
|
it "allows only boolean values for the create_key flag" do
|
66
66
|
expect { @client.create_key(false) }.not_to raise_error
|
67
|
-
expect { @client.create_key(
|
67
|
+
expect { @client.create_key({}) }.to raise_error(ArgumentError)
|
68
68
|
end
|
69
69
|
|
70
70
|
it "has a 'validator' flag attribute" do
|
@@ -78,7 +78,7 @@ describe Chef::ApiClientV1 do
|
|
78
78
|
|
79
79
|
it "allows only boolean values for the 'validator' flag" do
|
80
80
|
expect { @client.validator(false) }.not_to raise_error
|
81
|
-
expect { @client.validator(
|
81
|
+
expect { @client.validator({}) }.to raise_error(ArgumentError)
|
82
82
|
end
|
83
83
|
|
84
84
|
it "has a public key attribute" do
|
@@ -88,7 +88,7 @@ describe Chef::ApiClientV1 do
|
|
88
88
|
|
89
89
|
it "accepts only String values for the public key" do
|
90
90
|
expect { @client.public_key "" }.not_to raise_error
|
91
|
-
expect { @client.public_key
|
91
|
+
expect { @client.public_key({}) }.to raise_error(ArgumentError)
|
92
92
|
end
|
93
93
|
|
94
94
|
it "has a private key attribute" do
|
@@ -98,7 +98,7 @@ describe Chef::ApiClientV1 do
|
|
98
98
|
|
99
99
|
it "accepts only String values for the private key" do
|
100
100
|
expect { @client.private_key "" }.not_to raise_error
|
101
|
-
expect { @client.private_key
|
101
|
+
expect { @client.private_key({}) }.to raise_error(ArgumentError)
|
102
102
|
end
|
103
103
|
|
104
104
|
describe "when serializing to JSON" do
|
@@ -120,8 +120,8 @@ describe Chef::Application::Client, "reconfigure" do
|
|
120
120
|
|
121
121
|
describe "--named-run-list" do
|
122
122
|
it_behaves_like "sets the configuration",
|
123
|
-
|
124
|
-
|
123
|
+
"--named-run-list arglebargle-example",
|
124
|
+
named_run_list: "arglebargle-example"
|
125
125
|
end
|
126
126
|
|
127
127
|
describe "--no-listen" do
|
@@ -131,17 +131,17 @@ describe Chef::Application::Client, "reconfigure" do
|
|
131
131
|
describe "--daemonize", :unix_only do
|
132
132
|
context "with no value" do
|
133
133
|
it_behaves_like "sets the configuration", "--daemonize",
|
134
|
-
|
134
|
+
daemonize: true
|
135
135
|
end
|
136
136
|
|
137
137
|
context "with an integer value" do
|
138
138
|
it_behaves_like "sets the configuration", "--daemonize 5",
|
139
|
-
|
139
|
+
daemonize: 5
|
140
140
|
end
|
141
141
|
|
142
142
|
context "with a non-integer value" do
|
143
143
|
it_behaves_like "sets the configuration", "--daemonize foo",
|
144
|
-
|
144
|
+
daemonize: true
|
145
145
|
end
|
146
146
|
end
|
147
147
|
|
@@ -178,17 +178,17 @@ describe Chef::Application::Client, "reconfigure" do
|
|
178
178
|
describe "--config-option" do
|
179
179
|
context "with a single value" do
|
180
180
|
it_behaves_like "sets the configuration", "--config-option chef_server_url=http://example",
|
181
|
-
|
181
|
+
chef_server_url: "http://example"
|
182
182
|
end
|
183
183
|
|
184
184
|
context "with two values" do
|
185
185
|
it_behaves_like "sets the configuration", "--config-option chef_server_url=http://example --config-option policy_name=web",
|
186
|
-
|
186
|
+
chef_server_url: "http://example", policy_name: "web"
|
187
187
|
end
|
188
188
|
|
189
189
|
context "with a boolean value" do
|
190
190
|
it_behaves_like "sets the configuration", "--config-option minimal_ohai=true",
|
191
|
-
|
191
|
+
minimal_ohai: true
|
192
192
|
end
|
193
193
|
|
194
194
|
context "with an empty value" do
|
@@ -74,7 +74,8 @@ describe Chef::Application::ExitCode do
|
|
74
74
|
|
75
75
|
it "does write a warning on non-standard exit codes" do
|
76
76
|
expect(Chef::Log).to receive(:warn).with(
|
77
|
-
/^Chef attempted to exit with a non-standard exit code of 151/
|
77
|
+
/^Chef attempted to exit with a non-standard exit code of 151/
|
78
|
+
)
|
78
79
|
expect(exit_codes.normalize_exit_code(151)).to eq(1)
|
79
80
|
end
|
80
81
|
|
@@ -83,7 +84,7 @@ describe Chef::Application::ExitCode do
|
|
83
84
|
end
|
84
85
|
|
85
86
|
it "returns GENERIC_FAILURE when no exit code is specified" do
|
86
|
-
expect(exit_codes.normalize_exit_code
|
87
|
+
expect(exit_codes.normalize_exit_code).to eq(1)
|
87
88
|
end
|
88
89
|
|
89
90
|
it "returns SIGINT_RECEIVED when a SIGINT is received" do
|
@@ -36,7 +36,8 @@ describe Chef::Audit::AuditEventProxy do
|
|
36
36
|
let(:description) { "poots" }
|
37
37
|
let(:group) do
|
38
38
|
double("ExampleGroup", parent_groups: parents,
|
39
|
-
description: description)
|
39
|
+
description: description)
|
40
|
+
end
|
40
41
|
let(:notification) { double("Notification", group: group) }
|
41
42
|
|
42
43
|
context "when notified from a top-level example group" do
|
@@ -124,7 +125,8 @@ describe Chef::Audit::AuditEventProxy do
|
|
124
125
|
let(:example) do
|
125
126
|
double("Example", metadata: metadata,
|
126
127
|
description: example_description,
|
127
|
-
full_description: full_description, exception: nil)
|
128
|
+
full_description: full_description, exception: nil)
|
129
|
+
end
|
128
130
|
|
129
131
|
let(:metadata) do
|
130
132
|
{
|
@@ -222,12 +224,14 @@ describe Chef::Audit::AuditEventProxy do
|
|
222
224
|
let(:example_description) { "should not be listening" }
|
223
225
|
let(:full_description) do
|
224
226
|
[control_group_name, group_description,
|
225
|
-
example_description].join(" ")
|
227
|
+
example_description].join(" ")
|
228
|
+
end
|
226
229
|
|
227
230
|
# Metadata fields
|
228
231
|
let(:described_class) do
|
229
232
|
double("Serverspec::Type::Port",
|
230
|
-
|
233
|
+
class: "Serverspec::Type::Port", name: resource_name)
|
234
|
+
end
|
231
235
|
|
232
236
|
# Control data fields
|
233
237
|
let(:resource_type) { "Port" }
|
@@ -252,7 +256,8 @@ describe Chef::Audit::AuditEventProxy do
|
|
252
256
|
let(:example_description) { "is not listening" }
|
253
257
|
let(:full_description) do
|
254
258
|
[control_group_name, group_description,
|
255
|
-
example_description].join(" ")
|
259
|
+
example_description].join(" ")
|
260
|
+
end
|
256
261
|
|
257
262
|
# Metadata fields
|
258
263
|
let(:described_class) { nil }
|
@@ -283,12 +288,14 @@ describe Chef::Audit::AuditEventProxy do
|
|
283
288
|
let(:example_description) { "is a file" }
|
284
289
|
let(:full_description) do
|
285
290
|
[control_group_name, outer_group_description,
|
286
|
-
group_description, example_description].join(" ")
|
291
|
+
group_description, example_description].join(" ")
|
292
|
+
end
|
287
293
|
|
288
294
|
# Metadata parts
|
289
295
|
let(:described_class) do
|
290
296
|
double("Serverspec::Type::File",
|
291
|
-
|
297
|
+
class: "Serverspec::Type::File", name: resource_name)
|
298
|
+
end
|
292
299
|
|
293
300
|
# Example group parts
|
294
301
|
let(:parent_group) do
|
@@ -30,7 +30,8 @@ describe Chef::Audit::AuditReporter do
|
|
30
30
|
let(:end_time) { Time.new(2014, 12, 3, 9, 36, 14, "-08:00") }
|
31
31
|
let(:run_status) do
|
32
32
|
instance_double(Chef::RunStatus, node: node, run_id: run_id,
|
33
|
-
start_time: start_time, end_time: end_time)
|
33
|
+
start_time: start_time, end_time: end_time)
|
34
|
+
end
|
34
35
|
|
35
36
|
describe "#audit_phase_start" do
|
36
37
|
|
@@ -89,7 +90,8 @@ describe Chef::Audit::AuditReporter do
|
|
89
90
|
let(:audit_error) do
|
90
91
|
double("AuditError", class: "Chef::Exceptions::AuditError",
|
91
92
|
message: "Audit phase failed with error message: derpderpderp",
|
92
|
-
backtrace: ["/path/recipe.rb:57", "/path/library.rb:106"])
|
93
|
+
backtrace: ["/path/recipe.rb:57", "/path/library.rb:106"])
|
94
|
+
end
|
93
95
|
|
94
96
|
before do
|
95
97
|
reporter.instance_variable_set(:@audit_phase_error, audit_error)
|
@@ -103,7 +105,7 @@ describe Chef::Audit::AuditReporter do
|
|
103
105
|
Chef::Exceptions::AuditError: Audit phase failed with error message: derpderpderp
|
104
106
|
/path/recipe.rb:57
|
105
107
|
/path/library.rb:106
|
106
|
-
EOM
|
108
|
+
EOM
|
107
109
|
end
|
108
110
|
|
109
111
|
end
|
@@ -238,12 +240,14 @@ EOM
|
|
238
240
|
let(:audit_error) do
|
239
241
|
double("AuditError", class: "Chef::Exceptions::AuditError",
|
240
242
|
message: "Audit phase failed with error message: derpderpderp",
|
241
|
-
backtrace: ["/path/recipe.rb:57", "/path/library.rb:106"])
|
243
|
+
backtrace: ["/path/recipe.rb:57", "/path/library.rb:106"])
|
244
|
+
end
|
242
245
|
|
243
246
|
let(:run_error) do
|
244
247
|
double("RunError", class: "Chef::Exceptions::RunError",
|
245
248
|
message: "This error shouldn't be reported.",
|
246
|
-
backtrace: ["fix it", "fix it", "fix it"])
|
249
|
+
backtrace: ["fix it", "fix it", "fix it"])
|
250
|
+
end
|
247
251
|
|
248
252
|
before do
|
249
253
|
allow(reporter).to receive(:auditing_enabled?).and_return(true)
|
@@ -273,7 +277,7 @@ EOM
|
|
273
277
|
Chef::Exceptions::AuditError: Audit phase failed with error message: derpderpderp
|
274
278
|
/path/recipe.rb:57
|
275
279
|
/path/library.rb:106
|
276
|
-
EOM
|
280
|
+
EOM
|
277
281
|
end
|
278
282
|
end
|
279
283
|
end
|
@@ -282,10 +286,12 @@ EOM
|
|
282
286
|
|
283
287
|
let(:control_group_foo) do
|
284
288
|
instance_double(Chef::Audit::ControlGroupData,
|
285
|
-
|
289
|
+
metadata: double("foo metadata"))
|
290
|
+
end
|
286
291
|
let(:control_group_bar) do
|
287
292
|
instance_double(Chef::Audit::ControlGroupData,
|
288
|
-
|
293
|
+
metadata: double("bar metadata"))
|
294
|
+
end
|
289
295
|
|
290
296
|
let(:ordered_control_groups) do
|
291
297
|
{
|
@@ -296,11 +302,13 @@ EOM
|
|
296
302
|
|
297
303
|
let(:audit_data) do
|
298
304
|
instance_double(Chef::Audit::AuditData,
|
299
|
-
|
305
|
+
add_control_group: true)
|
306
|
+
end
|
300
307
|
|
301
308
|
let(:run_context) do
|
302
309
|
instance_double(Chef::RunContext,
|
303
|
-
|
310
|
+
audits: ordered_control_groups)
|
311
|
+
end
|
304
312
|
|
305
313
|
before do
|
306
314
|
allow(reporter).to receive(:ordered_control_groups).and_return(ordered_control_groups)
|
@@ -350,7 +358,8 @@ EOM
|
|
350
358
|
let(:name) { "bat" }
|
351
359
|
let(:control_group) do
|
352
360
|
instance_double(Chef::Audit::ControlGroupData,
|
353
|
-
|
361
|
+
metadata: double("metadata"))
|
362
|
+
end
|
354
363
|
|
355
364
|
before do
|
356
365
|
allow(Chef::Audit::ControlGroupData).to receive(:new)
|