chef 14.2.0-universal-mingw32 → 14.3.37-universal-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CONTRIBUTING.md +13 -12
- data/Gemfile +15 -0
- data/README.md +36 -40
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/bin/chef-apply +0 -1
- data/bin/chef-client +1 -2
- data/bin/chef-service-manager +7 -8
- data/bin/chef-shell +1 -6
- data/bin/chef-solo +1 -2
- data/bin/chef-windows-service +1 -2
- data/bin/knife +1 -2
- data/chef-universal-mingw32.gemspec +2 -2
- data/chef.gemspec +1 -1
- data/distro/ruby_bin_folder/Chef.PowerShell.Wrapper.dll +0 -0
- data/distro/ruby_bin_folder/Chef.PowerShell.dll +0 -0
- data/distro/{powershell/chef → ruby_bin_folder}/Newtonsoft.Json.dll +0 -0
- data/ext/win32-eventlog/Rakefile +14 -14
- data/lib/chef/api_client.rb +10 -10
- data/lib/chef/api_client/registration.rb +5 -5
- data/lib/chef/api_client_v1.rb +15 -15
- data/lib/chef/application.rb +1 -1
- data/lib/chef/application/apply.rb +56 -56
- data/lib/chef/application/client.rb +169 -170
- data/lib/chef/application/exit_code.rb +2 -2
- data/lib/chef/application/knife.rb +79 -78
- data/lib/chef/application/solo.rb +120 -120
- data/lib/chef/application/windows_service.rb +21 -21
- data/lib/chef/application/windows_service_manager.rb +39 -39
- data/lib/chef/audit/audit_event_proxy.rb +6 -6
- data/lib/chef/audit/audit_reporter.rb +2 -2
- data/lib/chef/audit/control_group_data.rb +15 -15
- data/lib/chef/audit/runner.rb +1 -1
- data/lib/chef/chef_class.rb +16 -8
- data/lib/chef/chef_fs/chef_fs_data_store.rb +8 -8
- data/lib/chef/chef_fs/config.rb +2 -2
- data/lib/chef/chef_fs/file_system/chef_server/acl_entry.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/acls_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/chef_server_root_dir.rb +2 -2
- data/lib/chef/chef_fs/file_system/chef_server/cookbooks_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/organization_invites_entry.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/organization_members_entry.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/rest_list_entry.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/versioned_cookbooks_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/repository/acls_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_cookbook_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_cookbook_entry.rb +3 -3
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_root_dir.rb +2 -2
- data/lib/chef/chef_fs/file_system/repository/directory.rb +3 -3
- data/lib/chef/chef_fs/file_system/repository/file_system_entry.rb +3 -3
- data/lib/chef/chef_fs/knife.rb +6 -6
- data/lib/chef/chef_fs/parallelizer.rb +1 -1
- data/lib/chef/client.rb +3 -0
- data/lib/chef/cookbook/cookbook_version_loader.rb +1 -1
- data/lib/chef/cookbook/file_system_file_vendor.rb +1 -1
- data/lib/chef/cookbook/manifest_v0.rb +1 -1
- data/lib/chef/cookbook/metadata.rb +61 -61
- data/lib/chef/cookbook/remote_file_vendor.rb +1 -1
- data/lib/chef/cookbook/synchronizer.rb +2 -2
- data/lib/chef/cookbook_loader.rb +3 -3
- data/lib/chef/cookbook_manifest.rb +5 -5
- data/lib/chef/cookbook_site_streaming_uploader.rb +5 -5
- data/lib/chef/cookbook_uploader.rb +2 -2
- data/lib/chef/cookbook_version.rb +2 -2
- data/lib/chef/data_bag.rb +3 -3
- data/lib/chef/data_bag_item.rb +2 -2
- data/lib/chef/deprecated.rb +110 -176
- data/lib/chef/dsl/audit.rb +1 -1
- data/lib/chef/dsl/definitions.rb +1 -1
- data/lib/chef/dsl/platform_introspection.rb +5 -0
- data/lib/chef/dsl/reboot_pending.rb +1 -1
- data/lib/chef/encrypted_data_bag_item.rb +2 -2
- data/lib/chef/encrypted_data_bag_item/check_encrypted.rb +1 -1
- data/lib/chef/encrypted_data_bag_item/encryptor.rb +1 -1
- data/lib/chef/environment.rb +10 -10
- data/lib/chef/event_loggers/windows_eventlog.rb +21 -21
- data/lib/chef/exceptions.rb +3 -3
- data/lib/chef/file_cache.rb +18 -16
- data/lib/chef/formatters/base.rb +9 -10
- data/lib/chef/formatters/doc.rb +12 -16
- data/lib/chef/formatters/error_inspectors/api_error_formatting.rb +51 -51
- data/lib/chef/formatters/error_inspectors/cookbook_resolve_error_inspector.rb +10 -10
- data/lib/chef/formatters/error_inspectors/node_load_error_inspector.rb +13 -13
- data/lib/chef/formatters/error_inspectors/registration_error_inspector.rb +39 -39
- data/lib/chef/formatters/error_inspectors/resource_failure_inspector.rb +1 -1
- data/lib/chef/formatters/error_inspectors/run_list_expansion_error_inspector.rb +16 -16
- data/lib/chef/formatters/indentable_output_stream.rb +4 -4
- data/lib/chef/guard_interpreter/resource_guard_interpreter.rb +3 -3
- data/lib/chef/handler/json_file.rb +1 -1
- data/lib/chef/http/auth_credentials.rb +2 -2
- data/lib/chef/http/authenticator.rb +6 -6
- data/lib/chef/http/cookie_manager.rb +1 -1
- data/lib/chef/http/http_request.rb +3 -3
- data/lib/chef/http/json_input.rb +1 -1
- data/lib/chef/http/json_to_model_output.rb +1 -1
- data/lib/chef/http/socketless_chef_zero_client.rb +1 -1
- data/lib/chef/json_compat.rb +1 -1
- data/lib/chef/key.rb +9 -9
- data/lib/chef/knife.rb +5 -5
- data/lib/chef/knife/bootstrap.rb +116 -116
- data/lib/chef/knife/bootstrap/client_builder.rb +1 -1
- data/lib/chef/knife/client_bulk_delete.rb +3 -3
- data/lib/chef/knife/client_create.rb +17 -17
- data/lib/chef/knife/client_delete.rb +3 -3
- data/lib/chef/knife/client_list.rb +3 -3
- data/lib/chef/knife/client_reregister.rb +3 -3
- data/lib/chef/knife/config_get.rb +126 -0
- data/lib/chef/knife/configure.rb +25 -25
- data/lib/chef/knife/cookbook_bulk_delete.rb +1 -1
- data/lib/chef/knife/cookbook_delete.rb +2 -2
- data/lib/chef/knife/cookbook_download.rb +11 -11
- data/lib/chef/knife/cookbook_list.rb +6 -6
- data/lib/chef/knife/cookbook_metadata.rb +7 -8
- data/lib/chef/knife/cookbook_metadata_from_file.rb +0 -1
- data/lib/chef/knife/cookbook_show.rb +16 -16
- data/lib/chef/knife/cookbook_site_download.rb +11 -10
- data/lib/chef/knife/cookbook_site_install.rb +24 -24
- data/lib/chef/knife/cookbook_site_list.rb +8 -8
- data/lib/chef/knife/cookbook_site_search.rb +6 -5
- data/lib/chef/knife/cookbook_site_share.rb +20 -19
- data/lib/chef/knife/cookbook_site_show.rb +6 -5
- data/lib/chef/knife/cookbook_site_unshare.rb +5 -5
- data/lib/chef/knife/cookbook_test.rb +8 -8
- data/lib/chef/knife/cookbook_upload.rb +32 -32
- data/lib/chef/knife/core/bootstrap_context.rb +7 -7
- data/lib/chef/knife/core/cookbook_scm_repo.rb +1 -1
- data/lib/chef/knife/core/generic_presenter.rb +7 -7
- data/lib/chef/knife/core/hashed_command_loader.rb +1 -1
- data/lib/chef/knife/core/node_presenter.rb +37 -37
- data/lib/chef/knife/core/status_presenter.rb +11 -11
- data/lib/chef/knife/data_bag_from_file.rb +4 -4
- data/lib/chef/knife/data_bag_list.rb +3 -3
- data/lib/chef/knife/data_bag_secret_options.rb +13 -13
- data/lib/chef/knife/delete.rb +29 -13
- data/lib/chef/knife/deps.rb +25 -9
- data/lib/chef/knife/diff.rb +30 -14
- data/lib/chef/knife/download.rb +39 -23
- data/lib/chef/knife/edit.rb +19 -3
- data/lib/chef/knife/environment_compare.rb +8 -8
- data/lib/chef/knife/environment_create.rb +3 -3
- data/lib/chef/knife/environment_from_file.rb +5 -3
- data/lib/chef/knife/environment_list.rb +3 -3
- data/lib/chef/knife/exec.rb +7 -7
- data/lib/chef/knife/key_create.rb +4 -4
- data/lib/chef/knife/key_create_base.rb +12 -12
- data/lib/chef/knife/key_edit.rb +5 -5
- data/lib/chef/knife/key_edit_base.rb +15 -15
- data/lib/chef/knife/key_list.rb +3 -3
- data/lib/chef/knife/key_list_base.rb +9 -9
- data/lib/chef/knife/list.rb +35 -19
- data/lib/chef/knife/node_edit.rb +4 -4
- data/lib/chef/knife/node_list.rb +3 -3
- data/lib/chef/knife/node_run_list_add.rb +6 -6
- data/lib/chef/knife/node_show.rb +6 -6
- data/lib/chef/knife/osc_user_create.rb +13 -13
- data/lib/chef/knife/osc_user_list.rb +3 -3
- data/lib/chef/knife/osc_user_reregister.rb +3 -3
- data/lib/chef/knife/raw.rb +32 -16
- data/lib/chef/knife/role_create.rb +3 -3
- data/lib/chef/knife/role_env_run_list_add.rb +4 -3
- data/lib/chef/knife/role_env_run_list_remove.rb +2 -2
- data/lib/chef/knife/role_env_run_list_replace.rb +1 -0
- data/lib/chef/knife/role_list.rb +3 -3
- data/lib/chef/knife/role_run_list_add.rb +4 -3
- data/lib/chef/knife/role_run_list_remove.rb +2 -2
- data/lib/chef/knife/role_run_list_replace.rb +1 -0
- data/lib/chef/knife/search.rb +23 -23
- data/lib/chef/knife/serve.rb +22 -6
- data/lib/chef/knife/show.rb +19 -3
- data/lib/chef/knife/ssh.rb +68 -68
- data/lib/chef/knife/ssl_check.rb +31 -31
- data/lib/chef/knife/ssl_fetch.rb +5 -5
- data/lib/chef/knife/status.rb +11 -11
- data/lib/chef/knife/upload.rb +41 -25
- data/lib/chef/knife/user_create.rb +28 -28
- data/lib/chef/knife/user_delete.rb +9 -9
- data/lib/chef/knife/user_edit.rb +9 -9
- data/lib/chef/knife/user_list.rb +3 -3
- data/lib/chef/knife/user_reregister.rb +12 -12
- data/lib/chef/knife/user_show.rb +9 -9
- data/lib/chef/knife/xargs.rb +52 -36
- data/lib/chef/log.rb +10 -8
- data/lib/chef/log/winevt.rb +21 -21
- data/lib/chef/mixin/api_version_request_handling.rb +6 -6
- data/lib/chef/mixin/deep_merge.rb +1 -1
- data/lib/chef/mixin/deprecation.rb +2 -2
- data/lib/chef/mixin/params_validate.rb +9 -9
- data/lib/chef/mixin/properties.rb +2 -2
- data/lib/chef/mixin/securable.rb +11 -11
- data/lib/chef/mixin/shell_out.rb +138 -82
- data/lib/chef/mixin/wide_string.rb +5 -23
- data/lib/chef/mixin/windows_env_helper.rb +1 -1
- data/lib/chef/mixin/xml_escape.rb +3 -3
- data/lib/chef/node.rb +15 -15
- data/lib/chef/node/attribute.rb +6 -6
- data/lib/chef/node/attribute_collections.rb +2 -2
- data/lib/chef/node/mixin/deep_merge_cache.rb +1 -1
- data/lib/chef/node/mixin/immutablize_array.rb +2 -2
- data/lib/chef/node/mixin/immutablize_hash.rb +2 -2
- data/lib/chef/node_map.rb +77 -3
- data/lib/chef/org.rb +8 -8
- data/lib/chef/policy_builder/expand_node_object.rb +1 -1
- data/lib/chef/powershell.rb +9 -7
- data/lib/chef/property.rb +14 -14
- data/lib/chef/provider/apt_update.rb +2 -2
- data/lib/chef/provider/cron.rb +3 -3
- data/lib/chef/provider/cron/unix.rb +2 -2
- data/lib/chef/provider/dsc_resource.rb +1 -1
- data/lib/chef/provider/dsc_script.rb +8 -8
- data/lib/chef/provider/execute.rb +1 -1
- data/lib/chef/provider/group/aix.rb +6 -6
- data/lib/chef/provider/group/dscl.rb +1 -1
- data/lib/chef/provider/group/gpasswd.rb +4 -4
- data/lib/chef/provider/group/groupadd.rb +3 -3
- data/lib/chef/provider/group/groupmod.rb +6 -6
- data/lib/chef/provider/group/pw.rb +4 -4
- data/lib/chef/provider/group/suse.rb +2 -2
- data/lib/chef/provider/group/usermod.rb +1 -1
- data/lib/chef/provider/http_request.rb +6 -6
- data/lib/chef/provider/ifconfig.rb +4 -4
- data/lib/chef/provider/ifconfig/aix.rb +1 -1
- data/lib/chef/provider/mdadm.rb +1 -1
- data/lib/chef/provider/mount/mount.rb +1 -1
- data/lib/chef/provider/mount/windows.rb +7 -7
- data/lib/chef/provider/package.rb +3 -18
- data/lib/chef/provider/package/apt.rb +4 -4
- data/lib/chef/provider/package/bff.rb +9 -9
- data/lib/chef/provider/package/chocolatey.rb +7 -7
- data/lib/chef/provider/package/dnf.rb +2 -2
- data/lib/chef/provider/package/dpkg.rb +6 -6
- data/lib/chef/provider/package/freebsd/base.rb +2 -2
- data/lib/chef/provider/package/freebsd/pkg.rb +6 -6
- data/lib/chef/provider/package/freebsd/pkgng.rb +5 -5
- data/lib/chef/provider/package/freebsd/port.rb +4 -4
- data/lib/chef/provider/package/homebrew.rb +1 -1
- data/lib/chef/provider/package/ips.rb +6 -6
- data/lib/chef/provider/package/macports.rb +6 -6
- data/lib/chef/provider/package/msu.rb +1 -1
- data/lib/chef/provider/package/openbsd.rb +5 -5
- data/lib/chef/provider/package/pacman.rb +4 -4
- data/lib/chef/provider/package/paludis.rb +3 -3
- data/lib/chef/provider/package/portage.rb +5 -5
- data/lib/chef/provider/package/powershell.rb +6 -2
- data/lib/chef/provider/package/rpm.rb +10 -10
- data/lib/chef/provider/package/rubygems.rb +4 -4
- data/lib/chef/provider/package/smartos.rb +4 -4
- data/lib/chef/provider/package/solaris.rb +9 -9
- data/lib/chef/provider/package/windows.rb +4 -3
- data/lib/chef/provider/package/yum.rb +2 -2
- data/lib/chef/provider/package/zypper.rb +4 -4
- data/lib/chef/provider/powershell_script.rb +73 -73
- data/lib/chef/provider/reboot.rb +4 -4
- data/lib/chef/provider/registry_key.rb +4 -4
- data/lib/chef/provider/remote_file/cache_control_data.rb +2 -2
- data/lib/chef/provider/remote_file/sftp.rb +1 -1
- data/lib/chef/provider/resource_update.rb +1 -1
- data/lib/chef/provider/route.rb +2 -2
- data/lib/chef/provider/service/openbsd.rb +3 -3
- data/lib/chef/provider/service/redhat.rb +1 -1
- data/lib/chef/provider/service/simple.rb +1 -0
- data/lib/chef/provider/service/solaris.rb +1 -1
- data/lib/chef/provider/service/systemd.rb +2 -2
- data/lib/chef/provider/service/windows.rb +17 -17
- data/lib/chef/provider/subversion.rb +3 -3
- data/lib/chef/provider/systemd_unit.rb +2 -2
- data/lib/chef/provider/template/content.rb +1 -1
- data/lib/chef/provider/user/aix.rb +6 -6
- data/lib/chef/provider/user/dscl.rb +6 -6
- data/lib/chef/provider/user/linux.rb +6 -6
- data/lib/chef/provider/user/pw.rb +5 -5
- data/lib/chef/provider/user/solaris.rb +6 -6
- data/lib/chef/provider/user/useradd.rb +7 -7
- data/lib/chef/provider/windows_env.rb +6 -6
- data/lib/chef/provider/windows_task.rb +22 -24
- data/lib/chef/resource.rb +26 -4
- data/lib/chef/resource/chef_handler.rb +2 -0
- data/lib/chef/resource/chocolatey_config.rb +83 -0
- data/lib/chef/resource/chocolatey_source.rb +95 -0
- data/lib/chef/resource/cron.rb +5 -5
- data/lib/chef/resource/dsc_script.rb +12 -11
- data/lib/chef/resource/execute.rb +1 -1
- data/lib/chef/resource/file/verification.rb +1 -1
- data/lib/chef/resource/freebsd_package.rb +3 -1
- data/lib/chef/resource/group.rb +2 -2
- data/lib/chef/resource/homebrew_package.rb +2 -1
- data/lib/chef/resource/homebrew_tap.rb +1 -1
- data/lib/chef/resource/hostname.rb +23 -7
- data/lib/chef/resource/http_request.rb +6 -3
- data/lib/chef/resource/ifconfig.rb +57 -17
- data/lib/chef/resource/ips_package.rb +3 -1
- data/lib/chef/resource/kernel_module.rb +129 -0
- data/lib/chef/resource/launchd.rb +205 -98
- data/lib/chef/resource/log.rb +7 -2
- data/lib/chef/resource/mdadm.rb +29 -8
- data/lib/chef/resource/ohai.rb +2 -0
- data/lib/chef/resource/ohai_hint.rb +5 -3
- data/lib/chef/resource/openssl_dhparam.rb +1 -1
- data/lib/chef/resource/openssl_rsa_private_key.rb +2 -0
- data/lib/chef/resource/paludis_package.rb +1 -1
- data/lib/chef/resource/portage_package.rb +2 -0
- data/lib/chef/resource/powershell_package.rb +2 -0
- data/lib/chef/resource/powershell_package_source.rb +165 -0
- data/lib/chef/resource/powershell_script.rb +2 -2
- data/lib/chef/resource/registry_key.rb +1 -1
- data/lib/chef/resource/remote_directory.rb +3 -3
- data/lib/chef/resource/remote_file.rb +2 -2
- data/lib/chef/resource/resource_notification.rb +16 -16
- data/lib/chef/resource/rhsm_errata.rb +1 -1
- data/lib/chef/resource/rhsm_errata_level.rb +1 -1
- data/lib/chef/resource/rhsm_register.rb +4 -4
- data/lib/chef/resource/rhsm_repo.rb +2 -2
- data/lib/chef/resource/rhsm_subscription.rb +2 -2
- data/lib/chef/resource/script.rb +1 -1
- data/lib/chef/resource/service.rb +18 -18
- data/lib/chef/resource/ssh_known_hosts_entry.rb +146 -0
- data/lib/chef/resource/sudo.rb +4 -4
- data/lib/chef/resource/support/ssh_known_hosts.erb +3 -0
- data/lib/chef/resource/sysctl.rb +9 -5
- data/lib/chef/resource/template.rb +1 -1
- data/lib/chef/resource/user.rb +15 -15
- data/lib/chef/resource/windows_feature_dism.rb +10 -9
- data/lib/chef/resource/windows_feature_powershell.rb +24 -13
- data/lib/chef/resource/windows_script.rb +1 -1
- data/lib/chef/resource/windows_service.rb +2 -2
- data/lib/chef/resource/windows_task.rb +3 -3
- data/lib/chef/resource_definition.rb +1 -1
- data/lib/chef/resource_inspector.rb +1 -0
- data/lib/chef/resource_reporter.rb +4 -4
- data/lib/chef/resources.rb +5 -0
- data/lib/chef/role.rb +8 -8
- data/lib/chef/run_context.rb +8 -8
- data/lib/chef/run_list/run_list_expansion.rb +6 -6
- data/lib/chef/run_list/run_list_item.rb +1 -1
- data/lib/chef/run_list/versioned_recipe_list.rb +3 -3
- data/lib/chef/run_status.rb +10 -10
- data/lib/chef/shell.rb +60 -60
- data/lib/chef/shell/ext.rb +151 -151
- data/lib/chef/shell/shell_session.rb +2 -2
- data/lib/chef/user.rb +11 -11
- data/lib/chef/user_v1.rb +26 -26
- data/lib/chef/util/backup.rb +2 -2
- data/lib/chef/util/diff.rb +1 -1
- data/lib/chef/util/dsc/configuration_generator.rb +11 -11
- data/lib/chef/util/dsc/lcm_output_parser.rb +1 -1
- data/lib/chef/util/file_edit.rb +14 -14
- data/lib/chef/util/powershell/cmdlet.rb +4 -4
- data/lib/chef/util/selinux.rb +2 -2
- data/lib/chef/util/windows/net_group.rb +1 -1
- data/lib/chef/util/windows/net_use.rb +3 -3
- data/lib/chef/util/windows/net_user.rb +12 -12
- data/lib/chef/util/windows/volume.rb +2 -2
- data/lib/chef/version.rb +3 -3
- data/lib/chef/version_constraint.rb +3 -3
- data/lib/chef/win32/api.rb +6 -6
- data/lib/chef/win32/api/error.rb +2 -2
- data/lib/chef/win32/api/file.rb +12 -12
- data/lib/chef/win32/api/net.rb +58 -58
- data/lib/chef/win32/registry.rb +8 -8
- data/lib/chef/win32/security.rb +6 -6
- data/lib/chef/win32/security/securable_object.rb +10 -10
- data/lib/chef/win32/unicode.rb +6 -0
- data/lib/chef/win32/version.rb +16 -16
- data/spec/functional/audit/rspec_formatter_spec.rb +1 -1
- data/spec/functional/audit/runner_spec.rb +1 -1
- data/spec/functional/dsl/reboot_pending_spec.rb +3 -3
- data/spec/functional/dsl/registry_helper_spec.rb +3 -3
- data/spec/functional/http/simple_spec.rb +1 -1
- data/spec/functional/knife/exec_spec.rb +1 -1
- data/spec/functional/knife/ssh_spec.rb +2 -2
- data/spec/functional/mixin/shell_out_spec.rb +8 -4
- data/spec/functional/rebooter_spec.rb +6 -6
- data/spec/functional/resource/aixinit_service_spec.rb +2 -2
- data/spec/functional/resource/apt_package_spec.rb +17 -17
- data/spec/functional/resource/bash_spec.rb +1 -1
- data/spec/functional/resource/bff_spec.rb +1 -1
- data/spec/functional/resource/cron_spec.rb +1 -1
- data/spec/functional/resource/dnf_package_spec.rb +7 -7
- data/spec/functional/resource/dsc_script_spec.rb +94 -94
- data/spec/functional/resource/execute_spec.rb +4 -4
- data/spec/functional/resource/file_spec.rb +1 -1
- data/spec/functional/resource/git_spec.rb +19 -19
- data/spec/functional/resource/ifconfig_spec.rb +5 -5
- data/spec/functional/resource/link_spec.rb +1 -1
- data/spec/functional/resource/mount_spec.rb +2 -2
- data/spec/functional/resource/powershell_script_spec.rb +13 -13
- data/spec/functional/resource/reboot_spec.rb +3 -3
- data/spec/functional/resource/registry_spec.rb +82 -82
- data/spec/functional/resource/remote_file_spec.rb +2 -2
- data/spec/functional/resource/rpm_spec.rb +1 -1
- data/spec/functional/resource/template_spec.rb +5 -5
- data/spec/functional/resource/user/dscl_spec.rb +3 -3
- data/spec/functional/resource/windows_env_spec.rb +1 -1
- data/spec/functional/resource/windows_service_spec.rb +1 -1
- data/spec/functional/resource/windows_task_spec.rb +92 -38
- data/spec/functional/resource/yum_package_spec.rb +8 -8
- data/spec/functional/run_lock_spec.rb +4 -4
- data/spec/functional/shell_spec.rb +1 -1
- data/spec/functional/util/powershell/cmdlet_spec.rb +7 -7
- data/spec/functional/version_spec.rb +1 -1
- data/spec/functional/win32/crypto_spec.rb +9 -9
- data/spec/functional/win32/registry_spec.rb +66 -66
- data/spec/integration/client/client_spec.rb +219 -219
- data/spec/integration/client/exit_code_spec.rb +19 -19
- data/spec/integration/client/ipv6_spec.rb +36 -36
- data/spec/integration/knife/chef_fs_data_store_spec.rb +130 -130
- data/spec/integration/knife/chef_repo_path_spec.rb +418 -418
- data/spec/integration/knife/chef_repository_file_system_spec.rb +35 -35
- data/spec/integration/knife/chefignore_spec.rb +88 -88
- data/spec/integration/knife/client_bulk_delete_spec.rb +49 -49
- data/spec/integration/knife/client_create_spec.rb +5 -5
- data/spec/integration/knife/client_delete_spec.rb +13 -13
- data/spec/integration/knife/client_key_delete_spec.rb +2 -2
- data/spec/integration/knife/client_key_list_spec.rb +4 -4
- data/spec/integration/knife/client_list_spec.rb +8 -8
- data/spec/integration/knife/common_options_spec.rb +31 -31
- data/spec/integration/knife/config_get_spec.rb +183 -0
- data/spec/integration/knife/cookbook_api_ipv6_spec.rb +38 -38
- data/spec/integration/knife/cookbook_bulk_delete_spec.rb +14 -14
- data/spec/integration/knife/cookbook_download_spec.rb +12 -12
- data/spec/integration/knife/cookbook_list_spec.rb +8 -8
- data/spec/integration/knife/cookbook_show_spec.rb +81 -81
- data/spec/integration/knife/cookbook_upload_spec.rb +24 -24
- data/spec/integration/knife/data_bag_delete_spec.rb +8 -8
- data/spec/integration/knife/data_bag_from_file_spec.rb +47 -47
- data/spec/integration/knife/data_bag_list_spec.rb +4 -4
- data/spec/integration/knife/data_bag_show_spec.rb +7 -7
- data/spec/integration/knife/delete_spec.rb +593 -593
- data/spec/integration/knife/deps_spec.rb +185 -185
- data/spec/integration/knife/diff_spec.rb +116 -116
- data/spec/integration/knife/download_spec.rb +510 -510
- data/spec/integration/knife/environment_compare_spec.rb +15 -15
- data/spec/integration/knife/environment_from_file_spec.rb +59 -59
- data/spec/integration/knife/environment_list_spec.rb +4 -4
- data/spec/integration/knife/environment_show_spec.rb +25 -25
- data/spec/integration/knife/list_spec.rb +731 -731
- data/spec/integration/knife/node_bulk_delete_spec.rb +8 -8
- data/spec/integration/knife/node_delete_spec.rb +6 -6
- data/spec/integration/knife/node_environment_set_spec.rb +3 -3
- data/spec/integration/knife/node_from_file_spec.rb +16 -16
- data/spec/integration/knife/node_list_spec.rb +5 -5
- data/spec/integration/knife/raw_spec.rb +117 -117
- data/spec/integration/knife/role_bulk_delete_spec.rb +8 -8
- data/spec/integration/knife/role_delete_spec.rb +6 -6
- data/spec/integration/knife/role_from_file_spec.rb +42 -42
- data/spec/integration/knife/role_list_spec.rb +5 -5
- data/spec/integration/knife/role_show_spec.rb +9 -9
- data/spec/integration/knife/show_spec.rb +57 -57
- data/spec/integration/knife/upload_spec.rb +396 -396
- data/spec/integration/recipes/accumulator_spec.rb +2 -2
- data/spec/integration/recipes/lwrp_inline_resources_spec.rb +8 -8
- data/spec/integration/recipes/lwrp_spec.rb +12 -12
- data/spec/integration/recipes/notifies_spec.rb +167 -167
- data/spec/integration/recipes/notifying_block_spec.rb +2 -2
- data/spec/integration/recipes/remote_directory.rb +1 -1
- data/spec/integration/recipes/resource_converge_if_changed_spec.rb +99 -99
- data/spec/integration/recipes/resource_load_spec.rb +8 -8
- data/spec/integration/solo/solo_spec.rb +40 -40
- data/spec/scripts/ssl-serve.rb +12 -12
- data/spec/spec_helper.rb +73 -73
- data/spec/stress/win32/file_spec.rb +2 -2
- data/spec/stress/win32/security_spec.rb +2 -2
- data/spec/support/platform_helpers.rb +1 -1
- data/spec/support/shared/context/client.rb +25 -25
- data/spec/support/shared/functional/securable_resource.rb +13 -13
- data/spec/support/shared/functional/securable_resource_with_reporting.rb +6 -6
- data/spec/support/shared/functional/win32_service.rb +5 -5
- data/spec/support/shared/functional/windows_script.rb +3 -3
- data/spec/support/shared/integration/app_server_support.rb +3 -3
- data/spec/support/shared/integration/integration_helper.rb +2 -2
- data/spec/support/shared/integration/knife_support.rb +9 -3
- data/spec/support/shared/unit/api_error_inspector.rb +6 -6
- data/spec/support/shared/unit/api_versioning.rb +2 -2
- data/spec/support/shared/unit/execute_resource.rb +2 -2
- data/spec/support/shared/unit/provider/file.rb +12 -12
- data/spec/support/shared/unit/provider/useradd_based_user_provider.rb +34 -34
- data/spec/support/shared/unit/user_and_client_shared.rb +3 -3
- data/spec/tiny_server.rb +8 -8
- data/spec/unit/api_client/registration_spec.rb +30 -30
- data/spec/unit/api_client_spec.rb +6 -6
- data/spec/unit/api_client_v1_spec.rb +6 -6
- data/spec/unit/application/apply_spec.rb +4 -4
- data/spec/unit/application/client_spec.rb +11 -11
- data/spec/unit/application/knife_spec.rb +3 -3
- data/spec/unit/application/solo_spec.rb +5 -5
- data/spec/unit/application_spec.rb +11 -11
- data/spec/unit/audit/audit_event_proxy_spec.rb +48 -48
- data/spec/unit/audit/audit_reporter_spec.rb +51 -55
- data/spec/unit/audit/control_group_data_spec.rb +20 -20
- data/spec/unit/audit/runner_spec.rb +2 -2
- data/spec/unit/chef_class_spec.rb +120 -0
- data/spec/unit/chef_fs/data_handler/data_bag_item_data_handler.rb +1 -1
- data/spec/unit/chef_fs/data_handler/data_handler_base_spec.rb +3 -3
- data/spec/unit/chef_fs/diff_spec.rb +45 -45
- data/spec/unit/chef_fs/file_pattern_spec.rb +2 -2
- data/spec/unit/chef_fs/file_system/repository/directory_spec.rb +2 -2
- data/spec/unit/chef_fs/file_system_spec.rb +8 -8
- data/spec/unit/chef_fs/parallelizer.rb +12 -12
- data/spec/unit/client_spec.rb +15 -15
- data/spec/unit/config_fetcher_spec.rb +23 -23
- data/spec/unit/config_spec.rb +2 -2
- data/spec/unit/cookbook/metadata_spec.rb +81 -81
- data/spec/unit/cookbook/synchronizer_spec.rb +171 -171
- data/spec/unit/cookbook_loader_spec.rb +10 -5
- data/spec/unit/cookbook_site_streaming_uploader_spec.rb +6 -6
- data/spec/unit/cookbook_uploader_spec.rb +8 -8
- data/spec/unit/cookbook_version_file_specificity_spec.rb +135 -135
- data/spec/unit/daemon_spec.rb +4 -4
- data/spec/unit/data_bag_item_spec.rb +3 -3
- data/spec/unit/data_bag_spec.rb +1 -1
- data/spec/unit/data_collector/resource_report_spec.rb +1 -1
- data/spec/unit/data_collector_spec.rb +4 -3
- data/spec/unit/deprecated_spec.rb +18 -12
- data/spec/unit/dsl/audit_spec.rb +1 -1
- data/spec/unit/dsl/platform_introspection_spec.rb +16 -16
- data/spec/unit/dsl/reboot_pending_spec.rb +1 -1
- data/spec/unit/environment_spec.rb +16 -16
- data/spec/unit/file_access_control_spec.rb +8 -8
- data/spec/unit/file_content_management/deploy/mv_unix_spec.rb +3 -3
- data/spec/unit/file_content_management/deploy/mv_windows_spec.rb +26 -26
- data/spec/unit/formatters/error_description_spec.rb +39 -39
- data/spec/unit/formatters/error_inspectors/compile_error_inspector_spec.rb +16 -16
- data/spec/unit/formatters/error_inspectors/cookbook_sync_error_inspector_spec.rb +1 -1
- data/spec/unit/formatters/error_inspectors/node_load_error_inspector_spec.rb +1 -1
- data/spec/unit/formatters/error_inspectors/registration_error_inspector_spec.rb +1 -1
- data/spec/unit/formatters/error_inspectors/resource_failure_inspector_spec.rb +1 -1
- data/spec/unit/formatters/error_inspectors/run_list_expansion_error_inspector_spec.rb +5 -5
- data/spec/unit/guard_interpreter/resource_guard_interpreter_spec.rb +4 -4
- data/spec/unit/handler/json_file_spec.rb +1 -1
- data/spec/unit/http/api_versions_spec.rb +1 -1
- data/spec/unit/http/authenticator_spec.rb +17 -17
- data/spec/unit/http/ssl_policies_spec.rb +1 -1
- data/spec/unit/http/validate_content_length_spec.rb +2 -2
- data/spec/unit/key_spec.rb +12 -12
- data/spec/unit/knife/bootstrap/client_builder_spec.rb +3 -3
- data/spec/unit/knife/client_bulk_delete_spec.rb +1 -1
- data/spec/unit/knife/client_delete_spec.rb +1 -1
- data/spec/unit/knife/client_reregister_spec.rb +1 -1
- data/spec/unit/knife/configure_client_spec.rb +4 -4
- data/spec/unit/knife/configure_spec.rb +1 -1
- data/spec/unit/knife/cookbook_bulk_delete_spec.rb +1 -1
- data/spec/unit/knife/cookbook_delete_spec.rb +4 -4
- data/spec/unit/knife/cookbook_download_spec.rb +21 -21
- data/spec/unit/knife/cookbook_list_spec.rb +7 -7
- data/spec/unit/knife/cookbook_show_spec.rb +24 -24
- data/spec/unit/knife/cookbook_site_download_spec.rb +23 -23
- data/spec/unit/knife/cookbook_site_install_spec.rb +4 -4
- data/spec/unit/knife/cookbook_site_share_spec.rb +10 -10
- data/spec/unit/knife/cookbook_site_unshare_spec.rb +2 -2
- data/spec/unit/knife/cookbook_upload_spec.rb +19 -19
- data/spec/unit/knife/core/bootstrap_context_spec.rb +37 -37
- data/spec/unit/knife/core/cookbook_scm_repo_spec.rb +20 -20
- data/spec/unit/knife/core/object_loader_spec.rb +1 -1
- data/spec/unit/knife/core/ui_spec.rb +55 -55
- data/spec/unit/knife/data_bag_create_spec.rb +2 -2
- data/spec/unit/knife/data_bag_edit_spec.rb +1 -1
- data/spec/unit/knife/data_bag_secret_options_spec.rb +5 -5
- data/spec/unit/knife/environment_from_file_spec.rb +1 -1
- data/spec/unit/knife/key_create_spec.rb +4 -4
- data/spec/unit/knife/key_delete_spec.rb +3 -3
- data/spec/unit/knife/key_edit_spec.rb +3 -3
- data/spec/unit/knife/key_list_spec.rb +3 -3
- data/spec/unit/knife/key_show_spec.rb +3 -3
- data/spec/unit/knife/node_delete_spec.rb +1 -1
- data/spec/unit/knife/node_edit_spec.rb +7 -7
- data/spec/unit/knife/node_from_file_spec.rb +1 -1
- data/spec/unit/knife/node_run_list_add_spec.rb +1 -1
- data/spec/unit/knife/osc_user_edit_spec.rb +1 -1
- data/spec/unit/knife/osc_user_reregister_spec.rb +1 -1
- data/spec/unit/knife/role_bulk_delete_spec.rb +1 -1
- data/spec/unit/knife/role_create_spec.rb +1 -1
- data/spec/unit/knife/role_delete_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_add_spec.rb +4 -4
- data/spec/unit/knife/role_env_run_list_clear_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_remove_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_replace_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_set_spec.rb +1 -1
- data/spec/unit/knife/role_from_file_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_add_spec.rb +4 -4
- data/spec/unit/knife/role_run_list_clear_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_remove_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_replace_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_set_spec.rb +1 -1
- data/spec/unit/knife/ssh_spec.rb +25 -25
- data/spec/unit/knife/ssl_check_spec.rb +23 -23
- data/spec/unit/knife/ssl_fetch_spec.rb +11 -11
- data/spec/unit/knife/user_delete_spec.rb +1 -1
- data/spec/unit/knife/user_reregister_spec.rb +1 -1
- data/spec/unit/knife_spec.rb +26 -26
- data/spec/unit/log/syslog_spec.rb +1 -1
- data/spec/unit/lwrp_spec.rb +4 -4
- data/spec/unit/mash_spec.rb +3 -3
- data/spec/unit/mixin/api_version_request_handling_spec.rb +16 -16
- data/spec/unit/mixin/checksum_spec.rb +1 -1
- data/spec/unit/mixin/enforce_ownership_and_permissions_spec.rb +8 -8
- data/spec/unit/mixin/homebrew_user_spec.rb +1 -1
- data/spec/unit/mixin/params_validate_spec.rb +96 -96
- data/spec/unit/mixin/powershell_exec_spec.rb +1 -1
- data/spec/unit/mixin/powershell_type_coercions_spec.rb +1 -1
- data/spec/unit/mixin/securable_spec.rb +27 -27
- data/spec/unit/mixin/shell_out_spec.rb +286 -132
- data/spec/unit/mixin/user_context_spec.rb +1 -1
- data/spec/unit/mixin/xml_escape_spec.rb +1 -1
- data/spec/unit/node/attribute_spec.rb +10 -10
- data/spec/unit/node/vivid_mash_spec.rb +3 -3
- data/spec/unit/node_map_spec.rb +71 -3
- data/spec/unit/node_spec.rb +15 -15
- data/spec/unit/org_spec.rb +2 -2
- data/spec/unit/platform/query_helpers_spec.rb +26 -26
- data/spec/unit/policy_builder/expand_node_object_spec.rb +4 -4
- data/spec/unit/policy_builder/policyfile_spec.rb +29 -29
- data/spec/unit/property_spec.rb +5 -5
- data/spec/unit/provider/apt_repository_spec.rb +19 -19
- data/spec/unit/provider/cookbook_file/content_spec.rb +1 -1
- data/spec/unit/provider/cookbook_file_spec.rb +1 -1
- data/spec/unit/provider/cron/unix_spec.rb +12 -12
- data/spec/unit/provider/cron_spec.rb +279 -279
- data/spec/unit/provider/dsc_resource_spec.rb +6 -6
- data/spec/unit/provider/execute_spec.rb +2 -2
- data/spec/unit/provider/file/content_spec.rb +1 -1
- data/spec/unit/provider/file_spec.rb +1 -1
- data/spec/unit/provider/git_spec.rb +123 -123
- data/spec/unit/provider/group/dscl_spec.rb +18 -18
- data/spec/unit/provider/group/gpasswd_spec.rb +7 -7
- data/spec/unit/provider/group/groupadd_spec.rb +7 -7
- data/spec/unit/provider/group/groupmod_spec.rb +13 -13
- data/spec/unit/provider/group/pw_spec.rb +4 -4
- data/spec/unit/provider/group/suse_spec.rb +2 -2
- data/spec/unit/provider/group/usermod_spec.rb +4 -4
- data/spec/unit/provider/group_spec.rb +3 -3
- data/spec/unit/provider/ifconfig/aix_spec.rb +17 -17
- data/spec/unit/provider/ifconfig/debian_spec.rb +16 -16
- data/spec/unit/provider/ifconfig_spec.rb +16 -16
- data/spec/unit/provider/launchd_spec.rb +52 -52
- data/spec/unit/provider/link_spec.rb +7 -7
- data/spec/unit/provider/mdadm_spec.rb +3 -3
- data/spec/unit/provider/mount/aix_spec.rb +39 -39
- data/spec/unit/provider/mount/mount_spec.rb +26 -26
- data/spec/unit/provider/mount/solaris_spec.rb +2 -2
- data/spec/unit/provider/mount/windows_spec.rb +6 -6
- data/spec/unit/provider/ohai_spec.rb +9 -9
- data/spec/unit/provider/osx_profile_spec.rb +1 -1
- data/spec/unit/provider/package/apt_spec.rb +186 -186
- data/spec/unit/provider/package/bff_spec.rb +36 -36
- data/spec/unit/provider/package/cab_spec.rb +58 -58
- data/spec/unit/provider/package/chocolatey_spec.rb +34 -34
- data/spec/unit/provider/package/dpkg_spec.rb +33 -33
- data/spec/unit/provider/package/freebsd/pkg_spec.rb +35 -35
- data/spec/unit/provider/package/freebsd/pkgng_spec.rb +22 -22
- data/spec/unit/provider/package/freebsd/port_spec.rb +21 -21
- data/spec/unit/provider/package/homebrew_spec.rb +4 -4
- data/spec/unit/provider/package/ips_spec.rb +94 -94
- data/spec/unit/provider/package/macports_spec.rb +23 -23
- data/spec/unit/provider/package/msu_spec.rb +44 -44
- data/spec/unit/provider/package/openbsd_spec.rb +19 -19
- data/spec/unit/provider/package/pacman_spec.rb +50 -50
- data/spec/unit/provider/package/paludis_spec.rb +33 -33
- data/spec/unit/provider/package/portage_spec.rb +25 -25
- data/spec/unit/provider/package/powershell_spec.rb +98 -85
- data/spec/unit/provider/package/rpm_spec.rb +21 -21
- data/spec/unit/provider/package/rubygems_spec.rb +71 -71
- data/spec/unit/provider/package/smartos_spec.rb +21 -21
- data/spec/unit/provider/package/solaris_spec.rb +38 -38
- data/spec/unit/provider/package/windows/exe_spec.rb +1 -1
- data/spec/unit/provider/package/windows/msi_spec.rb +1 -1
- data/spec/unit/provider/package/windows_spec.rb +11 -4
- data/spec/unit/provider/package/zypper_spec.rb +42 -46
- data/spec/unit/provider/package_spec.rb +2 -2
- data/spec/unit/provider/powershell_script_spec.rb +1 -1
- data/spec/unit/provider/registry_key_spec.rb +22 -22
- data/spec/unit/provider/remote_file/cache_control_data_spec.rb +7 -7
- data/spec/unit/provider/remote_file/content_spec.rb +4 -4
- data/spec/unit/provider/remote_file/fetcher_spec.rb +5 -5
- data/spec/unit/provider/remote_file/ftp_spec.rb +1 -1
- data/spec/unit/provider/remote_file/http_spec.rb +1 -1
- data/spec/unit/provider/remote_file/local_file_spec.rb +2 -2
- data/spec/unit/provider/remote_file/network_file_spec.rb +3 -3
- data/spec/unit/provider/remote_file/sftp_spec.rb +2 -2
- data/spec/unit/provider/remote_file_spec.rb +1 -1
- data/spec/unit/provider/script_spec.rb +1 -1
- data/spec/unit/provider/service/aix_service_spec.rb +8 -8
- data/spec/unit/provider/service/aixinit_service_spec.rb +3 -3
- data/spec/unit/provider/service/arch_service_spec.rb +21 -21
- data/spec/unit/provider/service/debian_service_spec.rb +2 -2
- data/spec/unit/provider/service/freebsd_service_spec.rb +30 -30
- data/spec/unit/provider/service/gentoo_service_spec.rb +1 -1
- data/spec/unit/provider/service/init_service_spec.rb +14 -14
- data/spec/unit/provider/service/insserv_service_spec.rb +2 -2
- data/spec/unit/provider/service/invokercd_service_spec.rb +17 -17
- data/spec/unit/provider/service/macosx_spec.rb +59 -59
- data/spec/unit/provider/service/openbsd_service_spec.rb +6 -6
- data/spec/unit/provider/service/redhat_spec.rb +27 -27
- data/spec/unit/provider/service/simple_service_spec.rb +14 -14
- data/spec/unit/provider/service/solaris_smf_service_spec.rb +19 -19
- data/spec/unit/provider/service/systemd_service_spec.rb +13 -13
- data/spec/unit/provider/service/upstart_service_spec.rb +5 -5
- data/spec/unit/provider/service/windows_spec.rb +38 -38
- data/spec/unit/provider/service_spec.rb +3 -3
- data/spec/unit/provider/subversion_spec.rb +13 -13
- data/spec/unit/provider/systemd_unit_spec.rb +10 -10
- data/spec/unit/provider/template/content_spec.rb +44 -44
- data/spec/unit/provider/template_spec.rb +2 -2
- data/spec/unit/provider/user/aix_spec.rb +5 -5
- data/spec/unit/provider/user/dscl_spec.rb +12 -12
- data/spec/unit/provider/user/pw_spec.rb +12 -12
- data/spec/unit/provider/user/solaris_spec.rb +6 -6
- data/spec/unit/provider/windows_env_spec.rb +2 -2
- data/spec/unit/provider/windows_task_spec.rb +16 -16
- data/spec/unit/provider/zypper_repository_spec.rb +7 -7
- data/spec/unit/provider_resolver_spec.rb +3 -3
- data/spec/unit/recipe_spec.rb +13 -13
- data/spec/unit/resource/chocolatey_config_spec.rb +98 -0
- data/spec/unit/resource/chocolatey_source_spec.rb +102 -0
- data/spec/unit/resource/conditional_spec.rb +1 -1
- data/spec/unit/resource/cookbook_file_spec.rb +3 -3
- data/spec/unit/resource/dnf_package_spec.rb +3 -3
- data/spec/unit/resource/dsc_script_spec.rb +10 -10
- data/spec/unit/resource/execute_spec.rb +2 -2
- data/spec/unit/resource/file/verification/systemd_unit_spec.rb +1 -1
- data/spec/unit/resource/file/verification_spec.rb +1 -1
- data/spec/unit/resource/file_spec.rb +3 -3
- data/spec/unit/resource/freebsd_package_spec.rb +5 -4
- data/spec/unit/resource/group_spec.rb +4 -4
- data/spec/unit/resource/kernel_module_spec.rb +48 -0
- data/spec/unit/resource/mount_spec.rb +13 -3
- data/spec/unit/resource/package_spec.rb +2 -2
- data/spec/unit/resource/powershell_package_source_spec.rb +219 -0
- data/spec/unit/resource/powershell_package_spec.rb +10 -1
- data/spec/unit/resource/powershell_script_spec.rb +8 -8
- data/spec/unit/resource/registry_key_spec.rb +19 -19
- data/spec/unit/resource/remote_file_spec.rb +2 -2
- data/spec/unit/resource/resource_notification_spec.rb +8 -8
- data/spec/unit/resource/service_spec.rb +3 -3
- data/spec/unit/resource/ssh_known_hosts_entry_spec.rb +55 -0
- data/spec/unit/resource/template_spec.rb +2 -2
- data/spec/unit/resource/user_spec.rb +2 -2
- data/spec/unit/resource/windows_feature_dism.rb +5 -5
- data/spec/unit/resource/windows_feature_powershell.rb +27 -6
- data/spec/unit/resource/yum_package_spec.rb +3 -3
- data/spec/unit/resource_collection/resource_set_spec.rb +6 -6
- data/spec/unit/resource_collection_spec.rb +5 -5
- data/spec/unit/resource_definition_spec.rb +2 -2
- data/spec/unit/resource_inspector_spec.rb +3 -3
- data/spec/unit/resource_reporter_spec.rb +24 -24
- data/spec/unit/resource_spec.rb +65 -31
- data/spec/unit/role_spec.rb +22 -22
- data/spec/unit/run_context_spec.rb +1 -1
- data/spec/unit/run_list/run_list_item_spec.rb +3 -3
- data/spec/unit/run_list/versioned_recipe_list_spec.rb +12 -12
- data/spec/unit/run_list_spec.rb +6 -6
- data/spec/unit/runner_spec.rb +4 -4
- data/spec/unit/scan_access_control_spec.rb +3 -3
- data/spec/unit/shell/model_wrapper_spec.rb +4 -4
- data/spec/unit/shell/shell_ext_spec.rb +4 -4
- data/spec/unit/shell/shell_session_spec.rb +28 -28
- data/spec/unit/user_spec.rb +2 -2
- data/spec/unit/user_v1_spec.rb +25 -25
- data/spec/unit/util/diff_spec.rb +1 -1
- data/spec/unit/util/dsc/configuration_generator_spec.rb +4 -4
- data/spec/unit/util/dsc/lcm_output_parser_spec.rb +105 -105
- data/spec/unit/util/dsc/local_configuration_manager_spec.rb +16 -16
- data/spec/unit/util/file_edit_spec.rb +38 -38
- data/spec/unit/util/powershell/cmdlet_spec.rb +1 -1
- data/spec/unit/util/selinux_spec.rb +10 -10
- data/spec/unit/win32/registry_spec.rb +3 -3
- data/spec/unit/windows_service_spec.rb +2 -2
- data/tasks/cbgb.rb +3 -3
- data/tasks/dependencies.rb +6 -8
- data/tasks/maintainers.rb +7 -7
- data/tasks/rspec.rb +2 -2
- metadata +24 -83
- data/acceptance/.shared/kitchen_acceptance/.kitchen.digitalocean.yml +0 -33
- data/acceptance/.shared/kitchen_acceptance/.kitchen.ec2.yml +0 -272
- data/acceptance/.shared/kitchen_acceptance/.kitchen.vagrant.yml +0 -57
- data/acceptance/.shared/kitchen_acceptance/libraries/kitchen.rb +0 -68
- data/acceptance/.shared/kitchen_acceptance/metadata.rb +0 -1
- data/acceptance/Gemfile +0 -19
- data/acceptance/Gemfile.lock +0 -266
- data/acceptance/README.md +0 -137
- data/acceptance/basics/.acceptance/acceptance-cookbook/.gitignore +0 -2
- data/acceptance/basics/.acceptance/acceptance-cookbook/metadata.rb +0 -3
- data/acceptance/basics/.acceptance/acceptance-cookbook/recipes/destroy.rb +0 -1
- data/acceptance/basics/.acceptance/acceptance-cookbook/recipes/provision.rb +0 -1
- data/acceptance/basics/.acceptance/acceptance-cookbook/recipes/verify.rb +0 -1
- data/acceptance/basics/.kitchen.yml +0 -4
- data/acceptance/basics/test/integration/chef-current-install/serverspec/chef_client_spec.rb +0 -19
- data/acceptance/basics/test/integration/chef-current-install/serverspec/spec_helper.rb +0 -6
- data/acceptance/basics/test/integration/helpers/serverspec/Gemfile +0 -8
- data/acceptance/data-collector/.acceptance/acceptance-cookbook/.gitignore +0 -2
- data/acceptance/data-collector/.acceptance/acceptance-cookbook/metadata.rb +0 -3
- data/acceptance/data-collector/.acceptance/acceptance-cookbook/recipes/destroy.rb +0 -2
- data/acceptance/data-collector/.acceptance/acceptance-cookbook/recipes/provision.rb +0 -2
- data/acceptance/data-collector/.acceptance/acceptance-cookbook/recipes/verify.rb +0 -2
- data/acceptance/data-collector/.acceptance/data-collector-test/.gitignore +0 -16
- data/acceptance/data-collector/.acceptance/data-collector-test/Berksfile +0 -3
- data/acceptance/data-collector/.acceptance/data-collector-test/files/default/api.rb +0 -101
- data/acceptance/data-collector/.acceptance/data-collector-test/files/default/apigemfile +0 -3
- data/acceptance/data-collector/.acceptance/data-collector-test/files/default/client-rb-both-mode.rb +0 -4
- data/acceptance/data-collector/.acceptance/data-collector-test/files/default/client-rb-client-mode.rb +0 -4
- data/acceptance/data-collector/.acceptance/data-collector-test/files/default/client-rb-no-endpoint.rb +0 -2
- data/acceptance/data-collector/.acceptance/data-collector-test/files/default/client-rb-solo-mode.rb +0 -4
- data/acceptance/data-collector/.acceptance/data-collector-test/files/default/config.ru +0 -2
- data/acceptance/data-collector/.acceptance/data-collector-test/metadata.rb +0 -7
- data/acceptance/data-collector/.acceptance/data-collector-test/recipes/default.rb +0 -44
- data/acceptance/data-collector/.kitchen.yml +0 -9
- data/acceptance/data-collector/Berksfile +0 -3
- data/acceptance/data-collector/test/integration/default/serverspec/default_spec.rb +0 -208
- data/acceptance/data-collector/test/integration/helpers/serverspec/Gemfile +0 -8
- data/acceptance/omnitruck/.acceptance/acceptance-cookbook/.gitignore +0 -2
- data/acceptance/omnitruck/.acceptance/acceptance-cookbook/metadata.rb +0 -1
- data/acceptance/omnitruck/.acceptance/acceptance-cookbook/recipes/destroy.rb +0 -1
- data/acceptance/omnitruck/.acceptance/acceptance-cookbook/recipes/provision.rb +0 -1
- data/acceptance/omnitruck/.acceptance/acceptance-cookbook/recipes/verify.rb +0 -61
- data/acceptance/top-cookbooks/.acceptance/acceptance-cookbook/.gitignore +0 -2
- data/acceptance/top-cookbooks/.acceptance/acceptance-cookbook/libraries/cookbook_kitchen.rb +0 -43
- data/acceptance/top-cookbooks/.acceptance/acceptance-cookbook/libraries/top_cookbooks.rb +0 -41
- data/acceptance/top-cookbooks/.acceptance/acceptance-cookbook/metadata.rb +0 -3
- data/acceptance/top-cookbooks/.acceptance/acceptance-cookbook/recipes/destroy.rb +0 -1
- data/acceptance/top-cookbooks/.acceptance/acceptance-cookbook/recipes/provision.rb +0 -1
- data/acceptance/top-cookbooks/.acceptance/acceptance-cookbook/recipes/verify.rb +0 -1
- data/acceptance/top-cookbooks/.gitignore +0 -1
- data/acceptance/top-cookbooks/.kitchen.chocolatey.yml +0 -6
- data/acceptance/top-cookbooks/.kitchen.iis.yml +0 -4
- data/acceptance/top-cookbooks/.kitchen.learn-the-basics-rhel.yml +0 -7
- data/acceptance/top-cookbooks/.kitchen.learn-the-basics-ubuntu.yml +0 -7
- data/acceptance/top-cookbooks/.kitchen.learn-the-basics-windows.yml +0 -7
- data/acceptance/top-cookbooks/.kitchen.powershell.yml +0 -4
- data/acceptance/top-cookbooks/.kitchen.sql_server.yml +0 -5
- data/acceptance/top-cookbooks/.kitchen.winbox.yml +0 -8
- data/acceptance/top-cookbooks/.kitchen.windows.yml +0 -38
- data/acceptance/trivial/.acceptance/acceptance-cookbook/.gitignore +0 -2
- data/acceptance/trivial/.acceptance/acceptance-cookbook/metadata.rb +0 -2
- data/acceptance/trivial/.acceptance/acceptance-cookbook/recipes/destroy.rb +0 -1
- data/acceptance/trivial/.acceptance/acceptance-cookbook/recipes/provision.rb +0 -1
- data/acceptance/trivial/.acceptance/acceptance-cookbook/recipes/verify.rb +0 -1
- data/acceptance/trivial/.kitchen.yml +0 -7
- data/acceptance/trivial/test/integration/chef-current-install/inspec/chef_client_spec.rb +0 -5
- data/acceptance/windows-service/.acceptance/acceptance-cookbook/.gitignore +0 -2
- data/acceptance/windows-service/.acceptance/acceptance-cookbook/metadata.rb +0 -2
- data/acceptance/windows-service/.acceptance/acceptance-cookbook/recipes/destroy.rb +0 -1
- data/acceptance/windows-service/.acceptance/acceptance-cookbook/recipes/provision.rb +0 -1
- data/acceptance/windows-service/.acceptance/acceptance-cookbook/recipes/verify.rb +0 -1
- data/acceptance/windows-service/.kitchen.yml +0 -7
- data/acceptance/windows-service/test/integration/chef-windows-service/inspec/chef_windows_service_spec.rb +0 -58
- data/distro/powershell/chef/Chef.PowerShell.dll +0 -0
data/spec/tiny_server.rb
CHANGED
@@ -38,7 +38,7 @@ module TinyServer
|
|
38
38
|
# SSLEnable: options[:ssl],
|
39
39
|
# SSLCertName: [ [ 'CN', WEBrick::Utils::getservername ] ],
|
40
40
|
AccessLog: [], # Remove this option to enable the access log when debugging.
|
41
|
-
}
|
41
|
+
}.freeze
|
42
42
|
|
43
43
|
def initialize(**options)
|
44
44
|
@options = DEFAULT_OPTIONS.merge(options)
|
@@ -101,10 +101,10 @@ module TinyServer
|
|
101
101
|
class API
|
102
102
|
include Singleton
|
103
103
|
|
104
|
-
GET = "GET"
|
105
|
-
PUT = "PUT"
|
106
|
-
POST = "POST"
|
107
|
-
DELETE = "DELETE"
|
104
|
+
GET = "GET".freeze
|
105
|
+
PUT = "PUT".freeze
|
106
|
+
POST = "POST".freeze
|
107
|
+
DELETE = "DELETE".freeze
|
108
108
|
|
109
109
|
attr_reader :routes
|
110
110
|
|
@@ -136,8 +136,8 @@ module TinyServer
|
|
136
136
|
if response = response_for_request(env)
|
137
137
|
response.call
|
138
138
|
else
|
139
|
-
debug_info = { :
|
140
|
-
:
|
139
|
+
debug_info = { message: "no data matches the request for #{env['REQUEST_URI']}",
|
140
|
+
available_routes: @routes, request: env }
|
141
141
|
# Uncomment me for glorious debugging
|
142
142
|
# pp :not_found => debug_info
|
143
143
|
[404, { "Content-Type" => "application/json" }, [ Chef::JSONCompat.to_json(debug_info) ]]
|
@@ -170,7 +170,7 @@ module TinyServer
|
|
170
170
|
end
|
171
171
|
|
172
172
|
class Response
|
173
|
-
HEADERS = { "Content-Type" => "application/json" }
|
173
|
+
HEADERS = { "Content-Type" => "application/json" }.freeze
|
174
174
|
|
175
175
|
def initialize(response_code = 200, data = nil, headers = nil, &block)
|
176
176
|
@response_code, @data = response_code, data
|
@@ -38,11 +38,11 @@ describe Chef::ApiClient::Registration do
|
|
38
38
|
let(:http_mock) { double("Chef::ServerAPI mock") }
|
39
39
|
|
40
40
|
let(:expected_post_data) do
|
41
|
-
{ :
|
41
|
+
{ name: client_name, admin: false, public_key: generated_public_key.to_pem }
|
42
42
|
end
|
43
43
|
|
44
44
|
let(:expected_put_data) do
|
45
|
-
{ :
|
45
|
+
{ name: client_name, admin: false, public_key: generated_public_key.to_pem }
|
46
46
|
end
|
47
47
|
|
48
48
|
let(:server_v10_response) do
|
@@ -108,28 +108,28 @@ describe Chef::ApiClient::Registration do
|
|
108
108
|
end
|
109
109
|
|
110
110
|
it "posts a locally generated public key to the server to create a client" do
|
111
|
-
expect(http_mock).to receive(:post)
|
112
|
-
with("clients", expected_post_data)
|
113
|
-
and_return(create_with_pkey_response)
|
111
|
+
expect(http_mock).to receive(:post)
|
112
|
+
.with("clients", expected_post_data)
|
113
|
+
.and_return(create_with_pkey_response)
|
114
114
|
expect(registration.run.public_key).to eq(create_with_pkey_response["chef_key"]["public_key"])
|
115
115
|
expect(OpenSSL::PKey::RSA.new(registration.private_key).to_s).to eq(OpenSSL::PKey::RSA.new(generated_private_key_pem).to_s)
|
116
116
|
end
|
117
117
|
|
118
118
|
it "puts a locally generated public key to the server to update a client" do
|
119
|
-
expect(http_mock).to receive(:post)
|
120
|
-
with("clients", expected_post_data)
|
121
|
-
and_raise(exception_409)
|
122
|
-
expect(http_mock).to receive(:put)
|
123
|
-
with("clients/#{client_name}", expected_put_data)
|
124
|
-
and_return(update_with_pkey_response)
|
119
|
+
expect(http_mock).to receive(:post)
|
120
|
+
.with("clients", expected_post_data)
|
121
|
+
.and_raise(exception_409)
|
122
|
+
expect(http_mock).to receive(:put)
|
123
|
+
.with("clients/#{client_name}", expected_put_data)
|
124
|
+
.and_return(update_with_pkey_response)
|
125
125
|
expect(registration.run.public_key).to eq(update_with_pkey_response["public_key"].to_pem)
|
126
126
|
expect(OpenSSL::PKey::RSA.new(registration.private_key).to_s).to eq(OpenSSL::PKey::RSA.new(generated_private_key_pem).to_s)
|
127
127
|
end
|
128
128
|
|
129
129
|
it "writes the generated private key to disk" do
|
130
|
-
expect(http_mock).to receive(:post)
|
131
|
-
with("clients", expected_post_data)
|
132
|
-
and_return(create_with_pkey_response)
|
130
|
+
expect(http_mock).to receive(:post)
|
131
|
+
.with("clients", expected_post_data)
|
132
|
+
.and_return(create_with_pkey_response)
|
133
133
|
registration.run
|
134
134
|
expect(OpenSSL::PKey::RSA.new(IO.read(key_location)).to_s).to eq(OpenSSL::PKey::RSA.new(generated_private_key_pem).to_s)
|
135
135
|
end
|
@@ -137,9 +137,9 @@ describe Chef::ApiClient::Registration do
|
|
137
137
|
context "and the client already exists on a Chef 11 server" do
|
138
138
|
it "requests a new key from the server and saves it" do
|
139
139
|
expect(http_mock).to receive(:post).and_raise(exception_409)
|
140
|
-
expect(http_mock).to receive(:put)
|
141
|
-
with("clients/#{client_name}", expected_put_data)
|
142
|
-
and_return(update_with_pkey_response)
|
140
|
+
expect(http_mock).to receive(:put)
|
141
|
+
.with("clients/#{client_name}", expected_put_data)
|
142
|
+
.and_return(update_with_pkey_response)
|
143
143
|
expect(registration.run.public_key).to eq(update_with_pkey_response["public_key"].to_pem)
|
144
144
|
expect(OpenSSL::PKey::RSA.new(registration.private_key).to_s).to eq(OpenSSL::PKey::RSA.new(generated_private_key_pem).to_s)
|
145
145
|
end
|
@@ -148,11 +148,11 @@ describe Chef::ApiClient::Registration do
|
|
148
148
|
context "when local key generation is disabled" do
|
149
149
|
|
150
150
|
let(:expected_post_data) do
|
151
|
-
{ :
|
151
|
+
{ name: client_name, admin: false }
|
152
152
|
end
|
153
153
|
|
154
154
|
let(:expected_put_data) do
|
155
|
-
{ :
|
155
|
+
{ name: client_name, admin: false, private_key: true }
|
156
156
|
end
|
157
157
|
|
158
158
|
before do
|
@@ -161,9 +161,9 @@ describe Chef::ApiClient::Registration do
|
|
161
161
|
end
|
162
162
|
|
163
163
|
it "creates a new ApiClient on the server using the validator identity" do
|
164
|
-
expect(http_mock).to receive(:post)
|
165
|
-
with("clients", expected_post_data)
|
166
|
-
and_return(server_v10_response)
|
164
|
+
expect(http_mock).to receive(:post)
|
165
|
+
.with("clients", expected_post_data)
|
166
|
+
.and_return(server_v10_response)
|
167
167
|
expect(registration.run.private_key).to eq(server_v10_response["private_key"])
|
168
168
|
expect(registration.private_key).to eq("--begin rsa key etc--")
|
169
169
|
end
|
@@ -171,9 +171,9 @@ describe Chef::ApiClient::Registration do
|
|
171
171
|
context "and the client already exists on a Chef 11 server" do
|
172
172
|
it "requests a new key from the server and saves it" do
|
173
173
|
expect(http_mock).to receive(:post).and_raise(exception_409)
|
174
|
-
expect(http_mock).to receive(:put)
|
175
|
-
with("clients/#{client_name}", expected_put_data)
|
176
|
-
and_return(server_v11_response)
|
174
|
+
expect(http_mock).to receive(:put)
|
175
|
+
.with("clients/#{client_name}", expected_put_data)
|
176
|
+
.and_return(server_v11_response)
|
177
177
|
expect(registration.run).to eq(server_v11_response)
|
178
178
|
expect(registration.private_key).to eq("--begin rsa key etc--")
|
179
179
|
end
|
@@ -181,11 +181,11 @@ describe Chef::ApiClient::Registration do
|
|
181
181
|
|
182
182
|
context "and the client already exists on a Chef 10 server" do
|
183
183
|
it "requests a new key from the server and saves it" do
|
184
|
-
expect(http_mock).to receive(:post).with("clients", expected_post_data)
|
185
|
-
and_raise(exception_409)
|
186
|
-
expect(http_mock).to receive(:put)
|
187
|
-
with("clients/#{client_name}", expected_put_data)
|
188
|
-
and_return(server_v10_response)
|
184
|
+
expect(http_mock).to receive(:post).with("clients", expected_post_data)
|
185
|
+
.and_raise(exception_409)
|
186
|
+
expect(http_mock).to receive(:put)
|
187
|
+
.with("clients/#{client_name}", expected_put_data)
|
188
|
+
.and_return(server_v10_response)
|
189
189
|
expect(registration.run.private_key).to eq(server_v10_response["private_key"])
|
190
190
|
expect(registration.private_key).to eq("--begin rsa key etc--")
|
191
191
|
end
|
@@ -302,9 +302,9 @@ describe Chef::ApiClient do
|
|
302
302
|
@api_client_with_key = Chef::ApiClient.new
|
303
303
|
@api_client_with_key.name("lost-my-key")
|
304
304
|
@api_client_with_key.private_key("the new private key")
|
305
|
-
expect(@http_client).to receive(:put)
|
306
|
-
with("clients/lost-my-key", :
|
307
|
-
and_return(@api_client_with_key)
|
305
|
+
expect(@http_client).to receive(:put)
|
306
|
+
.with("clients/lost-my-key", name: "lost-my-key", admin: false, validator: false, private_key: true)
|
307
|
+
.and_return(@api_client_with_key)
|
308
308
|
end
|
309
309
|
|
310
310
|
it "returns an ApiClient with a private key" do
|
@@ -320,9 +320,9 @@ describe Chef::ApiClient do
|
|
320
320
|
context "and the client exists on a Chef 10-like server" do
|
321
321
|
before do
|
322
322
|
@api_client_with_key = { "name" => "lost-my-key", "private_key" => "the new private key" }
|
323
|
-
expect(@http_client).to receive(:put)
|
324
|
-
with("clients/lost-my-key", :
|
325
|
-
and_return(@api_client_with_key)
|
323
|
+
expect(@http_client).to receive(:put)
|
324
|
+
.with("clients/lost-my-key", name: "lost-my-key", admin: false, validator: false, private_key: true)
|
325
|
+
.and_return(@api_client_with_key)
|
326
326
|
end
|
327
327
|
|
328
328
|
it "returns an ApiClient with a private key" do
|
@@ -324,13 +324,13 @@ describe Chef::ApiClientV1 do
|
|
324
324
|
end
|
325
325
|
|
326
326
|
describe "Versioned API Interactions" do
|
327
|
-
let(:response_406) { OpenStruct.new(:
|
327
|
+
let(:response_406) { OpenStruct.new(code: "406") }
|
328
328
|
let(:exception_406) { Net::HTTPServerException.new("406 Not Acceptable", response_406) }
|
329
329
|
let(:payload) do
|
330
330
|
{
|
331
|
-
:
|
332
|
-
:
|
333
|
-
:
|
331
|
+
name: "some_name",
|
332
|
+
validator: true,
|
333
|
+
admin: true,
|
334
334
|
}
|
335
335
|
end
|
336
336
|
|
@@ -389,7 +389,7 @@ describe Chef::ApiClientV1 do
|
|
389
389
|
end
|
390
390
|
|
391
391
|
it "updates the client with only the name" do
|
392
|
-
expect(rest). to receive(:put).with("clients/some_name", { :
|
392
|
+
expect(rest). to receive(:put).with("clients/some_name", { name: "some_name" }).and_return({ name: "some_name" })
|
393
393
|
@client.update
|
394
394
|
end
|
395
395
|
end
|
@@ -437,7 +437,7 @@ describe Chef::ApiClientV1 do
|
|
437
437
|
describe "reregister" do
|
438
438
|
context "when server API V0 is valid on the Chef Server receiving the request" do
|
439
439
|
it "creates a new object via the API" do
|
440
|
-
expect(@client.chef_rest_v0).to receive(:put).with("clients/#{@client.name}", payload.merge({ :
|
440
|
+
expect(@client.chef_rest_v0).to receive(:put).with("clients/#{@client.name}", payload.merge({ private_key: true })).and_return({})
|
441
441
|
@client.reregister
|
442
442
|
end
|
443
443
|
end # when server API V0 is valid on the Chef Server receiving the request
|
@@ -37,7 +37,7 @@ describe Chef::Application::Apply do
|
|
37
37
|
before do
|
38
38
|
@recipe_file_name = "foo.rb"
|
39
39
|
@recipe_path = File.expand_path(@recipe_file_name)
|
40
|
-
@recipe_file = double("Tempfile (mock)", :
|
40
|
+
@recipe_file = double("Tempfile (mock)", read: @recipe_text)
|
41
41
|
allow(@app).to receive(:open).with(@recipe_path).and_return(@recipe_file)
|
42
42
|
allow(File).to receive(:exist?).with(@recipe_path).and_return(true)
|
43
43
|
allow(Chef::Application).to receive(:fatal!).and_return(true)
|
@@ -96,13 +96,13 @@ describe Chef::Application::Apply do
|
|
96
96
|
end
|
97
97
|
describe "when the json_attribs configuration option is specified" do
|
98
98
|
let(:json_attribs) { { "a" => "b" } }
|
99
|
-
let(:config_fetcher) { double(Chef::ConfigFetcher, :
|
99
|
+
let(:config_fetcher) { double(Chef::ConfigFetcher, fetch_json: json_attribs) }
|
100
100
|
let(:json_source) { "https://foo.com/foo.json" }
|
101
101
|
|
102
102
|
before do
|
103
103
|
Chef::Config[:json_attribs] = json_source
|
104
|
-
expect(Chef::ConfigFetcher).to receive(:new).with(json_source)
|
105
|
-
and_return(config_fetcher)
|
104
|
+
expect(Chef::ConfigFetcher).to receive(:new).with(json_source)
|
105
|
+
.and_return(config_fetcher)
|
106
106
|
end
|
107
107
|
|
108
108
|
it "reads the JSON attributes from the specified source" do
|
@@ -121,27 +121,27 @@ describe Chef::Application::Client, "reconfigure" do
|
|
121
121
|
describe "--named-run-list" do
|
122
122
|
it_behaves_like "sets the configuration",
|
123
123
|
"--named-run-list arglebargle-example",
|
124
|
-
:
|
124
|
+
named_run_list: "arglebargle-example"
|
125
125
|
end
|
126
126
|
|
127
127
|
describe "--no-listen" do
|
128
|
-
it_behaves_like "sets the configuration", "--no-listen", :
|
128
|
+
it_behaves_like "sets the configuration", "--no-listen", listen: false
|
129
129
|
end
|
130
130
|
|
131
131
|
describe "--daemonize", :unix_only do
|
132
132
|
context "with no value" do
|
133
133
|
it_behaves_like "sets the configuration", "--daemonize",
|
134
|
-
:
|
134
|
+
daemonize: true
|
135
135
|
end
|
136
136
|
|
137
137
|
context "with an integer value" do
|
138
138
|
it_behaves_like "sets the configuration", "--daemonize 5",
|
139
|
-
:
|
139
|
+
daemonize: 5
|
140
140
|
end
|
141
141
|
|
142
142
|
context "with a non-integer value" do
|
143
143
|
it_behaves_like "sets the configuration", "--daemonize foo",
|
144
|
-
:
|
144
|
+
daemonize: true
|
145
145
|
end
|
146
146
|
end
|
147
147
|
|
@@ -178,17 +178,17 @@ describe Chef::Application::Client, "reconfigure" do
|
|
178
178
|
describe "--config-option" do
|
179
179
|
context "with a single value" do
|
180
180
|
it_behaves_like "sets the configuration", "--config-option chef_server_url=http://example",
|
181
|
-
:
|
181
|
+
chef_server_url: "http://example"
|
182
182
|
end
|
183
183
|
|
184
184
|
context "with two values" do
|
185
185
|
it_behaves_like "sets the configuration", "--config-option chef_server_url=http://example --config-option policy_name=web",
|
186
|
-
:
|
186
|
+
chef_server_url: "http://example", policy_name: "web"
|
187
187
|
end
|
188
188
|
|
189
189
|
context "with a boolean value" do
|
190
190
|
it_behaves_like "sets the configuration", "--config-option minimal_ohai=true",
|
191
|
-
:
|
191
|
+
minimal_ohai: true
|
192
192
|
end
|
193
193
|
|
194
194
|
context "with an empty value" do
|
@@ -321,14 +321,14 @@ Enable chef-client interval runs by setting `:client_fork = true` in your config
|
|
321
321
|
describe "when the json_attribs configuration option is specified" do
|
322
322
|
|
323
323
|
let(:json_attribs) { { "a" => "b" } }
|
324
|
-
let(:config_fetcher) { double(Chef::ConfigFetcher, :
|
324
|
+
let(:config_fetcher) { double(Chef::ConfigFetcher, fetch_json: json_attribs) }
|
325
325
|
let(:json_source) { "https://foo.com/foo.json" }
|
326
326
|
|
327
327
|
before do
|
328
328
|
allow(app).to receive(:configure_chef).and_return(true)
|
329
329
|
Chef::Config[:json_attribs] = json_source
|
330
|
-
expect(Chef::ConfigFetcher).to receive(:new).with(json_source)
|
331
|
-
and_return(config_fetcher)
|
330
|
+
expect(Chef::ConfigFetcher).to receive(:new).with(json_source)
|
331
|
+
.and_return(config_fetcher)
|
332
332
|
end
|
333
333
|
|
334
334
|
it "reads the JSON attributes from the specified source" do
|
@@ -24,9 +24,9 @@ describe Chef::Application::Knife do
|
|
24
24
|
before(:all) do
|
25
25
|
class NoopKnifeCommand < Chef::Knife
|
26
26
|
option :opt_with_default,
|
27
|
-
:
|
28
|
-
:
|
29
|
-
:
|
27
|
+
short: "-D VALUE",
|
28
|
+
long: "-optwithdefault VALUE",
|
29
|
+
default: "default-value"
|
30
30
|
|
31
31
|
def run
|
32
32
|
end
|
@@ -93,13 +93,13 @@ Enable chef-client interval runs by setting `:client_fork = true` in your config
|
|
93
93
|
|
94
94
|
describe "when the json_attribs configuration option is specified" do
|
95
95
|
let(:json_attribs) { { "a" => "b" } }
|
96
|
-
let(:config_fetcher) { double(Chef::ConfigFetcher, :
|
96
|
+
let(:config_fetcher) { double(Chef::ConfigFetcher, fetch_json: json_attribs) }
|
97
97
|
let(:json_source) { "https://foo.com/foo.json" }
|
98
98
|
|
99
99
|
before do
|
100
100
|
Chef::Config[:json_attribs] = json_source
|
101
|
-
expect(Chef::ConfigFetcher).to receive(:new).with(json_source)
|
102
|
-
and_return(config_fetcher)
|
101
|
+
expect(Chef::ConfigFetcher).to receive(:new).with(json_source)
|
102
|
+
.and_return(config_fetcher)
|
103
103
|
end
|
104
104
|
|
105
105
|
it "reads the JSON attributes from the specified source" do
|
@@ -130,7 +130,7 @@ Enable chef-client interval runs by setting `:client_fork = true` in your config
|
|
130
130
|
|
131
131
|
it "fetches the recipe_url first when both json_attribs and recipe_url are specified" do
|
132
132
|
json_attribs = { "a" => "b" }
|
133
|
-
config_fetcher = instance_double("Chef::ConfigFetcher", :
|
133
|
+
config_fetcher = instance_double("Chef::ConfigFetcher", fetch_json: json_attribs)
|
134
134
|
|
135
135
|
Chef::Config[:json_attribs] = "https://foo.com/foo.json"
|
136
136
|
Chef::Config[:recipe_url] = "http://icanhas.cheezburger.com/lolcats"
|
@@ -208,7 +208,7 @@ Enable chef-client interval runs by setting `:client_fork = true` in your config
|
|
208
208
|
it "sets the repo path" do
|
209
209
|
expect(Chef::Config).to receive(:find_chef_repo_path).and_return("/var/chef")
|
210
210
|
app.reconfigure
|
211
|
-
expect(Chef::Config.
|
211
|
+
expect(Chef::Config.key?(:chef_repo_path)).to be_truthy
|
212
212
|
expect(Chef::Config[:chef_repo_path]).to eq ("/var/chef")
|
213
213
|
end
|
214
214
|
|
@@ -107,7 +107,7 @@ describe Chef::Application do
|
|
107
107
|
|
108
108
|
it "should parse the commandline options" do
|
109
109
|
expect(@app).to receive(:parse_options).and_return(true)
|
110
|
-
@app.config[:config_file] = "/etc/chef/default.rb" #have a config file set, to prevent triggering error block
|
110
|
+
@app.config[:config_file] = "/etc/chef/default.rb" # have a config file set, to prevent triggering error block
|
111
111
|
@app.configure_chef
|
112
112
|
end
|
113
113
|
|
@@ -127,9 +127,9 @@ describe Chef::Application do
|
|
127
127
|
# force let binding to get evaluated or else we stub Pathname.new before we try to use it.
|
128
128
|
config_location_pathname
|
129
129
|
allow(Pathname).to receive(:new).with(config_location).and_return(config_location_pathname)
|
130
|
-
expect(File).to receive(:read)
|
131
|
-
with(config_location)
|
132
|
-
and_return(config_content)
|
130
|
+
expect(File).to receive(:read)
|
131
|
+
.with(config_location)
|
132
|
+
.and_return(config_content)
|
133
133
|
end
|
134
134
|
|
135
135
|
it "should configure chef::config from a file" do
|
@@ -138,7 +138,7 @@ describe Chef::Application do
|
|
138
138
|
end
|
139
139
|
|
140
140
|
it "should merge the local config hash into chef::config" do
|
141
|
-
#File.should_receive(:open).with("/etc/chef/default.rb").and_yield(@config_file)
|
141
|
+
# File.should_receive(:open).with("/etc/chef/default.rb").and_yield(@config_file)
|
142
142
|
@app.configure_chef
|
143
143
|
expect(Chef::Config.rspec_ran).to eq("true")
|
144
144
|
end
|
@@ -393,11 +393,11 @@ describe Chef::Application do
|
|
393
393
|
|
394
394
|
def raises_informative_fatals_on_configure_chef
|
395
395
|
config_file_regexp = Regexp.new @app.config[:config_file]
|
396
|
-
expect(Chef::Log).to receive(:fatal)
|
397
|
-
with(/Configuration error/)
|
398
|
-
expect(Chef::Log).to receive(:fatal)
|
399
|
-
with(config_file_regexp)
|
400
|
-
at_least(1).times
|
396
|
+
expect(Chef::Log).to receive(:fatal)
|
397
|
+
.with(/Configuration error/)
|
398
|
+
expect(Chef::Log).to receive(:fatal)
|
399
|
+
.with(config_file_regexp)
|
400
|
+
.at_least(1).times
|
401
401
|
@app.configure_chef
|
402
402
|
end
|
403
403
|
|
@@ -447,7 +447,7 @@ describe Chef::Application do
|
|
447
447
|
ARGV.replace(@original_argv)
|
448
448
|
end
|
449
449
|
|
450
|
-
let(:fake_config_fetcher) { instance_double(Chef::ConfigFetcher, expanded_path: "/thisbetternotexist",
|
450
|
+
let(:fake_config_fetcher) { instance_double(Chef::ConfigFetcher, expanded_path: "/thisbetternotexist", "config_missing?": false, read_config: "" ) }
|
451
451
|
|
452
452
|
it "reading a mixlib-config default works" do
|
453
453
|
@app.parse_options
|
@@ -35,19 +35,19 @@ describe Chef::Audit::AuditEventProxy do
|
|
35
35
|
|
36
36
|
let(:description) { "poots" }
|
37
37
|
let(:group) do
|
38
|
-
double("ExampleGroup", :
|
39
|
-
:
|
40
|
-
let(:notification) { double("Notification", :
|
38
|
+
double("ExampleGroup", parent_groups: parents,
|
39
|
+
description: description) end
|
40
|
+
let(:notification) { double("Notification", group: group) }
|
41
41
|
|
42
42
|
context "when notified from a top-level example group" do
|
43
43
|
|
44
44
|
let(:parents) { [double("ExampleGroup")] }
|
45
45
|
|
46
46
|
it "notifies control_group_started event" do
|
47
|
-
expect(Chef::Log).to receive(:trace)
|
48
|
-
with("Entered \`control_group\` block named poots")
|
49
|
-
expect(events).to receive(:control_group_started)
|
50
|
-
with(description)
|
47
|
+
expect(Chef::Log).to receive(:trace)
|
48
|
+
.with("Entered \`control_group\` block named poots")
|
49
|
+
expect(events).to receive(:control_group_started)
|
50
|
+
.with(description)
|
51
51
|
audit_event_proxy.example_group_started(notification)
|
52
52
|
end
|
53
53
|
end
|
@@ -66,9 +66,9 @@ describe Chef::Audit::AuditEventProxy do
|
|
66
66
|
describe "#stop" do
|
67
67
|
|
68
68
|
let(:examples) { [] }
|
69
|
-
let(:notification) { double("Notification", :
|
69
|
+
let(:notification) { double("Notification", examples: examples) }
|
70
70
|
let(:exception) { nil }
|
71
|
-
let(:example) { double("Example", :
|
71
|
+
let(:example) { double("Example", exception: exception) }
|
72
72
|
let(:control_group_name) { "audit test" }
|
73
73
|
let(:control_data) { double("ControlData") }
|
74
74
|
|
@@ -87,14 +87,14 @@ describe Chef::Audit::AuditEventProxy do
|
|
87
87
|
let(:excpetion) { nil }
|
88
88
|
|
89
89
|
before do
|
90
|
-
allow(audit_event_proxy).to receive(:build_control_from)
|
91
|
-
with(example)
|
92
|
-
and_return([control_group_name, control_data])
|
90
|
+
allow(audit_event_proxy).to receive(:build_control_from)
|
91
|
+
.with(example)
|
92
|
+
.and_return([control_group_name, control_data])
|
93
93
|
end
|
94
94
|
|
95
95
|
it "notifies events" do
|
96
|
-
expect(events).to receive(:control_example_success)
|
97
|
-
with(control_group_name, control_data)
|
96
|
+
expect(events).to receive(:control_example_success)
|
97
|
+
.with(control_group_name, control_data)
|
98
98
|
audit_event_proxy.stop(notification)
|
99
99
|
end
|
100
100
|
end
|
@@ -105,14 +105,14 @@ describe Chef::Audit::AuditEventProxy do
|
|
105
105
|
let(:exception) { double("ExpectationNotMet") }
|
106
106
|
|
107
107
|
before do
|
108
|
-
allow(audit_event_proxy).to receive(:build_control_from)
|
109
|
-
with(example)
|
110
|
-
and_return([control_group_name, control_data])
|
108
|
+
allow(audit_event_proxy).to receive(:build_control_from)
|
109
|
+
.with(example)
|
110
|
+
.and_return([control_group_name, control_data])
|
111
111
|
end
|
112
112
|
|
113
113
|
it "notifies events" do
|
114
|
-
expect(events).to receive(:control_example_failure)
|
115
|
-
with(control_group_name, control_data, exception)
|
114
|
+
expect(events).to receive(:control_example_failure)
|
115
|
+
.with(control_group_name, control_data, exception)
|
116
116
|
audit_event_proxy.stop(notification)
|
117
117
|
end
|
118
118
|
end
|
@@ -122,29 +122,29 @@ describe Chef::Audit::AuditEventProxy do
|
|
122
122
|
let(:examples) { [example] }
|
123
123
|
|
124
124
|
let(:example) do
|
125
|
-
double("Example", :
|
126
|
-
:
|
127
|
-
:
|
125
|
+
double("Example", metadata: metadata,
|
126
|
+
description: example_description,
|
127
|
+
full_description: full_description, exception: nil) end
|
128
128
|
|
129
129
|
let(:metadata) do
|
130
130
|
{
|
131
|
-
:
|
132
|
-
:
|
133
|
-
:
|
131
|
+
described_class: described_class,
|
132
|
+
example_group: example_group,
|
133
|
+
line_number: line,
|
134
134
|
}
|
135
135
|
end
|
136
136
|
|
137
137
|
let(:example_group) do
|
138
138
|
{
|
139
|
-
:
|
140
|
-
:
|
139
|
+
description: group_description,
|
140
|
+
parent_example_group: parent_group,
|
141
141
|
}
|
142
142
|
end
|
143
143
|
|
144
144
|
let(:parent_group) do
|
145
145
|
{
|
146
|
-
:
|
147
|
-
:
|
146
|
+
description: control_group_name,
|
147
|
+
parent_example_group: nil,
|
148
148
|
}
|
149
149
|
end
|
150
150
|
|
@@ -152,12 +152,12 @@ describe Chef::Audit::AuditEventProxy do
|
|
152
152
|
|
153
153
|
let(:control_data) do
|
154
154
|
{
|
155
|
-
:
|
156
|
-
:
|
157
|
-
:
|
158
|
-
:
|
159
|
-
:
|
160
|
-
:
|
155
|
+
name: example_description,
|
156
|
+
desc: full_description,
|
157
|
+
resource_type: resource_type,
|
158
|
+
resource_name: resource_name,
|
159
|
+
context: context,
|
160
|
+
line_number: line,
|
161
161
|
}
|
162
162
|
end
|
163
163
|
|
@@ -165,17 +165,17 @@ describe Chef::Audit::AuditEventProxy do
|
|
165
165
|
|
166
166
|
before do
|
167
167
|
if described_class
|
168
|
-
allow(described_class).to receive(:instance_variable_get)
|
169
|
-
with(:@name)
|
170
|
-
and_return(resource_name)
|
171
|
-
allow(described_class.class).to receive(:name)
|
172
|
-
and_return(described_class.class)
|
168
|
+
allow(described_class).to receive(:instance_variable_get)
|
169
|
+
.with(:@name)
|
170
|
+
.and_return(resource_name)
|
171
|
+
allow(described_class.class).to receive(:name)
|
172
|
+
.and_return(described_class.class)
|
173
173
|
end
|
174
174
|
end
|
175
175
|
|
176
176
|
it "returns the controls block name and example metadata for reporting" do
|
177
|
-
expect(events).to receive(:control_example_success)
|
178
|
-
with(control_group_name, control_data)
|
177
|
+
expect(events).to receive(:control_example_success)
|
178
|
+
.with(control_group_name, control_data)
|
179
179
|
audit_event_proxy.stop(notification)
|
180
180
|
end
|
181
181
|
end
|
@@ -227,7 +227,7 @@ describe Chef::Audit::AuditEventProxy do
|
|
227
227
|
# Metadata fields
|
228
228
|
let(:described_class) do
|
229
229
|
double("Serverspec::Type::Port",
|
230
|
-
:
|
230
|
+
class: "Serverspec::Type::Port", name: resource_name) end
|
231
231
|
|
232
232
|
# Control data fields
|
233
233
|
let(:resource_type) { "Port" }
|
@@ -288,20 +288,20 @@ describe Chef::Audit::AuditEventProxy do
|
|
288
288
|
# Metadata parts
|
289
289
|
let(:described_class) do
|
290
290
|
double("Serverspec::Type::File",
|
291
|
-
:
|
291
|
+
class: "Serverspec::Type::File", name: resource_name) end
|
292
292
|
|
293
293
|
# Example group parts
|
294
294
|
let(:parent_group) do
|
295
295
|
{
|
296
|
-
:
|
297
|
-
:
|
296
|
+
description: outer_group_description,
|
297
|
+
parent_example_group: control_group,
|
298
298
|
}
|
299
299
|
end
|
300
300
|
|
301
301
|
let(:control_group) do
|
302
302
|
{
|
303
|
-
:
|
304
|
-
:
|
303
|
+
description: control_group_name,
|
304
|
+
parent_example_group: nil,
|
305
305
|
}
|
306
306
|
end
|
307
307
|
|