chef 12.0.3-x86-mingw32 → 12.1.0.rc.0-x86-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/CONTRIBUTING.md +4 -1
- data/README.md +42 -18
- data/distro/common/html/_sources/ctl_chef_client.txt +1 -1
- data/distro/common/html/_sources/ctl_chef_server.txt +53 -35
- data/distro/common/html/_sources/ctl_chef_solo.txt +1 -1
- data/distro/common/html/_sources/knife_bootstrap.txt +1 -1
- data/distro/common/html/_sources/knife_cookbook_site.txt +1 -1
- data/distro/common/html/_sources/knife_data_bag.txt +4 -4
- data/distro/common/html/_sources/knife_status.txt +1 -1
- data/distro/common/html/_static/searchtools.js +1 -1
- data/distro/common/html/ctl_chef_client.html +55 -7
- data/distro/common/html/ctl_chef_server.html +84 -41
- data/distro/common/html/ctl_chef_shell.html +45 -1
- data/distro/common/html/ctl_chef_solo.html +51 -5
- data/distro/common/html/index.html +2 -2
- data/distro/common/html/knife.html +1 -1
- data/distro/common/html/knife_bootstrap.html +30 -10
- data/distro/common/html/knife_cookbook_site.html +2 -0
- data/distro/common/html/knife_data_bag.html +4 -4
- data/distro/common/html/knife_node.html +2 -2
- data/distro/common/html/knife_raw.html +1 -1
- data/distro/common/html/knife_role.html +1 -1
- data/distro/common/html/knife_search.html +3 -3
- data/distro/common/html/knife_status.html +4 -0
- data/distro/common/html/searchindex.js +1 -1
- data/distro/common/man/man1/chef-shell.1 +72 -1
- data/distro/common/man/man1/knife-bootstrap.1 +71 -63
- data/distro/common/man/man1/knife-client.1 +1 -1
- data/distro/common/man/man1/knife-configure.1 +1 -1
- data/distro/common/man/man1/knife-cookbook-site.1 +4 -1
- data/distro/common/man/man1/knife-cookbook.1 +1 -1
- data/distro/common/man/man1/knife-data-bag.1 +5 -5
- data/distro/common/man/man1/knife-delete.1 +1 -1
- data/distro/common/man/man1/knife-deps.1 +1 -1
- data/distro/common/man/man1/knife-diff.1 +1 -1
- data/distro/common/man/man1/knife-download.1 +1 -1
- data/distro/common/man/man1/knife-edit.1 +1 -1
- data/distro/common/man/man1/knife-environment.1 +1 -1
- data/distro/common/man/man1/knife-exec.1 +1 -1
- data/distro/common/man/man1/knife-index-rebuild.1 +1 -1
- data/distro/common/man/man1/knife-list.1 +1 -1
- data/distro/common/man/man1/knife-node.1 +3 -3
- data/distro/common/man/man1/knife-raw.1 +2 -2
- data/distro/common/man/man1/knife-recipe-list.1 +1 -1
- data/distro/common/man/man1/knife-role.1 +2 -2
- data/distro/common/man/man1/knife-search.1 +4 -4
- data/distro/common/man/man1/knife-serve.1 +1 -1
- data/distro/common/man/man1/knife-show.1 +1 -1
- data/distro/common/man/man1/knife-ssh.1 +1 -1
- data/distro/common/man/man1/knife-ssl-check.1 +1 -1
- data/distro/common/man/man1/knife-ssl-fetch.1 +1 -1
- data/distro/common/man/man1/knife-status.1 +1 -1
- data/distro/common/man/man1/knife-tag.1 +1 -1
- data/distro/common/man/man1/knife-upload.1 +1 -1
- data/distro/common/man/man1/knife-user.1 +1 -1
- data/distro/common/man/man1/knife-xargs.1 +1 -1
- data/distro/common/man/man1/knife.1 +1 -1
- data/distro/common/man/man8/chef-apply.8 +86 -0
- data/distro/common/man/man8/chef-client.8 +76 -5
- data/distro/common/man/man8/chef-solo.8 +79 -6
- data/distro/common/markdown/man1/knife-bootstrap.mkd +1 -1
- data/distro/common/markdown/man1/knife-cookbook-site.mkd +1 -1
- data/distro/common/markdown/man1/knife-data-bag.mkd +1 -1
- data/distro/common/markdown/man1/knife-environment.mkd +1 -1
- data/distro/common/markdown/man1/knife.mkd +1 -1
- data/lib/chef.rb +0 -7
- data/lib/chef/api_client.rb +10 -2
- data/lib/chef/api_client/registration.rb +7 -9
- data/lib/chef/application.rb +28 -12
- data/lib/chef/application/apply.rb +17 -1
- data/lib/chef/application/client.rb +74 -6
- data/lib/chef/application/knife.rb +1 -2
- data/lib/chef/application/solo.rb +30 -0
- data/lib/chef/application/windows_service.rb +1 -0
- data/lib/chef/application/windows_service_manager.rb +8 -2
- data/lib/chef/applications.rb +0 -1
- data/lib/chef/audit/audit_event_proxy.rb +93 -0
- data/lib/chef/audit/audit_reporter.rb +169 -0
- data/lib/chef/audit/control_group_data.rb +140 -0
- data/lib/chef/audit/rspec_formatter.rb +37 -0
- data/lib/chef/audit/runner.rb +178 -0
- data/lib/chef/chef_fs/chef_fs_data_store.rb +11 -2
- data/lib/chef/chef_fs/config.rb +25 -4
- data/lib/chef/chef_fs/data_handler/policy_data_handler.rb +15 -0
- data/lib/chef/chef_fs/data_handler/user_data_handler.rb +1 -0
- data/lib/chef/chef_fs/file_system.rb +1 -1
- data/lib/chef/chef_fs/file_system/base_fs_dir.rb +5 -0
- data/lib/chef/chef_fs/file_system/chef_repository_file_system_cookbook_entry.rb +3 -2
- data/lib/chef/{shef/ext.rb → chef_fs/file_system/chef_repository_file_system_policies_dir.rb} +22 -3
- data/lib/chef/chef_fs/file_system/chef_repository_file_system_root_dir.rb +4 -0
- data/lib/chef/client.rb +81 -52
- data/lib/chef/config.rb +35 -3
- data/lib/chef/cookbook/metadata.rb +3 -3
- data/lib/chef/cookbook_manifest.rb +275 -0
- data/lib/chef/cookbook_site_streaming_uploader.rb +24 -23
- data/lib/chef/cookbook_uploader.rb +11 -2
- data/lib/chef/cookbook_version.rb +71 -194
- data/lib/chef/data_bag.rb +5 -2
- data/lib/chef/data_bag_item.rb +6 -3
- data/lib/chef/deprecation/warnings.rb +5 -4
- data/lib/chef/dsl/audit.rb +51 -0
- data/lib/chef/dsl/include_recipe.rb +2 -3
- data/lib/chef/dsl/reboot_pending.rb +1 -1
- data/lib/chef/dsl/recipe.rb +49 -31
- data/lib/chef/encrypted_data_bag_item/assertions.rb +0 -3
- data/lib/chef/environment.rb +5 -2
- data/lib/chef/event_dispatch/base.rb +36 -1
- data/lib/chef/event_dispatch/dispatcher.rb +3 -5
- data/lib/chef/exceptions.rb +61 -2
- data/lib/chef/file_access_control/unix.rb +12 -0
- data/lib/chef/file_access_control/windows.rb +14 -0
- data/lib/chef/formatters/doc.rb +47 -1
- data/{spec/unit/monkey_patches/string_spec.rb → lib/chef/guard_interpreter.rb} +11 -16
- data/lib/chef/guard_interpreter/resource_guard_interpreter.rb +3 -2
- data/lib/chef/http.rb +1 -2
- data/lib/chef/knife.rb +5 -3
- data/lib/chef/knife/bootstrap.rb +84 -15
- data/lib/chef/knife/bootstrap/chef_vault_handler.rb +165 -0
- data/lib/chef/knife/bootstrap/client_builder.rb +190 -0
- data/lib/chef/knife/bootstrap/{README.md → templates/README.md} +0 -0
- data/lib/chef/knife/bootstrap/{archlinux-gems.erb → templates/archlinux-gems.erb} +9 -0
- data/lib/chef/knife/bootstrap/{chef-aix.erb → templates/chef-aix.erb} +9 -0
- data/lib/chef/knife/bootstrap/{chef-full.erb → templates/chef-full.erb} +10 -1
- data/lib/chef/knife/client_create.rb +8 -7
- data/lib/chef/knife/cookbook_site_download.rb +1 -1
- data/lib/chef/knife/cookbook_site_install.rb +1 -1
- data/lib/chef/knife/cookbook_site_list.rb +1 -1
- data/lib/chef/knife/cookbook_site_search.rb +1 -1
- data/lib/chef/knife/cookbook_site_share.rb +39 -28
- data/lib/chef/knife/cookbook_site_show.rb +3 -3
- data/lib/chef/knife/cookbook_site_unshare.rb +1 -1
- data/lib/chef/knife/cookbook_test.rb +1 -0
- data/lib/chef/knife/cookbook_upload.rb +13 -8
- data/lib/chef/knife/core/bootstrap_context.rb +14 -3
- data/lib/chef/knife/core/generic_presenter.rb +5 -2
- data/lib/chef/knife/core/object_loader.rb +1 -1
- data/lib/chef/knife/core/subcommand_loader.rb +24 -0
- data/lib/chef/knife/core/ui.rb +9 -1
- data/lib/chef/knife/node_run_list_remove.rb +11 -3
- data/lib/chef/knife/raw.rb +14 -3
- data/lib/chef/knife/role_env_run_list_add.rb +86 -0
- data/lib/chef/knife/role_env_run_list_clear.rb +55 -0
- data/lib/chef/knife/role_env_run_list_remove.rb +57 -0
- data/lib/chef/knife/role_env_run_list_replace.rb +59 -0
- data/lib/chef/knife/role_env_run_list_set.rb +70 -0
- data/lib/chef/knife/role_run_list_add.rb +86 -0
- data/lib/chef/knife/role_run_list_clear.rb +55 -0
- data/lib/chef/knife/role_run_list_remove.rb +57 -0
- data/lib/chef/knife/role_run_list_replace.rb +59 -0
- data/lib/chef/knife/role_run_list_set.rb +70 -0
- data/lib/chef/knife/search.rb +4 -4
- data/lib/chef/knife/serve.rb +3 -0
- data/lib/chef/knife/ssh.rb +1 -1
- data/lib/chef/knife/ssl_check.rb +2 -2
- data/lib/chef/knife/ssl_fetch.rb +14 -1
- data/lib/chef/log.rb +10 -1
- data/lib/chef/mixin/command.rb +1 -1
- data/lib/chef/mixin/command/windows.rb +1 -5
- data/lib/chef/mixin/get_source_from_package.rb +1 -0
- data/lib/chef/mixin/params_validate.rb +2 -2
- data/lib/chef/mixin/securable.rb +1 -7
- data/lib/chef/mixin/shell_out.rb +7 -1
- data/lib/chef/mixin/template.rb +2 -14
- data/lib/chef/mixin/why_run.rb +1 -1
- data/lib/chef/monkey_patches/net_http.rb +4 -0
- data/lib/chef/monologger.rb +0 -2
- data/lib/chef/node.rb +5 -2
- data/lib/chef/node/attribute.rb +11 -9
- data/lib/chef/node/attribute_collections.rb +8 -12
- data/lib/chef/node/immutable_collections.rb +4 -10
- data/lib/chef/org.rb +148 -0
- data/lib/chef/platform/provider_mapping.rb +3 -2
- data/lib/chef/platform/provider_priority_map.rb +2 -0
- data/lib/chef/platform/query_helpers.rb +0 -3
- data/lib/chef/policy_builder/policyfile.rb +51 -8
- data/lib/chef/provider/deploy.rb +1 -2
- data/lib/chef/provider/directory.rb +3 -3
- data/lib/chef/provider/dsc_script.rb +13 -7
- data/lib/chef/provider/env.rb +8 -8
- data/lib/chef/provider/execute.rb +55 -36
- data/lib/chef/provider/file.rb +8 -0
- data/lib/chef/provider/group.rb +2 -0
- data/lib/chef/provider/group/dscl.rb +3 -4
- data/lib/chef/provider/ifconfig.rb +25 -25
- data/lib/chef/provider/ifconfig/aix.rb +25 -27
- data/lib/chef/provider/lwrp_base.rb +1 -1
- data/lib/chef/provider/mount.rb +2 -2
- data/lib/chef/provider/mount/mount.rb +3 -4
- data/lib/chef/provider/mount/solaris.rb +1 -1
- data/lib/chef/provider/package.rb +297 -48
- data/lib/chef/provider/package/aix.rb +25 -30
- data/lib/chef/provider/package/apt.rb +63 -19
- data/lib/chef/provider/package/dpkg.rb +15 -16
- data/lib/chef/provider/package/macports.rb +7 -7
- data/lib/chef/provider/package/openbsd.rb +107 -0
- data/lib/chef/provider/package/pacman.rb +13 -15
- data/lib/chef/provider/package/portage.rb +3 -4
- data/lib/chef/provider/package/rpm.rb +28 -17
- data/lib/chef/provider/package/rubygems.rb +9 -9
- data/lib/chef/provider/package/solaris.rb +17 -21
- data/lib/chef/provider/package/windows/msi.rb +1 -1
- data/lib/chef/provider/package/yum-dump.py +2 -2
- data/lib/chef/provider/package/yum.rb +117 -51
- data/lib/chef/provider/package/zypper.rb +17 -18
- data/lib/chef/provider/powershell_script.rb +4 -4
- data/lib/chef/provider/registry_key.rb +2 -2
- data/lib/chef/provider/remote_directory.rb +1 -1
- data/lib/chef/provider/script.rb +25 -16
- data/lib/chef/provider/service.rb +1 -1
- data/lib/chef/provider/service/freebsd.rb +1 -1
- data/lib/chef/provider/service/openbsd.rb +216 -0
- data/lib/chef/provider/service/upstart.rb +1 -1
- data/lib/chef/provider/service/windows.rb +99 -1
- data/lib/chef/provider/user.rb +1 -1
- data/lib/chef/provider/user/dscl.rb +19 -4
- data/lib/chef/providers.rb +2 -0
- data/lib/chef/recipe.rb +11 -5
- data/lib/chef/request_id.rb +1 -1
- data/lib/chef/resource.rb +839 -444
- data/lib/chef/resource/chef_gem.rb +20 -3
- data/lib/chef/resource/conditional.rb +3 -14
- data/lib/chef/resource/dsc_script.rb +14 -0
- data/lib/chef/resource/execute.rb +14 -7
- data/lib/chef/resource/file.rb +14 -0
- data/lib/chef/resource/file/verification.rb +122 -0
- data/lib/chef/resource/ips_package.rb +1 -1
- data/lib/chef/resource/lwrp_base.rb +2 -11
- data/lib/chef/resource/macports_package.rb +2 -1
- data/lib/chef/resource/openbsd_package.rb +51 -0
- data/lib/chef/resource/package.rb +2 -2
- data/lib/chef/resource/paludis_package.rb +1 -1
- data/lib/chef/resource/reboot.rb +1 -1
- data/lib/chef/resource/remote_file.rb +1 -0
- data/lib/chef/resource/rpm_package.rb +9 -0
- data/lib/chef/resource/script.rb +11 -0
- data/lib/chef/resource/template.rb +2 -3
- data/lib/chef/resource/windows_package.rb +1 -1
- data/lib/chef/resource/windows_service.rb +18 -0
- data/lib/chef/resource_builder.rb +137 -0
- data/lib/chef/resource_definition.rb +1 -1
- data/lib/chef/resource_reporter.rb +1 -1
- data/lib/chef/resources.rb +1 -0
- data/lib/chef/role.rb +17 -4
- data/lib/chef/run_context.rb +10 -6
- data/lib/chef/search/query.rb +66 -87
- data/lib/chef/shell/ext.rb +2 -2
- data/lib/chef/util/diff.rb +1 -4
- data/lib/chef/util/dsc/configuration_generator.rb +30 -6
- data/lib/chef/util/dsc/lcm_output_parser.rb +7 -3
- data/lib/chef/util/dsc/local_configuration_manager.rb +8 -8
- data/lib/chef/util/file_edit.rb +2 -2
- data/lib/chef/util/path_helper.rb +1 -4
- data/lib/chef/util/windows/net_use.rb +3 -3
- data/lib/chef/version.rb +1 -1
- data/lib/chef/win32/api.rb +1 -0
- data/lib/chef/win32/api/security.rb +26 -0
- data/lib/chef/win32/file.rb +21 -0
- data/lib/chef/win32/security.rb +46 -0
- data/lib/chef/win32/security/token.rb +8 -0
- data/lib/chef/win32/version.rb +0 -4
- data/spec/data/recipes.tgz +0 -0
- data/spec/functional/application_spec.rb +1 -1
- data/spec/functional/audit/rspec_formatter_spec.rb +54 -0
- data/spec/functional/audit/runner_spec.rb +137 -0
- data/spec/functional/dsl/reboot_pending_spec.rb +10 -10
- data/spec/functional/dsl/registry_helper_spec.rb +6 -6
- data/spec/functional/event_loggers/windows_eventlog_spec.rb +5 -5
- data/spec/functional/file_content_management/deploy_strategies_spec.rb +12 -21
- data/spec/functional/http/simple_spec.rb +1 -1
- data/spec/functional/knife/cookbook_delete_spec.rb +24 -24
- data/spec/functional/knife/exec_spec.rb +2 -4
- data/spec/functional/knife/smoke_test.rb +1 -1
- data/spec/functional/knife/ssh_spec.rb +23 -23
- data/spec/functional/provider/remote_file/cache_control_data_spec.rb +8 -8
- data/spec/functional/provider/whyrun_safe_ruby_block_spec.rb +2 -2
- data/spec/functional/rebooter_spec.rb +1 -1
- data/spec/functional/resource/aix_service_spec.rb +3 -0
- data/spec/functional/resource/aixinit_service_spec.rb +3 -3
- data/spec/functional/resource/bash_spec.rb +88 -0
- data/spec/functional/resource/deploy_revision_spec.rb +99 -100
- data/spec/functional/resource/env_spec.rb +3 -3
- data/spec/functional/resource/execute_spec.rb +97 -63
- data/spec/functional/resource/file_spec.rb +7 -7
- data/spec/functional/resource/git_spec.rb +13 -13
- data/spec/functional/resource/group_spec.rb +28 -25
- data/spec/functional/resource/ifconfig_spec.rb +2 -2
- data/spec/functional/resource/link_spec.rb +77 -78
- data/spec/functional/resource/mount_spec.rb +5 -5
- data/spec/functional/resource/ohai_spec.rb +1 -1
- data/spec/functional/resource/package_spec.rb +22 -22
- data/spec/functional/resource/powershell_spec.rb +57 -42
- data/spec/functional/resource/reboot_spec.rb +2 -2
- data/spec/functional/resource/registry_spec.rb +91 -91
- data/spec/functional/resource/remote_directory_spec.rb +19 -19
- data/spec/functional/resource/remote_file_spec.rb +18 -18
- data/spec/functional/resource/template_spec.rb +4 -4
- data/spec/functional/resource/user/dscl_spec.rb +4 -4
- data/spec/functional/resource/user/useradd_spec.rb +64 -51
- data/spec/functional/resource/windows_service_spec.rb +98 -0
- data/spec/functional/run_lock_spec.rb +9 -9
- data/spec/functional/shell_spec.rb +3 -3
- data/spec/functional/tiny_server_spec.rb +12 -12
- data/spec/functional/util/path_helper_spec.rb +1 -1
- data/spec/functional/version_spec.rb +1 -1
- data/spec/functional/win32/registry_helper_spec.rb +125 -125
- data/spec/functional/win32/security_spec.rb +65 -2
- data/spec/functional/win32/service_manager_spec.rb +30 -84
- data/spec/functional/win32/versions_spec.rb +6 -6
- data/spec/integration/client/client_spec.rb +102 -9
- data/spec/integration/knife/chef_fs_data_store_spec.rb +12 -8
- data/spec/integration/knife/common_options_spec.rb +3 -3
- data/spec/integration/knife/cookbook_api_ipv6_spec.rb +2 -2
- data/spec/integration/knife/deps_spec.rb +4 -4
- data/spec/integration/knife/diff_spec.rb +6 -6
- data/spec/integration/knife/download_spec.rb +6 -6
- data/spec/integration/knife/list_spec.rb +2 -2
- data/spec/integration/knife/raw_spec.rb +5 -5
- data/spec/integration/knife/serve_spec.rb +3 -3
- data/spec/integration/knife/show_spec.rb +3 -3
- data/spec/integration/knife/upload_spec.rb +18 -18
- data/spec/integration/recipes/lwrp_inline_resources_spec.rb +1 -1
- data/spec/integration/solo/solo_spec.rb +11 -12
- data/spec/spec_helper.rb +27 -15
- data/spec/stress/win32/file_spec.rb +4 -4
- data/spec/stress/win32/security_spec.rb +4 -4
- data/spec/support/chef_helpers.rb +3 -3
- data/spec/support/matchers/leak.rb +2 -2
- data/spec/support/mock/platform.rb +1 -1
- data/spec/support/pedant/Gemfile +3 -0
- data/spec/support/pedant/pedant_config.rb +9 -2
- data/spec/support/pedant/run_pedant.rb +15 -16
- data/spec/support/platform_helpers.rb +8 -12
- data/spec/support/shared/functional/directory_resource.rb +13 -13
- data/spec/support/shared/functional/file_resource.rb +83 -83
- data/spec/support/shared/functional/http.rb +1 -1
- data/spec/support/shared/functional/securable_resource.rb +64 -64
- data/spec/support/shared/functional/securable_resource_with_reporting.rb +43 -41
- data/spec/support/shared/functional/win32_service.rb +60 -0
- data/spec/support/shared/functional/windows_script.rb +8 -8
- data/spec/support/shared/integration/knife_support.rb +8 -5
- data/spec/support/shared/matchers/exit_with_code.rb +6 -2
- data/spec/support/shared/unit/api_error_inspector.rb +8 -8
- data/spec/support/shared/unit/execute_resource.rb +24 -20
- data/spec/support/shared/unit/file_system_support.rb +2 -2
- data/spec/support/shared/unit/platform_introspector.rb +21 -21
- data/spec/support/shared/unit/provider/file.rb +239 -210
- data/spec/support/shared/unit/provider/useradd_based_user_provider.rb +69 -69
- data/spec/support/shared/unit/script_resource.rb +40 -32
- data/spec/support/shared/unit/windows_script_resource.rb +8 -8
- data/spec/unit/api_client/registration_spec.rb +47 -47
- data/spec/unit/api_client_spec.rb +107 -69
- data/spec/unit/application/apply_spec.rb +31 -15
- data/spec/unit/application/client_spec.rb +146 -45
- data/spec/unit/application/knife_spec.rb +31 -31
- data/spec/unit/application/solo_spec.rb +59 -43
- data/spec/unit/application_spec.rb +109 -74
- data/spec/unit/audit/audit_event_proxy_spec.rb +311 -0
- data/spec/unit/audit/audit_reporter_spec.rb +393 -0
- data/spec/unit/audit/control_group_data_spec.rb +478 -0
- data/{lib/chef/monkey_patches/file.rb → spec/unit/audit/rspec_formatter_spec.rb} +11 -8
- data/spec/unit/audit/runner_spec.rb +135 -0
- data/spec/unit/chef_fs/config_spec.rb +52 -0
- data/spec/unit/chef_fs/diff_spec.rb +12 -12
- data/spec/unit/chef_fs/file_pattern_spec.rb +276 -277
- data/spec/unit/chef_fs/file_system/operation_failed_error_spec.rb +6 -6
- data/spec/unit/chef_fs/file_system_spec.rb +26 -13
- data/spec/unit/chef_fs/parallelizer.rb +87 -87
- data/spec/unit/chef_spec.rb +1 -1
- data/spec/unit/client_spec.rb +263 -97
- data/spec/unit/config_fetcher_spec.rb +13 -13
- data/spec/unit/config_spec.rb +105 -66
- data/spec/unit/cookbook/chefignore_spec.rb +6 -6
- data/spec/unit/cookbook/cookbook_version_loader_spec.rb +3 -3
- data/spec/unit/cookbook/metadata_spec.rb +149 -149
- data/spec/unit/cookbook/syntax_check_spec.rb +36 -31
- data/spec/unit/cookbook_loader_spec.rb +62 -58
- data/spec/unit/cookbook_manifest_spec.rb +141 -468
- data/spec/unit/cookbook_site_streaming_uploader_spec.rb +27 -27
- data/spec/unit/cookbook_spec.rb +15 -15
- data/spec/unit/cookbook_uploader_spec.rb +37 -3
- data/spec/unit/cookbook_version_file_specificity_spec.rb +554 -0
- data/spec/unit/cookbook_version_spec.rb +98 -240
- data/spec/unit/daemon_spec.rb +31 -31
- data/spec/unit/data_bag_item_spec.rb +121 -89
- data/spec/unit/data_bag_spec.rb +35 -35
- data/spec/unit/deprecation_spec.rb +27 -14
- data/spec/unit/digester_spec.rb +3 -3
- data/spec/unit/dsl/audit_spec.rb +43 -0
- data/spec/unit/dsl/data_query_spec.rb +1 -1
- data/spec/unit/dsl/platform_introspection_spec.rb +14 -14
- data/spec/unit/dsl/reboot_pending_spec.rb +18 -18
- data/spec/unit/dsl/regsitry_helper_spec.rb +6 -6
- data/spec/unit/encrypted_data_bag_item_spec.rb +58 -82
- data/spec/unit/environment_spec.rb +105 -105
- data/spec/unit/exceptions_spec.rb +47 -1
- data/spec/unit/file_access_control_spec.rb +62 -56
- data/spec/unit/file_cache_spec.rb +11 -11
- data/spec/unit/file_content_management/deploy/cp_spec.rb +2 -2
- data/spec/unit/file_content_management/deploy/mv_unix_spec.rb +10 -10
- data/spec/unit/file_content_management/deploy/mv_windows_spec.rb +23 -23
- data/spec/unit/formatters/error_inspectors/compile_error_inspector_spec.rb +14 -14
- data/spec/unit/formatters/error_inspectors/cookbook_resolve_error_inspector_spec.rb +12 -12
- data/spec/unit/formatters/error_inspectors/cookbook_sync_error_inspector_spec.rb +1 -1
- data/spec/unit/formatters/error_inspectors/resource_failure_inspector_spec.rb +16 -16
- data/spec/unit/formatters/error_inspectors/run_list_expansion_error_inspector_spec.rb +4 -4
- data/spec/unit/guard_interpreter/resource_guard_interpreter_spec.rb +103 -13
- data/spec/unit/guard_interpreter_spec.rb +41 -0
- data/spec/unit/handler/json_file_spec.rb +10 -10
- data/spec/unit/handler_spec.rb +39 -39
- data/spec/unit/http/basic_client_spec.rb +3 -3
- data/spec/unit/http/http_request_spec.rb +10 -10
- data/spec/unit/http/simple_spec.rb +3 -3
- data/spec/unit/http/ssl_policies_spec.rb +15 -15
- data/spec/unit/http/validate_content_length_spec.rb +18 -13
- data/spec/unit/http_spec.rb +16 -9
- data/spec/unit/knife/bootstrap/chef_vault_handler_spec.rb +153 -0
- data/spec/unit/knife/bootstrap/client_builder_spec.rb +178 -0
- data/spec/unit/knife/bootstrap_spec.rb +144 -91
- data/spec/unit/knife/client_bulk_delete_spec.rb +24 -24
- data/spec/unit/knife/client_create_spec.rb +57 -43
- data/spec/unit/knife/client_delete_spec.rb +15 -15
- data/spec/unit/knife/client_edit_spec.rb +4 -4
- data/spec/unit/knife/client_list_spec.rb +2 -2
- data/spec/unit/knife/client_reregister_spec.rb +9 -9
- data/spec/unit/knife/configure_client_spec.rb +20 -20
- data/spec/unit/knife/configure_spec.rb +85 -85
- data/spec/unit/knife/cookbook_bulk_delete_spec.rb +15 -15
- data/spec/unit/knife/cookbook_create_spec.rb +59 -59
- data/spec/unit/knife/cookbook_delete_spec.rb +49 -49
- data/spec/unit/knife/cookbook_download_spec.rb +56 -56
- data/spec/unit/knife/cookbook_list_spec.rb +9 -9
- data/spec/unit/knife/cookbook_metadata_from_file_spec.rb +8 -8
- data/spec/unit/knife/cookbook_metadata_spec.rb +44 -44
- data/spec/unit/knife/cookbook_show_spec.rb +29 -29
- data/spec/unit/knife/cookbook_site_download_spec.rb +26 -26
- data/spec/unit/knife/cookbook_site_install_spec.rb +5 -1
- data/spec/unit/knife/cookbook_site_share_spec.rb +68 -59
- data/spec/unit/knife/cookbook_site_unshare_spec.rb +15 -15
- data/spec/unit/knife/cookbook_test_spec.rb +16 -16
- data/spec/unit/knife/cookbook_upload_spec.rb +105 -71
- data/spec/unit/knife/core/bootstrap_context_spec.rb +37 -22
- data/spec/unit/knife/core/cookbook_scm_repo_spec.rb +36 -36
- data/spec/unit/knife/core/object_loader_spec.rb +3 -3
- data/spec/unit/knife/core/subcommand_loader_spec.rb +107 -33
- data/spec/unit/knife/core/ui_spec.rb +84 -72
- data/spec/unit/knife/data_bag_from_file_spec.rb +1 -1
- data/spec/unit/knife/environment_compare_spec.rb +12 -12
- data/spec/unit/knife/environment_create_spec.rb +16 -16
- data/spec/unit/knife/environment_delete_spec.rb +14 -14
- data/spec/unit/knife/environment_edit_spec.rb +15 -15
- data/spec/unit/knife/environment_from_file_spec.rb +17 -17
- data/spec/unit/knife/environment_list_spec.rb +7 -7
- data/spec/unit/knife/environment_show_spec.rb +10 -10
- data/spec/unit/knife/index_rebuild_spec.rb +17 -17
- data/spec/unit/knife/knife_help.rb +24 -24
- data/spec/unit/knife/node_bulk_delete_spec.rb +14 -14
- data/spec/unit/knife/node_delete_spec.rb +11 -11
- data/spec/unit/knife/node_edit_spec.rb +17 -17
- data/spec/unit/knife/node_environment_set_spec.rb +12 -12
- data/spec/unit/knife/node_from_file_spec.rb +8 -8
- data/spec/unit/knife/node_list_spec.rb +9 -9
- data/spec/unit/knife/node_run_list_add_spec.rb +29 -29
- data/spec/unit/knife/node_run_list_remove_spec.rb +28 -13
- data/spec/unit/knife/node_run_list_set_spec.rb +27 -27
- data/spec/unit/knife/raw_spec.rb +43 -0
- data/spec/unit/knife/role_bulk_delete_spec.rb +12 -12
- data/spec/unit/knife/role_create_spec.rb +12 -12
- data/spec/unit/knife/role_delete_spec.rb +10 -10
- data/spec/unit/knife/role_edit_spec.rb +13 -13
- data/spec/unit/knife/role_env_run_list_add_spec.rb +217 -0
- data/spec/unit/knife/role_env_run_list_clear_spec.rb +100 -0
- data/spec/unit/knife/role_env_run_list_remove_spec.rb +108 -0
- data/spec/unit/knife/role_env_run_list_replace_spec.rb +108 -0
- data/spec/unit/knife/role_env_run_list_set_spec.rb +102 -0
- data/spec/unit/knife/role_from_file_spec.rb +10 -10
- data/spec/unit/knife/role_list_spec.rb +7 -7
- data/spec/unit/knife/role_run_list_add_spec.rb +179 -0
- data/spec/unit/knife/role_run_list_clear_spec.rb +90 -0
- data/spec/unit/knife/role_run_list_remove_spec.rb +98 -0
- data/spec/unit/knife/role_run_list_replace_spec.rb +101 -0
- data/spec/unit/knife/role_run_list_set_spec.rb +92 -0
- data/spec/unit/knife/ssh_spec.rb +66 -66
- data/spec/unit/knife/ssl_check_spec.rb +27 -27
- data/spec/unit/knife/ssl_fetch_spec.rb +45 -12
- data/spec/unit/knife/status_spec.rb +5 -5
- data/spec/unit/knife/tag_create_spec.rb +5 -5
- data/spec/unit/knife/tag_delete_spec.rb +6 -6
- data/spec/unit/knife/tag_list_spec.rb +4 -4
- data/spec/unit/knife/user_create_spec.rb +18 -18
- data/spec/unit/knife/user_delete_spec.rb +4 -4
- data/spec/unit/knife/user_edit_spec.rb +7 -7
- data/spec/unit/knife/user_list_spec.rb +2 -2
- data/spec/unit/knife/user_reregister_spec.rb +10 -10
- data/spec/unit/knife/user_show_spec.rb +5 -5
- data/spec/unit/knife_spec.rb +36 -36
- data/spec/unit/lwrp_spec.rb +63 -39
- data/spec/unit/mash_spec.rb +6 -6
- data/spec/unit/mixin/checksum_spec.rb +2 -2
- data/spec/unit/mixin/command_spec.rb +13 -13
- data/spec/unit/mixin/convert_to_class_name_spec.rb +6 -6
- data/spec/unit/mixin/deep_merge_spec.rb +49 -49
- data/spec/unit/mixin/deprecation_spec.rb +5 -5
- data/spec/unit/mixin/enforce_ownership_and_permissions_spec.rb +14 -14
- data/spec/unit/mixin/homebrew_user_spec.rb +3 -3
- data/spec/unit/mixin/params_validate_spec.rb +71 -71
- data/spec/unit/mixin/path_sanity_spec.rb +14 -14
- data/spec/unit/mixin/securable_spec.rb +177 -177
- data/spec/unit/mixin/shell_out_spec.rb +56 -27
- data/spec/unit/mixin/template_spec.rb +31 -31
- data/spec/unit/mixin/windows_architecture_helper_spec.rb +5 -5
- data/spec/unit/mixin/xml_escape_spec.rb +7 -7
- data/spec/unit/monkey_patches/uri_spec.rb +1 -1
- data/spec/unit/monologger_spec.rb +3 -3
- data/spec/unit/node/attribute_spec.rb +185 -136
- data/spec/unit/node/immutable_collections_spec.rb +22 -22
- data/spec/unit/node_spec.rb +210 -179
- data/spec/unit/org_spec.rb +196 -0
- data/spec/unit/platform/query_helpers_spec.rb +5 -5
- data/spec/unit/platform_spec.rb +46 -46
- data/spec/unit/policy_builder/expand_node_object_spec.rb +17 -18
- data/spec/unit/policy_builder/policyfile_spec.rb +159 -71
- data/spec/unit/provider/directory_spec.rb +5 -5
- data/spec/unit/provider/dsc_script_spec.rb +6 -6
- data/spec/unit/provider/env_spec.rb +27 -14
- data/spec/unit/provider/execute_spec.rb +139 -68
- data/spec/unit/provider/file/content_spec.rb +8 -8
- data/spec/unit/provider/git_spec.rb +10 -5
- data/spec/unit/provider/group/dscl_spec.rb +8 -11
- data/spec/unit/provider/group_spec.rb +13 -13
- data/spec/unit/provider/ifconfig/aix_spec.rb +3 -2
- data/spec/unit/provider/ifconfig/debian_spec.rb +19 -19
- data/spec/unit/provider/ifconfig_spec.rb +2 -2
- data/spec/unit/provider/mdadm_spec.rb +2 -2
- data/spec/unit/provider/mount/aix_spec.rb +5 -5
- data/spec/unit/provider/mount/mount_spec.rb +22 -22
- data/spec/unit/provider/mount/solaris_spec.rb +20 -20
- data/spec/unit/provider/package/aix_spec.rb +23 -22
- data/spec/unit/provider/package/apt_spec.rb +23 -4
- data/spec/unit/provider/package/dpkg_spec.rb +14 -15
- data/spec/unit/provider/package/freebsd/pkgng_spec.rb +1 -1
- data/spec/unit/provider/package/freebsd/port_spec.rb +1 -1
- data/spec/unit/provider/package/ips_spec.rb +1 -2
- data/spec/unit/provider/package/macports_spec.rb +14 -14
- data/spec/unit/provider/package/openbsd_spec.rb +66 -0
- data/spec/unit/provider/package/pacman_spec.rb +15 -14
- data/spec/unit/provider/package/portage_spec.rb +11 -11
- data/spec/unit/provider/package/rpm_spec.rb +132 -84
- data/spec/unit/provider/package/rubygems_spec.rb +54 -25
- data/spec/unit/provider/package/solaris_spec.rb +22 -25
- data/spec/unit/provider/package/yum_spec.rb +237 -36
- data/spec/unit/provider/package/zypper_spec.rb +9 -12
- data/spec/unit/provider/package_spec.rb +276 -2
- data/spec/unit/provider/package_spec.rbe +0 -0
- data/spec/unit/provider/remote_directory_spec.rb +25 -25
- data/spec/unit/provider/remote_file/ftp_spec.rb +3 -3
- data/spec/unit/provider/route_spec.rb +3 -3
- data/spec/unit/provider/script_spec.rb +61 -43
- data/spec/unit/provider/service/aix_service_spec.rb +5 -5
- data/spec/unit/provider/service/arch_service_spec.rb +5 -5
- data/spec/unit/provider/service/debian_service_spec.rb +8 -8
- data/spec/unit/provider/service/freebsd_service_spec.rb +16 -2
- data/spec/unit/provider/service/gentoo_service_spec.rb +8 -8
- data/spec/unit/provider/service/init_service_spec.rb +5 -5
- data/spec/unit/provider/service/insserv_service_spec.rb +2 -2
- data/spec/unit/provider/service/invokercd_service_spec.rb +5 -5
- data/spec/unit/provider/service/macosx_spec.rb +7 -7
- data/spec/unit/provider/service/openbsd_service_spec.rb +543 -0
- data/spec/unit/provider/service/redhat_spec.rb +4 -4
- data/spec/unit/provider/service/simple_service_spec.rb +2 -2
- data/spec/unit/provider/service/solaris_smf_service_spec.rb +14 -14
- data/spec/unit/provider/service/systemd_service_spec.rb +15 -7
- data/spec/unit/provider/service/upstart_service_spec.rb +4 -4
- data/spec/unit/provider/service/windows_spec.rb +119 -25
- data/spec/unit/provider/service_spec.rb +1 -1
- data/spec/unit/provider/user/dscl_spec.rb +38 -30
- data/spec/unit/provider/user_spec.rb +1 -1
- data/spec/unit/provider_resolver_spec.rb +7 -7
- data/spec/unit/provider_spec.rb +23 -23
- data/spec/unit/recipe_spec.rb +194 -83
- data/spec/unit/registry_helper_spec.rb +143 -143
- data/spec/unit/resource/chef_gem_spec.rb +117 -3
- data/spec/unit/resource/conditional_action_not_nothing_spec.rb +2 -2
- data/spec/unit/resource/conditional_spec.rb +56 -15
- data/spec/unit/resource/deploy_spec.rb +2 -2
- data/spec/unit/resource/dsc_script_spec.rb +32 -0
- data/spec/unit/resource/execute_spec.rb +4 -0
- data/spec/unit/resource/file/verification_spec.rb +111 -0
- data/spec/unit/resource/file_spec.rb +14 -0
- data/spec/unit/resource/openbsd_package_spec.rb +49 -0
- data/spec/unit/resource/remote_file_spec.rb +12 -12
- data/spec/unit/resource/resource_notification_spec.rb +18 -18
- data/spec/unit/resource/rpm_package_spec.rb +12 -0
- data/spec/unit/resource/scm_spec.rb +4 -4
- data/spec/unit/resource/script_spec.rb +3 -5
- data/spec/unit/resource/subversion_spec.rb +1 -1
- data/spec/unit/resource_builder_spec.rb +1 -0
- data/spec/unit/resource_collection/resource_list_spec.rb +2 -2
- data/spec/unit/resource_collection/resource_set_spec.rb +3 -3
- data/spec/unit/resource_collection/stepable_iterator_spec.rb +24 -24
- data/spec/unit/resource_collection_spec.rb +52 -52
- data/spec/unit/resource_definition_spec.rb +1 -1
- data/spec/unit/resource_reporter_spec.rb +118 -118
- data/spec/unit/resource_spec.rb +131 -125
- data/spec/unit/rest/auth_credentials_spec.rb +73 -73
- data/spec/unit/rest_spec.rb +12 -12
- data/spec/unit/role_spec.rb +85 -84
- data/spec/unit/run_context/cookbook_compiler_spec.rb +18 -18
- data/spec/unit/run_context_spec.rb +39 -68
- data/spec/unit/run_list/run_list_expansion_spec.rb +21 -21
- data/spec/unit/run_list/run_list_item_spec.rb +28 -28
- data/spec/unit/run_list/versioned_recipe_list_spec.rb +14 -14
- data/spec/unit/run_list_spec.rb +55 -55
- data/spec/unit/run_lock_spec.rb +14 -14
- data/spec/unit/run_status_spec.rb +24 -24
- data/spec/unit/scan_access_control_spec.rb +23 -23
- data/spec/unit/search/query_spec.rb +54 -66
- data/spec/unit/shell/model_wrapper_spec.rb +13 -13
- data/spec/unit/shell/shell_ext_spec.rb +32 -32
- data/spec/unit/shell/shell_session_spec.rb +24 -24
- data/spec/unit/shell_out_spec.rb +4 -4
- data/spec/unit/shell_spec.rb +27 -27
- data/spec/unit/user_spec.rb +50 -50
- data/spec/unit/util/backup_spec.rb +32 -32
- data/spec/unit/util/diff_spec.rb +31 -31
- data/spec/unit/util/dsc/configuration_generator_spec.rb +38 -16
- data/spec/unit/util/dsc/lcm_output_parser_spec.rb +21 -26
- data/spec/unit/util/dsc/local_configuration_manager_spec.rb +10 -10
- data/spec/unit/util/editor_spec.rb +10 -10
- data/spec/unit/util/file_edit_spec.rb +10 -10
- data/spec/unit/util/path_helper_spec.rb +38 -46
- data/spec/unit/util/powershell/cmdlet_spec.rb +9 -9
- data/spec/unit/util/selinux_spec.rb +30 -30
- data/spec/unit/util/threaded_job_queue_spec.rb +6 -6
- data/spec/unit/version/platform_spec.rb +5 -5
- data/spec/unit/version_class_spec.rb +15 -15
- data/spec/unit/version_constraint/platform_spec.rb +7 -7
- data/spec/unit/version_constraint_spec.rb +43 -43
- data/spec/unit/windows_service_spec.rb +15 -15
- data/spec/unit/workstation_config_loader_spec.rb +2 -2
- data/tasks/rspec.rb +16 -18
- metadata +126 -49
- data/bin/shef +0 -35
- data/lib/chef/application/agent.rb +0 -18
- data/lib/chef/monkey_patches/fileutils.rb +0 -65
- data/lib/chef/monkey_patches/numeric.rb +0 -15
- data/lib/chef/monkey_patches/object.rb +0 -9
- data/lib/chef/monkey_patches/pathname.rb +0 -32
- data/lib/chef/monkey_patches/regexp.rb +0 -34
- data/lib/chef/monkey_patches/securerandom.rb +0 -44
- data/lib/chef/monkey_patches/string.rb +0 -49
- data/lib/chef/monkey_patches/tempfile.rb +0 -64
- data/lib/chef/monkey_patches/uri.rb +0 -70
@@ -0,0 +1,98 @@
|
|
1
|
+
#
|
2
|
+
# Author:: Chris Doherty (<cdoherty@chef.io>)
|
3
|
+
# Copyright:: Copyright (c) 2014 Chef Software, Inc.
|
4
|
+
# License:: Apache License, Version 2.0
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
|
19
|
+
require 'spec_helper'
|
20
|
+
|
21
|
+
describe Chef::Resource::WindowsService, :windows_only, :system_windows_service_gem_only do
|
22
|
+
|
23
|
+
include_context "using Win32::Service"
|
24
|
+
|
25
|
+
let(:username) { "service_spec_user"}
|
26
|
+
let(:qualified_username) { ".\\#{username}"}
|
27
|
+
let(:password) { "1a2b3c4X!&narf"}
|
28
|
+
|
29
|
+
let(:user_resource) {
|
30
|
+
r = Chef::Resource::User.new(username, run_context)
|
31
|
+
r.username(username)
|
32
|
+
r.password(password)
|
33
|
+
r.comment("temp spec user")
|
34
|
+
r
|
35
|
+
}
|
36
|
+
|
37
|
+
let(:global_service_file_path) {
|
38
|
+
"#{ENV['WINDIR']}\\temp\\#{File.basename(test_service[:service_file_path])}"
|
39
|
+
}
|
40
|
+
|
41
|
+
let(:service_params) {
|
42
|
+
|
43
|
+
id = "#{$$}_#{rand(1000)}"
|
44
|
+
|
45
|
+
test_service.merge( {
|
46
|
+
run_as_user: qualified_username,
|
47
|
+
run_as_password: password,
|
48
|
+
service_name: "spec_service_#{id}",
|
49
|
+
service_display_name: "windows_service spec #{id}}",
|
50
|
+
service_description: "Test service for running the windows_service functional spec.",
|
51
|
+
service_file_path: global_service_file_path,
|
52
|
+
} )
|
53
|
+
}
|
54
|
+
|
55
|
+
let(:manager) {
|
56
|
+
Chef::Application::WindowsServiceManager.new(service_params)
|
57
|
+
}
|
58
|
+
|
59
|
+
let(:service_resource) {
|
60
|
+
r = Chef::Resource::WindowsService.new(service_params[:service_name], run_context)
|
61
|
+
[:run_as_user, :run_as_password].each { |prop| r.send(prop, service_params[prop]) }
|
62
|
+
r
|
63
|
+
}
|
64
|
+
|
65
|
+
before {
|
66
|
+
user_resource.run_action(:create)
|
67
|
+
|
68
|
+
# the service executable has to be outside the current user's home
|
69
|
+
# directory in order for the logon user to execute it.
|
70
|
+
FileUtils::copy_file(test_service[:service_file_path], global_service_file_path)
|
71
|
+
|
72
|
+
# if you don't make the file executable by the service user, you'll get
|
73
|
+
# the not-very-helpful "service did not respond fast enough" error.
|
74
|
+
|
75
|
+
# #mode may break in a post-Windows 8.1 release, and have to be replaced
|
76
|
+
# with the rights stuff in the file resource.
|
77
|
+
file = Chef::Resource::File.new(global_service_file_path, run_context)
|
78
|
+
file.mode("0777")
|
79
|
+
|
80
|
+
file.run_action(:create)
|
81
|
+
|
82
|
+
manager.run(%w{--action install})
|
83
|
+
}
|
84
|
+
|
85
|
+
after {
|
86
|
+
user_resource.run_action(:remove)
|
87
|
+
manager.run(%w{--action uninstall})
|
88
|
+
File.delete(global_service_file_path)
|
89
|
+
}
|
90
|
+
|
91
|
+
describe "logon as a service" do
|
92
|
+
it "successfully runs a service as another user" do
|
93
|
+
service_resource.run_action(:start)
|
94
|
+
end
|
95
|
+
|
96
|
+
it "raises an exception when it can't grant the logon privilege"
|
97
|
+
end
|
98
|
+
end
|
@@ -163,13 +163,13 @@ describe Chef::RunLock do
|
|
163
163
|
let!(:run_lock) { Chef::RunLock.new(lockfile) }
|
164
164
|
|
165
165
|
it "creates the full path to the lockfile" do
|
166
|
-
|
167
|
-
File.
|
166
|
+
expect { run_lock.acquire }.not_to raise_error
|
167
|
+
expect(File).to exist(lockfile)
|
168
168
|
end
|
169
169
|
|
170
170
|
it "sets FD_CLOEXEC on the lockfile", :supports_cloexec => true do
|
171
171
|
run_lock.acquire
|
172
|
-
(run_lock.runlock.fcntl(Fcntl::F_GETFD, 0) & Fcntl::FD_CLOEXEC).
|
172
|
+
expect(run_lock.runlock.fcntl(Fcntl::F_GETFD, 0) & Fcntl::FD_CLOEXEC).to eq(Fcntl::FD_CLOEXEC)
|
173
173
|
end
|
174
174
|
|
175
175
|
it "allows only one chef client run per lockfile" do
|
@@ -208,7 +208,7 @@ p1 has lock
|
|
208
208
|
p1 releasing lock
|
209
209
|
p2 has lock
|
210
210
|
E
|
211
|
-
results.
|
211
|
+
expect(results).to eq(expected)
|
212
212
|
end
|
213
213
|
|
214
214
|
it "clears the lock if the process dies unexpectedly" do
|
@@ -233,12 +233,12 @@ E
|
|
233
233
|
|
234
234
|
Process.waitpid2(p2)
|
235
235
|
|
236
|
-
results.
|
236
|
+
expect(results).to match(/p2 has lock\Z/)
|
237
237
|
end
|
238
238
|
|
239
239
|
it "test returns true and acquires the lock" do
|
240
240
|
p1 = fork do
|
241
|
-
run_lock.test.
|
241
|
+
expect(run_lock.test).to eq(true)
|
242
242
|
sleep 2
|
243
243
|
exit! 1
|
244
244
|
end
|
@@ -246,7 +246,7 @@ E
|
|
246
246
|
wait_on_lock
|
247
247
|
|
248
248
|
p2 = fork do
|
249
|
-
run_lock.test.
|
249
|
+
expect(run_lock.test).to eq(false)
|
250
250
|
exit! 0
|
251
251
|
end
|
252
252
|
|
@@ -263,7 +263,7 @@ E
|
|
263
263
|
|
264
264
|
wait_on_lock
|
265
265
|
|
266
|
-
run_lock.test.
|
266
|
+
expect(run_lock.test).to eq(false)
|
267
267
|
Process.waitpid2(p1)
|
268
268
|
end
|
269
269
|
|
@@ -277,7 +277,7 @@ E
|
|
277
277
|
|
278
278
|
wait_on_lock
|
279
279
|
sleep 0.5 # Possible race condition on Solaris which pid is observed as 0
|
280
|
-
File.read(lockfile).
|
280
|
+
expect(File.read(lockfile)).to eq(p1.to_s)
|
281
281
|
|
282
282
|
Process.waitpid2(p1)
|
283
283
|
end
|
@@ -105,7 +105,7 @@ describe Shell do
|
|
105
105
|
|
106
106
|
it "boots correctly with -lauto" do
|
107
107
|
output, exitstatus = run_chef_shell_with("-lauto")
|
108
|
-
output.
|
108
|
+
expect(output).to include("done")
|
109
109
|
expect(exitstatus).to eq(0)
|
110
110
|
end
|
111
111
|
|
@@ -115,7 +115,7 @@ describe Shell do
|
|
115
115
|
keyboard.puts(show_log_level_code)
|
116
116
|
read_until(out, show_log_level_code)
|
117
117
|
end
|
118
|
-
output.
|
118
|
+
expect(output).to include("===fatal===")
|
119
119
|
expect(exitstatus).to eq(0)
|
120
120
|
end
|
121
121
|
|
@@ -125,7 +125,7 @@ describe Shell do
|
|
125
125
|
keyboard.puts(show_recipes_code)
|
126
126
|
read_until(out, show_recipes_code)
|
127
127
|
end
|
128
|
-
output.
|
128
|
+
expect(output).to include(%q{["override::foo", "override::bar"]})
|
129
129
|
expect(exitstatus).to eq(0)
|
130
130
|
end
|
131
131
|
end
|
@@ -26,39 +26,39 @@ describe TinyServer::API do
|
|
26
26
|
end
|
27
27
|
|
28
28
|
it "is a Singleton" do
|
29
|
-
|
29
|
+
expect {TinyServer::API.new}.to raise_error
|
30
30
|
end
|
31
31
|
|
32
32
|
it "clears the router" do
|
33
33
|
@api.get('/blargh', 200, "blargh")
|
34
34
|
@api.clear
|
35
|
-
@api.routes["GET"].
|
35
|
+
expect(@api.routes["GET"]).to be_empty
|
36
36
|
end
|
37
37
|
|
38
38
|
it "creates a route for a GET request" do
|
39
39
|
@api.get('/foo/bar', 200, 'hello foobar')
|
40
40
|
# WEBrick gives you the full URI with host, Thin only gave the part after scheme+host+port
|
41
41
|
response = @api.call("REQUEST_METHOD" => "GET", "REQUEST_URI" => 'http://localhost:1974/foo/bar')
|
42
|
-
response.
|
42
|
+
expect(response).to eq([200, {'Content-Type' => 'application/json'}, [ 'hello foobar' ]])
|
43
43
|
end
|
44
44
|
|
45
45
|
it "creates a route for a request with a block" do
|
46
46
|
block_called = false
|
47
47
|
@api.get('/bar/baz', 200) { block_called = true; 'hello barbaz' }
|
48
48
|
response = @api.call("REQUEST_METHOD" => "GET", "REQUEST_URI" => 'http://localhost:1974/bar/baz')
|
49
|
-
response.
|
50
|
-
block_called.
|
49
|
+
expect(response).to eq([200, {'Content-Type' => 'application/json'}, [ 'hello barbaz' ]])
|
50
|
+
expect(block_called).to be_truthy
|
51
51
|
end
|
52
52
|
|
53
53
|
it "returns debugging info for 404s" do
|
54
54
|
response = @api.call("REQUEST_METHOD" => "GET", "REQUEST_URI" => '/no_such_thing')
|
55
|
-
response[0].
|
56
|
-
response[1].
|
57
|
-
response[2].
|
55
|
+
expect(response[0]).to eq(404)
|
56
|
+
expect(response[1]).to eq({'Content-Type' => 'application/json'})
|
57
|
+
expect(response[2]).to be_a_kind_of(Array)
|
58
58
|
response_obj = Chef::JSONCompat.from_json(response[2].first)
|
59
|
-
response_obj["message"].
|
60
|
-
response_obj["available_routes"].
|
61
|
-
response_obj["request"].
|
59
|
+
expect(response_obj["message"]).to eq("no data matches the request for /no_such_thing")
|
60
|
+
expect(response_obj["available_routes"]).to eq({"GET"=>[], "PUT"=>[], "POST"=>[], "DELETE"=>[]})
|
61
|
+
expect(response_obj["request"]).to eq({"REQUEST_METHOD"=>"GET", "REQUEST_URI"=>"/no_such_thing"})
|
62
62
|
end
|
63
63
|
|
64
64
|
end
|
@@ -71,7 +71,7 @@ describe TinyServer::Manager do
|
|
71
71
|
TinyServer::API.instance.get("/index", 200, "[\"hello\"]")
|
72
72
|
|
73
73
|
rest = Chef::REST.new('http://localhost:9000', false, false)
|
74
|
-
rest.get_rest("index").
|
74
|
+
expect(rest.get_rest("index")).to eq(["hello"])
|
75
75
|
|
76
76
|
@server.stop
|
77
77
|
end
|
@@ -31,7 +31,7 @@ describe Chef::Util::PathHelper, "escape_glob" do
|
|
31
31
|
end
|
32
32
|
|
33
33
|
pattern = File.join(PathHelper.escape_glob(dir), "*")
|
34
|
-
Dir.glob(pattern).map { |x| File.basename(x) }.
|
34
|
+
expect(Dir.glob(pattern).map { |x| File.basename(x) }).to match_array(files)
|
35
35
|
end
|
36
36
|
end
|
37
37
|
end
|
@@ -28,7 +28,7 @@ describe "Chef Versions" do
|
|
28
28
|
|
29
29
|
binaries.each do |binary|
|
30
30
|
it "#{binary} version should be sane" do
|
31
|
-
shell_out!("ruby #{File.join("bin", binary)} -v", :cwd => chef_dir).stdout.chomp.
|
31
|
+
expect(shell_out!("ruby #{File.join("bin", binary)} -v", :cwd => chef_dir).stdout.chomp).to include("Chef: #{Chef::VERSION}")
|
32
32
|
end
|
33
33
|
end
|
34
34
|
|
@@ -34,7 +34,7 @@ describe Chef::Resource::RegistryKey, :unix_only do
|
|
34
34
|
it "throws an exception because you don't have a windows registry (derp)" do
|
35
35
|
@resource.key("HKCU\\Software\\Opscode")
|
36
36
|
@resource.values([{:name=>"Color", :type=>:string, :data=>"Orange"}])
|
37
|
-
|
37
|
+
expect{@resource.run_action(:create)}.to raise_error(Chef::Exceptions::Win32NotWindows)
|
38
38
|
end
|
39
39
|
end
|
40
40
|
end
|
@@ -84,197 +84,197 @@ describe 'Chef::Win32::Registry', :windows_only do
|
|
84
84
|
|
85
85
|
describe "hive_exists?" do
|
86
86
|
it "returns true if the hive exists" do
|
87
|
-
@registry.hive_exists?("HKCU\\Software\\Root").
|
87
|
+
expect(@registry.hive_exists?("HKCU\\Software\\Root")).to eq(true)
|
88
88
|
end
|
89
89
|
|
90
90
|
it "returns false if the hive does not exist" do
|
91
|
-
hive = @registry.hive_exists?("LYRU\\Software\\Root").
|
91
|
+
hive = expect(@registry.hive_exists?("LYRU\\Software\\Root")).to eq(false)
|
92
92
|
end
|
93
93
|
end
|
94
94
|
|
95
95
|
describe "key_exists?" do
|
96
96
|
it "returns true if the key path exists" do
|
97
|
-
@registry.key_exists?("HKCU\\Software\\Root\\Branch\\Flower").
|
97
|
+
expect(@registry.key_exists?("HKCU\\Software\\Root\\Branch\\Flower")).to eq(true)
|
98
98
|
end
|
99
99
|
|
100
100
|
it "returns false if the key path does not exist" do
|
101
|
-
@registry.key_exists?("HKCU\\Software\\Branch\\Flower").
|
101
|
+
expect(@registry.key_exists?("HKCU\\Software\\Branch\\Flower")).to eq(false)
|
102
102
|
end
|
103
103
|
|
104
104
|
it "throws an exception if the hive does not exist" do
|
105
|
-
|
105
|
+
expect {@registry.key_exists?("JKLM\\Software\\Branch\\Flower")}.to raise_error(Chef::Exceptions::Win32RegHiveMissing)
|
106
106
|
end
|
107
107
|
end
|
108
108
|
|
109
109
|
describe "key_exists!" do
|
110
110
|
it "returns true if the key path exists" do
|
111
|
-
@registry.key_exists!("HKCU\\Software\\Root\\Branch\\Flower").
|
111
|
+
expect(@registry.key_exists!("HKCU\\Software\\Root\\Branch\\Flower")).to eq(true)
|
112
112
|
end
|
113
113
|
|
114
114
|
it "throws an exception if the key path does not exist" do
|
115
|
-
|
115
|
+
expect {@registry.key_exists!("HKCU\\Software\\Branch\\Flower")}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
|
116
116
|
end
|
117
117
|
|
118
118
|
it "throws an exception if the hive does not exist" do
|
119
|
-
|
119
|
+
expect {@registry.key_exists!("JKLM\\Software\\Branch\\Flower")}.to raise_error(Chef::Exceptions::Win32RegHiveMissing)
|
120
120
|
end
|
121
121
|
end
|
122
122
|
|
123
123
|
describe "value_exists?" do
|
124
124
|
it "throws an exception if the hive does not exist" do
|
125
|
-
|
125
|
+
expect {@registry.value_exists?("JKLM\\Software\\Branch\\Flower", {:name=>"Petals"})}.to raise_error(Chef::Exceptions::Win32RegHiveMissing)
|
126
126
|
end
|
127
127
|
it "throws an exception if the key does not exist" do
|
128
|
-
|
128
|
+
expect {@registry.value_exists?("HKCU\\Software\\Branch\\Flower", {:name=>"Petals"})}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
|
129
129
|
end
|
130
130
|
it "returns true if the value exists" do
|
131
|
-
@registry.value_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals"}).
|
131
|
+
expect(@registry.value_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals"})).to eq(true)
|
132
132
|
end
|
133
133
|
it "returns false if the value does not exist" do
|
134
|
-
@registry.value_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"FOOBAR"}).
|
134
|
+
expect(@registry.value_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"FOOBAR"})).to eq(false)
|
135
135
|
end
|
136
136
|
end
|
137
137
|
|
138
138
|
describe "value_exists!" do
|
139
139
|
it "throws an exception if the hive does not exist" do
|
140
|
-
|
140
|
+
expect {@registry.value_exists!("JKLM\\Software\\Branch\\Flower", {:name=>"Petals"})}.to raise_error(Chef::Exceptions::Win32RegHiveMissing)
|
141
141
|
end
|
142
142
|
it "throws an exception if the key does not exist" do
|
143
|
-
|
143
|
+
expect {@registry.value_exists!("HKCU\\Software\\Branch\\Flower", {:name=>"Petals"})}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
|
144
144
|
end
|
145
145
|
it "returns true if the value exists" do
|
146
|
-
@registry.value_exists!("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals"}).
|
146
|
+
expect(@registry.value_exists!("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals"})).to eq(true)
|
147
147
|
end
|
148
148
|
it "throws an exception if the value does not exist" do
|
149
|
-
|
149
|
+
expect {@registry.value_exists!("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"FOOBAR"})}.to raise_error(Chef::Exceptions::Win32RegValueMissing)
|
150
150
|
end
|
151
151
|
end
|
152
152
|
|
153
153
|
describe "data_exists?" do
|
154
154
|
it "throws an exception if the hive does not exist" do
|
155
|
-
|
155
|
+
expect {@registry.data_exists?("JKLM\\Software\\Branch\\Flower", {:name=>"Petals", :type=>:multi_string, :data=>["Pink", "Delicate"]})}.to raise_error(Chef::Exceptions::Win32RegHiveMissing)
|
156
156
|
end
|
157
157
|
it "throws an exception if the key does not exist" do
|
158
|
-
|
158
|
+
expect {@registry.data_exists?("HKCU\\Software\\Branch\\Flower", {:name=>"Petals", :type=>:multi_string, :data=>["Pink", "Delicate"]})}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
|
159
159
|
end
|
160
160
|
it "returns true if all the data matches" do
|
161
|
-
@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:multi_string, :data=>["Pink", "Delicate"]}).
|
161
|
+
expect(@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:multi_string, :data=>["Pink", "Delicate"]})).to eq(true)
|
162
162
|
end
|
163
163
|
it "returns false if the name does not exist" do
|
164
|
-
@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"slateP", :type=>:multi_string, :data=>["Pink", "Delicate"]}).
|
164
|
+
expect(@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"slateP", :type=>:multi_string, :data=>["Pink", "Delicate"]})).to eq(false)
|
165
165
|
end
|
166
166
|
it "returns false if the types do not match" do
|
167
|
-
@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:string, :data=>"Pink"}).
|
167
|
+
expect(@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:string, :data=>"Pink"})).to eq(false)
|
168
168
|
end
|
169
169
|
it "returns false if the data does not match" do
|
170
|
-
@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:multi_string, :data=>["Mauve", "Delicate"]}).
|
170
|
+
expect(@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:multi_string, :data=>["Mauve", "Delicate"]})).to eq(false)
|
171
171
|
end
|
172
172
|
end
|
173
173
|
|
174
174
|
describe "data_exists!" do
|
175
175
|
it "throws an exception if the hive does not exist" do
|
176
|
-
|
176
|
+
expect {@registry.data_exists!("JKLM\\Software\\Branch\\Flower", {:name=>"Petals", :type=>:multi_string, :data=>["Pink", "Delicate"]})}.to raise_error(Chef::Exceptions::Win32RegHiveMissing)
|
177
177
|
end
|
178
178
|
it "throws an exception if the key does not exist" do
|
179
|
-
|
179
|
+
expect {@registry.data_exists!("HKCU\\Software\\Branch\\Flower", {:name=>"Petals", :type=>:multi_string, :data=>["Pink", "Delicate"]})}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
|
180
180
|
end
|
181
181
|
it "returns true if all the data matches" do
|
182
|
-
@registry.data_exists!("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:multi_string, :data=>["Pink", "Delicate"]}).
|
182
|
+
expect(@registry.data_exists!("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:multi_string, :data=>["Pink", "Delicate"]})).to eq(true)
|
183
183
|
end
|
184
184
|
it "throws an exception if the name does not exist" do
|
185
|
-
|
185
|
+
expect {@registry.data_exists!("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"slateP", :type=>:multi_string, :data=>["Pink", "Delicate"]})}.to raise_error(Chef::Exceptions::Win32RegDataMissing)
|
186
186
|
end
|
187
187
|
it "throws an exception if the types do not match" do
|
188
|
-
|
188
|
+
expect {@registry.data_exists!("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:string, :data=>"Pink"})}.to raise_error(Chef::Exceptions::Win32RegDataMissing)
|
189
189
|
end
|
190
190
|
it "throws an exception if the data does not match" do
|
191
|
-
|
191
|
+
expect {@registry.data_exists!("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:multi_string, :data=>["Mauve", "Delicate"]})}.to raise_error(Chef::Exceptions::Win32RegDataMissing)
|
192
192
|
end
|
193
193
|
end
|
194
194
|
|
195
195
|
describe "get_values" do
|
196
196
|
it "returns all values for a key if it exists" do
|
197
197
|
values = @registry.get_values("HKCU\\Software\\Root")
|
198
|
-
values.
|
199
|
-
values.
|
200
|
-
{:name=>"Roots", :type=>:multi_string, :data=>["strong roots", "healthy tree"]}]
|
198
|
+
expect(values).to be_an_instance_of Array
|
199
|
+
expect(values).to eq([{:name=>"RootType1", :type=>:string, :data=>"fibrous"},
|
200
|
+
{:name=>"Roots", :type=>:multi_string, :data=>["strong roots", "healthy tree"]}])
|
201
201
|
end
|
202
202
|
|
203
203
|
it "throws an exception if the key does not exist" do
|
204
|
-
|
204
|
+
expect {@registry.get_values("HKCU\\Software\\Branch\\Flower")}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
|
205
205
|
end
|
206
206
|
|
207
207
|
it "throws an exception if the hive does not exist" do
|
208
|
-
|
208
|
+
expect {@registry.get_values("JKLM\\Software\\Branch\\Flower")}.to raise_error(Chef::Exceptions::Win32RegHiveMissing)
|
209
209
|
end
|
210
210
|
end
|
211
211
|
|
212
212
|
describe "set_value" do
|
213
213
|
it "updates a value if the key, value exist and type matches and value different" do
|
214
|
-
@registry.set_value("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:multi_string, :data=>["Yellow", "Changed Color"]}).
|
215
|
-
@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:multi_string, :data=>["Yellow", "Changed Color"]}).
|
214
|
+
expect(@registry.set_value("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:multi_string, :data=>["Yellow", "Changed Color"]})).to eq(true)
|
215
|
+
expect(@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:multi_string, :data=>["Yellow", "Changed Color"]})).to eq(true)
|
216
216
|
end
|
217
217
|
|
218
218
|
it "updates a value if the type does match and the values are different" do
|
219
|
-
@registry.set_value("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:string, :data=>"Yellow"}).
|
220
|
-
@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:string, :data=>"Yellow"}).
|
221
|
-
@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:multi_string, :data=>["Yellow", "Changed Color"]}).
|
219
|
+
expect(@registry.set_value("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:string, :data=>"Yellow"})).to eq(true)
|
220
|
+
expect(@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:string, :data=>"Yellow"})).to eq(true)
|
221
|
+
expect(@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:multi_string, :data=>["Yellow", "Changed Color"]})).to eq(false)
|
222
222
|
end
|
223
223
|
|
224
224
|
it "creates a value if key exists and value does not" do
|
225
|
-
@registry.set_value("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Stamen", :type=>:multi_string, :data=>["Yellow", "Changed Color"]}).
|
226
|
-
@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Stamen", :type=>:multi_string, :data=>["Yellow", "Changed Color"]}).
|
225
|
+
expect(@registry.set_value("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Stamen", :type=>:multi_string, :data=>["Yellow", "Changed Color"]})).to eq(true)
|
226
|
+
expect(@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Stamen", :type=>:multi_string, :data=>["Yellow", "Changed Color"]})).to eq(true)
|
227
227
|
end
|
228
228
|
|
229
229
|
it "does nothing if data,type and name parameters for the value are same" do
|
230
|
-
@registry.set_value("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Stamen", :type=>:multi_string, :data=>["Yellow", "Changed Color"]}).
|
231
|
-
@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Stamen", :type=>:multi_string, :data=>["Yellow", "Changed Color"]}).
|
230
|
+
expect(@registry.set_value("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Stamen", :type=>:multi_string, :data=>["Yellow", "Changed Color"]})).to eq(false)
|
231
|
+
expect(@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"Stamen", :type=>:multi_string, :data=>["Yellow", "Changed Color"]})).to eq(true)
|
232
232
|
end
|
233
233
|
|
234
234
|
it "throws an exception if the key does not exist" do
|
235
|
-
|
235
|
+
expect {@registry.set_value("HKCU\\Software\\Branch\\Flower", {:name=>"Petals", :type=>:multi_string, :data=>["Yellow", "Changed Color"]})}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
|
236
236
|
end
|
237
237
|
|
238
238
|
it "throws an exception if the hive does not exist" do
|
239
|
-
|
239
|
+
expect {@registry.set_value("JKLM\\Software\\Root\\Branch\\Flower", {:name=>"Petals", :type=>:multi_string, :data=>["Yellow", "Changed Color"]})}.to raise_error(Chef::Exceptions::Win32RegHiveMissing)
|
240
240
|
end
|
241
241
|
|
242
242
|
# we are validating that the data gets .to_i called on it when type is a :dword
|
243
243
|
|
244
244
|
it "casts an integer string given as a dword into an integer" do
|
245
|
-
@registry.set_value("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"ShouldBe32767", :type=>:dword, :data=>"32767"}).
|
246
|
-
@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"ShouldBe32767", :type=>:dword, :data=>32767}).
|
245
|
+
expect(@registry.set_value("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"ShouldBe32767", :type=>:dword, :data=>"32767"})).to eq(true)
|
246
|
+
expect(@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"ShouldBe32767", :type=>:dword, :data=>32767})).to eq(true)
|
247
247
|
end
|
248
248
|
|
249
249
|
it "casts a nonsense string given as a dword into zero" do
|
250
|
-
@registry.set_value("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"ShouldBeZero", :type=>:dword, :data=>"whatdoesthisdo"}).
|
251
|
-
@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"ShouldBeZero", :type=>:dword, :data=>0}).
|
250
|
+
expect(@registry.set_value("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"ShouldBeZero", :type=>:dword, :data=>"whatdoesthisdo"})).to eq(true)
|
251
|
+
expect(@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"ShouldBeZero", :type=>:dword, :data=>0})).to eq(true)
|
252
252
|
end
|
253
253
|
|
254
254
|
it "throws an exception when trying to cast an array to an int for a dword" do
|
255
|
-
|
255
|
+
expect {@registry.set_value("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"ShouldThrow", :type=>:dword, :data=>["one","two"]})}.to raise_error
|
256
256
|
end
|
257
257
|
|
258
258
|
# we are validating that the data gets .to_s called on it when type is a :string
|
259
259
|
|
260
260
|
it "stores the string representation of an array into a string if you pass it an array" do
|
261
|
-
@registry.set_value("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"ShouldBePainful", :type=>:string, :data=>["one","two"]}).
|
262
|
-
@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"ShouldBePainful", :type=>:string, :data=>'["one", "two"]'}).
|
261
|
+
expect(@registry.set_value("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"ShouldBePainful", :type=>:string, :data=>["one","two"]})).to eq(true)
|
262
|
+
expect(@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"ShouldBePainful", :type=>:string, :data=>'["one", "two"]'})).to eq(true)
|
263
263
|
end
|
264
264
|
|
265
265
|
it "stores the string representation of a number into a string if you pass it an number" do
|
266
|
-
@registry.set_value("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"ShouldBe65535", :type=>:string, :data=>65535}).
|
267
|
-
@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"ShouldBe65535", :type=>:string, :data=>"65535"}).
|
266
|
+
expect(@registry.set_value("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"ShouldBe65535", :type=>:string, :data=>65535})).to eq(true)
|
267
|
+
expect(@registry.data_exists?("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"ShouldBe65535", :type=>:string, :data=>"65535"})).to eq(true)
|
268
268
|
end
|
269
269
|
|
270
270
|
# we are validating that the data gets .to_a called on it when type is a :multi_string
|
271
271
|
|
272
272
|
it "throws an exception when a multi-string is passed a number" do
|
273
|
-
|
273
|
+
expect {@registry.set_value("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"ShouldThrow", :type=>:multi_string, :data=>65535})}.to raise_error
|
274
274
|
end
|
275
275
|
|
276
276
|
it "throws an exception when a multi-string is passed a string" do
|
277
|
-
|
277
|
+
expect {@registry.set_value("HKCU\\Software\\Root\\Branch\\Flower", {:name=>"ShouldBeWat", :type=>:multi_string, :data=>"foo"})}.to raise_error
|
278
278
|
end
|
279
279
|
end
|
280
280
|
|
@@ -289,22 +289,22 @@ describe 'Chef::Win32::Registry', :windows_only do
|
|
289
289
|
end
|
290
290
|
|
291
291
|
it "throws an exception if the path has missing keys but recursive set to false" do
|
292
|
-
|
293
|
-
@registry.key_exists?("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker").
|
292
|
+
expect {@registry.create_key("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker", false)}.to raise_error(Chef::Exceptions::Win32RegNoRecursive)
|
293
|
+
expect(@registry.key_exists?("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker")).to eq(false)
|
294
294
|
end
|
295
295
|
|
296
296
|
it "creates the key_path if the keys were missing but recursive was set to true" do
|
297
|
-
@registry.create_key("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker", true).
|
298
|
-
@registry.key_exists?("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker").
|
297
|
+
expect(@registry.create_key("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker", true)).to eq(true)
|
298
|
+
expect(@registry.key_exists?("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker")).to eq(true)
|
299
299
|
end
|
300
300
|
|
301
301
|
it "does nothing if the key already exists" do
|
302
|
-
@registry.create_key("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker", false).
|
303
|
-
@registry.key_exists?("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker").
|
302
|
+
expect(@registry.create_key("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker", false)).to eq(true)
|
303
|
+
expect(@registry.key_exists?("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker")).to eq(true)
|
304
304
|
end
|
305
305
|
|
306
306
|
it "throws an exception of the hive does not exist" do
|
307
|
-
|
307
|
+
expect {@registry.create_key("JKLM\\Software\\Root\\Trunk\\Peck\\Woodpecker", false)}.to raise_error(Chef::Exceptions::Win32RegHiveMissing)
|
308
308
|
end
|
309
309
|
end
|
310
310
|
|
@@ -317,21 +317,21 @@ describe 'Chef::Win32::Registry', :windows_only do
|
|
317
317
|
end
|
318
318
|
|
319
319
|
it "deletes values if the value exists" do
|
320
|
-
@registry.delete_value("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker", {:name=>"Peter", :type=>:string, :data=>"Tiny"}).
|
321
|
-
@registry.value_exists?("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker", {:name=>"Peter", :type=>:string, :data=>"Tiny"}).
|
320
|
+
expect(@registry.delete_value("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker", {:name=>"Peter", :type=>:string, :data=>"Tiny"})).to eq(true)
|
321
|
+
expect(@registry.value_exists?("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker", {:name=>"Peter", :type=>:string, :data=>"Tiny"})).to eq(false)
|
322
322
|
end
|
323
323
|
|
324
324
|
it "does nothing if value does not exist" do
|
325
|
-
@registry.delete_value("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker", {:name=>"Peter", :type=>:string, :data=>"Tiny"}).
|
326
|
-
@registry.value_exists?("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker", {:name=>"Peter", :type=>:string, :data=>"Tiny"}).
|
325
|
+
expect(@registry.delete_value("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker", {:name=>"Peter", :type=>:string, :data=>"Tiny"})).to eq(true)
|
326
|
+
expect(@registry.value_exists?("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker", {:name=>"Peter", :type=>:string, :data=>"Tiny"})).to eq(false)
|
327
327
|
end
|
328
328
|
|
329
329
|
it "throws an exception if the key does not exist?" do
|
330
|
-
|
330
|
+
expect {@registry.delete_value("HKCU\\Software\\Trunk\\Peck\\Woodpecker", {:name=>"Peter", :type=>:string, :data=>"Tiny"})}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
|
331
331
|
end
|
332
332
|
|
333
333
|
it "throws an exception if the hive does not exist" do
|
334
|
-
|
334
|
+
expect {@registry.delete_value("JKLM\\Software\\Root\\Trunk\\Peck\\Woodpecker", {:name=>"Peter", :type=>:string, :data=>"Tiny"})}.to raise_error(Chef::Exceptions::Win32RegHiveMissing)
|
335
335
|
end
|
336
336
|
end
|
337
337
|
|
@@ -348,27 +348,27 @@ describe 'Chef::Win32::Registry', :windows_only do
|
|
348
348
|
end
|
349
349
|
|
350
350
|
it "deletes a key if it has no subkeys" do
|
351
|
-
@registry.delete_key("HKCU\\Software\\Root\\Branch\\Fruit", false).
|
352
|
-
@registry.key_exists?("HKCU\\Software\\Root\\Branch\\Fruit").
|
351
|
+
expect(@registry.delete_key("HKCU\\Software\\Root\\Branch\\Fruit", false)).to eq(true)
|
352
|
+
expect(@registry.key_exists?("HKCU\\Software\\Root\\Branch\\Fruit")).to eq(false)
|
353
353
|
end
|
354
354
|
|
355
355
|
it "throws an exception if key to delete has subkeys and recursive is false" do
|
356
|
-
|
357
|
-
@registry.key_exists?("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker").
|
356
|
+
expect { @registry.delete_key("HKCU\\Software\\Root\\Trunk", false) }.to raise_error(Chef::Exceptions::Win32RegNoRecursive)
|
357
|
+
expect(@registry.key_exists?("HKCU\\Software\\Root\\Trunk\\Peck\\Woodpecker")).to eq(true)
|
358
358
|
end
|
359
359
|
|
360
360
|
it "deletes a key if it has subkeys and recursive true" do
|
361
|
-
@registry.delete_key("HKCU\\Software\\Root\\Trunk", true).
|
362
|
-
@registry.key_exists?("HKCU\\Software\\Root\\Trunk").
|
361
|
+
expect(@registry.delete_key("HKCU\\Software\\Root\\Trunk", true)).to eq(true)
|
362
|
+
expect(@registry.key_exists?("HKCU\\Software\\Root\\Trunk")).to eq(false)
|
363
363
|
end
|
364
364
|
|
365
365
|
it "does nothing if the key does not exist" do
|
366
|
-
@registry.delete_key("HKCU\\Software\\Root\\Trunk", true).
|
367
|
-
@registry.key_exists?("HKCU\\Software\\Root\\Trunk").
|
366
|
+
expect(@registry.delete_key("HKCU\\Software\\Root\\Trunk", true)).to eq(true)
|
367
|
+
expect(@registry.key_exists?("HKCU\\Software\\Root\\Trunk")).to eq(false)
|
368
368
|
end
|
369
369
|
|
370
370
|
it "throws an exception if the hive does not exist" do
|
371
|
-
|
371
|
+
expect {@registry.delete_key("JKLM\\Software\\Root\\Branch\\Flower", false)}.to raise_error(Chef::Exceptions::Win32RegHiveMissing)
|
372
372
|
end
|
373
373
|
end
|
374
374
|
|
@@ -384,29 +384,29 @@ describe 'Chef::Win32::Registry', :windows_only do
|
|
384
384
|
end
|
385
385
|
|
386
386
|
it "throws an exception if the hive was missing" do
|
387
|
-
|
387
|
+
expect {@registry.has_subkeys?("LMNO\\Software\\Root")}.to raise_error(Chef::Exceptions::Win32RegHiveMissing)
|
388
388
|
end
|
389
389
|
|
390
390
|
it "throws an exception if the key is missing" do
|
391
|
-
|
391
|
+
expect {@registry.has_subkeys?("HKCU\\Software\\Root\\Trunk\\Red")}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
|
392
392
|
end
|
393
393
|
|
394
394
|
it "returns true if the key has subkeys" do
|
395
|
-
@registry.has_subkeys?("HKCU\\Software\\Root").
|
395
|
+
expect(@registry.has_subkeys?("HKCU\\Software\\Root")).to eq(true)
|
396
396
|
end
|
397
397
|
|
398
398
|
it "returns false if the key has no subkeys" do
|
399
399
|
::Win32::Registry::HKEY_CURRENT_USER.create "Software\\Root\\Trunk\\Red"
|
400
|
-
@registry.has_subkeys?("HKCU\\Software\\Root\\Trunk\\Red").
|
400
|
+
expect(@registry.has_subkeys?("HKCU\\Software\\Root\\Trunk\\Red")).to eq(false)
|
401
401
|
end
|
402
402
|
end
|
403
403
|
|
404
404
|
describe "get_subkeys" do
|
405
405
|
it "throws an exception if the key is missing" do
|
406
|
-
|
406
|
+
expect {@registry.get_subkeys("HKCU\\Software\\Trunk\\Red")}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
|
407
407
|
end
|
408
408
|
it "throws an exception if the hive does not exist" do
|
409
|
-
|
409
|
+
expect {@registry.get_subkeys("JKLM\\Software\\Root")}.to raise_error(Chef::Exceptions::Win32RegHiveMissing)
|
410
410
|
end
|
411
411
|
it "returns the array of subkeys for a given key" do
|
412
412
|
subkeys = @registry.get_subkeys("HKCU\\Software\\Root")
|
@@ -414,7 +414,7 @@ describe 'Chef::Win32::Registry', :windows_only do
|
|
414
414
|
::Win32::Registry::HKEY_CURRENT_USER.open("Software\\Root", Win32::Registry::KEY_ALL_ACCESS) do |reg|
|
415
415
|
reg.each_key{|name| reg_subkeys << name}
|
416
416
|
end
|
417
|
-
reg_subkeys.
|
417
|
+
expect(reg_subkeys).to eq(subkeys)
|
418
418
|
end
|
419
419
|
end
|
420
420
|
|
@@ -431,37 +431,37 @@ describe 'Chef::Win32::Registry', :windows_only do
|
|
431
431
|
|
432
432
|
context "registry constructor" do
|
433
433
|
it "throws an exception if requested architecture is 64bit but running on 32bit" do
|
434
|
-
|
434
|
+
expect {Chef::Win32::Registry.new(@run_context, :x86_64)}.to raise_error(Chef::Exceptions::Win32RegArchitectureIncorrect)
|
435
435
|
end
|
436
436
|
|
437
437
|
it "can correctly set the requested architecture to 32-bit" do
|
438
438
|
@r = Chef::Win32::Registry.new(@run_context, :i386)
|
439
|
-
@r.architecture.
|
440
|
-
@r.registry_system_architecture.
|
439
|
+
expect(@r.architecture).to eq(:i386)
|
440
|
+
expect(@r.registry_system_architecture).to eq(0x0200)
|
441
441
|
end
|
442
442
|
|
443
443
|
it "can correctly set the requested architecture to :machine" do
|
444
444
|
@r = Chef::Win32::Registry.new(@run_context, :machine)
|
445
|
-
@r.architecture.
|
446
|
-
@r.registry_system_architecture.
|
445
|
+
expect(@r.architecture).to eq(:machine)
|
446
|
+
expect(@r.registry_system_architecture).to eq(0x0200)
|
447
447
|
end
|
448
448
|
end
|
449
449
|
|
450
450
|
context "architecture setter" do
|
451
451
|
it "throws an exception if requested architecture is 64bit but running on 32bit" do
|
452
|
-
|
452
|
+
expect {@registry.architecture = :x86_64}.to raise_error(Chef::Exceptions::Win32RegArchitectureIncorrect)
|
453
453
|
end
|
454
454
|
|
455
455
|
it "sets the requested architecture to :machine if passed :machine" do
|
456
456
|
@registry.architecture = :machine
|
457
|
-
@registry.architecture.
|
458
|
-
@registry.registry_system_architecture.
|
457
|
+
expect(@registry.architecture).to eq(:machine)
|
458
|
+
expect(@registry.registry_system_architecture).to eq(0x0200)
|
459
459
|
end
|
460
460
|
|
461
461
|
it "sets the requested architecture to 32-bit if passed i386 as a string" do
|
462
462
|
@registry.architecture = :i386
|
463
|
-
@registry.architecture.
|
464
|
-
@registry.registry_system_architecture.
|
463
|
+
expect(@registry.architecture).to eq(:i386)
|
464
|
+
expect(@registry.registry_system_architecture).to eq(0x0200)
|
465
465
|
end
|
466
466
|
end
|
467
467
|
end
|
@@ -479,40 +479,40 @@ describe 'Chef::Win32::Registry', :windows_only do
|
|
479
479
|
context "registry constructor" do
|
480
480
|
it "can correctly set the requested architecture to 32-bit" do
|
481
481
|
@r = Chef::Win32::Registry.new(@run_context, :i386)
|
482
|
-
@r.architecture.
|
483
|
-
@r.registry_system_architecture.
|
482
|
+
expect(@r.architecture).to eq(:i386)
|
483
|
+
expect(@r.registry_system_architecture).to eq(0x0200)
|
484
484
|
end
|
485
485
|
|
486
486
|
it "can correctly set the requested architecture to 64-bit" do
|
487
487
|
@r = Chef::Win32::Registry.new(@run_context, :x86_64)
|
488
|
-
@r.architecture.
|
489
|
-
@r.registry_system_architecture.
|
488
|
+
expect(@r.architecture).to eq(:x86_64)
|
489
|
+
expect(@r.registry_system_architecture).to eq(0x0100)
|
490
490
|
end
|
491
491
|
|
492
492
|
it "can correctly set the requested architecture to :machine" do
|
493
493
|
@r = Chef::Win32::Registry.new(@run_context, :machine)
|
494
|
-
@r.architecture.
|
495
|
-
@r.registry_system_architecture.
|
494
|
+
expect(@r.architecture).to eq(:machine)
|
495
|
+
expect(@r.registry_system_architecture).to eq(0x0100)
|
496
496
|
end
|
497
497
|
end
|
498
498
|
|
499
499
|
context "architecture setter" do
|
500
500
|
it "sets the requested architecture to 64-bit if passed 64-bit" do
|
501
501
|
@registry.architecture = :x86_64
|
502
|
-
@registry.architecture.
|
503
|
-
@registry.registry_system_architecture.
|
502
|
+
expect(@registry.architecture).to eq(:x86_64)
|
503
|
+
expect(@registry.registry_system_architecture).to eq(0x0100)
|
504
504
|
end
|
505
505
|
|
506
506
|
it "sets the requested architecture to :machine if passed :machine" do
|
507
507
|
@registry.architecture = :machine
|
508
|
-
@registry.architecture.
|
509
|
-
@registry.registry_system_architecture.
|
508
|
+
expect(@registry.architecture).to eq(:machine)
|
509
|
+
expect(@registry.registry_system_architecture).to eq(0x0100)
|
510
510
|
end
|
511
511
|
|
512
512
|
it "sets the requested architecture to 32-bit if passed 32-bit" do
|
513
513
|
@registry.architecture = :i386
|
514
|
-
@registry.architecture.
|
515
|
-
@registry.registry_system_architecture.
|
514
|
+
expect(@registry.architecture).to eq(:i386)
|
515
|
+
expect(@registry.registry_system_architecture).to eq(0x0200)
|
516
516
|
end
|
517
517
|
end
|
518
518
|
end
|
@@ -555,75 +555,75 @@ describe 'Chef::Win32::Registry', :windows_only do
|
|
555
555
|
describe "key_exists?" do
|
556
556
|
it "does not find 64-bit keys in the 32-bit registry" do
|
557
557
|
@registry.architecture=:i386
|
558
|
-
@registry.key_exists?("HKLM\\Software\\Root\\Mauve").
|
558
|
+
expect(@registry.key_exists?("HKLM\\Software\\Root\\Mauve")).to eq(false)
|
559
559
|
end
|
560
560
|
it "finds 32-bit keys in the 32-bit registry" do
|
561
561
|
@registry.architecture=:i386
|
562
|
-
@registry.key_exists?("HKLM\\Software\\Root\\Poosh").
|
562
|
+
expect(@registry.key_exists?("HKLM\\Software\\Root\\Poosh")).to eq(true)
|
563
563
|
end
|
564
564
|
it "does not find 32-bit keys in the 64-bit registry" do
|
565
565
|
@registry.architecture=:x86_64
|
566
|
-
@registry.key_exists?("HKLM\\Software\\Root\\Mauve").
|
566
|
+
expect(@registry.key_exists?("HKLM\\Software\\Root\\Mauve")).to eq(true)
|
567
567
|
end
|
568
568
|
it "finds 64-bit keys in the 64-bit registry" do
|
569
569
|
@registry.architecture=:x86_64
|
570
|
-
@registry.key_exists?("HKLM\\Software\\Root\\Poosh").
|
570
|
+
expect(@registry.key_exists?("HKLM\\Software\\Root\\Poosh")).to eq(false)
|
571
571
|
end
|
572
572
|
end
|
573
573
|
|
574
574
|
describe "value_exists?" do
|
575
575
|
it "does not find 64-bit values in the 32-bit registry" do
|
576
576
|
@registry.architecture=:i386
|
577
|
-
|
577
|
+
expect{@registry.value_exists?("HKLM\\Software\\Root\\Mauve", {:name=>"Alert"})}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
|
578
578
|
end
|
579
579
|
it "finds 32-bit values in the 32-bit registry" do
|
580
580
|
@registry.architecture=:i386
|
581
|
-
@registry.value_exists?("HKLM\\Software\\Root\\Poosh", {:name=>"Status"}).
|
581
|
+
expect(@registry.value_exists?("HKLM\\Software\\Root\\Poosh", {:name=>"Status"})).to eq(true)
|
582
582
|
end
|
583
583
|
it "does not find 32-bit values in the 64-bit registry" do
|
584
584
|
@registry.architecture=:x86_64
|
585
|
-
@registry.value_exists?("HKLM\\Software\\Root\\Mauve", {:name=>"Alert"}).
|
585
|
+
expect(@registry.value_exists?("HKLM\\Software\\Root\\Mauve", {:name=>"Alert"})).to eq(true)
|
586
586
|
end
|
587
587
|
it "finds 64-bit values in the 64-bit registry" do
|
588
588
|
@registry.architecture=:x86_64
|
589
|
-
|
589
|
+
expect{@registry.value_exists?("HKLM\\Software\\Root\\Poosh", {:name=>"Status"})}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
|
590
590
|
end
|
591
591
|
end
|
592
592
|
|
593
593
|
describe "data_exists?" do
|
594
594
|
it "does not find 64-bit keys in the 32-bit registry" do
|
595
595
|
@registry.architecture=:i386
|
596
|
-
|
596
|
+
expect{@registry.data_exists?("HKLM\\Software\\Root\\Mauve", {:name=>"Alert", :type=>:string, :data=>"Universal"})}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
|
597
597
|
end
|
598
598
|
it "finds 32-bit keys in the 32-bit registry" do
|
599
599
|
@registry.architecture=:i386
|
600
|
-
@registry.data_exists?("HKLM\\Software\\Root\\Poosh", {:name=>"Status", :type=>:string, :data=>"Lost"}).
|
600
|
+
expect(@registry.data_exists?("HKLM\\Software\\Root\\Poosh", {:name=>"Status", :type=>:string, :data=>"Lost"})).to eq(true)
|
601
601
|
end
|
602
602
|
it "does not find 32-bit keys in the 64-bit registry" do
|
603
603
|
@registry.architecture=:x86_64
|
604
|
-
@registry.data_exists?("HKLM\\Software\\Root\\Mauve", {:name=>"Alert", :type=>:string, :data=>"Universal"}).
|
604
|
+
expect(@registry.data_exists?("HKLM\\Software\\Root\\Mauve", {:name=>"Alert", :type=>:string, :data=>"Universal"})).to eq(true)
|
605
605
|
end
|
606
606
|
it "finds 64-bit keys in the 64-bit registry" do
|
607
607
|
@registry.architecture=:x86_64
|
608
|
-
|
608
|
+
expect{@registry.data_exists?("HKLM\\Software\\Root\\Poosh", {:name=>"Status", :type=>:string, :data=>"Lost"})}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
|
609
609
|
end
|
610
610
|
end
|
611
611
|
|
612
612
|
describe "create_key" do
|
613
613
|
it "can create a 32-bit only registry key" do
|
614
614
|
@registry.architecture = :i386
|
615
|
-
@registry.create_key("HKLM\\Software\\Root\\Trunk\\Red", true).
|
616
|
-
@registry.key_exists?("HKLM\\Software\\Root\\Trunk\\Red").
|
615
|
+
expect(@registry.create_key("HKLM\\Software\\Root\\Trunk\\Red", true)).to eq(true)
|
616
|
+
expect(@registry.key_exists?("HKLM\\Software\\Root\\Trunk\\Red")).to eq(true)
|
617
617
|
@registry.architecture = :x86_64
|
618
|
-
@registry.key_exists?("HKLM\\Software\\Root\\Trunk\\Red").
|
618
|
+
expect(@registry.key_exists?("HKLM\\Software\\Root\\Trunk\\Red")).to eq(false)
|
619
619
|
end
|
620
620
|
|
621
621
|
it "can create a 64-bit only registry key" do
|
622
622
|
@registry.architecture = :x86_64
|
623
|
-
@registry.create_key("HKLM\\Software\\Root\\Trunk\\Blue", true).
|
624
|
-
@registry.key_exists?("HKLM\\Software\\Root\\Trunk\\Blue").
|
623
|
+
expect(@registry.create_key("HKLM\\Software\\Root\\Trunk\\Blue", true)).to eq(true)
|
624
|
+
expect(@registry.key_exists?("HKLM\\Software\\Root\\Trunk\\Blue")).to eq(true)
|
625
625
|
@registry.architecture = :i386
|
626
|
-
@registry.key_exists?("HKLM\\Software\\Root\\Trunk\\Blue").
|
626
|
+
expect(@registry.key_exists?("HKLM\\Software\\Root\\Trunk\\Blue")).to eq(false)
|
627
627
|
end
|
628
628
|
end
|
629
629
|
|