chef 12.0.0.alpha.2-x86-mingw32 → 12.0.0.rc.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/CONTRIBUTING.md +9 -0
- data/README.md +1 -1
- data/Rakefile +12 -0
- data/bin/chef-service-manager +1 -1
- data/bin/chef-windows-service +35 -0
- data/distro/common/html/_sources/ctl_chef_server.txt +307 -10
- data/distro/common/html/ctl_chef_client.html +3 -7
- data/distro/common/html/ctl_chef_server.html +609 -41
- data/distro/common/html/ctl_chef_shell.html +2 -2
- data/distro/common/html/ctl_chef_solo.html +1 -1
- data/distro/common/html/index.html +13 -13
- data/distro/common/html/knife.html +10 -10
- data/distro/common/html/knife_bootstrap.html +8 -8
- data/distro/common/html/knife_client.html +12 -12
- data/distro/common/html/knife_common_options.html +7 -7
- data/distro/common/html/knife_configure.html +3 -3
- data/distro/common/html/knife_cookbook.html +19 -19
- data/distro/common/html/knife_cookbook_site.html +28 -28
- data/distro/common/html/knife_data_bag.html +28 -13
- data/distro/common/html/knife_delete.html +2 -2
- data/distro/common/html/knife_deps.html +3 -3
- data/distro/common/html/knife_diff.html +4 -4
- data/distro/common/html/knife_download.html +3 -3
- data/distro/common/html/knife_edit.html +2 -2
- data/distro/common/html/knife_environment.html +14 -14
- data/distro/common/html/knife_exec.html +11 -11
- data/distro/common/html/knife_index_rebuild.html +2 -2
- data/distro/common/html/knife_list.html +3 -3
- data/distro/common/html/knife_node.html +23 -23
- data/distro/common/html/knife_raw.html +4 -4
- data/distro/common/html/knife_recipe_list.html +3 -3
- data/distro/common/html/knife_role.html +11 -11
- data/distro/common/html/knife_search.html +4 -4
- data/distro/common/html/knife_serve.html +3 -3
- data/distro/common/html/knife_show.html +3 -3
- data/distro/common/html/knife_ssh.html +7 -7
- data/distro/common/html/knife_ssl_check.html +7 -7
- data/distro/common/html/knife_ssl_fetch.html +9 -9
- data/distro/common/html/knife_status.html +3 -3
- data/distro/common/html/knife_tag.html +9 -9
- data/distro/common/html/knife_upload.html +3 -3
- data/distro/common/html/knife_user.html +9 -9
- data/distro/common/html/knife_using.html +11 -11
- data/distro/common/html/knife_xargs.html +14 -5
- data/distro/common/html/search.html +2 -2
- data/distro/common/html/searchindex.js +1 -1
- data/distro/common/man/man1/chef-shell.1 +2 -2
- data/distro/common/man/man1/knife-bootstrap.1 +7 -7
- data/distro/common/man/man1/knife-client.1 +10 -10
- data/distro/common/man/man1/knife-configure.1 +5 -5
- data/distro/common/man/man1/knife-cookbook-site.1 +24 -24
- data/distro/common/man/man1/knife-cookbook.1 +12 -12
- data/distro/common/man/man1/knife-data-bag.1 +34 -10
- data/distro/common/man/man1/knife-delete.1 +5 -5
- data/distro/common/man/man1/knife-deps.1 +5 -5
- data/distro/common/man/man1/knife-diff.1 +7 -7
- data/distro/common/man/man1/knife-download.1 +5 -5
- data/distro/common/man/man1/knife-edit.1 +5 -5
- data/distro/common/man/man1/knife-environment.1 +11 -11
- data/distro/common/man/man1/knife-exec.1 +11 -11
- data/distro/common/man/man1/knife-index-rebuild.1 +1 -1
- data/distro/common/man/man1/knife-list.1 +5 -5
- data/distro/common/man/man1/knife-node.1 +16 -16
- data/distro/common/man/man1/knife-raw.1 +6 -6
- data/distro/common/man/man1/knife-recipe-list.1 +1 -1
- data/distro/common/man/man1/knife-role.1 +7 -7
- data/distro/common/man/man1/knife-search.1 +6 -6
- data/distro/common/man/man1/knife-serve.1 +6 -6
- data/distro/common/man/man1/knife-show.1 +5 -5
- data/distro/common/man/man1/knife-ssh.1 +9 -9
- data/distro/common/man/man1/knife-ssl-check.1 +7 -7
- data/distro/common/man/man1/knife-ssl-fetch.1 +9 -9
- data/distro/common/man/man1/knife-status.1 +5 -5
- data/distro/common/man/man1/knife-tag.1 +8 -8
- data/distro/common/man/man1/knife-upload.1 +5 -5
- data/distro/common/man/man1/knife-user.1 +8 -8
- data/distro/common/man/man1/knife-xargs.1 +36 -10
- data/distro/common/man/man1/knife.1 +14 -14
- data/distro/common/man/man8/chef-client.8 +3 -10
- data/distro/common/man/man8/chef-solo.8 +1 -1
- data/ext/win32-eventlog/Rakefile +50 -0
- data/ext/win32-eventlog/chef-log.man +26 -0
- data/lib/chef/application.rb +313 -241
- data/lib/chef/application/apply.rb +10 -8
- data/lib/chef/application/client.rb +58 -33
- data/lib/chef/application/solo.rb +33 -12
- data/lib/chef/chef_fs/chef_fs_data_store.rb +1 -1
- data/lib/chef/chef_fs/command_line.rb +1 -1
- data/lib/chef/chef_fs/file_system/organization_invites_entry.rb +2 -1
- data/lib/chef/chef_fs/file_system/organization_members_entry.rb +2 -1
- data/lib/chef/chef_fs/file_system/rest_list_entry.rb +2 -1
- data/lib/chef/client.rb +18 -48
- data/lib/chef/config.rb +43 -11
- data/lib/chef/cookbook/cookbook_version_loader.rb +14 -7
- data/lib/chef/cookbook/metadata.rb +81 -38
- data/lib/chef/cookbook/syntax_check.rb +18 -52
- data/lib/chef/cookbook_loader.rb +1 -1
- data/lib/chef/cookbook_version.rb +58 -39
- data/lib/chef/data_bag.rb +2 -2
- data/lib/chef/deprecation/provider/file.rb +2 -1
- data/lib/chef/dsl/data_query.rb +2 -29
- data/lib/chef/dsl/recipe.rb +8 -22
- data/lib/chef/encrypted_data_bag_item/assertions.rb +1 -1
- data/lib/chef/encrypted_data_bag_item/check_encrypted.rb +56 -0
- data/lib/chef/encrypted_data_bag_item/encrypted_data_bag_item_assertions.rb +1 -1
- data/lib/chef/event_loggers/base.rb +62 -0
- data/lib/chef/event_loggers/windows_eventlog.rb +104 -0
- data/lib/chef/exceptions.rb +18 -1
- data/lib/chef/file_cache.rb +3 -2
- data/lib/chef/guard_interpreter/resource_guard_interpreter.rb +15 -6
- data/lib/chef/http.rb +20 -13
- data/lib/chef/http/ssl_policies.rb +2 -1
- data/lib/chef/json_compat.rb +9 -3
- data/lib/chef/knife.rb +2 -1
- data/lib/chef/knife/bootstrap.rb +12 -18
- data/lib/chef/knife/bootstrap/archlinux-gems.erb +2 -2
- data/lib/chef/knife/bootstrap/chef-aix.erb +2 -2
- data/lib/chef/knife/bootstrap/chef-full.erb +2 -2
- data/lib/chef/knife/cookbook_create.rb +1 -1
- data/lib/chef/knife/cookbook_site_share.rb +43 -8
- data/lib/chef/knife/core/bootstrap_context.rb +6 -11
- data/lib/chef/knife/core/object_loader.rb +5 -5
- data/lib/chef/knife/core/status_presenter.rb +156 -0
- data/lib/chef/knife/core/subcommand_loader.rb +6 -5
- data/lib/chef/knife/core/ui.rb +4 -4
- data/lib/chef/knife/data_bag_create.rb +7 -32
- data/lib/chef/knife/data_bag_edit.rb +24 -43
- data/lib/chef/knife/data_bag_from_file.rb +6 -31
- data/lib/chef/knife/data_bag_secret_options.rb +142 -0
- data/lib/chef/knife/data_bag_show.rb +19 -33
- data/lib/chef/knife/node_from_file.rb +9 -8
- data/lib/chef/knife/ssh.rb +0 -7
- data/lib/chef/knife/ssl_check.rb +70 -6
- data/lib/chef/knife/status.rb +11 -58
- data/lib/chef/mixin/command/unix.rb +2 -2
- data/lib/chef/mixin/convert_to_class_name.rb +54 -0
- data/lib/chef/mixin/descendants_tracker.rb +82 -0
- data/lib/chef/mixin/homebrew_user.rb +68 -0
- data/lib/chef/mixin/shell_out.rb +0 -4
- data/lib/chef/mixin/windows_architecture_helper.rb +16 -0
- data/lib/chef/mixin/windows_env_helper.rb +56 -0
- data/lib/chef/node.rb +2 -2
- data/lib/chef/node_map.rb +146 -0
- data/lib/chef/platform/provider_mapping.rb +11 -39
- data/lib/chef/platform/provider_priority_map.rb +80 -0
- data/lib/chef/platform/query_helpers.rb +5 -1
- data/lib/chef/platform/service_helpers.rb +113 -0
- data/lib/chef/provider.rb +24 -0
- data/lib/chef/provider/breakpoint.rb +2 -0
- data/lib/chef/provider/cookbook_file.rb +2 -0
- data/lib/chef/provider/cron.rb +1 -1
- data/lib/chef/provider/cron/unix.rb +13 -9
- data/lib/chef/provider/deploy.rb +3 -2
- data/lib/chef/provider/deploy/revision.rb +4 -2
- data/lib/chef/provider/deploy/timestamped.rb +2 -0
- data/lib/chef/provider/directory.rb +2 -0
- data/lib/chef/provider/dsc_script.rb +179 -0
- data/lib/chef/provider/env.rb +25 -10
- data/lib/chef/provider/env/windows.rb +9 -16
- data/lib/chef/provider/erl_call.rb +2 -0
- data/lib/chef/provider/execute.rb +5 -2
- data/lib/chef/provider/file.rb +2 -0
- data/lib/chef/provider/git.rb +51 -23
- data/lib/chef/provider/group/dscl.rb +2 -2
- data/lib/chef/provider/group/pw.rb +9 -13
- data/lib/chef/provider/http_request.rb +2 -0
- data/lib/chef/provider/link.rb +3 -0
- data/lib/chef/provider/log.rb +2 -0
- data/lib/chef/provider/lwrp_base.rb +11 -9
- data/lib/chef/provider/mount/mount.rb +1 -1
- data/lib/chef/provider/package/aix.rb +2 -0
- data/lib/chef/provider/package/apt.rb +2 -0
- data/lib/chef/provider/package/dpkg.rb +2 -0
- data/lib/chef/provider/package/easy_install.rb +2 -0
- data/lib/chef/provider/package/freebsd/pkg.rb +2 -1
- data/lib/chef/provider/package/freebsd/pkgng.rb +1 -1
- data/lib/chef/provider/package/freebsd/port.rb +1 -9
- data/lib/chef/provider/package/homebrew.rb +127 -0
- data/lib/chef/provider/package/ips.rb +2 -0
- data/lib/chef/provider/package/macports.rb +3 -0
- data/lib/chef/provider/package/pacman.rb +5 -4
- data/lib/chef/provider/package/paludis.rb +4 -2
- data/lib/chef/provider/package/portage.rb +4 -1
- data/lib/chef/provider/package/rpm.rb +2 -0
- data/lib/chef/provider/package/rubygems.rb +4 -0
- data/lib/chef/provider/package/smartos.rb +2 -0
- data/lib/chef/provider/package/solaris.rb +2 -0
- data/lib/chef/provider/package/windows.rb +5 -2
- data/lib/chef/provider/package/yum.rb +2 -0
- data/lib/chef/provider/powershell_script.rb +3 -1
- data/lib/chef/provider/remote_directory.rb +25 -10
- data/lib/chef/provider/route.rb +2 -0
- data/lib/chef/provider/ruby_block.rb +2 -0
- data/lib/chef/provider/script.rb +6 -0
- data/lib/chef/provider/service/aix.rb +128 -0
- data/lib/chef/provider/service/aixinit.rb +117 -0
- data/lib/chef/provider/service/arch.rb +6 -0
- data/lib/chef/provider/service/debian.rb +35 -29
- data/lib/chef/provider/service/freebsd.rb +7 -1
- data/lib/chef/provider/service/gentoo.rb +5 -1
- data/lib/chef/provider/service/init.rb +2 -0
- data/lib/chef/provider/service/insserv.rb +15 -8
- data/lib/chef/provider/service/invokercd.rb +6 -0
- data/lib/chef/provider/service/macosx.rb +4 -1
- data/lib/chef/provider/service/redhat.rb +9 -3
- data/lib/chef/provider/service/simple.rb +2 -0
- data/lib/chef/provider/service/solaris.rb +2 -0
- data/lib/chef/provider/service/systemd.rb +7 -0
- data/lib/chef/provider/service/upstart.rb +7 -0
- data/lib/chef/provider/service/windows.rb +5 -0
- data/lib/chef/provider/subversion.rb +2 -0
- data/lib/chef/provider/template.rb +1 -0
- data/lib/chef/provider/user/dscl.rb +3 -2
- data/lib/chef/provider/whyrun_safe_ruby_block.rb +2 -0
- data/lib/chef/provider_resolver.rb +103 -0
- data/lib/chef/providers.rb +6 -2
- data/lib/chef/recipe.rb +2 -0
- data/lib/chef/resource.rb +69 -78
- data/lib/chef/resource/apt_package.rb +3 -1
- data/lib/chef/resource/bash.rb +1 -0
- data/lib/chef/resource/bff_package.rb +0 -1
- data/lib/chef/resource/breakpoint.rb +1 -1
- data/lib/chef/resource/chef_gem.rb +1 -2
- data/lib/chef/resource/conditional.rb +26 -6
- data/lib/chef/resource/cookbook_file.rb +2 -3
- data/lib/chef/resource/csh.rb +1 -0
- data/lib/chef/resource/deploy.rb +0 -1
- data/lib/chef/resource/deploy_revision.rb +6 -1
- data/lib/chef/resource/directory.rb +1 -2
- data/lib/chef/resource/dpkg_package.rb +2 -1
- data/lib/chef/resource/dsc_script.rb +125 -0
- data/lib/chef/resource/easy_install_package.rb +2 -1
- data/lib/chef/resource/erl_call.rb +1 -0
- data/lib/chef/resource/execute.rb +26 -9
- data/lib/chef/resource/file.rb +1 -3
- data/lib/chef/resource/freebsd_package.rb +10 -23
- data/lib/chef/resource/gem_package.rb +2 -1
- data/lib/chef/resource/git.rb +2 -1
- data/lib/chef/resource/homebrew_package.rb +46 -0
- data/lib/chef/resource/http_request.rb +1 -0
- data/lib/chef/resource/ips_package.rb +3 -1
- data/lib/chef/resource/link.rb +1 -2
- data/lib/chef/resource/log.rb +4 -0
- data/lib/chef/resource/lwrp_base.rb +24 -15
- data/lib/chef/resource/macports_package.rb +3 -1
- data/lib/chef/resource/pacman_package.rb +2 -1
- data/lib/chef/resource/paludis_package.rb +3 -1
- data/lib/chef/resource/perl.rb +1 -0
- data/lib/chef/resource/powershell_script.rb +0 -2
- data/lib/chef/resource/python.rb +1 -1
- data/lib/chef/resource/remote_directory.rb +1 -2
- data/lib/chef/resource/remote_file.rb +1 -1
- data/lib/chef/resource/rpm_package.rb +2 -1
- data/lib/chef/resource/ruby.rb +1 -0
- data/lib/chef/resource/ruby_block.rb +3 -0
- data/lib/chef/resource/script.rb +2 -25
- data/lib/chef/resource/service.rb +0 -4
- data/lib/chef/resource/smartos_package.rb +3 -4
- data/lib/chef/resource/solaris_package.rb +7 -1
- data/lib/chef/resource/subversion.rb +0 -1
- data/lib/chef/resource/template.rb +2 -3
- data/lib/chef/resource/timestamped_deploy.rb +1 -2
- data/lib/chef/resource/whyrun_safe_ruby_block.rb +0 -1
- data/lib/chef/resource/windows_package.rb +3 -4
- data/lib/chef/resource/windows_script.rb +3 -0
- data/lib/chef/resource/windows_service.rb +2 -2
- data/lib/chef/resource/yum_package.rb +3 -1
- data/lib/chef/resource_collection.rb +50 -227
- data/lib/chef/resource_collection/resource_collection_serialization.rb +59 -0
- data/lib/chef/resource_collection/resource_list.rb +89 -0
- data/lib/chef/resource_collection/resource_set.rb +170 -0
- data/lib/chef/resources.rb +2 -0
- data/lib/chef/role.rb +1 -1
- data/lib/chef/run_context.rb +5 -1
- data/lib/chef/shell/ext.rb +1 -1
- data/lib/chef/util/backup.rb +3 -2
- data/lib/chef/util/dsc/configuration_generator.rb +115 -0
- data/lib/chef/util/dsc/lcm_output_parser.rb +133 -0
- data/lib/chef/util/dsc/local_configuration_manager.rb +141 -0
- data/lib/chef/util/dsc/resource_info.rb +26 -0
- data/lib/chef/util/path_helper.rb +12 -0
- data/lib/chef/util/powershell/cmdlet.rb +136 -0
- data/lib/chef/util/powershell/cmdlet_result.rb +46 -0
- data/lib/chef/version.rb +1 -1
- data/lib/chef/win32/api/system.rb +9 -0
- data/lib/chef/win32/version.rb +2 -0
- data/spec/.DS_Store +0 -0
- data/spec/data/.DS_Store +0 -0
- data/spec/data/bootstrap/test-hints.erb +1 -1
- data/spec/data/bootstrap/test.erb +1 -1
- data/spec/data/cb_version_cookbooks/cookbook2/files/test.txt +0 -0
- data/spec/data/cb_version_cookbooks/cookbook2/templates/test.erb +0 -0
- data/spec/data/cookbooks/ignorken/files/default/not_me.rb +2 -0
- data/spec/data/cookbooks/ignorken/templates/ubuntu-12.10/not_me.rb +2 -0
- data/spec/data/cookbooks/openldap/libraries/openldap.rb +4 -0
- data/spec/data/cookbooks/openldap/libraries/openldap/version.rb +3 -0
- data/spec/data/lwrp/.DS_Store +0 -0
- data/spec/data/lwrp/providers/.DS_Store +0 -0
- data/spec/data/lwrp/providers/buck_passer.rb +9 -2
- data/spec/data/lwrp/resources/.DS_Store +0 -0
- data/spec/data/lwrp/resources/foo.rb +3 -2
- data/spec/data/lwrp_override/.DS_Store +0 -0
- data/spec/data/lwrp_override/providers/.DS_Store +0 -0
- data/spec/data/lwrp_override/providers/buck_passer.rb +5 -10
- data/spec/data/lwrp_override/resources/.DS_Store +0 -0
- data/spec/data/lwrp_override/resources/foo.rb +4 -3
- data/spec/functional/assets/chefinittest +34 -0
- data/spec/functional/assets/testchefsubsys +11 -0
- data/spec/functional/dsl/reboot_pending_spec.rb +19 -16
- data/spec/functional/event_loggers/windows_eventlog_spec.rb +82 -0
- data/spec/functional/knife/cookbook_delete_spec.rb +3 -3
- data/spec/functional/knife/exec_spec.rb +1 -1
- data/spec/functional/resource/aix_service_spec.rb +136 -0
- data/spec/functional/resource/aixinit_service_spec.rb +211 -0
- data/spec/functional/resource/base.rb +1 -0
- data/spec/functional/resource/batch_spec.rb +4 -11
- data/spec/functional/resource/cron_spec.rb +7 -1
- data/spec/functional/resource/dsc_script_spec.rb +382 -0
- data/spec/functional/resource/env_spec.rb +54 -0
- data/spec/functional/resource/execute_spec.rb +113 -0
- data/spec/functional/resource/file_spec.rb +2 -0
- data/spec/functional/resource/group_spec.rb +7 -4
- data/spec/functional/resource/powershell_spec.rb +198 -185
- data/spec/functional/resource/rpm_spec.rb +5 -4
- data/spec/functional/resource/user/dscl_spec.rb +2 -1
- data/spec/functional/util/path_helper_spec.rb +37 -0
- data/spec/functional/util/powershell/cmdlet_spec.rb +114 -0
- data/spec/integration/client/client_spec.rb +1 -1
- data/spec/integration/client/ipv6_spec.rb +1 -1
- data/spec/integration/knife/chef_fs_data_store_spec.rb +1 -1
- data/spec/integration/knife/chef_repo_path_spec.rb +1 -1
- data/spec/integration/knife/chef_repository_file_system_spec.rb +1 -1
- data/spec/integration/knife/chefignore_spec.rb +1 -1
- data/spec/integration/knife/common_options_spec.rb +1 -1
- data/spec/integration/knife/cookbook_api_ipv6_spec.rb +2 -2
- data/spec/integration/knife/delete_spec.rb +1 -1
- data/spec/integration/knife/deps_spec.rb +1 -1
- data/spec/integration/knife/diff_spec.rb +1 -1
- data/spec/integration/knife/download_spec.rb +1 -1
- data/spec/integration/knife/list_spec.rb +1 -1
- data/spec/integration/knife/raw_spec.rb +1 -1
- data/spec/integration/knife/redirection_spec.rb +1 -1
- data/spec/integration/knife/serve_spec.rb +1 -1
- data/spec/integration/knife/show_spec.rb +1 -1
- data/spec/integration/knife/upload_spec.rb +4 -3
- data/spec/integration/recipes/lwrp_inline_resources_spec.rb +1 -1
- data/spec/spec_helper.rb +15 -0
- data/spec/support/chef_helpers.rb +1 -0
- data/spec/support/lib/chef/provider/snakeoil.rb +1 -0
- data/spec/support/lib/chef/resource/zen_follower.rb +1 -7
- data/spec/support/platform_helpers.rb +28 -0
- data/spec/support/shared/functional/file_resource.rb +6 -0
- data/spec/support/shared/functional/windows_script.rb +118 -0
- data/spec/support/shared/integration/integration_helper.rb +5 -2
- data/spec/support/shared/matchers/exit_with_code.rb +28 -0
- data/spec/support/shared/matchers/match_environment_variable.rb +17 -0
- data/spec/support/shared/shared_examples.rb +14 -0
- data/spec/support/shared/unit/execute_resource.rb +0 -7
- data/spec/support/shared/unit/resource/static_provider_resolution.rb +71 -0
- data/spec/support/shared/unit/script_resource.rb +1 -1
- data/spec/support/shared/unit/windows_script_resource.rb +35 -2
- data/spec/tiny_server.rb +1 -2
- data/spec/unit/api_client_spec.rb +5 -1
- data/spec/unit/application/{apply.rb → apply_spec.rb} +13 -5
- data/spec/unit/application/client_spec.rb +106 -13
- data/spec/unit/application/solo_spec.rb +25 -1
- data/spec/unit/client_spec.rb +1 -26
- data/spec/unit/config_fetcher_spec.rb +2 -1
- data/spec/unit/config_spec.rb +91 -2
- data/spec/unit/cookbook/cookbook_version_loader_spec.rb +8 -0
- data/spec/unit/cookbook/metadata_spec.rb +43 -6
- data/spec/unit/cookbook/syntax_check_spec.rb +8 -2
- data/spec/unit/cookbook_loader_spec.rb +4 -2
- data/spec/unit/cookbook_version_spec.rb +83 -2
- data/spec/unit/data_bag_item_spec.rb +5 -1
- data/spec/unit/data_bag_spec.rb +6 -1
- data/spec/unit/dsl/data_query_spec.rb +8 -110
- data/spec/unit/encrypted_data_bag_item/check_encrypted_spec.rb +95 -0
- data/spec/unit/encrypted_data_bag_item_spec.rb +16 -23
- data/spec/unit/environment_spec.rb +6 -2
- data/spec/unit/exceptions_spec.rb +6 -0
- data/spec/unit/guard_interpreter/resource_guard_interpreter_spec.rb +16 -15
- data/spec/unit/json_compat_spec.rb +12 -2
- data/spec/unit/knife/bootstrap_spec.rb +16 -63
- data/spec/unit/knife/cookbook_site_share_spec.rb +59 -6
- data/spec/unit/knife/core/bootstrap_context_spec.rb +8 -37
- data/spec/unit/knife/core/subcommand_loader_spec.rb +1 -1
- data/spec/unit/knife/core/ui_spec.rb +28 -0
- data/spec/unit/knife/data_bag_create_spec.rb +63 -71
- data/spec/unit/knife/data_bag_edit_spec.rb +83 -49
- data/spec/unit/knife/data_bag_from_file_spec.rb +104 -126
- data/spec/unit/knife/data_bag_secret_options_spec.rb +165 -0
- data/spec/unit/knife/data_bag_show_spec.rb +74 -72
- data/spec/unit/knife/environment_from_file_spec.rb +3 -2
- data/spec/unit/knife/ssl_check_spec.rb +46 -1
- data/spec/unit/knife/status_spec.rb +1 -2
- data/spec/unit/knife_spec.rb +18 -1
- data/spec/unit/lwrp_spec.rb +29 -8
- data/spec/unit/mixin/homebrew_user_spec.rb +100 -0
- data/spec/unit/node_map_spec.rb +155 -0
- data/spec/unit/node_spec.rb +11 -0
- data/spec/unit/platform/query_helpers_spec.rb +23 -0
- data/spec/unit/platform_spec.rb +23 -0
- data/spec/unit/provider/breakpoint_spec.rb +9 -9
- data/spec/unit/provider/cookbook_file/content_spec.rb +3 -3
- data/spec/unit/provider/cookbook_file_spec.rb +1 -1
- data/spec/unit/provider/cron/unix_spec.rb +78 -60
- data/spec/unit/provider/cron_spec.rb +175 -175
- data/spec/unit/provider/deploy/revision_spec.rb +22 -21
- data/spec/unit/provider/deploy/timestamped_spec.rb +3 -3
- data/spec/unit/provider/deploy_spec.rb +231 -230
- data/spec/unit/provider/directory_spec.rb +55 -55
- data/spec/unit/provider/dsc_script_spec.rb +174 -0
- data/spec/unit/provider/env/windows_spec.rb +70 -34
- data/spec/unit/provider/env_spec.rb +95 -49
- data/spec/unit/provider/erl_call_spec.rb +9 -9
- data/spec/unit/provider/execute_spec.rb +43 -27
- data/spec/unit/provider/file/content_spec.rb +9 -9
- data/spec/unit/provider/file_spec.rb +1 -1
- data/spec/unit/provider/git_spec.rb +221 -159
- data/spec/unit/provider/group/dscl_spec.rb +64 -63
- data/spec/unit/provider/group/gpasswd_spec.rb +14 -14
- data/spec/unit/provider/group/groupadd_spec.rb +33 -33
- data/spec/unit/provider/group/groupmod_spec.rb +23 -23
- data/spec/unit/provider/group/pw_spec.rb +21 -21
- data/spec/unit/provider/group/usermod_spec.rb +20 -20
- data/spec/unit/provider/group/windows_spec.rb +15 -15
- data/spec/unit/provider/group_spec.rb +76 -76
- data/spec/unit/provider/http_request_spec.rb +30 -30
- data/spec/unit/provider/ifconfig/aix_spec.rb +20 -20
- data/spec/unit/provider/ifconfig/debian_spec.rb +25 -9
- data/spec/unit/provider/ifconfig/redhat_spec.rb +13 -13
- data/spec/unit/provider/ifconfig_spec.rb +43 -43
- data/spec/unit/provider/link_spec.rb +60 -60
- data/spec/unit/provider/log_spec.rb +0 -4
- data/spec/unit/provider/mdadm_spec.rb +23 -23
- data/spec/unit/provider/mount/aix_spec.rb +17 -17
- data/spec/unit/provider/mount/mount_spec.rb +115 -119
- data/spec/unit/provider/mount/solaris_spec.rb +72 -72
- data/spec/unit/provider/mount/windows_spec.rb +24 -24
- data/spec/unit/provider/ohai_spec.rb +11 -11
- data/spec/unit/provider/package/aix_spec.rb +34 -34
- data/spec/unit/provider/package/apt_spec.rb +36 -36
- data/spec/unit/provider/package/dpkg_spec.rb +27 -27
- data/spec/unit/provider/package/easy_install_spec.rb +16 -16
- data/spec/unit/provider/package/freebsd/pkg_spec.rb +53 -53
- data/spec/unit/provider/package/freebsd/pkgng_spec.rb +24 -24
- data/spec/unit/provider/package/freebsd/port_spec.rb +45 -35
- data/spec/unit/provider/package/homebrew_spec.rb +266 -0
- data/spec/unit/provider/package/ips_spec.rb +34 -34
- data/spec/unit/provider/package/macports_spec.rb +49 -49
- data/spec/unit/provider/package/pacman_spec.rb +35 -39
- data/spec/unit/provider/package/paludis_spec.rb +20 -20
- data/spec/unit/provider/package/portage_spec.rb +38 -38
- data/spec/unit/provider/package/rpm_spec.rb +29 -29
- data/spec/unit/provider/package/rubygems_spec.rb +284 -270
- data/spec/unit/provider/package/smartos_spec.rb +15 -15
- data/spec/unit/provider/package/solaris_spec.rb +35 -35
- data/spec/unit/provider/package/windows/msi_spec.rb +3 -3
- data/spec/unit/provider/package/windows_spec.rb +6 -6
- data/spec/unit/provider/package/yum_spec.rb +416 -416
- data/spec/unit/provider/package/zypper_spec.rb +47 -47
- data/spec/unit/provider/package_spec.rb +107 -107
- data/spec/unit/provider/powershell_spec.rb +1 -1
- data/spec/unit/provider/registry_key_spec.rb +61 -61
- data/spec/unit/provider/remote_directory_spec.rb +36 -36
- data/spec/unit/provider/remote_file/cache_control_data_spec.rb +24 -24
- data/spec/unit/provider/remote_file/content_spec.rb +45 -45
- data/spec/unit/provider/remote_file/fetcher_spec.rb +9 -9
- data/spec/unit/provider/remote_file/ftp_spec.rb +32 -32
- data/spec/unit/provider/remote_file/http_spec.rb +44 -44
- data/spec/unit/provider/remote_file/local_file_spec.rb +9 -9
- data/spec/unit/provider/remote_file_spec.rb +3 -3
- data/spec/unit/provider/route_spec.rb +63 -63
- data/spec/unit/provider/ruby_block_spec.rb +4 -4
- data/spec/unit/provider/script_spec.rb +12 -12
- data/spec/unit/provider/service/aix_service_spec.rb +181 -0
- data/spec/unit/provider/service/aixinit_service_spec.rb +269 -0
- data/spec/unit/provider/service/arch_service_spec.rb +48 -48
- data/spec/unit/provider/service/debian_service_spec.rb +40 -40
- data/spec/unit/provider/service/gentoo_service_spec.rb +28 -28
- data/spec/unit/provider/service/init_service_spec.rb +39 -39
- data/spec/unit/provider/service/insserv_service_spec.rb +8 -8
- data/spec/unit/provider/service/invokercd_service_spec.rb +35 -35
- data/spec/unit/provider/service/macosx_spec.rb +49 -49
- data/spec/unit/provider/service/redhat_spec.rb +27 -27
- data/spec/unit/provider/service/simple_service_spec.rb +28 -28
- data/spec/unit/provider/service/solaris_smf_service_spec.rb +43 -46
- data/spec/unit/provider/service/systemd_service_spec.rb +63 -63
- data/spec/unit/provider/service/upstart_service_spec.rb +78 -78
- data/spec/unit/provider/service/windows_spec.rb +92 -92
- data/spec/unit/provider/service_spec.rb +40 -40
- data/spec/unit/provider/subversion_spec.rb +80 -80
- data/spec/unit/provider/template/content_spec.rb +9 -9
- data/spec/unit/provider/template_spec.rb +6 -6
- data/spec/unit/provider/user/dscl_spec.rb +170 -167
- data/spec/unit/provider/user/pw_spec.rb +48 -48
- data/spec/unit/provider/user/solaris_spec.rb +8 -8
- data/spec/unit/provider/user/useradd_spec.rb +1 -1
- data/spec/unit/provider/user/windows_spec.rb +26 -26
- data/spec/unit/provider/user_spec.rb +72 -72
- data/spec/unit/provider/whyrun_safe_ruby_block_spec.rb +4 -4
- data/spec/unit/provider_resolver_spec.rb +387 -0
- data/spec/unit/recipe_spec.rb +33 -12
- data/spec/unit/resource/apt_package_spec.rb +10 -13
- data/spec/unit/resource/bash_spec.rb +4 -4
- data/spec/unit/resource/batch_spec.rb +1 -1
- data/spec/unit/resource/breakpoint_spec.rb +11 -7
- data/spec/unit/resource/chef_gem_spec.rb +8 -15
- data/spec/unit/resource/conditional_action_not_nothing_spec.rb +2 -2
- data/spec/unit/resource/conditional_spec.rb +35 -16
- data/spec/unit/resource/cookbook_file_spec.rb +13 -13
- data/spec/unit/resource/cron_spec.rb +37 -37
- data/spec/unit/resource/csh_spec.rb +4 -4
- data/spec/unit/resource/deploy_revision_spec.rb +13 -18
- data/spec/unit/resource/deploy_spec.rb +60 -55
- data/spec/unit/resource/directory_spec.rb +18 -18
- data/spec/unit/resource/dpkg_package_spec.rb +8 -14
- data/spec/unit/resource/dsc_script_spec.rb +98 -0
- data/spec/unit/resource/easy_install_package_spec.rb +9 -18
- data/spec/unit/resource/env_spec.rb +12 -12
- data/spec/unit/resource/erl_call_spec.rb +11 -11
- data/spec/unit/resource/execute_spec.rb +5 -0
- data/spec/unit/resource/file_spec.rb +29 -29
- data/spec/unit/resource/freebsd_package_spec.rb +11 -12
- data/spec/unit/resource/gem_package_spec.rb +8 -15
- data/spec/unit/resource/git_spec.rb +12 -8
- data/spec/unit/resource/group_spec.rb +27 -27
- data/spec/unit/resource/homebrew_package_spec.rb +50 -0
- data/spec/unit/resource/http_request_spec.rb +6 -6
- data/spec/unit/resource/ifconfig_spec.rb +8 -8
- data/spec/unit/resource/ips_package_spec.rb +10 -13
- data/spec/unit/resource/link_spec.rb +25 -25
- data/spec/unit/resource/log_spec.rb +9 -9
- data/spec/unit/resource/macports_package_spec.rb +8 -13
- data/spec/unit/resource/mdadm_spec.rb +18 -18
- data/spec/unit/resource/mount_spec.rb +45 -45
- data/spec/unit/resource/ohai_spec.rb +7 -7
- data/spec/unit/resource/package_spec.rb +12 -12
- data/spec/unit/resource/pacman_package_spec.rb +8 -14
- data/spec/unit/resource/perl_spec.rb +4 -4
- data/spec/unit/resource/portage_package_spec.rb +3 -3
- data/spec/unit/resource/powershell_spec.rb +7 -7
- data/spec/unit/resource/python_spec.rb +4 -4
- data/spec/unit/resource/registry_key_spec.rb +32 -32
- data/spec/unit/resource/remote_directory_spec.rb +17 -17
- data/spec/unit/resource/remote_file_spec.rb +41 -41
- data/spec/unit/resource/route_spec.rb +19 -19
- data/spec/unit/resource/rpm_package_spec.rb +9 -13
- data/spec/unit/resource/ruby_block_spec.rb +8 -8
- data/spec/unit/resource/ruby_spec.rb +4 -4
- data/spec/unit/resource/scm_spec.rb +40 -40
- data/spec/unit/resource/script_spec.rb +2 -2
- data/spec/unit/resource/service_spec.rb +37 -47
- data/spec/unit/resource/smartos_package_spec.rb +10 -15
- data/spec/unit/resource/solaris_package_spec.rb +13 -28
- data/spec/unit/resource/subversion_spec.rb +16 -12
- data/spec/unit/resource/template_spec.rb +35 -35
- data/spec/unit/resource/timestamped_deploy_spec.rb +30 -4
- data/spec/unit/resource/user_spec.rb +23 -23
- data/spec/unit/resource/windows_package_spec.rb +17 -10
- data/spec/unit/resource/windows_service_spec.rb +9 -6
- data/spec/unit/resource/yum_package_spec.rb +16 -21
- data/spec/unit/resource_collection/resource_list_spec.rb +137 -0
- data/spec/unit/resource_collection/resource_set_spec.rb +199 -0
- data/spec/unit/resource_collection_spec.rb +73 -92
- data/spec/unit/resource_definition_spec.rb +38 -40
- data/spec/unit/resource_reporter_spec.rb +3 -3
- data/spec/unit/resource_spec.rb +68 -33
- data/spec/unit/rest_spec.rb +83 -76
- data/spec/unit/role_spec.rb +5 -0
- data/spec/unit/run_list_spec.rb +5 -1
- data/spec/unit/runner_spec.rb +245 -238
- data/spec/unit/shell/shell_ext_spec.rb +1 -1
- data/spec/unit/user_spec.rb +5 -1
- data/spec/unit/util/dsc/configuration_generator_spec.rb +171 -0
- data/spec/unit/util/dsc/lcm_output_parser_spec.rb +169 -0
- data/spec/unit/util/dsc/local_configuration_manager_spec.rb +139 -0
- data/spec/unit/util/path_helper_spec.rb +23 -1
- data/spec/unit/util/powershell/cmdlet_spec.rb +106 -0
- data/spec/unit/workstation_config_loader_spec.rb +1 -1
- metadata +303 -196
- checksums.yaml +0 -7
- data/distro/README +0 -2
- data/distro/arch/etc/conf.d/chef-client.conf +0 -5
- data/distro/arch/etc/conf.d/chef-expander.conf +0 -8
- data/distro/arch/etc/conf.d/chef-server-webui.conf +0 -10
- data/distro/arch/etc/conf.d/chef-server.conf +0 -10
- data/distro/arch/etc/conf.d/chef-solr.conf +0 -8
- data/distro/arch/etc/rc.d/chef-client +0 -90
- data/distro/arch/etc/rc.d/chef-expander +0 -78
- data/distro/arch/etc/rc.d/chef-server +0 -78
- data/distro/arch/etc/rc.d/chef-server-webui +0 -78
- data/distro/arch/etc/rc.d/chef-solr +0 -78
- data/distro/debian/etc/default/chef-client +0 -4
- data/distro/debian/etc/default/chef-expander +0 -8
- data/distro/debian/etc/default/chef-server +0 -9
- data/distro/debian/etc/default/chef-server-webui +0 -9
- data/distro/debian/etc/default/chef-solr +0 -8
- data/distro/debian/etc/init.d/chef-client +0 -212
- data/distro/debian/etc/init.d/chef-expander +0 -176
- data/distro/debian/etc/init.d/chef-server +0 -122
- data/distro/debian/etc/init.d/chef-server-webui +0 -123
- data/distro/debian/etc/init.d/chef-solr +0 -176
- data/distro/debian/etc/init/chef-client.conf +0 -17
- data/distro/debian/etc/init/chef-expander.conf +0 -17
- data/distro/debian/etc/init/chef-server-webui.conf +0 -17
- data/distro/debian/etc/init/chef-server.conf +0 -17
- data/distro/debian/etc/init/chef-solr.conf +0 -17
- data/distro/redhat/etc/init.d/chef-client +0 -121
- data/distro/redhat/etc/init.d/chef-expander +0 -104
- data/distro/redhat/etc/init.d/chef-server +0 -112
- data/distro/redhat/etc/init.d/chef-server-webui +0 -112
- data/distro/redhat/etc/init.d/chef-solr +0 -104
- data/distro/redhat/etc/logrotate.d/chef-client +0 -8
- data/distro/redhat/etc/logrotate.d/chef-expander +0 -8
- data/distro/redhat/etc/logrotate.d/chef-server +0 -8
- data/distro/redhat/etc/logrotate.d/chef-server-webui +0 -8
- data/distro/redhat/etc/logrotate.d/chef-solr +0 -8
- data/distro/redhat/etc/sysconfig/chef-client +0 -15
- data/distro/redhat/etc/sysconfig/chef-expander +0 -7
- data/distro/redhat/etc/sysconfig/chef-server +0 -14
- data/distro/redhat/etc/sysconfig/chef-server-webui +0 -14
- data/distro/redhat/etc/sysconfig/chef-solr +0 -8
- data/distro/windows/service_manager.rb +0 -20
- data/lib/chef/resource_platform_map.rb +0 -151
- data/spec/support/shared/matchers.rb +0 -17
- data/spec/unit/resource_platform_map_spec.rb +0 -164
@@ -41,22 +41,22 @@ describe Chef::Provider::Service::Upstart do
|
|
41
41
|
@node.automatic_attrs[:platform_version] = '9.04'
|
42
42
|
#Chef::Platform.stub(:find_platform_and_version).and_return([ "ubuntu", "9.04" ])
|
43
43
|
@provider = Chef::Provider::Service::Upstart.new(@new_resource, @run_context)
|
44
|
-
@provider.instance_variable_get(:@upstart_job_dir).
|
45
|
-
@provider.instance_variable_get(:@upstart_conf_suffix).
|
44
|
+
expect(@provider.instance_variable_get(:@upstart_job_dir)).to eq("/etc/event.d")
|
45
|
+
expect(@provider.instance_variable_get(:@upstart_conf_suffix)).to eq("")
|
46
46
|
end
|
47
47
|
|
48
48
|
it "should return /etc/init as the upstart job directory when running on Ubuntu 9.10" do
|
49
49
|
@node.automatic_attrs[:platform_version] = '9.10'
|
50
50
|
@provider = Chef::Provider::Service::Upstart.new(@new_resource, @run_context)
|
51
|
-
@provider.instance_variable_get(:@upstart_job_dir).
|
52
|
-
@provider.instance_variable_get(:@upstart_conf_suffix).
|
51
|
+
expect(@provider.instance_variable_get(:@upstart_job_dir)).to eq("/etc/init")
|
52
|
+
expect(@provider.instance_variable_get(:@upstart_conf_suffix)).to eq(".conf")
|
53
53
|
end
|
54
54
|
|
55
55
|
it "should return /etc/init as the upstart job directory by default" do
|
56
56
|
@node.automatic_attrs[:platform_version] = '9000'
|
57
57
|
@provider = Chef::Provider::Service::Upstart.new(@new_resource, @run_context)
|
58
|
-
@provider.instance_variable_get(:@upstart_job_dir).
|
59
|
-
@provider.instance_variable_get(:@upstart_conf_suffix).
|
58
|
+
expect(@provider.instance_variable_get(:@upstart_job_dir)).to eq("/etc/init")
|
59
|
+
expect(@provider.instance_variable_get(:@upstart_conf_suffix)).to eq(".conf")
|
60
60
|
end
|
61
61
|
end
|
62
62
|
|
@@ -65,26 +65,26 @@ describe Chef::Provider::Service::Upstart do
|
|
65
65
|
@node.automatic_attrs[:command] = {:ps => "ps -ax"}
|
66
66
|
|
67
67
|
@current_resource = Chef::Resource::Service.new("rsyslog")
|
68
|
-
Chef::Resource::Service.
|
68
|
+
allow(Chef::Resource::Service).to receive(:new).and_return(@current_resource)
|
69
69
|
|
70
70
|
@status = double("Status", :exitstatus => 0)
|
71
|
-
@provider.
|
71
|
+
allow(@provider).to receive(:popen4).and_return(@status)
|
72
72
|
@stdin = StringIO.new
|
73
73
|
@stdout = StringIO.new
|
74
74
|
@stderr = StringIO.new
|
75
75
|
@pid = double("PID")
|
76
76
|
|
77
|
-
::File.
|
78
|
-
::File.
|
77
|
+
allow(::File).to receive(:exists?).and_return(true)
|
78
|
+
allow(::File).to receive(:open).and_return(true)
|
79
79
|
end
|
80
80
|
|
81
81
|
it "should create a current resource with the name of the new resource" do
|
82
|
-
Chef::Resource::Service.
|
82
|
+
expect(Chef::Resource::Service).to receive(:new).and_return(@current_resource)
|
83
83
|
@provider.load_current_resource
|
84
84
|
end
|
85
85
|
|
86
86
|
it "should set the current resources service name to the new resources service name" do
|
87
|
-
@current_resource.
|
87
|
+
expect(@current_resource).to receive(:service_name).with(@new_resource.service_name)
|
88
88
|
@provider.load_current_resource
|
89
89
|
end
|
90
90
|
|
@@ -92,11 +92,11 @@ describe Chef::Provider::Service::Upstart do
|
|
92
92
|
@new_resource.parameters({ "OSD_ID" => "2" })
|
93
93
|
@provider = Chef::Provider::Service::Upstart.new(@new_resource, @run_context)
|
94
94
|
@provider.current_resource = @current_resource
|
95
|
-
@new_resource.service_name.
|
95
|
+
expect(@new_resource.service_name).to eq(@current_resource.service_name)
|
96
96
|
end
|
97
97
|
|
98
98
|
it "should run '/sbin/status rsyslog'" do
|
99
|
-
@provider.
|
99
|
+
expect(@provider).to receive(:popen4).with("/sbin/status rsyslog").and_return(@status)
|
100
100
|
@provider.load_current_resource
|
101
101
|
end
|
102
102
|
|
@@ -106,99 +106,99 @@ describe Chef::Provider::Service::Upstart do
|
|
106
106
|
|
107
107
|
it "should set running to true if the status command returns 0" do
|
108
108
|
@stdout = StringIO.new("rsyslog start/running")
|
109
|
-
@provider.
|
109
|
+
allow(@provider).to receive(:popen4).and_yield(@pid, @stdin, @stdout, @stderr).and_return(@status)
|
110
110
|
@provider.load_current_resource
|
111
|
-
@current_resource.running.
|
111
|
+
expect(@current_resource.running).to be_true
|
112
112
|
end
|
113
113
|
|
114
114
|
it "should set running to false if the status command returns anything except 0" do
|
115
115
|
@stdout = StringIO.new("rsyslog stop/waiting")
|
116
|
-
@provider.
|
116
|
+
allow(@provider).to receive(:popen4).and_yield(@pid, @stdin, @stdout, @stderr).and_return(@status)
|
117
117
|
@provider.load_current_resource
|
118
|
-
@current_resource.running.
|
118
|
+
expect(@current_resource.running).to be_false
|
119
119
|
end
|
120
120
|
end
|
121
121
|
|
122
122
|
describe "when the status command uses the old format" do
|
123
123
|
it "should set running to true if the status command returns 0" do
|
124
124
|
@stdout = StringIO.new("rsyslog (start) running, process 32225")
|
125
|
-
@provider.
|
125
|
+
allow(@provider).to receive(:popen4).and_yield(@pid, @stdin, @stdout, @stderr).and_return(@status)
|
126
126
|
@provider.load_current_resource
|
127
|
-
@current_resource.running.
|
127
|
+
expect(@current_resource.running).to be_true
|
128
128
|
end
|
129
129
|
|
130
130
|
it "should set running to false if the status command returns anything except 0" do
|
131
131
|
@stdout = StringIO.new("rsyslog (stop) waiting")
|
132
|
-
@provider.
|
132
|
+
allow(@provider).to receive(:popen4).and_yield(@pid, @stdin, @stdout, @stderr).and_return(@status)
|
133
133
|
@provider.load_current_resource
|
134
|
-
@current_resource.running.
|
134
|
+
expect(@current_resource.running).to be_false
|
135
135
|
end
|
136
136
|
end
|
137
137
|
|
138
138
|
it "should set running to false if it catches a Chef::Exceptions::Exec" do
|
139
|
-
@provider.
|
140
|
-
@current_resource.
|
139
|
+
allow(@provider).to receive(:popen4).and_yield(@pid, @stdin, @stdout, @stderr).and_raise(Chef::Exceptions::Exec)
|
140
|
+
expect(@current_resource).to receive(:running).with(false)
|
141
141
|
@provider.load_current_resource
|
142
142
|
end
|
143
143
|
|
144
144
|
it "should set enabled to true when it finds 'starts on'" do
|
145
145
|
@lines = double("start on filesystem", :gets => "start on filesystem")
|
146
|
-
::File.
|
147
|
-
@current_resource.
|
146
|
+
allow(::File).to receive(:open).and_yield(@lines)
|
147
|
+
expect(@current_resource).to receive(:running).with(false)
|
148
148
|
@provider.load_current_resource
|
149
149
|
end
|
150
150
|
|
151
151
|
it "should set enabled to false when it finds '#starts on'" do
|
152
152
|
@lines = double("start on filesystem", :gets => "#start on filesystem")
|
153
|
-
::File.
|
154
|
-
@current_resource.
|
153
|
+
allow(::File).to receive(:open).and_yield(@lines)
|
154
|
+
expect(@current_resource).to receive(:running).with(false)
|
155
155
|
@provider.load_current_resource
|
156
156
|
end
|
157
157
|
|
158
158
|
it "should assume disable when no job configuration file is found" do
|
159
|
-
::File.
|
160
|
-
@current_resource.
|
159
|
+
allow(::File).to receive(:exists?).and_return(false)
|
160
|
+
expect(@current_resource).to receive(:running).with(false)
|
161
161
|
@provider.load_current_resource
|
162
162
|
end
|
163
163
|
|
164
164
|
it "should track state when the upstart configuration file fails to load" do
|
165
|
-
File.
|
165
|
+
expect(File).to receive(:exists?).and_return false
|
166
166
|
@provider.load_current_resource
|
167
|
-
@provider.instance_variable_get("@config_file_found").
|
167
|
+
expect(@provider.instance_variable_get("@config_file_found")).to eq(false)
|
168
168
|
end
|
169
169
|
|
170
170
|
describe "when a status command has been specified" do
|
171
171
|
before do
|
172
|
-
@new_resource.
|
172
|
+
allow(@new_resource).to receive(:status_command).and_return("/bin/chefhasmonkeypants status")
|
173
173
|
end
|
174
174
|
|
175
175
|
it "should run the services status command if one has been specified" do
|
176
|
-
@provider.
|
177
|
-
@current_resource.
|
176
|
+
allow(@provider).to receive(:shell_out!).with("/bin/chefhasmonkeypants status").and_return(0)
|
177
|
+
expect(@current_resource).to receive(:running).with(true)
|
178
178
|
@provider.load_current_resource
|
179
179
|
end
|
180
180
|
|
181
181
|
it "should track state when the user-provided status command fails" do
|
182
|
-
@provider.
|
182
|
+
allow(@provider).to receive(:shell_out!).and_raise(Errno::ENOENT)
|
183
183
|
@provider.load_current_resource
|
184
|
-
@provider.instance_variable_get("@command_success").
|
184
|
+
expect(@provider.instance_variable_get("@command_success")).to eq(false)
|
185
185
|
end
|
186
186
|
|
187
187
|
it "should set running to false if it catches a Chef::Exceptions::Exec when using a status command" do
|
188
|
-
@provider.
|
189
|
-
@current_resource.
|
188
|
+
allow(@provider).to receive(:shell_out!).and_raise(Errno::ENOENT)
|
189
|
+
expect(@current_resource).to receive(:running).with(false)
|
190
190
|
@provider.load_current_resource
|
191
191
|
end
|
192
192
|
end
|
193
193
|
|
194
194
|
it "should track state when we fail to obtain service status via upstart_state" do
|
195
|
-
@provider.
|
195
|
+
expect(@provider).to receive(:upstart_state).and_raise Chef::Exceptions::Exec
|
196
196
|
@provider.load_current_resource
|
197
|
-
@provider.instance_variable_get("@command_success").
|
197
|
+
expect(@provider.instance_variable_get("@command_success")).to eq(false)
|
198
198
|
end
|
199
199
|
|
200
200
|
it "should return the current resource" do
|
201
|
-
@provider.load_current_resource.
|
201
|
+
expect(@provider.load_current_resource).to eql(@current_resource)
|
202
202
|
end
|
203
203
|
|
204
204
|
end
|
@@ -206,26 +206,26 @@ describe Chef::Provider::Service::Upstart do
|
|
206
206
|
describe "enable and disable service" do
|
207
207
|
before(:each) do
|
208
208
|
@current_resource = Chef::Resource::Service.new('rsyslog')
|
209
|
-
Chef::Resource::Service.
|
209
|
+
allow(Chef::Resource::Service).to receive(:new).and_return(@current_resource)
|
210
210
|
@provider.current_resource = @current_resource
|
211
|
-
Chef::Util::FileEdit.
|
211
|
+
allow(Chef::Util::FileEdit).to receive(:new)
|
212
212
|
end
|
213
213
|
|
214
214
|
it "should enable the service if it is not enabled" do
|
215
215
|
@file = Object.new
|
216
|
-
Chef::Util::FileEdit.
|
217
|
-
@current_resource.
|
218
|
-
@file.
|
219
|
-
@file.
|
216
|
+
allow(Chef::Util::FileEdit).to receive(:new).and_return(@file)
|
217
|
+
allow(@current_resource).to receive(:enabled).and_return(false)
|
218
|
+
expect(@file).to receive(:search_file_replace)
|
219
|
+
expect(@file).to receive(:write_file)
|
220
220
|
@provider.enable_service()
|
221
221
|
end
|
222
222
|
|
223
223
|
it "should disable the service if it is enabled" do
|
224
224
|
@file = Object.new
|
225
|
-
Chef::Util::FileEdit.
|
226
|
-
@current_resource.
|
227
|
-
@file.
|
228
|
-
@file.
|
225
|
+
allow(Chef::Util::FileEdit).to receive(:new).and_return(@file)
|
226
|
+
allow(@current_resource).to receive(:enabled).and_return(true)
|
227
|
+
expect(@file).to receive(:search_file_replace)
|
228
|
+
expect(@file).to receive(:write_file)
|
229
229
|
@provider.disable_service()
|
230
230
|
end
|
231
231
|
|
@@ -235,24 +235,24 @@ describe Chef::Provider::Service::Upstart do
|
|
235
235
|
before(:each) do
|
236
236
|
@current_resource = Chef::Resource::Service.new('rsyslog')
|
237
237
|
|
238
|
-
Chef::Resource::Service.
|
238
|
+
allow(Chef::Resource::Service).to receive(:new).and_return(@current_resource)
|
239
239
|
@provider.current_resource = @current_resource
|
240
240
|
end
|
241
241
|
|
242
242
|
it "should call the start command if one is specified" do
|
243
|
-
@new_resource.
|
244
|
-
@provider.
|
243
|
+
allow(@new_resource).to receive(:start_command).and_return("/sbin/rsyslog startyousillysally")
|
244
|
+
expect(@provider).to receive(:shell_out_with_systems_locale!).with("/sbin/rsyslog startyousillysally")
|
245
245
|
@provider.start_service()
|
246
246
|
end
|
247
247
|
|
248
248
|
it "should call '/sbin/start service_name' if no start command is specified" do
|
249
|
-
@provider.
|
249
|
+
expect(@provider).to receive(:shell_out_with_systems_locale!).with("/sbin/start #{@new_resource.service_name}").and_return(0)
|
250
250
|
@provider.start_service()
|
251
251
|
end
|
252
252
|
|
253
253
|
it "should not call '/sbin/start service_name' if it is already running" do
|
254
|
-
@current_resource.
|
255
|
-
@provider.
|
254
|
+
allow(@current_resource).to receive(:running).and_return(true)
|
255
|
+
expect(@provider).not_to receive(:shell_out_with_systems_locale!)
|
256
256
|
@provider.start_service()
|
257
257
|
end
|
258
258
|
|
@@ -261,58 +261,58 @@ describe Chef::Provider::Service::Upstart do
|
|
261
261
|
@new_resource.parameters({ "OSD_ID" => "2" })
|
262
262
|
@provider = Chef::Provider::Service::Upstart.new(@new_resource, @run_context)
|
263
263
|
@provider.current_resource = @current_resource
|
264
|
-
@provider.
|
264
|
+
expect(@provider).to receive(:shell_out_with_systems_locale!).with("/sbin/start rsyslog OSD_ID=2").and_return(0)
|
265
265
|
@provider.start_service()
|
266
266
|
end
|
267
267
|
|
268
268
|
it "should call the restart command if one is specified" do
|
269
|
-
@current_resource.
|
270
|
-
@new_resource.
|
271
|
-
@provider.
|
269
|
+
allow(@current_resource).to receive(:running).and_return(true)
|
270
|
+
allow(@new_resource).to receive(:restart_command).and_return("/sbin/rsyslog restartyousillysally")
|
271
|
+
expect(@provider).to receive(:shell_out_with_systems_locale!).with("/sbin/rsyslog restartyousillysally")
|
272
272
|
@provider.restart_service()
|
273
273
|
end
|
274
274
|
|
275
275
|
it "should call '/sbin/restart service_name' if no restart command is specified" do
|
276
|
-
@current_resource.
|
277
|
-
@provider.
|
276
|
+
allow(@current_resource).to receive(:running).and_return(true)
|
277
|
+
expect(@provider).to receive(:shell_out_with_systems_locale!).with("/sbin/restart #{@new_resource.service_name}").and_return(0)
|
278
278
|
@provider.restart_service()
|
279
279
|
end
|
280
280
|
|
281
281
|
it "should call '/sbin/start service_name' if restart_service is called for a stopped service" do
|
282
|
-
@current_resource.
|
283
|
-
@provider.
|
282
|
+
allow(@current_resource).to receive(:running).and_return(false)
|
283
|
+
expect(@provider).to receive(:shell_out_with_systems_locale!).with("/sbin/start #{@new_resource.service_name}").and_return(0)
|
284
284
|
@provider.restart_service()
|
285
285
|
end
|
286
286
|
|
287
287
|
it "should call the reload command if one is specified" do
|
288
|
-
@current_resource.
|
289
|
-
@new_resource.
|
290
|
-
@provider.
|
288
|
+
allow(@current_resource).to receive(:running).and_return(true)
|
289
|
+
allow(@new_resource).to receive(:reload_command).and_return("/sbin/rsyslog reloadyousillysally")
|
290
|
+
expect(@provider).to receive(:shell_out_with_systems_locale!).with("/sbin/rsyslog reloadyousillysally")
|
291
291
|
@provider.reload_service()
|
292
292
|
end
|
293
293
|
|
294
294
|
it "should call '/sbin/reload service_name' if no reload command is specified" do
|
295
|
-
@current_resource.
|
296
|
-
@provider.
|
295
|
+
allow(@current_resource).to receive(:running).and_return(true)
|
296
|
+
expect(@provider).to receive(:shell_out_with_systems_locale!).with("/sbin/reload #{@new_resource.service_name}").and_return(0)
|
297
297
|
@provider.reload_service()
|
298
298
|
end
|
299
299
|
|
300
300
|
it "should call the stop command if one is specified" do
|
301
|
-
@current_resource.
|
302
|
-
@new_resource.
|
303
|
-
@provider.
|
301
|
+
allow(@current_resource).to receive(:running).and_return(true)
|
302
|
+
allow(@new_resource).to receive(:stop_command).and_return("/sbin/rsyslog stopyousillysally")
|
303
|
+
expect(@provider).to receive(:shell_out_with_systems_locale!).with("/sbin/rsyslog stopyousillysally")
|
304
304
|
@provider.stop_service()
|
305
305
|
end
|
306
306
|
|
307
307
|
it "should call '/sbin/stop service_name' if no stop command is specified" do
|
308
|
-
@current_resource.
|
309
|
-
@provider.
|
308
|
+
allow(@current_resource).to receive(:running).and_return(true)
|
309
|
+
expect(@provider).to receive(:shell_out_with_systems_locale!).with("/sbin/stop #{@new_resource.service_name}").and_return(0)
|
310
310
|
@provider.stop_service()
|
311
311
|
end
|
312
312
|
|
313
313
|
it "should not call '/sbin/stop service_name' if it is already stopped" do
|
314
|
-
@current_resource.
|
315
|
-
@provider.
|
314
|
+
allow(@current_resource).to receive(:running).and_return(false)
|
315
|
+
expect(@provider).not_to receive(:shell_out_with_systems_locale!).with("/sbin/stop #{@new_resource.service_name}")
|
316
316
|
@provider.stop_service()
|
317
317
|
end
|
318
318
|
end
|
@@ -33,102 +33,102 @@ describe Chef::Provider::Service::Windows, "load_current_resource" do
|
|
33
33
|
Win32::Service::AUTO_START = 0x00000002
|
34
34
|
Win32::Service::DEMAND_START = 0x00000003
|
35
35
|
Win32::Service::DISABLED = 0x00000004
|
36
|
-
Win32::Service.
|
36
|
+
allow(Win32::Service).to receive(:status).with(@new_resource.service_name).and_return(
|
37
37
|
double("StatusStruct", :current_state => "running"))
|
38
|
-
Win32::Service.
|
38
|
+
allow(Win32::Service).to receive(:config_info).with(@new_resource.service_name).and_return(
|
39
39
|
double("ConfigStruct", :start_type => "auto start"))
|
40
|
-
Win32::Service.
|
40
|
+
allow(Win32::Service).to receive(:exists?).and_return(true)
|
41
41
|
end
|
42
42
|
|
43
43
|
it "should set the current resources service name to the new resources service name" do
|
44
44
|
@provider.load_current_resource
|
45
|
-
@provider.current_resource.service_name.
|
45
|
+
expect(@provider.current_resource.service_name).to eq('chef')
|
46
46
|
end
|
47
47
|
|
48
48
|
it "should return the current resource" do
|
49
|
-
@provider.load_current_resource.
|
49
|
+
expect(@provider.load_current_resource).to equal(@provider.current_resource)
|
50
50
|
end
|
51
51
|
|
52
52
|
it "should set the current resources status" do
|
53
53
|
@provider.load_current_resource
|
54
|
-
@provider.current_resource.running.
|
54
|
+
expect(@provider.current_resource.running).to be_true
|
55
55
|
end
|
56
56
|
|
57
57
|
it "should set the current resources start type" do
|
58
58
|
@provider.load_current_resource
|
59
|
-
@provider.current_resource.enabled.
|
59
|
+
expect(@provider.current_resource.enabled).to be_true
|
60
60
|
end
|
61
61
|
|
62
62
|
it "does not set the current resources start type if it is neither AUTO START or DISABLED" do
|
63
|
-
Win32::Service.
|
63
|
+
allow(Win32::Service).to receive(:config_info).with(@new_resource.service_name).and_return(
|
64
64
|
double("ConfigStruct", :start_type => "manual"))
|
65
65
|
@provider.load_current_resource
|
66
|
-
@provider.current_resource.enabled.
|
66
|
+
expect(@provider.current_resource.enabled).to be_nil
|
67
67
|
end
|
68
68
|
|
69
69
|
describe Chef::Provider::Service::Windows, "start_service" do
|
70
70
|
before(:each) do
|
71
|
-
Win32::Service.
|
71
|
+
allow(Win32::Service).to receive(:status).with(@new_resource.service_name).and_return(
|
72
72
|
double("StatusStruct", :current_state => "stopped"),
|
73
73
|
double("StatusStruct", :current_state => "running"))
|
74
74
|
end
|
75
75
|
|
76
76
|
it "should call the start command if one is specified" do
|
77
77
|
@new_resource.start_command "sc start chef"
|
78
|
-
@provider.
|
78
|
+
expect(@provider).to receive(:shell_out!).with("#{@new_resource.start_command}").and_return("Starting custom service")
|
79
79
|
@provider.start_service
|
80
|
-
@new_resource.updated_by_last_action
|
80
|
+
expect(@new_resource.updated_by_last_action?).to be_true
|
81
81
|
end
|
82
82
|
|
83
83
|
it "should use the built-in command if no start command is specified" do
|
84
|
-
Win32::Service.
|
84
|
+
expect(Win32::Service).to receive(:start).with(@new_resource.service_name)
|
85
85
|
@provider.start_service
|
86
|
-
@new_resource.updated_by_last_action
|
86
|
+
expect(@new_resource.updated_by_last_action?).to be_true
|
87
87
|
end
|
88
88
|
|
89
89
|
it "should do nothing if the service does not exist" do
|
90
|
-
Win32::Service.
|
91
|
-
Win32::Service.
|
90
|
+
allow(Win32::Service).to receive(:exists?).with(@new_resource.service_name).and_return(false)
|
91
|
+
expect(Win32::Service).not_to receive(:start).with(@new_resource.service_name)
|
92
92
|
@provider.start_service
|
93
|
-
@new_resource.updated_by_last_action
|
93
|
+
expect(@new_resource.updated_by_last_action?).to be_false
|
94
94
|
end
|
95
95
|
|
96
96
|
it "should do nothing if the service is running" do
|
97
|
-
Win32::Service.
|
97
|
+
allow(Win32::Service).to receive(:status).with(@new_resource.service_name).and_return(
|
98
98
|
double("StatusStruct", :current_state => "running"))
|
99
99
|
@provider.load_current_resource
|
100
|
-
Win32::Service.
|
100
|
+
expect(Win32::Service).not_to receive(:start).with(@new_resource.service_name)
|
101
101
|
@provider.start_service
|
102
|
-
@new_resource.updated_by_last_action
|
102
|
+
expect(@new_resource.updated_by_last_action?).to be_false
|
103
103
|
end
|
104
104
|
|
105
105
|
it "should raise an error if the service is paused" do
|
106
|
-
Win32::Service.
|
106
|
+
allow(Win32::Service).to receive(:status).with(@new_resource.service_name).and_return(
|
107
107
|
double("StatusStruct", :current_state => "paused"))
|
108
108
|
@provider.load_current_resource
|
109
|
-
Win32::Service.
|
109
|
+
expect(Win32::Service).not_to receive(:start).with(@new_resource.service_name)
|
110
110
|
expect { @provider.start_service }.to raise_error( Chef::Exceptions::Service )
|
111
|
-
@new_resource.updated_by_last_action
|
111
|
+
expect(@new_resource.updated_by_last_action?).to be_false
|
112
112
|
end
|
113
113
|
|
114
114
|
it "should wait and continue if the service is in start_pending" do
|
115
|
-
Win32::Service.
|
115
|
+
allow(Win32::Service).to receive(:status).with(@new_resource.service_name).and_return(
|
116
116
|
double("StatusStruct", :current_state => "start pending"),
|
117
117
|
double("StatusStruct", :current_state => "start pending"),
|
118
118
|
double("StatusStruct", :current_state => "running"))
|
119
119
|
@provider.load_current_resource
|
120
|
-
Win32::Service.
|
120
|
+
expect(Win32::Service).not_to receive(:start).with(@new_resource.service_name)
|
121
121
|
@provider.start_service
|
122
|
-
@new_resource.updated_by_last_action
|
122
|
+
expect(@new_resource.updated_by_last_action?).to be_false
|
123
123
|
end
|
124
124
|
|
125
125
|
it "should fail if the service is in stop_pending" do
|
126
|
-
Win32::Service.
|
126
|
+
allow(Win32::Service).to receive(:status).with(@new_resource.service_name).and_return(
|
127
127
|
double("StatusStruct", :current_state => "stop pending"))
|
128
128
|
@provider.load_current_resource
|
129
|
-
Win32::Service.
|
129
|
+
expect(Win32::Service).not_to receive(:start).with(@new_resource.service_name)
|
130
130
|
expect { @provider.start_service }.to raise_error( Chef::Exceptions::Service )
|
131
|
-
@new_resource.updated_by_last_action
|
131
|
+
expect(@new_resource.updated_by_last_action?).to be_false
|
132
132
|
end
|
133
133
|
|
134
134
|
end
|
@@ -137,78 +137,78 @@ describe Chef::Provider::Service::Windows, "load_current_resource" do
|
|
137
137
|
describe Chef::Provider::Service::Windows, "stop_service" do
|
138
138
|
|
139
139
|
before(:each) do
|
140
|
-
Win32::Service.
|
140
|
+
allow(Win32::Service).to receive(:status).with(@new_resource.service_name).and_return(
|
141
141
|
double("StatusStruct", :current_state => "running"),
|
142
142
|
double("StatusStruct", :current_state => "stopped"))
|
143
143
|
end
|
144
144
|
|
145
145
|
it "should call the stop command if one is specified" do
|
146
146
|
@new_resource.stop_command "sc stop chef"
|
147
|
-
@provider.
|
147
|
+
expect(@provider).to receive(:shell_out!).with("#{@new_resource.stop_command}").and_return("Stopping custom service")
|
148
148
|
@provider.stop_service
|
149
|
-
@new_resource.updated_by_last_action
|
149
|
+
expect(@new_resource.updated_by_last_action?).to be_true
|
150
150
|
end
|
151
151
|
|
152
152
|
it "should use the built-in command if no stop command is specified" do
|
153
|
-
Win32::Service.
|
153
|
+
expect(Win32::Service).to receive(:stop).with(@new_resource.service_name)
|
154
154
|
@provider.stop_service
|
155
|
-
@new_resource.updated_by_last_action
|
155
|
+
expect(@new_resource.updated_by_last_action?).to be_true
|
156
156
|
end
|
157
157
|
|
158
158
|
it "should do nothing if the service does not exist" do
|
159
|
-
Win32::Service.
|
160
|
-
Win32::Service.
|
159
|
+
allow(Win32::Service).to receive(:exists?).with(@new_resource.service_name).and_return(false)
|
160
|
+
expect(Win32::Service).not_to receive(:stop).with(@new_resource.service_name)
|
161
161
|
@provider.stop_service
|
162
|
-
@new_resource.updated_by_last_action
|
162
|
+
expect(@new_resource.updated_by_last_action?).to be_false
|
163
163
|
end
|
164
164
|
|
165
165
|
it "should do nothing if the service is stopped" do
|
166
|
-
Win32::Service.
|
166
|
+
allow(Win32::Service).to receive(:status).with(@new_resource.service_name).and_return(
|
167
167
|
double("StatusStruct", :current_state => "stopped"))
|
168
168
|
@provider.load_current_resource
|
169
|
-
Win32::Service.
|
169
|
+
expect(Win32::Service).not_to receive(:stop).with(@new_resource.service_name)
|
170
170
|
@provider.stop_service
|
171
|
-
@new_resource.updated_by_last_action
|
171
|
+
expect(@new_resource.updated_by_last_action?).to be_false
|
172
172
|
end
|
173
173
|
|
174
174
|
it "should raise an error if the service is paused" do
|
175
|
-
Win32::Service.
|
175
|
+
allow(Win32::Service).to receive(:status).with(@new_resource.service_name).and_return(
|
176
176
|
double("StatusStruct", :current_state => "paused"))
|
177
177
|
@provider.load_current_resource
|
178
|
-
Win32::Service.
|
178
|
+
expect(Win32::Service).not_to receive(:start).with(@new_resource.service_name)
|
179
179
|
expect { @provider.stop_service }.to raise_error( Chef::Exceptions::Service )
|
180
|
-
@new_resource.updated_by_last_action
|
180
|
+
expect(@new_resource.updated_by_last_action?).to be_false
|
181
181
|
end
|
182
182
|
|
183
183
|
it "should wait and continue if the service is in stop_pending" do
|
184
|
-
Win32::Service.
|
184
|
+
allow(Win32::Service).to receive(:status).with(@new_resource.service_name).and_return(
|
185
185
|
double("StatusStruct", :current_state => "stop pending"),
|
186
186
|
double("StatusStruct", :current_state => "stop pending"),
|
187
187
|
double("StatusStruct", :current_state => "stopped"))
|
188
188
|
@provider.load_current_resource
|
189
|
-
Win32::Service.
|
189
|
+
expect(Win32::Service).not_to receive(:stop).with(@new_resource.service_name)
|
190
190
|
@provider.stop_service
|
191
|
-
@new_resource.updated_by_last_action
|
191
|
+
expect(@new_resource.updated_by_last_action?).to be_false
|
192
192
|
end
|
193
193
|
|
194
194
|
it "should fail if the service is in start_pending" do
|
195
|
-
Win32::Service.
|
195
|
+
allow(Win32::Service).to receive(:status).with(@new_resource.service_name).and_return(
|
196
196
|
double("StatusStruct", :current_state => "start pending"))
|
197
197
|
@provider.load_current_resource
|
198
|
-
Win32::Service.
|
198
|
+
expect(Win32::Service).not_to receive(:stop).with(@new_resource.service_name)
|
199
199
|
expect { @provider.stop_service }.to raise_error( Chef::Exceptions::Service )
|
200
|
-
@new_resource.updated_by_last_action
|
200
|
+
expect(@new_resource.updated_by_last_action?).to be_false
|
201
201
|
end
|
202
202
|
|
203
203
|
it "should pass custom timeout to the stop command if provided" do
|
204
|
-
Win32::Service.
|
204
|
+
allow(Win32::Service).to receive(:status).with(@new_resource.service_name).and_return(
|
205
205
|
double("StatusStruct", :current_state => "running"))
|
206
206
|
@new_resource.timeout 1
|
207
|
-
Win32::Service.
|
207
|
+
expect(Win32::Service).to receive(:stop).with(@new_resource.service_name)
|
208
208
|
Timeout.timeout(2) do
|
209
209
|
expect { @provider.stop_service }.to raise_error(Timeout::Error)
|
210
210
|
end
|
211
|
-
@new_resource.updated_by_last_action
|
211
|
+
expect(@new_resource.updated_by_last_action?).to be_false
|
212
212
|
end
|
213
213
|
|
214
214
|
end
|
@@ -217,112 +217,112 @@ describe Chef::Provider::Service::Windows, "load_current_resource" do
|
|
217
217
|
|
218
218
|
it "should call the restart command if one is specified" do
|
219
219
|
@new_resource.restart_command "sc restart"
|
220
|
-
@provider.
|
220
|
+
expect(@provider).to receive(:shell_out!).with("#{@new_resource.restart_command}")
|
221
221
|
@provider.restart_service
|
222
|
-
@new_resource.updated_by_last_action
|
222
|
+
expect(@new_resource.updated_by_last_action?).to be_true
|
223
223
|
end
|
224
224
|
|
225
225
|
it "should stop then start the service if it is running" do
|
226
|
-
Win32::Service.
|
226
|
+
allow(Win32::Service).to receive(:status).with(@new_resource.service_name).and_return(
|
227
227
|
double("StatusStruct", :current_state => "running"),
|
228
228
|
double("StatusStruct", :current_state => "stopped"),
|
229
229
|
double("StatusStruct", :current_state => "stopped"),
|
230
230
|
double("StatusStruct", :current_state => "running"))
|
231
|
-
Win32::Service.
|
232
|
-
Win32::Service.
|
231
|
+
expect(Win32::Service).to receive(:stop).with(@new_resource.service_name)
|
232
|
+
expect(Win32::Service).to receive(:start).with(@new_resource.service_name)
|
233
233
|
@provider.restart_service
|
234
|
-
@new_resource.updated_by_last_action
|
234
|
+
expect(@new_resource.updated_by_last_action?).to be_true
|
235
235
|
end
|
236
236
|
|
237
237
|
it "should just start the service if it is stopped" do
|
238
|
-
Win32::Service.
|
238
|
+
allow(Win32::Service).to receive(:status).with(@new_resource.service_name).and_return(
|
239
239
|
double("StatusStruct", :current_state => "stopped"),
|
240
240
|
double("StatusStruct", :current_state => "stopped"),
|
241
241
|
double("StatusStruct", :current_state => "running"))
|
242
|
-
Win32::Service.
|
242
|
+
expect(Win32::Service).to receive(:start).with(@new_resource.service_name)
|
243
243
|
@provider.restart_service
|
244
|
-
@new_resource.updated_by_last_action
|
244
|
+
expect(@new_resource.updated_by_last_action?).to be_true
|
245
245
|
end
|
246
246
|
|
247
247
|
it "should do nothing if the service does not exist" do
|
248
|
-
Win32::Service.
|
249
|
-
Win32::Service.
|
250
|
-
Win32::Service.
|
248
|
+
allow(Win32::Service).to receive(:exists?).with(@new_resource.service_name).and_return(false)
|
249
|
+
expect(Win32::Service).not_to receive(:stop).with(@new_resource.service_name)
|
250
|
+
expect(Win32::Service).not_to receive(:start).with(@new_resource.service_name)
|
251
251
|
@provider.restart_service
|
252
|
-
@new_resource.updated_by_last_action
|
252
|
+
expect(@new_resource.updated_by_last_action?).to be_false
|
253
253
|
end
|
254
254
|
|
255
255
|
end
|
256
256
|
|
257
257
|
describe Chef::Provider::Service::Windows, "enable_service" do
|
258
258
|
before(:each) do
|
259
|
-
Win32::Service.
|
259
|
+
allow(Win32::Service).to receive(:config_info).with(@new_resource.service_name).and_return(
|
260
260
|
double("ConfigStruct", :start_type => "disabled"))
|
261
261
|
end
|
262
262
|
|
263
263
|
it "should enable service" do
|
264
|
-
Win32::Service.
|
264
|
+
expect(Win32::Service).to receive(:configure).with(:service_name => @new_resource.service_name, :start_type => Win32::Service::AUTO_START)
|
265
265
|
@provider.enable_service
|
266
|
-
@new_resource.updated_by_last_action
|
266
|
+
expect(@new_resource.updated_by_last_action?).to be_true
|
267
267
|
end
|
268
268
|
|
269
269
|
it "should do nothing if the service does not exist" do
|
270
|
-
Win32::Service.
|
271
|
-
Win32::Service.
|
270
|
+
allow(Win32::Service).to receive(:exists?).with(@new_resource.service_name).and_return(false)
|
271
|
+
expect(Win32::Service).not_to receive(:configure)
|
272
272
|
@provider.enable_service
|
273
|
-
@new_resource.updated_by_last_action
|
273
|
+
expect(@new_resource.updated_by_last_action?).to be_false
|
274
274
|
end
|
275
275
|
end
|
276
276
|
|
277
277
|
describe Chef::Provider::Service::Windows, "action_enable" do
|
278
278
|
it "does nothing if the service is enabled" do
|
279
|
-
Win32::Service.
|
279
|
+
allow(Win32::Service).to receive(:config_info).with(@new_resource.service_name).and_return(
|
280
280
|
double("ConfigStruct", :start_type => "auto start"))
|
281
|
-
@provider.
|
281
|
+
expect(@provider).not_to receive(:enable_service)
|
282
282
|
@provider.action_enable
|
283
283
|
end
|
284
284
|
|
285
285
|
it "enables the service if it is not set to automatic start" do
|
286
|
-
Win32::Service.
|
286
|
+
allow(Win32::Service).to receive(:config_info).with(@new_resource.service_name).and_return(
|
287
287
|
double("ConfigStruct", :start_type => "disabled"))
|
288
|
-
@provider.
|
288
|
+
expect(@provider).to receive(:enable_service)
|
289
289
|
@provider.action_enable
|
290
290
|
end
|
291
291
|
end
|
292
292
|
|
293
293
|
describe Chef::Provider::Service::Windows, "action_disable" do
|
294
294
|
it "does nothing if the service is disabled" do
|
295
|
-
Win32::Service.
|
295
|
+
allow(Win32::Service).to receive(:config_info).with(@new_resource.service_name).and_return(
|
296
296
|
double("ConfigStruct", :start_type => "disabled"))
|
297
|
-
@provider.
|
297
|
+
expect(@provider).not_to receive(:disable_service)
|
298
298
|
@provider.action_disable
|
299
299
|
end
|
300
300
|
|
301
301
|
it "disables the service if it is not set to disabled" do
|
302
|
-
Win32::Service.
|
302
|
+
allow(Win32::Service).to receive(:config_info).with(@new_resource.service_name).and_return(
|
303
303
|
double("ConfigStruct", :start_type => "auto start"))
|
304
|
-
@provider.
|
304
|
+
expect(@provider).to receive(:disable_service)
|
305
305
|
@provider.action_disable
|
306
306
|
end
|
307
307
|
end
|
308
308
|
|
309
309
|
describe Chef::Provider::Service::Windows, "disable_service" do
|
310
310
|
before(:each) do
|
311
|
-
Win32::Service.
|
311
|
+
allow(Win32::Service).to receive(:config_info).with(@new_resource.service_name).and_return(
|
312
312
|
double("ConfigStruct", :start_type => "auto start"))
|
313
313
|
end
|
314
314
|
|
315
315
|
it "should disable service" do
|
316
|
-
Win32::Service.
|
316
|
+
expect(Win32::Service).to receive(:configure)
|
317
317
|
@provider.disable_service
|
318
|
-
@new_resource.updated_by_last_action
|
318
|
+
expect(@new_resource.updated_by_last_action?).to be_true
|
319
319
|
end
|
320
320
|
|
321
321
|
it "should do nothing if the service does not exist" do
|
322
|
-
Win32::Service.
|
323
|
-
Win32::Service.
|
322
|
+
allow(Win32::Service).to receive(:exists?).with(@new_resource.service_name).and_return(false)
|
323
|
+
expect(Win32::Service).not_to receive(:configure)
|
324
324
|
@provider.disable_service
|
325
|
-
@new_resource.updated_by_last_action
|
325
|
+
expect(@new_resource.updated_by_last_action?).to be_false
|
326
326
|
end
|
327
327
|
end
|
328
328
|
|
@@ -330,15 +330,15 @@ describe Chef::Provider::Service::Windows, "load_current_resource" do
|
|
330
330
|
{ :automatic => "auto start", :manual => "demand start", :disabled => "disabled" }.each do |type,win32|
|
331
331
|
it "sets the startup type to #{type} if it is something else" do
|
332
332
|
@new_resource.startup_type(type)
|
333
|
-
@provider.
|
334
|
-
@provider.
|
333
|
+
allow(@provider).to receive(:current_start_type).and_return("fire")
|
334
|
+
expect(@provider).to receive(:set_startup_type).with(type)
|
335
335
|
@provider.action_configure_startup
|
336
336
|
end
|
337
337
|
|
338
338
|
it "leaves the startup type as #{type} if it is already set" do
|
339
339
|
@new_resource.startup_type(type)
|
340
|
-
@provider.
|
341
|
-
@provider.
|
340
|
+
allow(@provider).to receive(:current_start_type).and_return(win32)
|
341
|
+
expect(@provider).not_to receive(:set_startup_type).with(type)
|
342
342
|
@provider.action_configure_startup
|
343
343
|
end
|
344
344
|
end
|
@@ -346,17 +346,17 @@ describe Chef::Provider::Service::Windows, "load_current_resource" do
|
|
346
346
|
|
347
347
|
describe Chef::Provider::Service::Windows, "set_start_type" do
|
348
348
|
it "when called with :automatic it calls Win32::Service#configure with Win32::Service::AUTO_START" do
|
349
|
-
Win32::Service.
|
349
|
+
expect(Win32::Service).to receive(:configure).with(:service_name => @new_resource.service_name, :start_type => Win32::Service::AUTO_START)
|
350
350
|
@provider.send(:set_startup_type, :automatic)
|
351
351
|
end
|
352
352
|
|
353
353
|
it "when called with :manual it calls Win32::Service#configure with Win32::Service::DEMAND_START" do
|
354
|
-
Win32::Service.
|
354
|
+
expect(Win32::Service).to receive(:configure).with(:service_name => @new_resource.service_name, :start_type => Win32::Service::DEMAND_START)
|
355
355
|
@provider.send(:set_startup_type, :manual)
|
356
356
|
end
|
357
357
|
|
358
358
|
it "when called with :disabled it calls Win32::Service#configure with Win32::Service::DISABLED" do
|
359
|
-
Win32::Service.
|
359
|
+
expect(Win32::Service).to receive(:configure).with(:service_name => @new_resource.service_name, :start_type => Win32::Service::DISABLED)
|
360
360
|
@provider.send(:set_startup_type, :disabled)
|
361
361
|
end
|
362
362
|
|