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
@@ -489,8 +489,8 @@ describe Chef::Provider::Package::Apt do
|
|
489
489
|
allow(@provider).to receive(:shell_out_compacted!).with(
|
490
490
|
"apt-mark", "showhold", timeout: 900
|
491
491
|
).and_return(instance_double(
|
492
|
-
Mixlib::ShellOut, stdout: "irssi"
|
493
|
-
|
492
|
+
Mixlib::ShellOut, stdout: "irssi"
|
493
|
+
))
|
494
494
|
expect(logger).to receive(:trace).with("#{@provider.new_resource} is already locked")
|
495
495
|
|
496
496
|
@provider.action_lock
|
@@ -510,8 +510,8 @@ describe Chef::Provider::Package::Apt do
|
|
510
510
|
allow(@provider).to receive(:shell_out_compacted!).with(
|
511
511
|
"apt-mark", "showhold", timeout: 900
|
512
512
|
).and_return(instance_double(
|
513
|
-
Mixlib::ShellOut, stdout: ""
|
514
|
-
|
513
|
+
Mixlib::ShellOut, stdout: ""
|
514
|
+
))
|
515
515
|
expect(logger).to receive(:trace).with("#{@provider.new_resource} is already unlocked")
|
516
516
|
|
517
517
|
@provider.action_unlock
|
@@ -564,7 +564,7 @@ describe Chef::Provider::Package::Apt do
|
|
564
564
|
env: { "DEBIAN_FRONTEND" => "noninteractive" },
|
565
565
|
timeout: @timeout
|
566
566
|
)
|
567
|
-
@provider.install_package(
|
567
|
+
@provider.install_package(%w{libmysqlclient15-dev irssi}, ["not_a_real_version", "0.8.12-7"])
|
568
568
|
end
|
569
569
|
end
|
570
570
|
|
@@ -81,7 +81,7 @@ describe Chef::Provider::Package::Bff do
|
|
81
81
|
status = double("Status", stdout: info, exitstatus: 0)
|
82
82
|
expect(@provider).to receive(:shell_out_compacted).with("installp", "-L", "-d", "/tmp/samba.base", timeout: 900).and_return(status)
|
83
83
|
expect(@provider).to receive(:shell_out_compacted).with("lslpp", "-lcq", "samba.base", timeout: 900).and_return(@empty_status)
|
84
|
-
expect(logger).to receive(:warn).once.with(
|
84
|
+
expect(logger).to receive(:warn).once.with(/bff package by product name/)
|
85
85
|
@provider.load_current_resource
|
86
86
|
|
87
87
|
expect(@provider.current_resource.package_name).to eq("samba.base")
|
@@ -260,7 +260,7 @@ describe Chef::Provider::Package::Cab do
|
|
260
260
|
end
|
261
261
|
|
262
262
|
before do
|
263
|
-
new_resource.source = "#{ENV[
|
263
|
+
new_resource.source = "#{ENV["TEMP"]}/test6.1-kb2664825-v3-x64.cab"
|
264
264
|
installed_package_list_obj = double(stdout: installed_package_list_stdout)
|
265
265
|
allow(provider).to receive(:dism_command).with("/Get-Packages").and_return(installed_package_list_obj)
|
266
266
|
end
|
@@ -262,8 +262,8 @@ describe Chef::Provider::Package::Chocolatey do
|
|
262
262
|
end
|
263
263
|
|
264
264
|
it "should do multipackage installs when given two packages without constraints" do
|
265
|
-
allow_remote_list(
|
266
|
-
new_resource.package_name(
|
265
|
+
allow_remote_list(%w{git munin-node})
|
266
|
+
new_resource.package_name(%w{git munin-node})
|
267
267
|
provider.load_current_resource
|
268
268
|
expect(provider).to receive(:shell_out_compacted!).with("#{choco_exe} install -y git munin-node", { returns: [0], timeout: timeout }).and_return(double)
|
269
269
|
provider.run_action(:install)
|
@@ -298,8 +298,8 @@ describe Chef::Provider::Package::Chocolatey do
|
|
298
298
|
end
|
299
299
|
|
300
300
|
it "installing multiple packages with a package that does not exist throws an error" do
|
301
|
-
allow_remote_list(
|
302
|
-
new_resource.package_name(
|
301
|
+
allow_remote_list(%w{git package-does-not-exist})
|
302
|
+
new_resource.package_name(%w{git package-does-not-exist})
|
303
303
|
provider.load_current_resource
|
304
304
|
expect { provider.run_action(:install) }.to raise_error(Chef::Exceptions::Package)
|
305
305
|
end
|
@@ -405,8 +405,8 @@ describe Chef::Provider::Package::Chocolatey do
|
|
405
405
|
end
|
406
406
|
|
407
407
|
it "upgrading multiple packages with a package that does not exist throws an error" do
|
408
|
-
allow_remote_list(
|
409
|
-
new_resource.package_name(
|
408
|
+
allow_remote_list(%w{git package-does-not-exist})
|
409
|
+
new_resource.package_name(%w{git package-does-not-exist})
|
410
410
|
provider.load_current_resource
|
411
411
|
expect { provider.run_action(:upgrade) }.to raise_error(Chef::Exceptions::Package)
|
412
412
|
end
|
@@ -432,8 +432,8 @@ describe Chef::Provider::Package::Chocolatey do
|
|
432
432
|
end
|
433
433
|
|
434
434
|
it "does nothing when all the packages are already removed" do
|
435
|
-
allow_remote_list(
|
436
|
-
new_resource.package_name(
|
435
|
+
allow_remote_list(%w{git package-does-not-exist})
|
436
|
+
new_resource.package_name(%w{git package-does-not-exist})
|
437
437
|
provider.load_current_resource
|
438
438
|
expect(provider).not_to receive(:remove_package)
|
439
439
|
provider.run_action(:remove)
|
@@ -25,7 +25,7 @@ describe Chef::Provider::Package::Freebsd::Pkg, "load_current_resource" do
|
|
25
25
|
@node = Chef::Node.new
|
26
26
|
@events = Chef::EventDispatch::Dispatcher.new
|
27
27
|
@run_context = Chef::RunContext.new(@node, {}, @events)
|
28
|
-
@new_resource
|
28
|
+
@new_resource = Chef::Resource::Package.new("zsh")
|
29
29
|
@current_resource = Chef::Resource::Package.new("zsh")
|
30
30
|
|
31
31
|
@provider = Chef::Provider::Package::Freebsd::Pkg.new(@new_resource, @run_context)
|
@@ -40,7 +40,7 @@ describe Chef::Provider::Package::Ips do
|
|
40
40
|
installed on the system. Try specifying -r to query remotely:
|
41
41
|
|
42
42
|
crypto/gnupg
|
43
|
-
PKG_STATUS
|
43
|
+
PKG_STATUS
|
44
44
|
OpenStruct.new(stdout: stdout, stdin: stdin, stderr: stderr, status: @status, exitstatus: 1)
|
45
45
|
end
|
46
46
|
|
@@ -56,7 +56,7 @@ PKG_STATUS
|
|
56
56
|
Packaging Date: April 1, 2012 05:55:52 PM
|
57
57
|
Size: 2.57 MB
|
58
58
|
FMRI: pkg://omnios/security/sudo@1.8.4.1,5.11-0.151002:20120401T175552Z
|
59
|
-
PKG_STATUS
|
59
|
+
PKG_STATUS
|
60
60
|
stdin = StringIO.new
|
61
61
|
stderr = ""
|
62
62
|
OpenStruct.new(stdout: stdout, stdin: stdin, stderr: stderr, status: @status, exitstatus: 0)
|
@@ -106,7 +106,7 @@ PKG_STATUS
|
|
106
106
|
Packaging Date: October 19, 2011 09:14:50 AM
|
107
107
|
Size: 8.07 MB
|
108
108
|
FMRI: pkg://solaris/crypto/gnupg@2.0.17,5.11-0.175.0.0.0.2.537:20111019T091450Z
|
109
|
-
INSTALLED
|
109
|
+
INSTALLED
|
110
110
|
expect(@provider).to receive(:shell_out_compacted).with("pkg", "info", @new_resource.package_name, timeout: 900).and_return(local)
|
111
111
|
expect(@provider).to receive(:shell_out_compacted!).with("pkg", "info", "-r", @new_resource.package_name, timeout: 900).and_return(remote_output)
|
112
112
|
@provider.load_current_resource
|
@@ -151,7 +151,7 @@ INSTALLED
|
|
151
151
|
Packaging Date: April 1, 2012 05:55:52 PM
|
152
152
|
Size: 2.57 MB
|
153
153
|
FMRI: pkg://omnios/security/sudo@1.8.4.1,5.11-0.151002:20120401T175552Z
|
154
|
-
PKG_STATUS
|
154
|
+
PKG_STATUS
|
155
155
|
expect(@provider).to receive(:shell_out_compacted).with("pkg", "info", @new_resource.package_name, timeout: 900).and_return(local_output)
|
156
156
|
expect(@provider).to receive(:shell_out_compacted!).with("pkg", "info", "-r", @new_resource.package_name, timeout: 900).and_return(remote)
|
157
157
|
@provider.load_current_resource
|
@@ -175,7 +175,7 @@ PKG_STATUS
|
|
175
175
|
Packaging Date: October 19, 2011 09:14:50 AM
|
176
176
|
Size: 8.07 MB
|
177
177
|
FMRI: pkg://solaris/crypto/gnupg@2.0.17,5.11-0.175.0.0.0.2.537:20111019T091450Z
|
178
|
-
INSTALLED
|
178
|
+
INSTALLED
|
179
179
|
remote = remote_output
|
180
180
|
remote.stdout = <<~REMOTE
|
181
181
|
Name: crypto/gnupg
|
@@ -191,7 +191,7 @@ INSTALLED
|
|
191
191
|
Packaging Date: October 19, 2011 09:14:50 AM
|
192
192
|
Size: 8.07 MB
|
193
193
|
FMRI: pkg://solaris/crypto/gnupg@2.0.18,5.11-0.175.0.0.0.2.537:20111019T091450Z
|
194
|
-
REMOTE
|
194
|
+
REMOTE
|
195
195
|
|
196
196
|
expect(@provider).to receive(:shell_out_compacted).with("pkg", "info", @new_resource.package_name, timeout: 900).and_return(local)
|
197
197
|
expect(@provider).to receive(:shell_out_compacted!).with("pkg", "info", "-r", @new_resource.package_name, timeout: 900).and_return(remote)
|
@@ -73,7 +73,7 @@ describe Chef::Provider::Package::Macports do
|
|
73
73
|
stdout = <<~EOF
|
74
74
|
The following ports are currently installed:
|
75
75
|
openssl @0.9.8k_0 (active)
|
76
|
-
EOF
|
76
|
+
EOF
|
77
77
|
|
78
78
|
status = double(stdout: stdout, exitstatus: 0)
|
79
79
|
expect(@provider).to receive(:shell_out_compacted).and_return(status)
|
@@ -243,7 +243,7 @@ describe Chef::Provider::Package::Msu, :windows_only do
|
|
243
243
|
|
244
244
|
describe "#extract_msu_contents" do
|
245
245
|
it "extracts the msu contents by using mixlib shellout" do
|
246
|
-
expect(provider).to receive(:shell_out!).with("#{ENV[
|
246
|
+
expect(provider).to receive(:shell_out!).with("#{ENV["SYSTEMROOT"]}\\system32\\expand.exe -f:* msu_file destination")
|
247
247
|
provider.extract_msu_contents("msu_file", "destination")
|
248
248
|
end
|
249
249
|
end
|
@@ -45,15 +45,16 @@ describe Chef::Provider::Package::Openbsd do
|
|
45
45
|
|
46
46
|
context "when not already installed" do
|
47
47
|
before do
|
48
|
-
allow(provider).to receive(:shell_out_compacted!).with("pkg_info", "-e", "#{name}->0", anything
|
48
|
+
allow(provider).to receive(:shell_out_compacted!).with("pkg_info", "-e", "#{name}->0", anything).and_return(instance_double("shellout", stdout: ""))
|
49
49
|
end
|
50
50
|
|
51
51
|
context "when there is a single candidate" do
|
52
52
|
|
53
53
|
context "when source is not provided" do
|
54
54
|
it "should run the installation command" do
|
55
|
-
expect(provider).to receive(:shell_out_compacted!).with("pkg_info", "-I", name, anything
|
56
|
-
instance_double("shellout", stdout: "#{name}-#{version}\n")
|
55
|
+
expect(provider).to receive(:shell_out_compacted!).with("pkg_info", "-I", name, anything).and_return(
|
56
|
+
instance_double("shellout", stdout: "#{name}-#{version}\n")
|
57
|
+
)
|
57
58
|
expect(provider).to receive(:shell_out_compacted!).with(
|
58
59
|
"pkg_add", "-r", "#{name}-#{version}",
|
59
60
|
{ env: { "PKG_PATH" => "http://ftp.OpenBSD.org/pub/OpenBSD/5.5/packages/amd64/" }, timeout: 900 }
|
@@ -69,8 +70,9 @@ describe Chef::Provider::Package::Openbsd do
|
|
69
70
|
|
70
71
|
context "if no version is specified" do
|
71
72
|
it "should raise an exception" do
|
72
|
-
expect(provider).to receive(:shell_out_compacted!).with("pkg_info", "-I", name, anything
|
73
|
-
instance_double("shellout", stdout: "#{name}-#{version}-#{flavor_a}\n#{name}-#{version}-#{flavor_b}\n")
|
73
|
+
expect(provider).to receive(:shell_out_compacted!).with("pkg_info", "-I", name, anything).and_return(
|
74
|
+
instance_double("shellout", stdout: "#{name}-#{version}-#{flavor_a}\n#{name}-#{version}-#{flavor_b}\n")
|
75
|
+
)
|
74
76
|
expect { provider.run_action(:install) }.to raise_error(Chef::Exceptions::Package, /multiple matching candidates/)
|
75
77
|
end
|
76
78
|
end
|
@@ -83,9 +85,10 @@ describe Chef::Provider::Package::Openbsd do
|
|
83
85
|
|
84
86
|
context "if no version is specified" do
|
85
87
|
it "should run the installation command" do
|
86
|
-
expect(provider).to receive(:shell_out_compacted!).with("pkg_info", "-e", "#{package_name}->0", anything
|
87
|
-
expect(provider).to receive(:shell_out_compacted!).with("pkg_info", "-I", name, anything
|
88
|
-
instance_double("shellout", stdout: "#{name}-#{version}-#{flavor}\n")
|
88
|
+
expect(provider).to receive(:shell_out_compacted!).with("pkg_info", "-e", "#{package_name}->0", anything).and_return(instance_double("shellout", stdout: ""))
|
89
|
+
expect(provider).to receive(:shell_out_compacted!).with("pkg_info", "-I", name, anything).and_return(
|
90
|
+
instance_double("shellout", stdout: "#{name}-#{version}-#{flavor}\n")
|
91
|
+
)
|
89
92
|
expect(provider).to receive(:shell_out_compacted!).with(
|
90
93
|
"pkg_add", "-r", "#{name}-#{version}-#{flavor}",
|
91
94
|
{ env: { "PKG_PATH" => "http://ftp.OpenBSD.org/pub/OpenBSD/5.5/packages/amd64/" }, timeout: 900 }
|
@@ -98,8 +101,9 @@ describe Chef::Provider::Package::Openbsd do
|
|
98
101
|
|
99
102
|
context "if a version is specified" do
|
100
103
|
it "should use the flavor from the version" do
|
101
|
-
expect(provider).to receive(:shell_out_compacted!).with("pkg_info", "-I", "#{name}-#{version}-#{flavor_b}", anything
|
102
|
-
instance_double("shellout", stdout: "#{name}-#{version}-#{flavor_a}\n")
|
104
|
+
expect(provider).to receive(:shell_out_compacted!).with("pkg_info", "-I", "#{name}-#{version}-#{flavor_b}", anything).and_return(
|
105
|
+
instance_double("shellout", stdout: "#{name}-#{version}-#{flavor_a}\n")
|
106
|
+
)
|
103
107
|
|
104
108
|
new_resource.version("#{version}-#{flavor_b}")
|
105
109
|
expect(provider).to receive(:shell_out_compacted!).with(
|
@@ -116,7 +120,7 @@ describe Chef::Provider::Package::Openbsd do
|
|
116
120
|
describe "delete a package" do
|
117
121
|
before do
|
118
122
|
@name = "ihavetoes"
|
119
|
-
@new_resource
|
123
|
+
@new_resource = Chef::Resource::Package.new(@name)
|
120
124
|
@current_resource = Chef::Resource::Package.new(@name)
|
121
125
|
@provider = Chef::Provider::Package::Openbsd.new(@new_resource, @run_context)
|
122
126
|
@provider.current_resource = @current_resource
|
@@ -34,7 +34,7 @@ describe Chef::Provider::Package::Pacman do
|
|
34
34
|
@stdin = StringIO.new
|
35
35
|
@stdout = StringIO.new(<<~ERR)
|
36
36
|
error: package "nano" not found
|
37
|
-
ERR
|
37
|
+
ERR
|
38
38
|
@stderr = StringIO.new
|
39
39
|
@pid = 2342
|
40
40
|
end
|
@@ -86,7 +86,7 @@ ERR
|
|
86
86
|
Install Reason : Explicitly installed
|
87
87
|
Install Script : Yes
|
88
88
|
Description : Pico editor clone with enhancements
|
89
|
-
PACMAN
|
89
|
+
PACMAN
|
90
90
|
|
91
91
|
status = double(stdout: stdout, exitstatus: 0)
|
92
92
|
allow(@provider).to receive(:shell_out_compacted).and_return(status)
|
@@ -118,7 +118,7 @@ PACMAN
|
|
118
118
|
|
119
119
|
[community]
|
120
120
|
Include = /etc/pacman.d/mirrorlist
|
121
|
-
PACMAN_CONF
|
121
|
+
PACMAN_CONF
|
122
122
|
|
123
123
|
status = double(stdout: "customrepo nano 1.2.3-4", exitstatus: 0)
|
124
124
|
allow(::File).to receive(:exist?).with("/etc/pacman.conf").and_return(true)
|
@@ -40,7 +40,7 @@ describe Chef::Provider::Package::Paludis do
|
|
40
40
|
user/ntp 0 accounts
|
41
41
|
user/ntp 0 installed-accounts
|
42
42
|
net/ntp 4.2.6_p5-r1 installed
|
43
|
-
PKG_STATUS
|
43
|
+
PKG_STATUS
|
44
44
|
@pid = 12345
|
45
45
|
@shell_out = OpenStruct.new(stdout: @stdout, stdin: @stdin, stderr: @stderr, status: @status, exitstatus: 0)
|
46
46
|
end
|
@@ -71,7 +71,7 @@ PKG_STATUS
|
|
71
71
|
user/ntp 0 accounts
|
72
72
|
user/ntp 0 installed-accounts
|
73
73
|
net/ntp 4.2.6_p5-r1 installed
|
74
|
-
INSTALLED
|
74
|
+
INSTALLED
|
75
75
|
expect(@provider).to receive(:shell_out_compacted!).and_return(@shell_out)
|
76
76
|
@provider.load_current_resource
|
77
77
|
expect(@current_resource.version).to eq("4.2.6_p5-r1")
|
@@ -100,7 +100,7 @@ INSTALLED
|
|
100
100
|
@stdout.replace(<<~PKG_STATUS)
|
101
101
|
sys-process/lsof 4.87 arbor
|
102
102
|
sys-process/lsof 4.87 x86_64
|
103
|
-
PKG_STATUS
|
103
|
+
PKG_STATUS
|
104
104
|
expect(@provider).to receive(:shell_out_compacted!).with("cave", "-L", "warning", "resolve", "-x", "=sys-process/lsof-4.87", { timeout: @new_resource.timeout || 900 })
|
105
105
|
@provider.install_package("sys-process/lsof", "4.87")
|
106
106
|
end
|
@@ -109,7 +109,7 @@ PKG_STATUS
|
|
109
109
|
@stdout.replace(<<~PKG_STATUS)
|
110
110
|
sys-process/lsof 4.87 arbor
|
111
111
|
sys-process/lsof 4.87 x86_64
|
112
|
-
PKG_STATUS
|
112
|
+
PKG_STATUS
|
113
113
|
expect(@provider).to receive(:shell_out_compacted!).and_return(@shell_out)
|
114
114
|
@provider.load_current_resource
|
115
115
|
expect(@current_resource.version).to be_nil
|
@@ -138,7 +138,7 @@ describe Chef::Provider::Package::Portage, "load_current_resource" do
|
|
138
138
|
* dev-python/sphinx
|
139
139
|
|
140
140
|
Please use a more specific atom.
|
141
|
-
EOF
|
141
|
+
EOF
|
142
142
|
status = double(stdout: "", stderr: stderr_output, exitstatus: 1)
|
143
143
|
@provider = Chef::Provider::Package::Portage.new(@new_resource_without_category, @run_context)
|
144
144
|
expect(@provider).to receive(:shell_out_compacted).and_return(status)
|
@@ -198,7 +198,7 @@ describe Chef::Provider::Package::Powershell do
|
|
198
198
|
end
|
199
199
|
|
200
200
|
it "can build a valid command from an array" do
|
201
|
-
expect(provider.build_powershell_package_command(
|
201
|
+
expect(provider.build_powershell_package_command(%w{Get-Package posh-git})).to eql(generated_command)
|
202
202
|
end
|
203
203
|
|
204
204
|
context "when source is nil" do
|
@@ -25,7 +25,7 @@ describe Chef::Provider::Package::SmartOS, "load_current_resource" do
|
|
25
25
|
@node = Chef::Node.new
|
26
26
|
@events = Chef::EventDispatch::Dispatcher.new
|
27
27
|
@run_context = Chef::RunContext.new(@node, {}, @events)
|
28
|
-
@new_resource
|
28
|
+
@new_resource = Chef::Resource::Package.new("varnish")
|
29
29
|
@current_resource = Chef::Resource::Package.new("varnish")
|
30
30
|
|
31
31
|
@status = double("Status", exitstatus: 0)
|
@@ -75,7 +75,7 @@ describe Chef::Provider::Package::SmartOS, "load_current_resource" do
|
|
75
75
|
end
|
76
76
|
|
77
77
|
it "should lookup the candidate_version if the variable is not already set (pkgin separated by spaces)" do
|
78
|
-
search = double
|
78
|
+
search = double
|
79
79
|
expect(search).to receive(:each_line)
|
80
80
|
.and_yield("something-varnish-1.1.1 something varnish like\n")
|
81
81
|
.and_yield("varnish-2.3.4 actual varnish\n")
|
@@ -85,7 +85,7 @@ describe Chef::Provider::Package::SmartOS, "load_current_resource" do
|
|
85
85
|
end
|
86
86
|
|
87
87
|
it "should lookup the candidate_version if the variable is not already set (pkgin separated by semicolons)" do
|
88
|
-
search = double
|
88
|
+
search = double
|
89
89
|
expect(search).to receive(:each_line)
|
90
90
|
.and_yield("something-varnish-1.1.1;;something varnish like\n")
|
91
91
|
.and_yield("varnish-2.3.4;;actual varnish\n")
|
@@ -117,7 +117,7 @@ describe Chef::Provider::Package::Windows::Exe do
|
|
117
117
|
context "no version given and one package installed with unquoted uninstall string" do
|
118
118
|
it "removes installed package and quotes uninstall string" do
|
119
119
|
allow(::File).to receive(:exist?).with("uninst_dir/uninst_file").and_return(true)
|
120
|
-
expect(provider).to receive(:shell_out!).with(
|
120
|
+
expect(provider).to receive(:shell_out!).with(%r{start \"\" /wait \"uninst_dir/uninst_file\" /S /NCRC & exit %%%%ERRORLEVEL%%%%}, kind_of(Hash))
|
121
121
|
provider.remove_package
|
122
122
|
end
|
123
123
|
end
|
@@ -126,7 +126,7 @@ describe Chef::Provider::Package::Windows::Exe do
|
|
126
126
|
it "removes installed package and quotes uninstall string" do
|
127
127
|
new_resource.timeout = 300
|
128
128
|
allow(::File).to receive(:exist?).with("uninst_dir/uninst_file").and_return(true)
|
129
|
-
expect(provider).to receive(:shell_out!).with(
|
129
|
+
expect(provider).to receive(:shell_out!).with(%r{start \"\" /wait \"uninst_dir/uninst_file\" /S /NCRC & exit %%%%ERRORLEVEL%%%%}, timeout: 300, returns: [0])
|
130
130
|
provider.remove_package
|
131
131
|
end
|
132
132
|
end
|
@@ -148,15 +148,15 @@ describe Chef::Provider::Package::Windows::Exe do
|
|
148
148
|
context "version given and installed" do
|
149
149
|
it "removes given version" do
|
150
150
|
new_resource.version("v2")
|
151
|
-
expect(provider).to receive(:shell_out!).with(
|
151
|
+
expect(provider).to receive(:shell_out!).with(%r{start \"\" /wait \"uninst_dir2/uninst_file2\" /S /NCRC & exit %%%%ERRORLEVEL%%%%}, kind_of(Hash))
|
152
152
|
provider.remove_package
|
153
153
|
end
|
154
154
|
end
|
155
155
|
|
156
156
|
context "no version given" do
|
157
157
|
it "removes both versions" do
|
158
|
-
expect(provider).to receive(:shell_out!).with(
|
159
|
-
expect(provider).to receive(:shell_out!).with(
|
158
|
+
expect(provider).to receive(:shell_out!).with(%r{start \"\" /wait \"uninst_dir1/uninst_file1\" /S /NCRC & exit %%%%ERRORLEVEL%%%%}, kind_of(Hash))
|
159
|
+
expect(provider).to receive(:shell_out!).with(%r{start \"\" /wait \"uninst_dir2/uninst_file2\" /S /NCRC & exit %%%%ERRORLEVEL%%%%}, kind_of(Hash))
|
160
160
|
provider.remove_package
|
161
161
|
end
|
162
162
|
end
|
@@ -167,7 +167,7 @@ describe Chef::Provider::Package::Windows::Exe do
|
|
167
167
|
let(:provider) { Chef::Provider::Package::Windows::Exe.new(new_resource, :nsis, uninstall_entry) }
|
168
168
|
|
169
169
|
it "calls installer with the correct flags" do
|
170
|
-
expect(provider).to receive(:shell_out!).with(
|
170
|
+
expect(provider).to receive(:shell_out!).with(%r{start \"\" /wait \"#{Regexp.quote(new_resource.source)}\" /S /NCRC & exit %%%%ERRORLEVEL%%%%}, kind_of(Hash))
|
171
171
|
provider.install_package
|
172
172
|
end
|
173
173
|
end
|
@@ -176,7 +176,7 @@ describe Chef::Provider::Package::Windows::Exe do
|
|
176
176
|
let(:provider) { Chef::Provider::Package::Windows::Exe.new(new_resource, :installshield, uninstall_entry) }
|
177
177
|
|
178
178
|
it "calls installer with the correct flags" do
|
179
|
-
expect(provider).to receive(:shell_out!).with(
|
179
|
+
expect(provider).to receive(:shell_out!).with(%r{start \"\" /wait \"#{Regexp.quote(new_resource.source)}\" /s /sms & exit %%%%ERRORLEVEL%%%%}, kind_of(Hash))
|
180
180
|
provider.install_package
|
181
181
|
end
|
182
182
|
end
|
@@ -185,7 +185,7 @@ describe Chef::Provider::Package::Windows::Exe do
|
|
185
185
|
let(:provider) { Chef::Provider::Package::Windows::Exe.new(new_resource, :inno, uninstall_entry) }
|
186
186
|
|
187
187
|
it "calls installer with the correct flags" do
|
188
|
-
expect(provider).to receive(:shell_out!).with(
|
188
|
+
expect(provider).to receive(:shell_out!).with(%r{start \"\" /wait \"#{Regexp.quote(new_resource.source)}\" /VERYSILENT /SUPPRESSMSGBOXES /NORESTART & exit %%%%ERRORLEVEL%%%%}, kind_of(Hash))
|
189
189
|
provider.install_package
|
190
190
|
end
|
191
191
|
end
|
@@ -194,7 +194,7 @@ describe Chef::Provider::Package::Windows::Exe do
|
|
194
194
|
let(:provider) { Chef::Provider::Package::Windows::Exe.new(new_resource, :wise, uninstall_entry) }
|
195
195
|
|
196
196
|
it "calls installer with the correct flags" do
|
197
|
-
expect(provider).to receive(:shell_out!).with(
|
197
|
+
expect(provider).to receive(:shell_out!).with(%r{start \"\" /wait \"#{Regexp.quote(new_resource.source)}\" /s & exit %%%%ERRORLEVEL%%%%}, kind_of(Hash))
|
198
198
|
provider.install_package
|
199
199
|
end
|
200
200
|
end
|
@@ -104,14 +104,14 @@ describe Chef::Provider::Package::Windows::MSI do
|
|
104
104
|
|
105
105
|
describe "install_package" do
|
106
106
|
it "calls msiexec /qn /i" do
|
107
|
-
expect(provider).to receive(:shell_out!).with(
|
107
|
+
expect(provider).to receive(:shell_out!).with(%r{msiexec /qn /i \"#{Regexp.quote(new_resource.source)}\"}, kind_of(Hash))
|
108
108
|
provider.install_package
|
109
109
|
end
|
110
110
|
end
|
111
111
|
|
112
112
|
describe "remove_package" do
|
113
113
|
it "calls msiexec /qn /x" do
|
114
|
-
expect(provider).to receive(:shell_out!).with(
|
114
|
+
expect(provider).to receive(:shell_out!).with(%r{msiexec /qn /x \"#{Regexp.quote(new_resource.source)}\"}, kind_of(Hash))
|
115
115
|
provider.remove_package
|
116
116
|
end
|
117
117
|
|
@@ -121,7 +121,7 @@ describe Chef::Provider::Package::Windows::MSI do
|
|
121
121
|
end
|
122
122
|
|
123
123
|
it "removes installed package" do
|
124
|
-
expect(provider).to receive(:shell_out!).with(
|
124
|
+
expect(provider).to receive(:shell_out!).with(%r{msiexec /x {guid} /q}, kind_of(Hash))
|
125
125
|
provider.remove_package
|
126
126
|
end
|
127
127
|
|
@@ -140,8 +140,8 @@ describe Chef::Provider::Package::Windows::MSI do
|
|
140
140
|
end
|
141
141
|
|
142
142
|
it "removes both installed package" do
|
143
|
-
expect(provider).to receive(:shell_out!).with(
|
144
|
-
expect(provider).to receive(:shell_out!).with(
|
143
|
+
expect(provider).to receive(:shell_out!).with(%r{msiexec /x {guid} /q}, kind_of(Hash))
|
144
|
+
expect(provider).to receive(:shell_out!).with(%r{msiexec /x {guid2} /q}, kind_of(Hash))
|
145
145
|
provider.remove_package
|
146
146
|
end
|
147
147
|
end
|
@@ -150,7 +150,7 @@ describe Chef::Provider::Package::Windows::MSI do
|
|
150
150
|
before { new_resource.options("/Q") }
|
151
151
|
|
152
152
|
it "does not duplicate quiet switch" do
|
153
|
-
expect(provider).to receive(:shell_out!).with(
|
153
|
+
expect(provider).to receive(:shell_out!).with(%r{msiexec /x {guid} /Q}, kind_of(Hash))
|
154
154
|
provider.remove_package
|
155
155
|
end
|
156
156
|
end
|
@@ -159,7 +159,7 @@ describe Chef::Provider::Package::Windows::MSI do
|
|
159
159
|
before { new_resource.options("/qn") }
|
160
160
|
|
161
161
|
it "does not duplicate quiet switch" do
|
162
|
-
expect(provider).to receive(:shell_out!).with(
|
162
|
+
expect(provider).to receive(:shell_out!).with(%r{msiexec /x {guid} /qn}, kind_of(Hash))
|
163
163
|
provider.remove_package
|
164
164
|
end
|
165
165
|
end
|