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
@@ -129,14 +129,14 @@ describe Chef::Provider::Service::Gentoo do
|
|
129
129
|
describe Chef::Provider::Service::Gentoo, "enable_service" do
|
130
130
|
it "should call rc-update add *service* default" do
|
131
131
|
expect(@provider).to receive(:shell_out!).with("/sbin/rc-update add chef default")
|
132
|
-
@provider.enable_service
|
132
|
+
@provider.enable_service
|
133
133
|
end
|
134
134
|
end
|
135
135
|
|
136
136
|
describe Chef::Provider::Service::Gentoo, "disable_service" do
|
137
137
|
it "should call rc-update del *service* default" do
|
138
138
|
expect(@provider).to receive(:shell_out!).with("/sbin/rc-update del chef default")
|
139
|
-
@provider.disable_service
|
139
|
+
@provider.disable_service
|
140
140
|
end
|
141
141
|
end
|
142
142
|
end
|
@@ -36,7 +36,7 @@ describe Chef::Provider::Service::Init, "load_current_resource" do
|
|
36
36
|
aj 7842 5057 0 21:26 pts/2 00:00:06 vi init.rb
|
37
37
|
aj 7903 5016 0 21:26 pts/5 00:00:00 /bin/bash
|
38
38
|
aj 8119 6041 0 21:34 pts/3 00:00:03 vi init_service_spec.rb
|
39
|
-
PS
|
39
|
+
PS
|
40
40
|
@status = double("Status", exitstatus: 0, stdout: @stdout)
|
41
41
|
allow(@provider).to receive(:shell_out!).and_return(@status)
|
42
42
|
end
|
@@ -136,7 +136,7 @@ PS
|
|
136
136
|
@stdout = StringIO.new(<<~RUNNING_PS)
|
137
137
|
aj 7842 5057 0 21:26 pts/2 00:00:06 chef
|
138
138
|
aj 7842 5057 0 21:26 pts/2 00:00:06 poos
|
139
|
-
RUNNING_PS
|
139
|
+
RUNNING_PS
|
140
140
|
allow(@status).to receive(:stdout).and_return(@stdout)
|
141
141
|
@provider.load_current_resource
|
142
142
|
expect(@current_resource.running).to be_truthy
|
@@ -165,12 +165,12 @@ RUNNING_PS
|
|
165
165
|
it "should call the start command if one is specified" do
|
166
166
|
@new_resource.start_command("/etc/init.d/chef startyousillysally")
|
167
167
|
expect(@provider).to receive(:shell_out!).with("/etc/init.d/chef startyousillysally", default_env: false)
|
168
|
-
@provider.start_service
|
168
|
+
@provider.start_service
|
169
169
|
end
|
170
170
|
|
171
171
|
it "should call '/etc/init.d/service_name start' if no start command is specified" do
|
172
172
|
expect(@provider).to receive(:shell_out!).with("/etc/init.d/#{@new_resource.service_name} start", default_env: false)
|
173
|
-
@provider.start_service
|
173
|
+
@provider.start_service
|
174
174
|
end
|
175
175
|
end
|
176
176
|
|
@@ -178,12 +178,12 @@ RUNNING_PS
|
|
178
178
|
it "should call the stop command if one is specified" do
|
179
179
|
@new_resource.stop_command("/etc/init.d/chef itoldyoutostop")
|
180
180
|
expect(@provider).to receive(:shell_out!).with("/etc/init.d/chef itoldyoutostop", default_env: false)
|
181
|
-
@provider.stop_service
|
181
|
+
@provider.stop_service
|
182
182
|
end
|
183
183
|
|
184
184
|
it "should call '/etc/init.d/service_name stop' if no stop command is specified" do
|
185
185
|
expect(@provider).to receive(:shell_out!).with("/etc/init.d/#{@new_resource.service_name} stop", default_env: false)
|
186
|
-
@provider.stop_service
|
186
|
+
@provider.stop_service
|
187
187
|
end
|
188
188
|
end
|
189
189
|
|
@@ -191,20 +191,20 @@ RUNNING_PS
|
|
191
191
|
it "should call 'restart' on the service_name if the resource supports it" do
|
192
192
|
@new_resource.supports({ restart: true })
|
193
193
|
expect(@provider).to receive(:shell_out!).with("/etc/init.d/#{@new_resource.service_name} restart", default_env: false)
|
194
|
-
@provider.restart_service
|
194
|
+
@provider.restart_service
|
195
195
|
end
|
196
196
|
|
197
197
|
it "should call the restart_command if one has been specified" do
|
198
198
|
@new_resource.restart_command("/etc/init.d/chef restartinafire")
|
199
199
|
expect(@provider).to receive(:shell_out!).with("/etc/init.d/#{@new_resource.service_name} restartinafire", default_env: false)
|
200
|
-
@provider.restart_service
|
200
|
+
@provider.restart_service
|
201
201
|
end
|
202
202
|
|
203
203
|
it "should just call stop, then start when the resource doesn't support restart and no restart_command is specified" do
|
204
204
|
expect(@provider).to receive(:stop_service)
|
205
205
|
expect(@provider).to receive(:sleep).with(1)
|
206
206
|
expect(@provider).to receive(:start_service)
|
207
|
-
@provider.restart_service
|
207
|
+
@provider.restart_service
|
208
208
|
end
|
209
209
|
end
|
210
210
|
|
@@ -212,13 +212,13 @@ RUNNING_PS
|
|
212
212
|
it "should call 'reload' on the service if it supports it" do
|
213
213
|
@new_resource.supports({ reload: true })
|
214
214
|
expect(@provider).to receive(:shell_out!).with("/etc/init.d/chef reload", default_env: false)
|
215
|
-
@provider.reload_service
|
215
|
+
@provider.reload_service
|
216
216
|
end
|
217
217
|
|
218
218
|
it "should should run the user specified reload command if one is specified and the service doesn't support reload" do
|
219
219
|
@new_resource.reload_command("/etc/init.d/chef lollerpants")
|
220
220
|
expect(@provider).to receive(:shell_out!).with("/etc/init.d/chef lollerpants", default_env: false)
|
221
|
-
@provider.reload_service
|
221
|
+
@provider.reload_service
|
222
222
|
end
|
223
223
|
end
|
224
224
|
|
@@ -36,7 +36,7 @@ describe Chef::Provider::Service::Invokercd, "load_current_resource" do
|
|
36
36
|
aj 7842 5057 0 21:26 pts/2 00:00:06 vi init.rb
|
37
37
|
aj 7903 5016 0 21:26 pts/5 00:00:00 /bin/bash
|
38
38
|
aj 8119 6041 0 21:34 pts/3 00:00:03 vi init_service_spec.rb
|
39
|
-
PS
|
39
|
+
PS
|
40
40
|
@status = double("Status", exitstatus: 0, stdout: @stdout)
|
41
41
|
allow(@provider).to receive(:shell_out!).and_return(@status)
|
42
42
|
end
|
@@ -121,7 +121,7 @@ PS
|
|
121
121
|
@stdout = StringIO.new(<<~RUNNING_PS)
|
122
122
|
aj 7842 5057 0 21:26 pts/2 00:00:06 chef
|
123
123
|
aj 7842 5057 0 21:26 pts/2 00:00:06 poos
|
124
|
-
RUNNING_PS
|
124
|
+
RUNNING_PS
|
125
125
|
@status = double("Status", exitstatus: 0, stdout: @stdout)
|
126
126
|
expect(@provider).to receive(:shell_out!).and_return(@status)
|
127
127
|
@provider.load_current_resource
|
@@ -152,12 +152,12 @@ RUNNING_PS
|
|
152
152
|
it "should call the start command if one is specified" do
|
153
153
|
@new_resource.start_command("/usr/sbin/invoke-rc.d chef startyousillysally")
|
154
154
|
expect(@provider).to receive(:shell_out!).with("/usr/sbin/invoke-rc.d chef startyousillysally", default_env: false)
|
155
|
-
@provider.start_service
|
155
|
+
@provider.start_service
|
156
156
|
end
|
157
157
|
|
158
158
|
it "should call '/usr/sbin/invoke-rc.d service_name start' if no start command is specified" do
|
159
159
|
expect(@provider).to receive(:shell_out!).with("/usr/sbin/invoke-rc.d #{@new_resource.service_name} start", default_env: false)
|
160
|
-
@provider.start_service
|
160
|
+
@provider.start_service
|
161
161
|
end
|
162
162
|
end
|
163
163
|
|
@@ -165,12 +165,12 @@ RUNNING_PS
|
|
165
165
|
it "should call the stop command if one is specified" do
|
166
166
|
@new_resource.stop_command("/usr/sbin/invoke-rc.d chef itoldyoutostop")
|
167
167
|
expect(@provider).to receive(:shell_out!).with("/usr/sbin/invoke-rc.d chef itoldyoutostop", default_env: false)
|
168
|
-
@provider.stop_service
|
168
|
+
@provider.stop_service
|
169
169
|
end
|
170
170
|
|
171
171
|
it "should call '/usr/sbin/invoke-rc.d service_name stop' if no stop command is specified" do
|
172
172
|
expect(@provider).to receive(:shell_out!).with("/usr/sbin/invoke-rc.d #{@new_resource.service_name} stop", default_env: false)
|
173
|
-
@provider.stop_service
|
173
|
+
@provider.stop_service
|
174
174
|
end
|
175
175
|
end
|
176
176
|
|
@@ -178,20 +178,20 @@ RUNNING_PS
|
|
178
178
|
it "should call 'restart' on the service_name if the resource supports it" do
|
179
179
|
@new_resource.supports({ restart: true })
|
180
180
|
expect(@provider).to receive(:shell_out!).with("/usr/sbin/invoke-rc.d #{@new_resource.service_name} restart", default_env: false)
|
181
|
-
@provider.restart_service
|
181
|
+
@provider.restart_service
|
182
182
|
end
|
183
183
|
|
184
184
|
it "should call the restart_command if one has been specified" do
|
185
185
|
@new_resource.restart_command("/usr/sbin/invoke-rc.d chef restartinafire")
|
186
186
|
expect(@provider).to receive(:shell_out!).with("/usr/sbin/invoke-rc.d #{@new_resource.service_name} restartinafire", default_env: false)
|
187
|
-
@provider.restart_service
|
187
|
+
@provider.restart_service
|
188
188
|
end
|
189
189
|
|
190
190
|
it "should just call stop, then start when the resource doesn't support restart and no restart_command is specified" do
|
191
191
|
expect(@provider).to receive(:stop_service)
|
192
192
|
expect(@provider).to receive(:sleep).with(1)
|
193
193
|
expect(@provider).to receive(:start_service)
|
194
|
-
@provider.restart_service
|
194
|
+
@provider.restart_service
|
195
195
|
end
|
196
196
|
end
|
197
197
|
|
@@ -199,13 +199,13 @@ RUNNING_PS
|
|
199
199
|
it "should call 'reload' on the service if it supports it" do
|
200
200
|
@new_resource.supports({ reload: true })
|
201
201
|
expect(@provider).to receive(:shell_out!).with("/usr/sbin/invoke-rc.d chef reload", default_env: false)
|
202
|
-
@provider.reload_service
|
202
|
+
@provider.reload_service
|
203
203
|
end
|
204
204
|
|
205
205
|
it "should should run the user specified reload command if one is specified and the service doesn't support reload" do
|
206
206
|
@new_resource.reload_command("/usr/sbin/invoke-rc.d chef lollerpants")
|
207
207
|
expect(@provider).to receive(:shell_out!).with("/usr/sbin/invoke-rc.d chef lollerpants", default_env: false)
|
208
|
-
@provider.reload_service
|
208
|
+
@provider.reload_service
|
209
209
|
end
|
210
210
|
end
|
211
211
|
end
|
@@ -57,7 +57,7 @@ describe Chef::Provider::Service::Macosx do
|
|
57
57
|
<string>io.redis.redis-server</string>
|
58
58
|
</dict>
|
59
59
|
</plist>
|
60
|
-
XML
|
60
|
+
XML
|
61
61
|
|
62
62
|
%w{Daemon Agent}.each do |service_type|
|
63
63
|
["redis-server", "io.redis.redis-server"].each do |service_name|
|
@@ -85,7 +85,7 @@ XML
|
|
85
85
|
allow(provider).to receive(:shell_out)
|
86
86
|
.with(/(#{su_cmd} '#{cmd}'|#{cmd})/, default_env: false)
|
87
87
|
.and_return(double("Status",
|
88
|
-
|
88
|
+
stdout: launchctl_stdout, exitstatus: 0))
|
89
89
|
allow(File).to receive(:exists?).and_return([true], [])
|
90
90
|
allow(provider).to receive(:shell_out!)
|
91
91
|
.with(/plutil -convert xml1 -o/, default_env: false)
|
@@ -150,7 +150,7 @@ XML
|
|
150
150
|
"-f";
|
151
151
|
);
|
152
152
|
};
|
153
|
-
SVC_LIST
|
153
|
+
SVC_LIST
|
154
154
|
|
155
155
|
before do
|
156
156
|
provider.load_current_resource
|
@@ -188,7 +188,7 @@ SVC_LIST
|
|
188
188
|
"-f";
|
189
189
|
);
|
190
190
|
};
|
191
|
-
SVC_LIST
|
191
|
+
SVC_LIST
|
192
192
|
|
193
193
|
before do
|
194
194
|
provider.load_current_resource
|
@@ -206,7 +206,7 @@ SVC_LIST
|
|
206
206
|
context "when launchctl doesn't return service entry at all" do
|
207
207
|
let(:launchctl_stdout) { StringIO.new <<~SVC_LIST }
|
208
208
|
Could not find service "io.redis.redis-server" in domain for system
|
209
|
-
SVC_LIST
|
209
|
+
SVC_LIST
|
210
210
|
|
211
211
|
it "sets service running state to false" do
|
212
212
|
provider.load_current_resource
|
@@ -178,7 +178,8 @@ describe Chef::Provider::Service::Openbsd do
|
|
178
178
|
[
|
179
179
|
%Q{thing_#{provider.builtin_service_enable_variable_name}="YES"},
|
180
180
|
%Q{#{provider.builtin_service_enable_variable_name}="NO"},
|
181
|
-
]
|
181
|
+
]
|
182
|
+
end
|
182
183
|
it "sets enabled based on the exact match (false)" do
|
183
184
|
provider.determine_enabled_status!
|
184
185
|
expect(current_resource.enabled).to be false
|
@@ -190,7 +191,8 @@ describe Chef::Provider::Service::Openbsd do
|
|
190
191
|
[
|
191
192
|
%Q{#{provider.builtin_service_enable_variable_name}_thing="YES"},
|
192
193
|
(provider.builtin_service_enable_variable_name).to_s,
|
193
|
-
]
|
194
|
+
]
|
195
|
+
end
|
194
196
|
it "sets enabled based on the exact match (false)" do
|
195
197
|
provider.determine_enabled_status!
|
196
198
|
expect(current_resource.enabled).to be false
|
@@ -202,7 +204,8 @@ describe Chef::Provider::Service::Openbsd do
|
|
202
204
|
[
|
203
205
|
%Q{thing_#{provider.builtin_service_enable_variable_name}="NO"},
|
204
206
|
%Q{#{provider.builtin_service_enable_variable_name}="YES"},
|
205
|
-
]
|
207
|
+
]
|
208
|
+
end
|
206
209
|
it "sets enabled based on the exact match (true)" do
|
207
210
|
provider.determine_enabled_status!
|
208
211
|
expect(current_resource.enabled).to be true
|
@@ -214,7 +217,8 @@ describe Chef::Provider::Service::Openbsd do
|
|
214
217
|
[
|
215
218
|
%Q{#{provider.builtin_service_enable_variable_name}_thing="NO"},
|
216
219
|
%Q{#{provider.builtin_service_enable_variable_name}="YES"},
|
217
|
-
]
|
220
|
+
]
|
221
|
+
end
|
218
222
|
it "sets enabled based on the exact match (true)" do
|
219
223
|
provider.determine_enabled_status!
|
220
224
|
expect(current_resource.enabled).to be true
|
@@ -286,12 +290,12 @@ describe Chef::Provider::Service::Openbsd do
|
|
286
290
|
it "should call the start command if one is specified" do
|
287
291
|
new_resource.start_command("/etc/rc.d/chef startyousillysally")
|
288
292
|
expect(provider).to receive(:shell_out!).with("/etc/rc.d/chef startyousillysally", default_env: false)
|
289
|
-
provider.start_service
|
293
|
+
provider.start_service
|
290
294
|
end
|
291
295
|
|
292
296
|
it "should call '/usr/local/etc/rc.d/service_name start' if no start command is specified" do
|
293
297
|
expect(provider).to receive(:shell_out!).with("/etc/rc.d/#{new_resource.service_name} start", default_env: false)
|
294
|
-
provider.start_service
|
298
|
+
provider.start_service
|
295
299
|
end
|
296
300
|
end
|
297
301
|
|
@@ -299,12 +303,12 @@ describe Chef::Provider::Service::Openbsd do
|
|
299
303
|
it "should call the stop command if one is specified" do
|
300
304
|
new_resource.stop_command("/etc/init.d/chef itoldyoutostop")
|
301
305
|
expect(provider).to receive(:shell_out!).with("/etc/init.d/chef itoldyoutostop", default_env: false)
|
302
|
-
provider.stop_service
|
306
|
+
provider.stop_service
|
303
307
|
end
|
304
308
|
|
305
309
|
it "should call '/usr/local/etc/rc.d/service_name stop' if no stop command is specified" do
|
306
310
|
expect(provider).to receive(:shell_out!).with("/etc/rc.d/#{new_resource.service_name} stop", default_env: false)
|
307
|
-
provider.stop_service
|
311
|
+
provider.stop_service
|
308
312
|
end
|
309
313
|
end
|
310
314
|
|
@@ -313,20 +317,20 @@ describe Chef::Provider::Service::Openbsd do
|
|
313
317
|
let(:supports) { { restart: true } }
|
314
318
|
it "should call 'restart' on the service_name if the resource supports it" do
|
315
319
|
expect(provider).to receive(:shell_out!).with("/etc/rc.d/#{new_resource.service_name} restart", default_env: false)
|
316
|
-
provider.restart_service
|
320
|
+
provider.restart_service
|
317
321
|
end
|
318
322
|
end
|
319
323
|
|
320
324
|
it "should call the restart_command if one has been specified" do
|
321
325
|
new_resource.restart_command("/etc/init.d/chef restartinafire")
|
322
326
|
expect(provider).to receive(:shell_out!).with("/etc/init.d/chef restartinafire", default_env: false)
|
323
|
-
provider.restart_service
|
327
|
+
provider.restart_service
|
324
328
|
end
|
325
329
|
|
326
330
|
it "otherwise it should call stop and start" do
|
327
331
|
expect(provider).to receive(:stop_service)
|
328
332
|
expect(provider).to receive(:start_service)
|
329
|
-
provider.restart_service
|
333
|
+
provider.restart_service
|
330
334
|
end
|
331
335
|
end
|
332
336
|
end
|
@@ -35,7 +35,7 @@ describe Chef::Provider::Service::Simple, "load_current_resource" do
|
|
35
35
|
aj 7842 5057 0 21:26 pts/2 00:00:06 vi init.rb
|
36
36
|
aj 7903 5016 0 21:26 pts/5 00:00:00 /bin/bash
|
37
37
|
aj 8119 6041 0 21:34 pts/3 00:00:03 vi simple_service_spec.rb
|
38
|
-
NOMOCKINGSTRINGSPLZ
|
38
|
+
NOMOCKINGSTRINGSPLZ
|
39
39
|
@status = double("Status", exitstatus: 0, stdout: @stdout)
|
40
40
|
allow(@provider).to receive(:shell_out!).and_return(@status)
|
41
41
|
end
|
@@ -78,7 +78,7 @@ NOMOCKINGSTRINGSPLZ
|
|
78
78
|
@stdout = StringIO.new(<<~NOMOCKINGSTRINGSPLZ)
|
79
79
|
aj 7842 5057 0 21:26 pts/2 00:00:06 chef
|
80
80
|
aj 7842 5057 0 21:26 pts/2 00:00:06 poos
|
81
|
-
NOMOCKINGSTRINGSPLZ
|
81
|
+
NOMOCKINGSTRINGSPLZ
|
82
82
|
@status = double("Status", exitstatus: 0, stdout: @stdout)
|
83
83
|
allow(@provider).to receive(:shell_out!).and_return(@status)
|
84
84
|
@provider.load_current_resource
|
@@ -108,7 +108,7 @@ NOMOCKINGSTRINGSPLZ
|
|
108
108
|
it "should call the start command if one is specified" do
|
109
109
|
@new_resource.start_command((@new_resource.start_command).to_s)
|
110
110
|
expect(@provider).to receive(:shell_out!).with((@new_resource.start_command).to_s, default_env: false)
|
111
|
-
@provider.start_service
|
111
|
+
@provider.start_service
|
112
112
|
end
|
113
113
|
|
114
114
|
it "should raise an exception if no start command is specified" do
|
@@ -122,7 +122,7 @@ NOMOCKINGSTRINGSPLZ
|
|
122
122
|
it "should call the stop command if one is specified" do
|
123
123
|
@new_resource.stop_command("/etc/init.d/themadness stop")
|
124
124
|
expect(@provider).to receive(:shell_out!).with("/etc/init.d/themadness stop", default_env: false)
|
125
|
-
@provider.stop_service
|
125
|
+
@provider.stop_service
|
126
126
|
end
|
127
127
|
|
128
128
|
it "should raise an exception if no stop command is specified" do
|
@@ -136,7 +136,7 @@ NOMOCKINGSTRINGSPLZ
|
|
136
136
|
it "should call the restart command if one has been specified" do
|
137
137
|
@new_resource.restart_command("/etc/init.d/foo restart")
|
138
138
|
expect(@provider).to receive(:shell_out!).with("/etc/init.d/foo restart", default_env: false)
|
139
|
-
@provider.restart_service
|
139
|
+
@provider.restart_service
|
140
140
|
end
|
141
141
|
|
142
142
|
it "should raise an exception if the resource doesn't support restart, no restart command is provided, and no stop command is provided" do
|
@@ -149,7 +149,7 @@ NOMOCKINGSTRINGSPLZ
|
|
149
149
|
expect(@provider).to receive(:stop_service)
|
150
150
|
expect(@provider).to receive(:sleep).with(1)
|
151
151
|
expect(@provider).to receive(:start_service)
|
152
|
-
@provider.restart_service
|
152
|
+
@provider.restart_service
|
153
153
|
end
|
154
154
|
end
|
155
155
|
|
@@ -163,7 +163,7 @@ NOMOCKINGSTRINGSPLZ
|
|
163
163
|
it "should should run the user specified reload command if one is specified" do
|
164
164
|
@new_resource.reload_command("kill -9 1")
|
165
165
|
expect(@provider).to receive(:shell_out!).with("kill -9 1", default_env: false)
|
166
|
-
@provider.reload_service
|
166
|
+
@provider.reload_service
|
167
167
|
end
|
168
168
|
end
|
169
169
|
end
|
@@ -242,7 +242,7 @@ describe Chef::Provider::Service::Upstart do
|
|
242
242
|
allow(@current_resource).to receive(:enabled).and_return(false)
|
243
243
|
expect(@file).to receive(:search_file_replace)
|
244
244
|
expect(@file).to receive(:write_file)
|
245
|
-
@provider.enable_service
|
245
|
+
@provider.enable_service
|
246
246
|
end
|
247
247
|
|
248
248
|
it "should disable the service if it is enabled" do
|
@@ -251,7 +251,7 @@ describe Chef::Provider::Service::Upstart do
|
|
251
251
|
allow(@current_resource).to receive(:enabled).and_return(true)
|
252
252
|
expect(@file).to receive(:search_file_replace)
|
253
253
|
expect(@file).to receive(:write_file)
|
254
|
-
@provider.disable_service
|
254
|
+
@provider.disable_service
|
255
255
|
end
|
256
256
|
|
257
257
|
end
|
@@ -268,19 +268,19 @@ describe Chef::Provider::Service::Upstart do
|
|
268
268
|
@provider.upstart_service_running = false
|
269
269
|
@new_resource.start_command("/sbin/rsyslog startyousillysally")
|
270
270
|
expect(@provider).to receive(:shell_out!).with("/sbin/rsyslog startyousillysally", default_env: false)
|
271
|
-
@provider.start_service
|
271
|
+
@provider.start_service
|
272
272
|
end
|
273
273
|
|
274
274
|
it "should call '/sbin/start service_name' if no start command is specified" do
|
275
275
|
@provider.upstart_service_running = false
|
276
276
|
expect(@provider).to receive(:shell_out!).with("/sbin/start #{@new_resource.service_name}", default_env: false).and_return(shell_out_success)
|
277
|
-
@provider.start_service
|
277
|
+
@provider.start_service
|
278
278
|
end
|
279
279
|
|
280
280
|
it "should not call '/sbin/start service_name' if it is already running" do
|
281
281
|
@provider.upstart_service_running = true
|
282
282
|
expect(@provider).not_to receive(:shell_out!)
|
283
|
-
@provider.start_service
|
283
|
+
@provider.start_service
|
284
284
|
end
|
285
285
|
|
286
286
|
it "should pass parameters to the start command if they are provided" do
|
@@ -289,14 +289,14 @@ describe Chef::Provider::Service::Upstart do
|
|
289
289
|
@provider = Chef::Provider::Service::Upstart.new(@new_resource, @run_context)
|
290
290
|
@provider.current_resource = @current_resource
|
291
291
|
expect(@provider).to receive(:shell_out!).with("/sbin/start rsyslog OSD_ID=2", default_env: false).and_return(shell_out_success)
|
292
|
-
@provider.start_service
|
292
|
+
@provider.start_service
|
293
293
|
end
|
294
294
|
|
295
295
|
it "should call the restart command if one is specified" do
|
296
296
|
allow(@current_resource).to receive(:running).and_return(true)
|
297
297
|
@new_resource.restart_command("/sbin/rsyslog restartyousillysally")
|
298
298
|
expect(@provider).to receive(:shell_out!).with("/sbin/rsyslog restartyousillysally", default_env: false)
|
299
|
-
@provider.restart_service
|
299
|
+
@provider.restart_service
|
300
300
|
end
|
301
301
|
|
302
302
|
it "should call start/sleep/stop if no restart command is specified" do
|
@@ -304,47 +304,47 @@ describe Chef::Provider::Service::Upstart do
|
|
304
304
|
expect(@provider).to receive(:stop_service)
|
305
305
|
expect(@provider).to receive(:sleep).with(1)
|
306
306
|
expect(@provider).to receive(:start_service)
|
307
|
-
@provider.restart_service
|
307
|
+
@provider.restart_service
|
308
308
|
end
|
309
309
|
|
310
310
|
it "should call '/sbin/start service_name' if restart_service is called for a stopped service" do
|
311
311
|
@provider.upstart_service_running = false
|
312
312
|
allow(@current_resource).to receive(:running).and_return(false)
|
313
313
|
expect(@provider).to receive(:shell_out!).with("/sbin/start #{@new_resource.service_name}", default_env: false).and_return(shell_out_success)
|
314
|
-
@provider.restart_service
|
314
|
+
@provider.restart_service
|
315
315
|
end
|
316
316
|
|
317
317
|
it "should call the reload command if one is specified" do
|
318
318
|
allow(@current_resource).to receive(:running).and_return(true)
|
319
319
|
@new_resource.reload_command("/sbin/rsyslog reloadyousillysally")
|
320
320
|
expect(@provider).to receive(:shell_out!).with("/sbin/rsyslog reloadyousillysally", default_env: false)
|
321
|
-
@provider.reload_service
|
321
|
+
@provider.reload_service
|
322
322
|
end
|
323
323
|
|
324
324
|
it "should call '/sbin/reload service_name' if no reload command is specified" do
|
325
325
|
allow(@current_resource).to receive(:running).and_return(true)
|
326
326
|
expect(@provider).to receive(:shell_out!).with("/sbin/reload #{@new_resource.service_name}", default_env: false).and_return(shell_out_success)
|
327
|
-
@provider.reload_service
|
327
|
+
@provider.reload_service
|
328
328
|
end
|
329
329
|
|
330
330
|
it "should call the stop command if one is specified" do
|
331
331
|
@provider.upstart_service_running = true
|
332
332
|
@new_resource.stop_command("/sbin/rsyslog stopyousillysally")
|
333
333
|
expect(@provider).to receive(:shell_out!).with("/sbin/rsyslog stopyousillysally", default_env: false)
|
334
|
-
@provider.stop_service
|
334
|
+
@provider.stop_service
|
335
335
|
end
|
336
336
|
|
337
337
|
it "should call '/sbin/stop service_name' if no stop command is specified" do
|
338
338
|
@provider.upstart_service_running = true
|
339
339
|
expect(@provider).to receive(:shell_out!).with("/sbin/stop #{@new_resource.service_name}", default_env: false).and_return(shell_out_success)
|
340
|
-
@provider.stop_service
|
340
|
+
@provider.stop_service
|
341
341
|
end
|
342
342
|
|
343
343
|
it "should not call '/sbin/stop service_name' if it is already stopped" do
|
344
344
|
@provider.upstart_service_running = false
|
345
345
|
allow(@current_resource).to receive(:running).and_return(false)
|
346
346
|
expect(@provider).not_to receive(:shell_out!).with("/sbin/stop #{@new_resource.service_name}", default_env: false)
|
347
|
-
@provider.stop_service
|
347
|
+
@provider.stop_service
|
348
348
|
expect(@upstart_service_running).to be_falsey
|
349
349
|
end
|
350
350
|
end
|