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,7 +23,7 @@ describe Chef::Mixin::WindowsArchitectureHelper do
|
|
23
23
|
include Chef::Mixin::WindowsArchitectureHelper
|
24
24
|
|
25
25
|
before do
|
26
|
-
@valid_architectures =
|
26
|
+
@valid_architectures = %i{i386 x86_64}
|
27
27
|
@invalid_architectures = [ "i386", "x86_64", :x64, :x86, :arm ]
|
28
28
|
|
29
29
|
@node_i386 = Chef::Node.new
|
@@ -67,14 +67,14 @@ describe Chef::Mixin::WindowsArchitectureHelper do
|
|
67
67
|
it "returns true only when forced_32bit_override_required? has 64-bit node architecture and 32-bit desired architecture" do
|
68
68
|
with_node_architecture_combinations do |node, desired_arch|
|
69
69
|
expect(forced_32bit_override_required?(node, desired_arch)).to be true if (node_windows_architecture(node) == :x86_64) && (desired_arch == :i386) && !is_i386_process_on_x86_64_windows?
|
70
|
-
expect(forced_32bit_override_required?(node, desired_arch)).to be false
|
70
|
+
expect(forced_32bit_override_required?(node, desired_arch)).to be false unless (node_windows_architecture(node) == :x86_64) && (desired_arch == :i386)
|
71
71
|
end
|
72
72
|
end
|
73
73
|
|
74
74
|
def with_node_architecture_combinations
|
75
75
|
@valid_architectures.each do |node_architecture|
|
76
76
|
new_node = Chef::Node.new
|
77
|
-
new_node.default["kernel"] =
|
77
|
+
new_node.default["kernel"] = {}
|
78
78
|
new_node.default["kernel"][:machine] = node_architecture.to_s
|
79
79
|
|
80
80
|
@valid_architectures.each do |architecture|
|
@@ -63,16 +63,16 @@ describe Chef::Node::Attribute do
|
|
63
63
|
"mtu" => "1280",
|
64
64
|
"type" => "gif",
|
65
65
|
"encapsulation" => "IPIP" },
|
66
|
-
"vmnet8" =>
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
66
|
+
"vmnet8" => { "flags" => %w{UP BROADCAST SMART RUNNING SIMPLEX MULTICAST},
|
67
|
+
"number" => "8",
|
68
|
+
"addresses" => { "192.168.4.1" => { "broadcast" => "192.168.4.255",
|
69
|
+
"netmask" => "255.255.255.0",
|
70
|
+
"family" => "inet" },
|
71
|
+
"00:50:56:c0:00:08" => { "family" => "lladdr" } },
|
72
|
+
"mtu" => "1500",
|
73
|
+
"type" => "vmnet",
|
74
|
+
"arp" => { "192.168.4.255" => "ff:ff:ff:ff:ff:ff" },
|
75
|
+
"encapsulation" => "Ethernet" },
|
76
76
|
"en0" => { "status" => "inactive",
|
77
77
|
"flags" => %w{UP BROADCAST SMART RUNNING SIMPLEX MULTICAST},
|
78
78
|
"number" => "0",
|
@@ -80,9 +80,9 @@ describe Chef::Node::Attribute do
|
|
80
80
|
"mtu" => "1500",
|
81
81
|
"media" => { "supported" => { "autoselect" => { "options" => [] },
|
82
82
|
"none" => { "options" => [] },
|
83
|
-
"1000baseT" => { "options" =>
|
84
|
-
"10baseT/UTP" =>
|
85
|
-
"100baseTX" =>
|
83
|
+
"1000baseT" => { "options" => %w{full-duplex flow-control hw-loopback} },
|
84
|
+
"10baseT/UTP" => { "options" => %w{half-duplex full-duplex flow-control hw-loopback} },
|
85
|
+
"100baseTX" => { "options" => %w{half-duplex full-duplex flow-control hw-loopback} } },
|
86
86
|
"selected" => { "autoselect" => { "options" => [] } } },
|
87
87
|
"type" => "en",
|
88
88
|
"encapsulation" => "Ethernet" },
|
@@ -118,28 +118,28 @@ describe Chef::Node::Attribute do
|
|
118
118
|
"selected" => { "autoselect" => { "options" => [] } } },
|
119
119
|
"type" => "en",
|
120
120
|
"encapsulation" => "Ethernet" },
|
121
|
-
"fw0" =>
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
"en3" =>
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
121
|
+
"fw0" => { "status" => "inactive",
|
122
|
+
"flags" => %w{BROADCAST SIMPLEX MULTICAST},
|
123
|
+
"number" => "0",
|
124
|
+
"addresses" => { "00:23:32:ff:fe:b0:32:f2" => { "family" => "lladdr" } },
|
125
|
+
"mtu" => "4078",
|
126
|
+
"media" => { "supported" => { "autoselect" => { "options" => ["full-duplex"] } },
|
127
|
+
"selected" => { "autoselect" => { "options" => ["full-duplex"] } } },
|
128
|
+
"type" => "fw",
|
129
|
+
"encapsulation" => "1394" },
|
130
|
+
"en3" => { "status" => "active",
|
131
|
+
"flags" => %w{UP BROADCAST SMART RUNNING SIMPLEX MULTICAST},
|
132
|
+
"number" => "3",
|
133
|
+
"addresses" => { "169.254.206.152" => { "broadcast" => "169.254.255.255",
|
134
|
+
"netmask" => "255.255.0.0",
|
135
|
+
"family" => "inet" },
|
136
|
+
"00:1c:42:00:00:00" => { "family" => "lladdr" },
|
137
|
+
"fe80::21c:42ff:fe00:0" => { "scope" => "Link", "prefixlen" => "64", "family" => "inet6" } },
|
138
|
+
"mtu" => "1500",
|
139
|
+
"media" => { "supported" => { "autoselect" => { "options" => [] } },
|
140
|
+
"selected" => { "autoselect" => { "options" => [] } } },
|
141
|
+
"type" => "en",
|
142
|
+
"encapsulation" => "Ethernet" } } },
|
143
143
|
"fqdn" => "latte.local",
|
144
144
|
"ohai_time" => 1249065590.90391,
|
145
145
|
"domain" => "local",
|
@@ -182,7 +182,7 @@ describe Chef::Node::Attribute do
|
|
182
182
|
expect { Chef::Node::Attribute.new({}, {}, {}, {}) }.not_to raise_error
|
183
183
|
end
|
184
184
|
|
185
|
-
|
185
|
+
%i{normal default override automatic}.each do |accessor|
|
186
186
|
it "should set #{accessor}" do
|
187
187
|
na = Chef::Node::Attribute.new({ normal: true }, { default: true }, { override: true }, { automatic: true })
|
188
188
|
expect(na.send(accessor)).to eq({ accessor.to_s => true })
|
@@ -546,7 +546,7 @@ describe Chef::Node::Attribute do
|
|
546
546
|
expect(@attributes["music"]["this"]).not_to have_key("must")
|
547
547
|
end
|
548
548
|
|
549
|
-
|
549
|
+
%i{include? key? member?}.each do |method|
|
550
550
|
it "should alias the method #{method} to itself" do
|
551
551
|
expect(@attributes).to respond_to(method)
|
552
552
|
end
|
@@ -572,8 +572,8 @@ describe Chef::Node::Attribute do
|
|
572
572
|
before(:each) do
|
573
573
|
@attributes = Chef::Node::Attribute.new(
|
574
574
|
{
|
575
|
-
"one" =>
|
576
|
-
"hut" =>
|
575
|
+
"one" => { "two" => "three" },
|
576
|
+
"hut" => { "two" => "three" },
|
577
577
|
"place" => {},
|
578
578
|
},
|
579
579
|
{
|
@@ -589,7 +589,7 @@ describe Chef::Node::Attribute do
|
|
589
589
|
end
|
590
590
|
|
591
591
|
it "should yield each top level key" do
|
592
|
-
collect =
|
592
|
+
collect = []
|
593
593
|
@attributes.each_key do |k|
|
594
594
|
collect << k
|
595
595
|
end
|
@@ -602,7 +602,7 @@ describe Chef::Node::Attribute do
|
|
602
602
|
end
|
603
603
|
|
604
604
|
it "should yield lower if we go deeper" do
|
605
|
-
collect =
|
605
|
+
collect = []
|
606
606
|
@attributes["one"].each_key do |k|
|
607
607
|
collect << k
|
608
608
|
end
|
@@ -621,11 +621,11 @@ describe Chef::Node::Attribute do
|
|
621
621
|
before(:each) do
|
622
622
|
@attributes = Chef::Node::Attribute.new(
|
623
623
|
{
|
624
|
-
"one" =>
|
625
|
-
"hut" =>
|
624
|
+
"one" => "two",
|
625
|
+
"hut" => "three",
|
626
626
|
},
|
627
627
|
{
|
628
|
-
"one" =>
|
628
|
+
"one" => "four",
|
629
629
|
"snakes" => "on a plane",
|
630
630
|
},
|
631
631
|
{
|
@@ -637,7 +637,7 @@ describe Chef::Node::Attribute do
|
|
637
637
|
end
|
638
638
|
|
639
639
|
it "should yield each top level key and value, post merge rules" do
|
640
|
-
collect =
|
640
|
+
collect = {}
|
641
641
|
@attributes.each do |k, v|
|
642
642
|
collect[k] = v
|
643
643
|
end
|
@@ -659,11 +659,11 @@ describe Chef::Node::Attribute do
|
|
659
659
|
before do
|
660
660
|
@attributes = Chef::Node::Attribute.new(
|
661
661
|
{
|
662
|
-
"one" =>
|
663
|
-
"hut" =>
|
662
|
+
"one" => "two",
|
663
|
+
"hut" => "three",
|
664
664
|
},
|
665
665
|
{
|
666
|
-
"one" =>
|
666
|
+
"one" => "four",
|
667
667
|
"snakes" => "on a plane",
|
668
668
|
},
|
669
669
|
{
|
@@ -679,7 +679,7 @@ describe Chef::Node::Attribute do
|
|
679
679
|
end
|
680
680
|
|
681
681
|
it "should yield each top level key, post merge rules" do
|
682
|
-
collect =
|
682
|
+
collect = []
|
683
683
|
@attributes.each_key do |k|
|
684
684
|
collect << k
|
685
685
|
end
|
@@ -695,11 +695,11 @@ describe Chef::Node::Attribute do
|
|
695
695
|
before do
|
696
696
|
@attributes = Chef::Node::Attribute.new(
|
697
697
|
{
|
698
|
-
"one" =>
|
699
|
-
"hut" =>
|
698
|
+
"one" => "two",
|
699
|
+
"hut" => "three",
|
700
700
|
},
|
701
701
|
{
|
702
|
-
"one" =>
|
702
|
+
"one" => "four",
|
703
703
|
"snakes" => "on a plane",
|
704
704
|
},
|
705
705
|
{
|
@@ -715,7 +715,7 @@ describe Chef::Node::Attribute do
|
|
715
715
|
end
|
716
716
|
|
717
717
|
it "should yield each top level key and value pair, post merge rules" do
|
718
|
-
collect =
|
718
|
+
collect = {}
|
719
719
|
@attributes.each_pair do |k, v|
|
720
720
|
collect[k] = v
|
721
721
|
end
|
@@ -731,11 +731,11 @@ describe Chef::Node::Attribute do
|
|
731
731
|
before do
|
732
732
|
@attributes = Chef::Node::Attribute.new(
|
733
733
|
{
|
734
|
-
"one" =>
|
735
|
-
"hut" =>
|
734
|
+
"one" => "two",
|
735
|
+
"hut" => "three",
|
736
736
|
},
|
737
737
|
{
|
738
|
-
"one" =>
|
738
|
+
"one" => "four",
|
739
739
|
"snakes" => "on a plane",
|
740
740
|
},
|
741
741
|
{
|
@@ -751,7 +751,7 @@ describe Chef::Node::Attribute do
|
|
751
751
|
end
|
752
752
|
|
753
753
|
it "should yield each value, post merge rules" do
|
754
|
-
collect =
|
754
|
+
collect = []
|
755
755
|
@attributes.each_value do |v|
|
756
756
|
collect << v
|
757
757
|
end
|
@@ -762,7 +762,7 @@ describe Chef::Node::Attribute do
|
|
762
762
|
end
|
763
763
|
|
764
764
|
it "should yield four elements" do
|
765
|
-
collect =
|
765
|
+
collect = []
|
766
766
|
@attributes.each_value do |v|
|
767
767
|
collect << v
|
768
768
|
end
|
@@ -775,11 +775,11 @@ describe Chef::Node::Attribute do
|
|
775
775
|
before do
|
776
776
|
@attributes = Chef::Node::Attribute.new(
|
777
777
|
{
|
778
|
-
"one" =>
|
779
|
-
"hut" =>
|
778
|
+
"one" => "two",
|
779
|
+
"hut" => "three",
|
780
780
|
},
|
781
781
|
{
|
782
|
-
"one" =>
|
782
|
+
"one" => "four",
|
783
783
|
"snakes" => "on a plane",
|
784
784
|
},
|
785
785
|
{
|
@@ -809,11 +809,11 @@ describe Chef::Node::Attribute do
|
|
809
809
|
before do
|
810
810
|
@attributes = Chef::Node::Attribute.new(
|
811
811
|
{
|
812
|
-
"one" =>
|
813
|
-
"hut" =>
|
812
|
+
"one" => "two",
|
813
|
+
"hut" => "three",
|
814
814
|
},
|
815
815
|
{
|
816
|
-
"one" =>
|
816
|
+
"one" => "four",
|
817
817
|
"snakes" => "on a plane",
|
818
818
|
},
|
819
819
|
{
|
@@ -866,11 +866,11 @@ describe Chef::Node::Attribute do
|
|
866
866
|
before do
|
867
867
|
@attributes = Chef::Node::Attribute.new(
|
868
868
|
{
|
869
|
-
"one" =>
|
870
|
-
"hut" =>
|
869
|
+
"one" => "two",
|
870
|
+
"hut" => "three",
|
871
871
|
},
|
872
872
|
{
|
873
|
-
"one" =>
|
873
|
+
"one" => "four",
|
874
874
|
"snakes" => "on a plane",
|
875
875
|
},
|
876
876
|
{
|
@@ -911,11 +911,11 @@ describe Chef::Node::Attribute do
|
|
911
911
|
before do
|
912
912
|
@attributes = Chef::Node::Attribute.new(
|
913
913
|
{
|
914
|
-
"one" =>
|
915
|
-
"hut" =>
|
914
|
+
"one" => "two",
|
915
|
+
"hut" => "three",
|
916
916
|
},
|
917
917
|
{
|
918
|
-
"one" =>
|
918
|
+
"one" => "four",
|
919
919
|
"snakes" => "on a plane",
|
920
920
|
},
|
921
921
|
{
|
@@ -952,11 +952,11 @@ describe Chef::Node::Attribute do
|
|
952
952
|
before do
|
953
953
|
@attributes = Chef::Node::Attribute.new(
|
954
954
|
{
|
955
|
-
"one" =>
|
956
|
-
"hut" =>
|
955
|
+
"one" => "two",
|
956
|
+
"hut" => "three",
|
957
957
|
},
|
958
958
|
{
|
959
|
-
"one" =>
|
959
|
+
"one" => "four",
|
960
960
|
"snakes" => "on a plane",
|
961
961
|
},
|
962
962
|
{
|
@@ -988,11 +988,11 @@ describe Chef::Node::Attribute do
|
|
988
988
|
before do
|
989
989
|
@attributes = Chef::Node::Attribute.new(
|
990
990
|
{
|
991
|
-
"one" =>
|
992
|
-
"hut" =>
|
991
|
+
"one" => "two",
|
992
|
+
"hut" => "three",
|
993
993
|
},
|
994
994
|
{
|
995
|
-
"one" =>
|
995
|
+
"one" => "four",
|
996
996
|
"snakes" => "on a plane",
|
997
997
|
},
|
998
998
|
{
|
@@ -1038,11 +1038,11 @@ describe Chef::Node::Attribute do
|
|
1038
1038
|
before do
|
1039
1039
|
@attributes = Chef::Node::Attribute.new(
|
1040
1040
|
{
|
1041
|
-
"one" =>
|
1042
|
-
"hut" =>
|
1041
|
+
"one" => "two",
|
1042
|
+
"hut" => "three",
|
1043
1043
|
},
|
1044
1044
|
{
|
1045
|
-
"one" =>
|
1045
|
+
"one" => "four",
|
1046
1046
|
"snakes" => "on a plane",
|
1047
1047
|
},
|
1048
1048
|
{
|
@@ -145,25 +145,25 @@ describe Chef::Node::ImmutableMash do
|
|
145
145
|
end
|
146
146
|
end
|
147
147
|
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
148
|
+
%i{
|
149
|
+
[]=
|
150
|
+
clear
|
151
|
+
default=
|
152
|
+
default_proc=
|
153
|
+
delete
|
154
|
+
delete_if
|
155
|
+
keep_if
|
156
|
+
merge!
|
157
|
+
update
|
158
|
+
reject!
|
159
|
+
replace
|
160
|
+
select!
|
161
|
+
shift
|
162
|
+
write
|
163
|
+
write!
|
164
|
+
unlink
|
165
|
+
unlink!
|
166
|
+
}.each do |mutator|
|
167
167
|
it "doesn't allow mutation via `#{mutator}'" do
|
168
168
|
expect { @immutable_mash.send(mutator) }.to raise_error(Chef::Exceptions::ImmutableAttributeModification)
|
169
169
|
end
|
@@ -190,37 +190,37 @@ describe Chef::Node::ImmutableArray do
|
|
190
190
|
# with ImmutableMash, above
|
191
191
|
###
|
192
192
|
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
193
|
+
%i{
|
194
|
+
<<
|
195
|
+
[]=
|
196
|
+
clear
|
197
|
+
collect!
|
198
|
+
compact!
|
199
|
+
default=
|
200
|
+
default_proc=
|
201
|
+
delete
|
202
|
+
delete_at
|
203
|
+
delete_if
|
204
|
+
fill
|
205
|
+
flatten!
|
206
|
+
insert
|
207
|
+
keep_if
|
208
|
+
map!
|
209
|
+
merge!
|
210
|
+
pop
|
211
|
+
push
|
212
|
+
update
|
213
|
+
reject!
|
214
|
+
reverse!
|
215
|
+
replace
|
216
|
+
select!
|
217
|
+
shift
|
218
|
+
slice!
|
219
|
+
sort!
|
220
|
+
sort_by!
|
221
|
+
uniq!
|
222
|
+
unshift
|
223
|
+
}.each do |mutator|
|
224
224
|
it "does not allow mutation via `#{mutator}" do
|
225
225
|
expect { @immutable_array.send(mutator) }.to raise_error(Chef::Exceptions::ImmutableAttributeModification)
|
226
226
|
end
|