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
@@ -22,7 +22,7 @@ describe Chef::Resource::RemoteDirectory do
|
|
22
22
|
before do
|
23
23
|
file "config/client.rb", <<-EOM
|
24
24
|
local_mode true
|
25
|
-
cookbook_path "#{path_to(
|
25
|
+
cookbook_path "#{path_to("cookbooks")}"
|
26
26
|
EOM
|
27
27
|
directory "cookbooks/test" do
|
28
28
|
directory "files/default/source_dir" do
|
@@ -50,7 +50,7 @@ describe Chef::Resource::RemoteDirectory do
|
|
50
50
|
end
|
51
51
|
EOM
|
52
52
|
end
|
53
|
-
shell_out!("#{chef_client} -c \"#{path_to(
|
53
|
+
shell_out!("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'test::default'", cwd: chef_dir)
|
54
54
|
end
|
55
55
|
|
56
56
|
def mode_of(path)
|
@@ -154,7 +154,7 @@ module ResourceActionSpec
|
|
154
154
|
ResourceActionSpec::ActionJackson.ruby_block_converged = ResourceActionSpec::ActionJackson.succeeded
|
155
155
|
end
|
156
156
|
end
|
157
|
-
|
157
|
+
EOM
|
158
158
|
expect(ActionJackson.ran_action).to eq :access_attribute
|
159
159
|
expect(ActionJackson.succeeded).to eq "foo!"
|
160
160
|
expect(ActionJackson.ruby_block_converged).to eq "foo!"
|
@@ -87,7 +87,7 @@ describe "Resource::ActionClass#converge_if_changed" do
|
|
87
87
|
* #{resource_name}[blah] action create
|
88
88
|
- update default_identity1
|
89
89
|
- set state1 to "new_state1" (was "current_state1")
|
90
|
-
|
90
|
+
EOM
|
91
91
|
end
|
92
92
|
end
|
93
93
|
|
@@ -109,7 +109,7 @@ describe "Resource::ActionClass#converge_if_changed" do
|
|
109
109
|
- update default_identity1
|
110
110
|
- set state1 to "new_state1" (was "current_state1")
|
111
111
|
- set state2 to "new_state2" (was "current_state2")
|
112
|
-
EOM
|
112
|
+
EOM
|
113
113
|
end
|
114
114
|
end
|
115
115
|
|
@@ -132,7 +132,7 @@ EOM
|
|
132
132
|
- update default_identity1
|
133
133
|
- set state1 to (suppressed sensitive property)
|
134
134
|
- set state2 to (suppressed sensitive property)
|
135
|
-
EOM
|
135
|
+
EOM
|
136
136
|
end
|
137
137
|
end
|
138
138
|
|
@@ -152,7 +152,7 @@ EOM
|
|
152
152
|
* #{resource_name}[blah] action create
|
153
153
|
- update default_identity1
|
154
154
|
- set sensitive1 to (suppressed sensitive property)
|
155
|
-
EOM
|
155
|
+
EOM
|
156
156
|
end
|
157
157
|
end
|
158
158
|
|
@@ -173,7 +173,7 @@ EOM
|
|
173
173
|
* #{resource_name}[blah] action create
|
174
174
|
- update default_identity1
|
175
175
|
- set state2 to "new_state2" (was "current_state2")
|
176
|
-
EOM
|
176
|
+
EOM
|
177
177
|
end
|
178
178
|
end
|
179
179
|
|
@@ -192,7 +192,7 @@ EOM
|
|
192
192
|
expect(resource.updated?).to be_falsey
|
193
193
|
expect(converged_recipe.stdout).to eq <<~EOM
|
194
194
|
* #{resource_name}[blah] action create (up to date)
|
195
|
-
EOM
|
195
|
+
EOM
|
196
196
|
end
|
197
197
|
end
|
198
198
|
|
@@ -213,7 +213,7 @@ EOM
|
|
213
213
|
expect(resource.updated?).to be_falsey
|
214
214
|
expect(converged_recipe.stdout).to eq <<~EOM
|
215
215
|
* #{resource_name}[blah] action create (up to date)
|
216
|
-
EOM
|
216
|
+
EOM
|
217
217
|
end
|
218
218
|
end
|
219
219
|
end
|
@@ -270,7 +270,7 @@ EOM
|
|
270
270
|
- set state1 to "default_state1" (default value)
|
271
271
|
- set state2 to "default_state2" (default value)
|
272
272
|
- set sensitive1 to (suppressed sensitive property) (default value)
|
273
|
-
EOM
|
273
|
+
EOM
|
274
274
|
end
|
275
275
|
end
|
276
276
|
|
@@ -295,7 +295,7 @@ EOM
|
|
295
295
|
- set state1 to "new_state1"
|
296
296
|
- set state2 to "new_state2"
|
297
297
|
- set sensitive1 to (suppressed sensitive property)
|
298
|
-
EOM
|
298
|
+
EOM
|
299
299
|
end
|
300
300
|
end
|
301
301
|
|
@@ -320,7 +320,7 @@ EOM
|
|
320
320
|
- set state1 to (suppressed sensitive property)
|
321
321
|
- set state2 to (suppressed sensitive property)
|
322
322
|
- set sensitive1 to (suppressed sensitive property) (default value)
|
323
|
-
EOM
|
323
|
+
EOM
|
324
324
|
end
|
325
325
|
end
|
326
326
|
end
|
@@ -357,7 +357,7 @@ EOM
|
|
357
357
|
expect(resource.updated?).to be_falsey
|
358
358
|
expect(converged_recipe.stdout).to eq <<~EOM
|
359
359
|
* #{resource_name}[blah] action create (up to date)
|
360
|
-
EOM
|
360
|
+
EOM
|
361
361
|
end
|
362
362
|
end
|
363
363
|
|
@@ -378,7 +378,7 @@ EOM
|
|
378
378
|
* #{resource_name}[blah] action create
|
379
379
|
- update default_identity1
|
380
380
|
- set state1 to "new_state1" (was "current_state1")
|
381
|
-
EOM
|
381
|
+
EOM
|
382
382
|
end
|
383
383
|
end
|
384
384
|
|
@@ -401,7 +401,7 @@ EOM
|
|
401
401
|
- set state1 to "new_state1" (was "current_state1")
|
402
402
|
- update default_identity1
|
403
403
|
- set state2 to "new_state2" (was "current_state2")
|
404
|
-
EOM
|
404
|
+
EOM
|
405
405
|
end
|
406
406
|
end
|
407
407
|
|
@@ -422,7 +422,7 @@ EOM
|
|
422
422
|
* #{resource_name}[blah] action create
|
423
423
|
- update default_identity1
|
424
424
|
- set state2 to "new_state2" (was "current_state2")
|
425
|
-
EOM
|
425
|
+
EOM
|
426
426
|
end
|
427
427
|
end
|
428
428
|
|
@@ -441,7 +441,7 @@ EOM
|
|
441
441
|
expect(resource.updated?).to be_falsey
|
442
442
|
expect(converged_recipe.stdout).to eq <<~EOM
|
443
443
|
* #{resource_name}[blah] action create (up to date)
|
444
|
-
EOM
|
444
|
+
EOM
|
445
445
|
end
|
446
446
|
end
|
447
447
|
|
@@ -461,7 +461,7 @@ EOM
|
|
461
461
|
* #{resource_name}[blah] action create
|
462
462
|
- update default_identity1
|
463
463
|
- set sensitive1 to (suppressed sensitive property)
|
464
|
-
EOM
|
464
|
+
EOM
|
465
465
|
end
|
466
466
|
end
|
467
467
|
end
|
@@ -489,7 +489,7 @@ EOM
|
|
489
489
|
- set state2 to "default_state2" (default value)
|
490
490
|
- create default_identity1
|
491
491
|
- set sensitive1 to (suppressed sensitive property) (default value)
|
492
|
-
EOM
|
492
|
+
EOM
|
493
493
|
end
|
494
494
|
end
|
495
495
|
|
@@ -515,7 +515,7 @@ EOM
|
|
515
515
|
- set state2 to "new_state2"
|
516
516
|
- create default_identity1
|
517
517
|
- set sensitive1 to (suppressed sensitive property)
|
518
|
-
EOM
|
518
|
+
EOM
|
519
519
|
end
|
520
520
|
end
|
521
521
|
|
@@ -541,7 +541,7 @@ EOM
|
|
541
541
|
- set state2 to (suppressed sensitive property)
|
542
542
|
- create default_identity1
|
543
543
|
- set sensitive1 to (suppressed sensitive property) (default value)
|
544
|
-
EOM
|
544
|
+
EOM
|
545
545
|
end
|
546
546
|
end
|
547
547
|
|
@@ -25,8 +25,8 @@ describe "chef-solo" do
|
|
25
25
|
before do
|
26
26
|
file "config/solo.rb", <<~EOM
|
27
27
|
chef_repo_path "#{@repository_dir}"
|
28
|
-
EOM
|
29
|
-
result = shell_out("ruby bin/chef-solo -c \"#{path_to(
|
28
|
+
EOM
|
29
|
+
result = shell_out("ruby bin/chef-solo -c \"#{path_to("config/solo.rb")}\" -l debug", cwd: chef_dir)
|
30
30
|
result.error!
|
31
31
|
end
|
32
32
|
|
@@ -75,25 +75,25 @@ EOM
|
|
75
75
|
|
76
76
|
it "should complete with success" do
|
77
77
|
file "config/solo.rb", <<~EOM
|
78
|
-
cookbook_path "#{path_to(
|
79
|
-
file_cache_path "#{path_to(
|
80
|
-
EOM
|
81
|
-
result = shell_out("#{chef_solo} -c \"#{path_to(
|
78
|
+
cookbook_path "#{path_to("cookbooks")}"
|
79
|
+
file_cache_path "#{path_to("config/cache")}"
|
80
|
+
EOM
|
81
|
+
result = shell_out("#{chef_solo} -c \"#{path_to("config/solo.rb")}\" -o 'x::default' -l debug", cwd: chef_dir)
|
82
82
|
result.error!
|
83
83
|
expect(result.stdout).to include("ITWORKS")
|
84
84
|
end
|
85
85
|
|
86
86
|
it "should evaluate its node.json file" do
|
87
87
|
file "config/solo.rb", <<~EOM
|
88
|
-
cookbook_path "#{path_to(
|
89
|
-
file_cache_path "#{path_to(
|
90
|
-
EOM
|
88
|
+
cookbook_path "#{path_to("cookbooks")}"
|
89
|
+
file_cache_path "#{path_to("config/cache")}"
|
90
|
+
EOM
|
91
91
|
|
92
92
|
file "config/node.json", <<~E
|
93
93
|
{"run_list":["x::default"]}
|
94
|
-
E
|
94
|
+
E
|
95
95
|
|
96
|
-
result = shell_out("#{chef_solo} -c \"#{path_to(
|
96
|
+
result = shell_out("#{chef_solo} -c \"#{path_to("config/solo.rb")}\" -j '#{path_to("config/node.json")}' -l debug", cwd: chef_dir)
|
97
97
|
result.error!
|
98
98
|
expect(result.stdout).to include("ITWORKS")
|
99
99
|
end
|
@@ -111,10 +111,10 @@ E
|
|
111
111
|
|
112
112
|
it "should exit with an error" do
|
113
113
|
file "config/solo.rb", <<~EOM
|
114
|
-
cookbook_path "#{path_to(
|
115
|
-
file_cache_path "#{path_to(
|
116
|
-
EOM
|
117
|
-
result = shell_out("#{chef_solo} -c \"#{path_to(
|
114
|
+
cookbook_path "#{path_to("cookbooks")}"
|
115
|
+
file_cache_path "#{path_to("config/cache")}"
|
116
|
+
EOM
|
117
|
+
result = shell_out("#{chef_solo} -c \"#{path_to("config/solo.rb")}\" -o 'x::default' -l debug", cwd: chef_dir)
|
118
118
|
expect(result.exitstatus).to eq(0) # For CHEF-5120 this becomes 1
|
119
119
|
expect(result.stdout).to include("WARN: MissingCookbookDependency")
|
120
120
|
end
|
@@ -125,13 +125,13 @@ EOM
|
|
125
125
|
file "cookbooks/x/metadata.rb", cb_metadata("x", "1.0.0", "\nchef_version '~> 999.0'")
|
126
126
|
file "cookbooks/x/recipes/default.rb", 'puts "ITWORKS"'
|
127
127
|
file "config/solo.rb", <<~EOM
|
128
|
-
cookbook_path "#{path_to(
|
129
|
-
file_cache_path "#{path_to(
|
130
|
-
EOM
|
128
|
+
cookbook_path "#{path_to("cookbooks")}"
|
129
|
+
file_cache_path "#{path_to("config/cache")}"
|
130
|
+
EOM
|
131
131
|
end
|
132
132
|
|
133
133
|
it "should exit with an error" do
|
134
|
-
result = shell_out("#{chef_solo} -c \"#{path_to(
|
134
|
+
result = shell_out("#{chef_solo} -c \"#{path_to("config/solo.rb")}\" -o 'x::default' -l debug", cwd: chef_dir)
|
135
135
|
expect(result.exitstatus).to eq(1)
|
136
136
|
expect(result.stdout).to include("Chef::Exceptions::CookbookChefVersionMismatch")
|
137
137
|
end
|
@@ -142,13 +142,13 @@ EOM
|
|
142
142
|
file "cookbooks/x/metadata.rb", cb_metadata("x", "1.0.0", "\nohai_version '~> 999.0'")
|
143
143
|
file "cookbooks/x/recipes/default.rb", 'puts "ITWORKS"'
|
144
144
|
file "config/solo.rb", <<~EOM
|
145
|
-
cookbook_path "#{path_to(
|
146
|
-
file_cache_path "#{path_to(
|
147
|
-
EOM
|
145
|
+
cookbook_path "#{path_to("cookbooks")}"
|
146
|
+
file_cache_path "#{path_to("config/cache")}"
|
147
|
+
EOM
|
148
148
|
end
|
149
149
|
|
150
150
|
it "should exit with an error" do
|
151
|
-
result = shell_out("#{chef_solo} -c \"#{path_to(
|
151
|
+
result = shell_out("#{chef_solo} -c \"#{path_to("config/solo.rb")}\" -o 'x::default' -l debug", cwd: chef_dir)
|
152
152
|
expect(result.exitstatus).to eq(1)
|
153
153
|
expect(result.stdout).to include("Chef::Exceptions::CookbookOhaiVersionMismatch")
|
154
154
|
end
|
@@ -169,14 +169,14 @@ EOM
|
|
169
169
|
end
|
170
170
|
end
|
171
171
|
end
|
172
|
-
EOM
|
172
|
+
EOM
|
173
173
|
end
|
174
174
|
|
175
175
|
it "while running solo concurrently" do
|
176
176
|
file "config/solo.rb", <<~EOM
|
177
|
-
cookbook_path "#{path_to(
|
178
|
-
file_cache_path "#{path_to(
|
179
|
-
EOM
|
177
|
+
cookbook_path "#{path_to("cookbooks")}"
|
178
|
+
file_cache_path "#{path_to("config/cache")}"
|
179
|
+
EOM
|
180
180
|
# We have a timeout protection here so that if due to some bug
|
181
181
|
# run_lock gets stuck we can discover it.
|
182
182
|
expect do
|
@@ -187,13 +187,13 @@ EOM
|
|
187
187
|
|
188
188
|
# Instantiate the first chef-solo run
|
189
189
|
threads << Thread.new do
|
190
|
-
s1 = Process.spawn("#{chef_solo} -c \"#{path_to(
|
190
|
+
s1 = Process.spawn("#{chef_solo} -c \"#{path_to("config/solo.rb")}\" -o 'x::default' -l debug -L #{path_to("logs/runs.log")}", chdir: chef_dir)
|
191
191
|
Process.waitpid(s1)
|
192
192
|
end
|
193
193
|
|
194
194
|
# Instantiate the second chef-solo run
|
195
195
|
threads << Thread.new do
|
196
|
-
s2 = Process.spawn("#{chef_solo} -c \"#{path_to(
|
196
|
+
s2 = Process.spawn("#{chef_solo} -c \"#{path_to("config/solo.rb")}\" -o 'x::default' -l debug -L #{path_to("logs/runs.log")}", chdir: chef_dir)
|
197
197
|
Process.waitpid(s2)
|
198
198
|
end
|
199
199
|
|
data/spec/scripts/ssl-serve.rb
CHANGED
@@ -34,7 +34,7 @@ DEFAULT_OPTIONS = {
|
|
34
34
|
Host: "localhost",
|
35
35
|
environment: :none,
|
36
36
|
Logger: LOGGER,
|
37
|
-
DocumentRoot: File.expand_path("#{Dir.tmpdir}/chef-118-sampledata")
|
37
|
+
DocumentRoot: File.expand_path("#{Dir.tmpdir}/chef-118-sampledata"),
|
38
38
|
#:AccessLog => [] # Remove this option to enable the access log when debugging.
|
39
39
|
}.freeze
|
40
40
|
|
data/spec/spec_helper.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#
|
2
2
|
# Author:: Adam Jacob (<adam@chef.io>)
|
3
|
-
# Copyright:: Copyright 2008-
|
3
|
+
# Copyright:: Copyright 2008-2020, Chef Software Inc.
|
4
4
|
# License:: Apache License, Version 2.0
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -52,7 +52,7 @@ require "chef/knife"
|
|
52
52
|
|
53
53
|
Dir["lib/chef/knife/**/*.rb"]
|
54
54
|
.map { |f| f.gsub("lib/", "") }
|
55
|
-
.map { |f| f.gsub(
|
55
|
+
.map { |f| f.gsub(/\.rb$/, "") }
|
56
56
|
.each { |f| require f }
|
57
57
|
|
58
58
|
require "chef/resource_resolver"
|
@@ -93,7 +93,7 @@ require "spec/support/shared/unit/mock_shellout"
|
|
93
93
|
Dir["spec/support/**/*.rb"]
|
94
94
|
.reject { |f| f =~ %r{^spec/support/platforms} }
|
95
95
|
.reject { |f| f =~ %r{^spec/support/pedant} }
|
96
|
-
.map { |f| f.gsub(
|
96
|
+
.map { |f| f.gsub(/.rb$/, "") }
|
97
97
|
.map { |f| f.gsub(%r{spec/}, "") }
|
98
98
|
.each { |f| require f }
|
99
99
|
|
@@ -140,19 +140,18 @@ RSpec.configure do |config|
|
|
140
140
|
|
141
141
|
config.filter_run_excluding skip_appveyor: true if ENV["APPVEYOR"]
|
142
142
|
config.filter_run_excluding appveyor_only: true unless ENV["APPVEYOR"]
|
143
|
-
config.filter_run_excluding skip_travis: true if ENV["TRAVIS"]
|
144
143
|
|
145
144
|
config.filter_run_excluding skip_buildkite: true if ENV["BUILDKITE"]
|
146
145
|
|
147
146
|
config.filter_run_excluding windows_only: true unless windows?
|
147
|
+
config.filter_run_excluding not_supported_on_windows: true if windows?
|
148
148
|
config.filter_run_excluding not_supported_on_mac_osx: true if mac_osx?
|
149
|
-
config.filter_run_excluding mac_osx_only: true
|
149
|
+
config.filter_run_excluding mac_osx_only: true unless mac_osx?
|
150
150
|
config.filter_run_excluding not_supported_on_aix: true if aix?
|
151
151
|
config.filter_run_excluding not_supported_on_solaris: true if solaris?
|
152
152
|
config.filter_run_excluding not_supported_on_gce: true if gce?
|
153
153
|
config.filter_run_excluding not_supported_on_nano: true if windows_nano_server?
|
154
154
|
config.filter_run_excluding win2012r2_only: true unless windows_2012r2?
|
155
|
-
config.filter_run_excluding windows_2008r2_or_later: true unless windows_2008r2_or_later?
|
156
155
|
config.filter_run_excluding windows64_only: true unless windows64?
|
157
156
|
config.filter_run_excluding windows32_only: true unless windows32?
|
158
157
|
config.filter_run_excluding windows_nano_only: true unless windows_nano_server?
|
@@ -161,7 +160,7 @@ RSpec.configure do |config|
|
|
161
160
|
config.filter_run_excluding ruby64_only: true unless ruby_64bit?
|
162
161
|
config.filter_run_excluding ruby32_only: true unless ruby_32bit?
|
163
162
|
config.filter_run_excluding windows_powershell_dsc_only: true unless windows_powershell_dsc?
|
164
|
-
config.filter_run_excluding windows_powershell_no_dsc_only: true
|
163
|
+
config.filter_run_excluding windows_powershell_no_dsc_only: true if windows_powershell_dsc?
|
165
164
|
config.filter_run_excluding windows_domain_joined_only: true unless windows_domain_joined?
|
166
165
|
config.filter_run_excluding windows_not_domain_joined_only: true if windows_domain_joined?
|
167
166
|
# We think this line was causing rspec tests to not run on the Jenkins windows
|
@@ -189,7 +188,6 @@ RSpec.configure do |config|
|
|
189
188
|
config.filter_run_excluding not_wpar: true unless wpar?
|
190
189
|
config.filter_run_excluding not_supported_under_fips: true if fips?
|
191
190
|
config.filter_run_excluding rhel: true unless rhel?
|
192
|
-
config.filter_run_excluding rhel5: true unless rhel5?
|
193
191
|
config.filter_run_excluding rhel6: true unless rhel6?
|
194
192
|
config.filter_run_excluding rhel7: true unless rhel7?
|
195
193
|
config.filter_run_excluding rhel8: true unless rhel8?
|
@@ -204,7 +202,9 @@ RSpec.configure do |config|
|
|
204
202
|
config.filter_run_excluding chef: DependencyProc.with(Chef::VERSION)
|
205
203
|
config.filter_run_excluding ruby: DependencyProc.with(RUBY_VERSION)
|
206
204
|
|
205
|
+
# check for particular binaries we need
|
207
206
|
config.filter_run_excluding choco_installed: true unless choco_installed?
|
207
|
+
config.filter_run_excluding requires_ifconfig: true unless ifconfig?
|
208
208
|
|
209
209
|
running_platform_arch = `uname -m`.strip unless windows?
|
210
210
|
|
@@ -316,14 +316,11 @@ require "thread"
|
|
316
316
|
module WEBrick
|
317
317
|
module Utils
|
318
318
|
class TimeoutHandler
|
319
|
-
def initialize
|
320
|
-
end
|
319
|
+
def initialize; end
|
321
320
|
|
322
|
-
def register(*args)
|
323
|
-
end
|
321
|
+
def register(*args); end
|
324
322
|
|
325
|
-
def cancel(*args)
|
326
|
-
end
|
323
|
+
def cancel(*args); end
|
327
324
|
end
|
328
325
|
end
|
329
326
|
end
|
@@ -50,7 +50,7 @@ describe "Chef::ReservedNames::Win32::Security", :windows_only do
|
|
50
50
|
|
51
51
|
it "should not leak when retrieving and reading the ACE from a file", :volatile do
|
52
52
|
expect do
|
53
|
-
sids = Chef::ReservedNames::Win32::Security::SecurableObject.new(@monkeyfoo).security_descriptor.dacl.select
|
53
|
+
sids = Chef::ReservedNames::Win32::Security::SecurableObject.new(@monkeyfoo).security_descriptor.dacl.select(&:sid)
|
54
54
|
GC.start
|
55
55
|
end.not_to leak_memory(warmup: 50, iterations: 100)
|
56
56
|
end
|