chef 15.1.36-universal-mingw32 → 15.2.20-universal-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/knife +0 -0
- data/ext/win32-eventlog/Rakefile +1 -1
- data/lib/chef.rb +1 -2
- data/lib/chef/action_collection.rb +8 -0
- data/lib/chef/api_client.rb +2 -2
- data/lib/chef/api_client/registration.rb +8 -7
- data/lib/chef/api_client_v1.rb +2 -1
- data/lib/chef/application.rb +1 -0
- data/lib/chef/application/apply.rb +1 -1
- data/lib/chef/application/base.rb +440 -0
- data/lib/chef/application/client.rb +6 -389
- data/lib/chef/application/solo.rb +11 -258
- data/lib/chef/application/windows_service.rb +3 -3
- data/lib/chef/application/windows_service_manager.rb +3 -3
- data/lib/chef/blacklist.rb +1 -1
- data/lib/chef/chef_fs/chef_fs_data_store.rb +15 -7
- data/lib/chef/chef_fs/command_line.rb +6 -1
- data/lib/chef/chef_fs/config.rb +3 -2
- data/lib/chef/chef_fs/data_handler/container_data_handler.rb +1 -1
- data/lib/chef/chef_fs/data_handler/data_bag_item_data_handler.rb +1 -1
- data/lib/chef/chef_fs/data_handler/data_handler_base.rb +1 -1
- data/lib/chef/chef_fs/data_handler/organization_data_handler.rb +1 -1
- data/lib/chef/chef_fs/data_handler/policy_data_handler.rb +2 -2
- data/lib/chef/chef_fs/file_pattern.rb +13 -7
- data/lib/chef/chef_fs/file_system.rb +3 -2
- data/lib/chef/chef_fs/file_system/base_fs_object.rb +13 -6
- data/lib/chef/chef_fs/file_system/chef_server/chef_server_root_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/cookbook_artifacts_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/cookbook_dir.rb +8 -5
- data/lib/chef/chef_fs/file_system/chef_server/cookbook_file.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/cookbook_subdir.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/cookbooks_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/chef_server/data_bag_dir.rb +3 -2
- data/lib/chef/chef_fs/file_system/chef_server/environments_dir.rb +4 -2
- data/lib/chef/chef_fs/file_system/chef_server/policies_dir.rb +1 -0
- data/lib/chef/chef_fs/file_system/chef_server/rest_list_dir.rb +1 -0
- data/lib/chef/chef_fs/file_system/chef_server/versioned_cookbooks_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/memory/memory_dir.rb +1 -1
- data/lib/chef/chef_fs/file_system/repository/acl.rb +1 -1
- data/lib/chef/chef_fs/file_system/repository/base_file.rb +2 -1
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_cookbook_dir.rb +6 -2
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_cookbook_entry.rb +6 -4
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_root_dir.rb +6 -4
- data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_versioned_cookbook_dir.rb +1 -0
- data/lib/chef/chef_fs/file_system/repository/directory.rb +5 -1
- data/lib/chef/chef_fs/file_system/repository/file_system_entry.rb +4 -2
- data/lib/chef/chef_fs/file_system_cache.rb +1 -0
- data/lib/chef/chef_fs/parallelizer/parallel_enumerable.rb +2 -1
- data/lib/chef/chef_fs/path_utils.rb +3 -0
- data/lib/chef/client.rb +4 -2
- data/lib/chef/config.rb +1 -1
- data/lib/chef/cookbook/cookbook_version_loader.rb +6 -3
- data/lib/chef/cookbook/file_system_file_vendor.rb +1 -0
- data/lib/chef/cookbook/file_vendor.rb +1 -0
- data/lib/chef/cookbook/gem_installer.rb +1 -0
- data/lib/chef/cookbook/manifest_v0.rb +1 -0
- data/lib/chef/cookbook/metadata.rb +11 -9
- data/lib/chef/cookbook/remote_file_vendor.rb +3 -2
- data/lib/chef/cookbook/synchronizer.rb +6 -4
- data/lib/chef/cookbook/syntax_check.rb +4 -0
- data/lib/chef/cookbook_loader.rb +1 -0
- data/lib/chef/cookbook_manifest.rb +4 -2
- data/lib/chef/cookbook_site_streaming_uploader.rb +1 -1
- data/lib/chef/cookbook_uploader.rb +2 -2
- data/lib/chef/cookbook_version.rb +10 -9
- data/lib/chef/data_bag.rb +2 -1
- data/lib/chef/data_bag_item.rb +6 -3
- data/lib/chef/data_collector.rb +16 -8
- data/lib/chef/data_collector/run_end_message.rb +2 -0
- data/lib/chef/decorator.rb +5 -6
- data/lib/chef/deprecated.rb +1 -0
- data/lib/chef/dsl/data_query.rb +1 -1
- data/lib/chef/dsl/declare_resource.rb +2 -0
- data/lib/chef/dsl/platform_introspection.rb +3 -1
- data/lib/chef/encrypted_data_bag_item.rb +7 -4
- data/lib/chef/encrypted_data_bag_item/assertions.rb +1 -1
- data/lib/chef/encrypted_data_bag_item/check_encrypted.rb +1 -0
- data/lib/chef/encrypted_data_bag_item/decryptor.rb +4 -2
- data/lib/chef/encrypted_data_bag_item/encryptor.rb +1 -0
- data/lib/chef/environment.rb +7 -5
- data/lib/chef/event_dispatch/base.rb +86 -172
- data/lib/chef/event_dispatch/dispatcher.rb +2 -1
- data/lib/chef/event_loggers/base.rb +2 -1
- data/lib/chef/exceptions.rb +6 -7
- data/lib/chef/file_access_control/unix.rb +7 -4
- data/lib/chef/file_access_control/windows.rb +17 -8
- data/lib/chef/file_cache.rb +2 -1
- data/lib/chef/file_content_management/deploy.rb +2 -2
- data/lib/chef/formatters/base.rb +3 -4
- data/lib/chef/formatters/doc.rb +21 -33
- data/lib/chef/formatters/error_inspectors/cookbook_resolve_error_inspector.rb +3 -2
- data/lib/chef/formatters/error_inspectors/resource_failure_inspector.rb +3 -1
- data/lib/chef/formatters/indentable_output_stream.rb +3 -3
- data/lib/chef/formatters/minimal.rb +21 -42
- data/lib/chef/guard_interpreter/resource_guard_interpreter.rb +1 -1
- data/lib/chef/handler.rb +1 -2
- data/lib/chef/http.rb +23 -18
- data/lib/chef/http/api_versions.rb +1 -2
- data/lib/chef/http/auth_credentials.rb +1 -0
- data/lib/chef/http/basic_client.rb +1 -1
- data/lib/chef/http/decompressor.rb +1 -0
- data/lib/chef/http/json_output.rb +2 -1
- data/lib/chef/http/json_to_model_output.rb +1 -1
- data/lib/chef/http/remote_request_id.rb +1 -2
- data/lib/chef/http/socketless_chef_zero_client.rb +3 -2
- data/lib/chef/http/ssl_policies.rb +3 -0
- data/lib/chef/http/validate_content_length.rb +2 -2
- data/lib/chef/json_compat.rb +1 -1
- data/lib/chef/key.rb +8 -6
- data/lib/chef/knife.rb +6 -5
- data/lib/chef/knife/bootstrap.rb +19 -12
- data/lib/chef/knife/bootstrap/chef_vault_handler.rb +1 -0
- data/lib/chef/knife/bootstrap/client_builder.rb +1 -0
- data/lib/chef/knife/bootstrap/train_connector.rb +23 -17
- data/lib/chef/knife/client_bulk_delete.rb +4 -3
- data/lib/chef/knife/client_create.rb +13 -13
- data/lib/chef/knife/client_delete.rb +3 -3
- data/lib/chef/knife/config_get.rb +8 -8
- data/lib/chef/knife/config_list_profiles.rb +4 -4
- data/lib/chef/knife/cookbook_delete.rb +1 -1
- data/lib/chef/knife/cookbook_download.rb +12 -12
- data/lib/chef/knife/cookbook_show.rb +10 -10
- data/lib/chef/knife/cookbook_upload.rb +5 -5
- data/lib/chef/knife/core/bootstrap_context.rb +1 -1
- data/lib/chef/knife/core/cookbook_scm_repo.rb +1 -1
- data/lib/chef/knife/core/gem_glob_loader.rb +2 -2
- data/lib/chef/knife/core/generic_presenter.rb +4 -4
- data/lib/chef/knife/core/node_presenter.rb +17 -17
- data/lib/chef/knife/core/object_loader.rb +1 -1
- data/lib/chef/knife/core/status_presenter.rb +5 -5
- data/lib/chef/knife/core/subcommand_loader.rb +3 -2
- data/lib/chef/knife/core/text_formatter.rb +4 -4
- data/lib/chef/knife/core/ui.rb +9 -5
- data/lib/chef/knife/data_bag_create.rb +1 -0
- data/lib/chef/knife/data_bag_from_file.rb +1 -1
- data/lib/chef/knife/data_bag_secret_options.rb +13 -13
- data/lib/chef/knife/data_bag_show.rb +2 -2
- data/lib/chef/knife/deps.rb +6 -6
- data/lib/chef/knife/edit.rb +2 -2
- data/lib/chef/knife/environment_compare.rb +1 -0
- data/lib/chef/knife/environment_from_file.rb +3 -3
- data/lib/chef/knife/key_create_base.rb +12 -12
- data/lib/chef/knife/key_edit_base.rb +15 -15
- data/lib/chef/knife/key_list.rb +3 -1
- data/lib/chef/knife/key_list_base.rb +9 -9
- data/lib/chef/knife/list.rb +5 -5
- data/lib/chef/knife/node_bulk_delete.rb +1 -0
- data/lib/chef/knife/node_edit.rb +1 -1
- data/lib/chef/knife/node_environment_set.rb +1 -2
- data/lib/chef/knife/node_run_list_add.rb +2 -2
- data/lib/chef/knife/node_run_list_remove.rb +2 -2
- data/lib/chef/knife/node_run_list_set.rb +2 -2
- data/lib/chef/knife/null.rb +1 -2
- data/lib/chef/knife/role_bulk_delete.rb +1 -0
- data/lib/chef/knife/role_env_run_list_add.rb +2 -2
- data/lib/chef/knife/role_env_run_list_set.rb +2 -2
- data/lib/chef/knife/role_run_list_add.rb +2 -2
- data/lib/chef/knife/role_run_list_set.rb +2 -2
- data/lib/chef/knife/search.rb +4 -4
- data/lib/chef/knife/ssh.rb +13 -9
- data/lib/chef/knife/supermarket_download.rb +1 -1
- data/lib/chef/knife/supermarket_install.rb +5 -5
- data/lib/chef/knife/supermarket_list.rb +1 -1
- data/lib/chef/knife/supermarket_share.rb +3 -2
- data/lib/chef/knife/supermarket_show.rb +1 -1
- data/lib/chef/knife/supermarket_unshare.rb +1 -0
- data/lib/chef/knife/tag_delete.rb +1 -1
- data/lib/chef/knife/xargs.rb +2 -2
- data/lib/chef/log/syslog.rb +2 -2
- data/lib/chef/log/winevt.rb +1 -2
- data/lib/chef/mash.rb +2 -2
- data/lib/chef/mixin/api_version_request_handling.rb +1 -1
- data/lib/chef/mixin/checksum.rb +1 -0
- data/lib/chef/mixin/convert_to_class_name.rb +2 -1
- data/lib/chef/mixin/create_path.rb +2 -2
- data/lib/chef/mixin/deep_merge.rb +5 -5
- data/lib/chef/mixin/get_source_from_package.rb +1 -0
- data/lib/chef/mixin/homebrew_user.rb +2 -1
- data/lib/chef/mixin/openssl_helper.rb +10 -6
- data/lib/chef/mixin/params_validate.rb +21 -13
- data/lib/chef/mixin/powershell_out.rb +1 -1
- data/lib/chef/mixin/powershell_type_coercions.rb +2 -2
- data/lib/chef/mixin/properties.rb +13 -10
- data/lib/chef/mixin/securable.rb +3 -3
- data/lib/chef/mixin/shell_out.rb +1 -0
- data/lib/chef/mixin/template.rb +2 -1
- data/lib/chef/mixin/user_context.rb +1 -1
- data/lib/chef/mixin/which.rb +1 -0
- data/lib/chef/mixin/windows_architecture_helper.rb +4 -4
- data/lib/chef/mixin/windows_env_helper.rb +2 -2
- data/lib/chef/monkey_patches/net_http.rb +1 -1
- data/lib/chef/monkey_patches/webrick-utils.rb +6 -4
- data/lib/chef/node.rb +24 -17
- data/lib/chef/node/attribute.rb +122 -113
- data/lib/chef/node/attribute_collections.rb +1 -1
- data/lib/chef/node/common_api.rb +8 -2
- data/lib/chef/node/immutable_collections.rb +1 -1
- data/lib/chef/node/mixin/immutablize_array.rb +142 -142
- data/lib/chef/node/mixin/immutablize_hash.rb +131 -131
- data/lib/chef/node_map.rb +18 -3
- data/lib/chef/null_logger.rb +8 -16
- data/lib/chef/org.rb +4 -4
- data/lib/chef/platform/query_helpers.rb +3 -0
- data/lib/chef/platform/rebooter.rb +1 -1
- data/lib/chef/platform/service_helpers.rb +2 -2
- data/lib/chef/policy_builder/expand_node_object.rb +4 -4
- data/lib/chef/policy_builder/policyfile.rb +4 -4
- data/lib/chef/powershell.rb +2 -0
- data/lib/chef/property.rb +7 -4
- data/lib/chef/provider.rb +9 -12
- data/lib/chef/provider/apt_preference.rb +1 -2
- data/lib/chef/provider/apt_repository.rb +1 -2
- data/lib/chef/provider/apt_update.rb +2 -3
- data/lib/chef/provider/cookbook_file.rb +1 -0
- data/lib/chef/provider/cron.rb +6 -5
- data/lib/chef/provider/cron/unix.rb +1 -0
- data/lib/chef/provider/dsc_resource.rb +2 -3
- data/lib/chef/provider/dsc_script.rb +2 -2
- data/lib/chef/provider/execute.rb +1 -1
- data/lib/chef/provider/file.rb +5 -3
- data/lib/chef/provider/git.rb +4 -3
- data/lib/chef/provider/group.rb +7 -3
- data/lib/chef/provider/group/aix.rb +2 -0
- data/lib/chef/provider/group/dscl.rb +6 -3
- data/lib/chef/provider/group/groupadd.rb +1 -0
- data/lib/chef/provider/group/groupmod.rb +1 -1
- data/lib/chef/provider/group/pw.rb +3 -3
- data/lib/chef/provider/group/suse.rb +2 -2
- data/lib/chef/provider/group/usermod.rb +1 -0
- data/lib/chef/provider/group/windows.rb +1 -1
- data/lib/chef/provider/http_request.rb +1 -1
- data/lib/chef/provider/ifconfig.rb +12 -6
- data/lib/chef/provider/ifconfig/aix.rb +1 -0
- data/lib/chef/provider/ifconfig/debian.rb +1 -0
- data/lib/chef/provider/launchd.rb +16 -13
- data/lib/chef/provider/lwrp_base.rb +1 -2
- data/lib/chef/provider/mount.rb +1 -0
- data/lib/chef/provider/mount/aix.rb +6 -6
- data/lib/chef/provider/mount/mount.rb +5 -4
- data/lib/chef/provider/mount/solaris.rb +4 -4
- data/lib/chef/provider/package.rb +9 -6
- data/lib/chef/provider/package/apt.rb +4 -3
- data/lib/chef/provider/package/bff.rb +1 -0
- data/lib/chef/provider/package/cab.rb +4 -2
- data/lib/chef/provider/package/chocolatey.rb +5 -2
- data/lib/chef/provider/package/dnf.rb +1 -1
- data/lib/chef/provider/package/dnf/dnf_helper.py +15 -1
- data/lib/chef/provider/package/dnf/python_helper.rb +1 -0
- data/lib/chef/provider/package/dpkg.rb +4 -4
- data/lib/chef/provider/package/freebsd/base.rb +3 -2
- data/lib/chef/provider/package/freebsd/pkgng.rb +2 -2
- data/lib/chef/provider/package/homebrew.rb +1 -1
- data/lib/chef/provider/package/macports.rb +1 -0
- data/lib/chef/provider/package/msu.rb +3 -1
- data/lib/chef/provider/package/openbsd.rb +1 -1
- data/lib/chef/provider/package/paludis.rb +1 -0
- data/lib/chef/provider/package/portage.rb +2 -2
- data/lib/chef/provider/package/powershell.rb +3 -2
- data/lib/chef/provider/package/rpm.rb +1 -0
- data/lib/chef/provider/package/rubygems.rb +5 -3
- data/lib/chef/provider/package/smartos.rb +1 -0
- data/lib/chef/provider/package/snap.rb +5 -1
- data/lib/chef/provider/package/solaris.rb +2 -0
- data/lib/chef/provider/package/windows/exe.rb +5 -5
- data/lib/chef/provider/package/windows/msi.rb +8 -7
- data/lib/chef/provider/package/windows/registry_uninstall_entry.rb +1 -0
- data/lib/chef/provider/package/yum.rb +5 -2
- data/lib/chef/provider/package/yum/python_helper.rb +2 -1
- data/lib/chef/provider/package/zypper.rb +1 -1
- data/lib/chef/provider/reboot.rb +1 -1
- data/lib/chef/provider/registry_key.rb +2 -2
- data/lib/chef/provider/remote_directory.rb +1 -1
- data/lib/chef/provider/remote_file.rb +10 -9
- data/lib/chef/provider/remote_file/fetcher.rb +3 -2
- data/lib/chef/provider/remote_file/local_file.rb +1 -1
- data/lib/chef/provider/route.rb +4 -2
- data/lib/chef/provider/service/aixinit.rb +1 -1
- data/lib/chef/provider/service/arch.rb +2 -1
- data/lib/chef/provider/service/debian.rb +12 -11
- data/lib/chef/provider/service/freebsd.rb +1 -1
- data/lib/chef/provider/service/openbsd.rb +7 -7
- data/lib/chef/provider/service/redhat.rb +2 -2
- data/lib/chef/provider/service/simple.rb +2 -1
- data/lib/chef/provider/service/systemd.rb +2 -2
- data/lib/chef/provider/service/upstart.rb +3 -2
- data/lib/chef/provider/service/windows.rb +7 -6
- data/lib/chef/provider/subversion.rb +4 -1
- data/lib/chef/provider/template.rb +1 -0
- data/lib/chef/provider/user.rb +5 -1
- data/lib/chef/provider/user/aix.rb +3 -0
- data/lib/chef/provider/user/dscl.rb +8 -3
- data/lib/chef/provider/user/linux.rb +1 -0
- data/lib/chef/provider/user/pw.rb +1 -0
- data/lib/chef/provider/user/solaris.rb +2 -0
- data/lib/chef/provider/user/windows.rb +2 -1
- data/lib/chef/provider/windows_env.rb +3 -0
- data/lib/chef/provider/windows_script.rb +1 -1
- data/lib/chef/provider/windows_task.rb +4 -3
- data/lib/chef/provider/yum_repository.rb +1 -2
- data/lib/chef/provider/zypper_repository.rb +2 -3
- data/lib/chef/recipe.rb +2 -1
- data/lib/chef/resource.rb +24 -15
- data/lib/chef/resource/apt_package.rb +9 -9
- data/lib/chef/resource/apt_preference.rb +9 -9
- data/lib/chef/resource/apt_repository.rb +86 -23
- data/lib/chef/resource/apt_update.rb +2 -2
- data/lib/chef/resource/archive_file.rb +13 -13
- data/lib/chef/resource/build_essential.rb +5 -4
- data/lib/chef/resource/cab_package.rb +9 -9
- data/lib/chef/resource/chef_gem.rb +4 -4
- data/lib/chef/resource/chef_handler.rb +8 -7
- data/lib/chef/resource/chocolatey_config.rb +3 -3
- data/lib/chef/resource/chocolatey_feature.rb +2 -2
- data/lib/chef/resource/chocolatey_package.rb +8 -8
- data/lib/chef/resource/chocolatey_source.rb +3 -3
- data/lib/chef/resource/cookbook_file.rb +4 -4
- data/lib/chef/resource/cron.rb +12 -12
- data/lib/chef/resource/cron_access.rb +2 -2
- data/lib/chef/resource/cron_d.rb +45 -38
- data/lib/chef/resource/directory.rb +2 -2
- data/lib/chef/resource/dmg_package.rb +26 -26
- data/lib/chef/resource/dnf_package.rb +20 -20
- data/lib/chef/resource/dpkg_package.rb +5 -5
- data/lib/chef/resource/dsc_resource.rb +7 -7
- data/lib/chef/resource/dsc_script.rb +9 -4
- data/lib/chef/resource/execute.rb +14 -14
- data/lib/chef/resource/file.rb +4 -4
- data/lib/chef/resource/file/verification.rb +2 -0
- data/lib/chef/resource/file/verification/systemd_unit.rb +1 -0
- data/lib/chef/resource/gem_package.rb +7 -7
- data/lib/chef/resource/git.rb +2 -2
- data/lib/chef/resource/group.rb +5 -5
- data/lib/chef/resource/homebrew_cask.rb +17 -17
- data/lib/chef/resource/homebrew_package.rb +1 -1
- data/lib/chef/resource/homebrew_tap.rb +18 -18
- data/lib/chef/resource/hostname.rb +11 -11
- data/lib/chef/resource/http_request.rb +1 -1
- data/lib/chef/resource/ifconfig.rb +26 -26
- data/lib/chef/resource/ips_package.rb +2 -2
- data/lib/chef/resource/kernel_module.rb +25 -7
- data/lib/chef/resource/launchd.rb +105 -105
- data/lib/chef/resource/link.rb +10 -10
- data/lib/chef/resource/locale.rb +20 -20
- data/lib/chef/resource/log.rb +4 -4
- data/lib/chef/resource/lwrp_base.rb +1 -0
- data/lib/chef/resource/macos_userdefaults.rb +17 -16
- data/lib/chef/resource/macosx_service.rb +1 -1
- data/lib/chef/resource/mdadm.rb +14 -14
- data/lib/chef/resource/mount.rb +24 -24
- data/lib/chef/resource/msu_package.rb +8 -8
- data/lib/chef/resource/ohai.rb +1 -1
- data/lib/chef/resource/ohai_hint.rb +7 -5
- data/lib/chef/resource/openssl_dhparam.rb +14 -14
- data/lib/chef/resource/openssl_ec_private_key.rb +16 -16
- data/lib/chef/resource/openssl_ec_public_key.rb +9 -9
- data/lib/chef/resource/openssl_rsa_private_key.rb +17 -17
- data/lib/chef/resource/openssl_rsa_public_key.rb +9 -9
- data/lib/chef/resource/openssl_x509_certificate.rb +34 -34
- data/lib/chef/resource/openssl_x509_crl.rb +17 -17
- data/lib/chef/resource/openssl_x509_request.rb +20 -20
- data/lib/chef/resource/osx_profile.rb +5 -5
- data/lib/chef/resource/package.rb +9 -9
- data/lib/chef/resource/paludis_package.rb +2 -2
- data/lib/chef/resource/powershell_package.rb +8 -8
- data/lib/chef/resource/powershell_package_source.rb +13 -13
- data/lib/chef/resource/reboot.rb +4 -4
- data/lib/chef/resource/registry_key.rb +5 -3
- data/lib/chef/resource/remote_directory.rb +20 -20
- data/lib/chef/resource/remote_file.rb +8 -7
- data/lib/chef/resource/resource_notification.rb +4 -3
- data/lib/chef/resource/rhsm_errata.rb +2 -2
- data/lib/chef/resource/rhsm_errata_level.rb +4 -4
- data/lib/chef/resource/rhsm_register.rb +14 -14
- data/lib/chef/resource/rhsm_repo.rb +3 -3
- data/lib/chef/resource/rhsm_subscription.rb +2 -2
- data/lib/chef/resource/route.rb +11 -11
- data/lib/chef/resource/scm.rb +18 -18
- data/lib/chef/resource/service.rb +27 -27
- data/lib/chef/resource/snap_package.rb +4 -4
- data/lib/chef/resource/ssh_known_hosts_entry.rb +19 -19
- data/lib/chef/resource/subversion.rb +10 -10
- data/lib/chef/resource/sudo.rb +38 -37
- data/lib/chef/resource/swap_file.rb +9 -9
- data/lib/chef/resource/sysctl.rb +20 -17
- data/lib/chef/resource/systemd_unit.rb +12 -12
- data/lib/chef/resource/template.rb +8 -8
- data/lib/chef/resource/timezone.rb +3 -2
- data/lib/chef/resource/user.rb +19 -19
- data/lib/chef/resource/user/dscl_user.rb +2 -2
- data/lib/chef/resource/user/windows_user.rb +2 -2
- data/lib/chef/resource/windows_ad_join.rb +17 -16
- data/lib/chef/resource/windows_auto_run.rb +8 -8
- data/lib/chef/resource/windows_certificate.rb +13 -13
- data/lib/chef/resource/windows_dfs_folder.rb +13 -12
- data/lib/chef/resource/windows_dfs_namespace.rb +18 -18
- data/lib/chef/resource/windows_dfs_server.rb +12 -12
- data/lib/chef/resource/windows_dns_record.rb +8 -8
- data/lib/chef/resource/windows_dns_zone.rb +6 -6
- data/lib/chef/resource/windows_env.rb +6 -6
- data/lib/chef/resource/windows_feature.rb +12 -12
- data/lib/chef/resource/windows_feature_dism.rb +20 -19
- data/lib/chef/resource/windows_feature_powershell.rb +24 -22
- data/lib/chef/resource/windows_firewall_rule.rb +34 -34
- data/lib/chef/resource/windows_font.rb +4 -4
- data/lib/chef/resource/windows_package.rb +5 -5
- data/lib/chef/resource/windows_pagefile.rb +9 -8
- data/lib/chef/resource/windows_path.rb +2 -2
- data/lib/chef/resource/windows_printer.rb +15 -15
- data/lib/chef/resource/windows_printer_port.rb +14 -14
- data/lib/chef/resource/windows_script.rb +1 -1
- data/lib/chef/resource/windows_service.rb +16 -16
- data/lib/chef/resource/windows_share.rb +27 -24
- data/lib/chef/resource/windows_shortcut.rb +7 -7
- data/lib/chef/resource/windows_task.rb +53 -51
- data/lib/chef/resource/windows_uac.rb +15 -15
- data/lib/chef/resource/windows_workgroup.rb +15 -14
- data/lib/chef/resource/yum_package.rb +24 -24
- data/lib/chef/resource/yum_repository.rb +44 -44
- data/lib/chef/resource/zypper_package.rb +9 -9
- data/lib/chef/resource/zypper_repository.rb +30 -30
- data/lib/chef/resource_builder.rb +1 -0
- data/lib/chef/resource_collection.rb +6 -4
- data/lib/chef/resource_collection/resource_collection_serialization.rb +4 -3
- data/lib/chef/resource_collection/resource_list.rb +5 -3
- data/lib/chef/resource_collection/resource_set.rb +12 -8
- data/lib/chef/resource_collection/stepable_iterator.rb +1 -0
- data/lib/chef/resource_definition.rb +5 -3
- data/lib/chef/resource_definition_list.rb +1 -1
- data/lib/chef/resource_inspector.rb +1 -1
- data/lib/chef/resource_reporter.rb +1 -1
- data/lib/chef/role.rb +9 -7
- data/lib/chef/run_context.rb +5 -5
- data/lib/chef/run_context/cookbook_compiler.rb +5 -1
- data/lib/chef/run_list.rb +5 -4
- data/lib/chef/run_list/run_list_expansion.rb +3 -2
- data/lib/chef/run_list/run_list_item.rb +5 -5
- data/lib/chef/run_list/versioned_recipe_list.rb +1 -1
- data/lib/chef/run_status.rb +1 -1
- data/lib/chef/runner.rb +2 -4
- data/lib/chef/search/query.rb +3 -3
- data/lib/chef/shell/ext.rb +2 -2
- data/lib/chef/shell/model_wrapper.rb +2 -1
- data/lib/chef/shell/shell_session.rb +1 -1
- data/lib/chef/train_transport.rb +3 -3
- data/lib/chef/user.rb +6 -6
- data/lib/chef/user_v1.rb +13 -11
- data/lib/chef/util/diff.rb +5 -2
- data/lib/chef/util/dsc/configuration_generator.rb +6 -6
- data/lib/chef/util/dsc/lcm_output_parser.rb +2 -2
- data/lib/chef/util/dsc/local_configuration_manager.rb +2 -2
- data/lib/chef/util/dsc/resource_store.rb +2 -2
- data/lib/chef/util/file_edit.rb +1 -0
- data/lib/chef/util/powershell/cmdlet.rb +1 -1
- data/lib/chef/util/threaded_job_queue.rb +1 -1
- data/lib/chef/util/windows/logon_session.rb +5 -5
- data/lib/chef/util/windows/net_use.rb +2 -2
- data/lib/chef/util/windows/net_user.rb +3 -2
- data/lib/chef/version.rb +1 -1
- data/lib/chef/version_class.rb +1 -1
- data/lib/chef/version_constraint.rb +1 -1
- data/lib/chef/whitelist.rb +1 -1
- data/lib/chef/win32/api/crypto.rb +11 -11
- data/lib/chef/win32/api/error.rb +4 -4
- data/lib/chef/win32/api/file.rb +38 -38
- data/lib/chef/win32/api/installer.rb +3 -3
- data/lib/chef/win32/api/memory.rb +4 -4
- data/lib/chef/win32/api/net.rb +38 -38
- data/lib/chef/win32/api/process.rb +2 -2
- data/lib/chef/win32/api/psapi.rb +1 -1
- data/lib/chef/win32/api/registry.rb +3 -3
- data/lib/chef/win32/api/security.rb +87 -87
- data/lib/chef/win32/api/synchronization.rb +5 -5
- data/lib/chef/win32/api/system.rb +7 -7
- data/lib/chef/win32/api/unicode.rb +3 -3
- data/lib/chef/win32/eventlog.rb +2 -2
- data/lib/chef/win32/file.rb +5 -2
- data/lib/chef/win32/file/info.rb +1 -0
- data/lib/chef/win32/file/version_info.rb +15 -14
- data/lib/chef/win32/memory.rb +1 -1
- data/lib/chef/win32/net.rb +8 -4
- data/lib/chef/win32/registry.rb +6 -1
- data/lib/chef/win32/security.rb +7 -2
- data/lib/chef/win32/security/acl.rb +2 -1
- data/lib/chef/win32/security/security_descriptor.rb +4 -2
- data/lib/chef/win32/security/sid.rb +11 -10
- data/lib/chef/win32/security/token.rb +3 -1
- data/lib/chef/win32/version.rb +3 -3
- data/spec/data/apt/chef-integration-test-1.0/debian/rules +0 -0
- data/spec/data/apt/chef-integration-test-1.1/debian/rules +0 -0
- data/spec/data/apt/chef-integration-test2-1.0/debian/rules +0 -0
- data/spec/functional/assets/chefinittest +0 -0
- data/spec/functional/assets/testchefsubsys +0 -0
- data/spec/functional/dsl/reboot_pending_spec.rb +2 -2
- data/spec/functional/event_loggers/windows_eventlog_spec.rb +6 -4
- data/spec/functional/file_content_management/deploy_strategies_spec.rb +21 -21
- data/spec/functional/knife/exec_spec.rb +1 -1
- data/spec/functional/knife/ssh_spec.rb +3 -3
- data/spec/functional/mixin/user_context_spec.rb +3 -1
- data/spec/functional/provider/remote_file/cache_control_data_spec.rb +0 -0
- data/spec/functional/rebooter_spec.rb +1 -1
- data/spec/functional/resource/aix_service_spec.rb +1 -1
- data/spec/functional/resource/aixinit_service_spec.rb +1 -1
- data/spec/functional/resource/chocolatey_package_spec.rb +2 -2
- data/spec/functional/resource/cookbook_file_spec.rb +1 -3
- data/spec/functional/resource/cron_spec.rb +1 -0
- data/spec/functional/resource/dnf_package_spec.rb +5 -5
- data/spec/functional/resource/dpkg_package_spec.rb +4 -4
- data/spec/functional/resource/dsc_resource_spec.rb +2 -1
- data/spec/functional/resource/dsc_script_spec.rb +7 -11
- data/spec/functional/resource/git_spec.rb +5 -5
- data/spec/functional/resource/group_spec.rb +15 -13
- data/spec/functional/resource/ifconfig_spec.rb +2 -2
- data/spec/functional/resource/link_spec.rb +2 -2
- data/spec/functional/resource/locale_spec.rb +4 -4
- data/spec/functional/resource/mount_spec.rb +3 -3
- data/spec/functional/resource/powershell_script_spec.rb +9 -8
- data/spec/functional/resource/reboot_spec.rb +1 -1
- data/spec/functional/resource/remote_file_spec.rb +2 -2
- data/spec/functional/resource/template_spec.rb +1 -1
- data/spec/functional/resource/user/windows_spec.rb +2 -2
- data/spec/functional/resource/windows_certificate_spec.rb +3 -3
- data/spec/functional/resource/windows_service_spec.rb +3 -3
- data/spec/functional/run_lock_spec.rb +3 -2
- data/spec/functional/util/powershell/cmdlet_spec.rb +1 -1
- data/spec/functional/win32/security_spec.rb +12 -7
- data/spec/functional/win32/service_manager_spec.rb +1 -1
- data/spec/integration/client/client_spec.rb +79 -81
- data/spec/integration/client/exit_code_spec.rb +2 -2
- data/spec/integration/client/ipv6_spec.rb +2 -2
- data/spec/integration/knife/chef_fs_data_store_spec.rb +25 -25
- data/spec/integration/knife/chef_repo_path_spec.rb +4 -4
- data/spec/integration/knife/config_get_spec.rb +1 -1
- data/spec/integration/knife/config_list_profiles_spec.rb +2 -1
- data/spec/integration/knife/cookbook_api_ipv6_spec.rb +1 -1
- data/spec/integration/knife/cookbook_download_spec.rb +1 -1
- data/spec/integration/knife/diff_spec.rb +2 -2
- data/spec/integration/knife/download_spec.rb +1 -1
- data/spec/integration/knife/redirection_spec.rb +1 -1
- data/spec/integration/knife/upload_spec.rb +2 -2
- data/spec/integration/recipes/accumulator_spec.rb +4 -4
- data/spec/integration/recipes/lwrp_inline_resources_spec.rb +5 -5
- data/spec/integration/recipes/lwrp_spec.rb +2 -2
- data/spec/integration/recipes/notifies_spec.rb +20 -20
- data/spec/integration/recipes/notifying_block_spec.rb +4 -4
- data/spec/integration/recipes/provider_choice.rb +1 -2
- data/spec/integration/recipes/recipe_dsl_spec.rb +9 -9
- data/spec/integration/recipes/remote_directory.rb +2 -2
- data/spec/integration/solo/solo_spec.rb +20 -20
- data/spec/spec_helper.rb +9 -11
- data/spec/stress/win32/security_spec.rb +1 -1
- data/spec/support/lib/chef/resource/zen_follower.rb +1 -1
- data/spec/support/lib/chef/resource/zen_master.rb +1 -1
- data/spec/support/mock/platform.rb +2 -2
- data/spec/support/platform_helpers.rb +14 -0
- data/spec/support/platforms/win32/spec_service.rb +6 -10
- data/spec/support/shared/functional/execute_resource.rb +4 -4
- data/spec/support/shared/functional/file_resource.rb +1 -3
- data/spec/support/shared/functional/http.rb +15 -39
- data/spec/support/shared/functional/securable_resource.rb +4 -8
- data/spec/support/shared/functional/win32_service.rb +1 -1
- data/spec/support/shared/functional/windows_script.rb +2 -1
- data/spec/support/shared/integration/app_server_support.rb +3 -4
- data/spec/support/shared/integration/integration_helper.rb +1 -0
- data/spec/support/shared/integration/knife_support.rb +5 -5
- data/spec/support/shared/unit/application_dot_d.rb +10 -4
- data/spec/support/shared/unit/file_system_support.rb +3 -2
- data/spec/support/shared/unit/platform_introspector.rb +12 -12
- data/spec/support/shared/unit/provider/file.rb +1 -1
- data/spec/support/shared/unit/script_resource.rb +1 -1
- data/spec/support/shared/unit/windows_script_resource.rb +1 -1
- data/spec/tiny_server.rb +1 -1
- data/spec/unit/api_client/registration_spec.rb +1 -1
- data/spec/unit/api_client_spec.rb +5 -5
- data/spec/unit/api_client_v1_spec.rb +6 -6
- data/spec/unit/application/client_spec.rb +8 -8
- data/spec/unit/application/exit_code_spec.rb +3 -2
- data/spec/unit/application/knife_spec.rb +1 -2
- data/spec/unit/chef_fs/config_spec.rb +3 -3
- data/spec/unit/chef_fs/file_system/repository/directory_spec.rb +1 -1
- data/spec/unit/chef_fs/parallelizer.rb +1 -1
- data/spec/unit/client_spec.rb +1 -1
- data/spec/unit/config_fetcher_spec.rb +1 -1
- data/spec/unit/cookbook/metadata_spec.rb +4 -4
- data/spec/unit/cookbook/synchronizer_spec.rb +4 -4
- data/spec/unit/cookbook_loader_spec.rb +10 -10
- data/spec/unit/cookbook_site_streaming_uploader_spec.rb +1 -2
- data/spec/unit/cookbook_version_file_specificity_spec.rb +9 -9
- data/spec/unit/data_bag_item_spec.rb +8 -8
- data/spec/unit/data_bag_spec.rb +1 -1
- data/spec/unit/data_collector_spec.rb +82 -0
- data/spec/unit/decorator_spec.rb +2 -2
- data/spec/unit/deprecated_spec.rb +2 -2
- data/spec/unit/dsl/data_query_spec.rb +3 -2
- data/spec/unit/dsl/declare_resource_spec.rb +1 -1
- data/spec/unit/dsl/platform_introspection_spec.rb +2 -2
- data/spec/unit/encrypted_data_bag_item/check_encrypted_spec.rb +2 -1
- data/spec/unit/encrypted_data_bag_item_spec.rb +2 -1
- data/spec/unit/environment_spec.rb +9 -9
- data/spec/unit/event_dispatch/dsl_spec.rb +1 -1
- data/spec/unit/file_content_management/deploy/mv_unix_spec.rb +3 -3
- data/spec/unit/file_content_management/deploy/mv_windows_spec.rb +2 -2
- data/spec/unit/formatters/error_inspectors/resource_failure_inspector_spec.rb +3 -3
- data/spec/unit/guard_interpreter/resource_guard_interpreter_spec.rb +1 -1
- data/spec/unit/http/authenticator_spec.rb +3 -2
- data/spec/unit/http/json_input_spec.rb +1 -1
- data/spec/unit/key_spec.rb +7 -7
- data/spec/unit/knife/bootstrap/train_connector_spec.rb +13 -8
- data/spec/unit/knife/bootstrap_spec.rb +22 -16
- data/spec/unit/knife/client_bulk_delete_spec.rb +4 -4
- data/spec/unit/knife/configure_client_spec.rb +1 -1
- data/spec/unit/knife/configure_spec.rb +1 -1
- data/spec/unit/knife/cookbook_bulk_delete_spec.rb +1 -1
- data/spec/unit/knife/cookbook_delete_spec.rb +2 -2
- data/spec/unit/knife/cookbook_download_spec.rb +2 -2
- data/spec/unit/knife/cookbook_metadata_spec.rb +4 -4
- data/spec/unit/knife/cookbook_upload_spec.rb +4 -2
- data/spec/unit/knife/core/gem_glob_loader_spec.rb +4 -4
- data/spec/unit/knife/core/hashed_command_loader_spec.rb +4 -2
- data/spec/unit/knife/core/node_editor_spec.rb +8 -8
- data/spec/unit/knife/core/windows_bootstrap_context_spec.rb +1 -2
- data/spec/unit/knife/data_bag_from_file_spec.rb +2 -1
- data/spec/unit/knife/data_bag_show_spec.rb +2 -1
- data/spec/unit/knife/key_create_spec.rb +1 -1
- data/spec/unit/knife/key_delete_spec.rb +3 -3
- data/spec/unit/knife/key_edit_spec.rb +4 -4
- data/spec/unit/knife/key_list_spec.rb +1 -1
- data/spec/unit/knife/key_show_spec.rb +3 -3
- data/spec/unit/knife/node_bulk_delete_spec.rb +3 -3
- data/spec/unit/knife/node_delete_spec.rb +2 -2
- data/spec/unit/knife/node_edit_spec.rb +1 -1
- data/spec/unit/knife/node_environment_set_spec.rb +6 -1
- data/spec/unit/knife/node_from_file_spec.rb +1 -1
- data/spec/unit/knife/node_policy_set_spec.rb +1 -1
- data/spec/unit/knife/node_run_list_add_spec.rb +1 -1
- data/spec/unit/knife/node_run_list_remove_spec.rb +1 -1
- data/spec/unit/knife/node_run_list_set_spec.rb +1 -1
- data/spec/unit/knife/node_show_spec.rb +1 -1
- data/spec/unit/knife/raw_spec.rb +2 -2
- data/spec/unit/knife/role_bulk_delete_spec.rb +2 -2
- data/spec/unit/knife/role_create_spec.rb +1 -1
- data/spec/unit/knife/role_delete_spec.rb +1 -1
- data/spec/unit/knife/role_edit_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_add_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_clear_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_remove_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_replace_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_set_spec.rb +1 -1
- data/spec/unit/knife/role_from_file_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_add_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_clear_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_remove_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_replace_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_set_spec.rb +1 -1
- data/spec/unit/knife/status_spec.rb +2 -1
- data/spec/unit/knife/supermarket_install_spec.rb +5 -4
- data/spec/unit/knife/supermarket_share_spec.rb +1 -1
- data/spec/unit/knife_spec.rb +35 -34
- data/spec/unit/lwrp_spec.rb +19 -19
- data/spec/unit/mixin/homebrew_user_spec.rb +1 -1
- data/spec/unit/mixin/params_validate_spec.rb +10 -10
- data/spec/unit/mixin/properties_spec.rb +4 -4
- data/spec/unit/mixin/shell_out_spec.rb +3 -3
- data/spec/unit/mixin/template_spec.rb +4 -8
- data/spec/unit/mixin/unformatter_spec.rb +1 -2
- data/spec/unit/mixin/user_context_spec.rb +1 -2
- data/spec/unit/mixin/which.rb +2 -0
- data/spec/unit/mixin/windows_architecture_helper_spec.rb +3 -3
- data/spec/unit/node/attribute_spec.rb +12 -12
- data/spec/unit/node/immutable_collections_spec.rb +50 -50
- data/spec/unit/node/vivid_mash_spec.rb +4 -4
- data/spec/unit/node_spec.rb +12 -12
- data/spec/unit/org_spec.rb +3 -3
- data/spec/unit/policy_builder/policyfile_spec.rb +2 -2
- data/spec/unit/property/state_spec.rb +26 -25
- data/spec/unit/property/validation_spec.rb +14 -13
- data/spec/unit/property_spec.rb +11 -10
- data/spec/unit/provider/apt_update_spec.rb +6 -6
- data/spec/unit/provider/cron_spec.rb +1 -1
- data/spec/unit/provider/dsc_resource_spec.rb +6 -3
- data/spec/unit/provider/dsc_script_spec.rb +1 -1
- data/spec/unit/provider/git_spec.rb +38 -38
- data/spec/unit/provider/group/dscl_spec.rb +1 -1
- data/spec/unit/provider/group/groupadd_spec.rb +1 -1
- data/spec/unit/provider/group_spec.rb +2 -3
- data/spec/unit/provider/launchd_spec.rb +16 -8
- data/spec/unit/provider/link_spec.rb +22 -11
- data/spec/unit/provider/mount/mount_spec.rb +31 -31
- data/spec/unit/provider/mount/solaris_spec.rb +11 -11
- data/spec/unit/provider/ohai_spec.rb +1 -1
- data/spec/unit/provider/osx_profile_spec.rb +5 -7
- data/spec/unit/provider/package/apt_spec.rb +5 -5
- data/spec/unit/provider/package/bff_spec.rb +1 -1
- data/spec/unit/provider/package/cab_spec.rb +1 -1
- data/spec/unit/provider/package/chocolatey_spec.rb +8 -8
- data/spec/unit/provider/package/msu_spec.rb +1 -1
- data/spec/unit/provider/package/openbsd_spec.rb +14 -10
- data/spec/unit/provider/package/powershell_spec.rb +1 -1
- data/spec/unit/provider/package/smartos_spec.rb +2 -2
- data/spec/unit/provider/package/windows/exe_spec.rb +9 -9
- data/spec/unit/provider/package/windows/msi_spec.rb +7 -7
- data/spec/unit/provider/package/windows_spec.rb +2 -1
- data/spec/unit/provider/package/yum/yum_cache_spec.rb +1 -1
- data/spec/unit/provider/package/zypper_spec.rb +13 -4
- data/spec/unit/provider/powershell_script_spec.rb +12 -12
- data/spec/unit/provider/registry_key_spec.rb +1 -1
- data/spec/unit/provider/remote_directory_spec.rb +6 -6
- data/spec/unit/provider/route_spec.rb +11 -11
- data/spec/unit/provider/service/arch_service_spec.rb +11 -11
- data/spec/unit/provider/service/debian_service_spec.rb +2 -1
- data/spec/unit/provider/service/freebsd_service_spec.rb +23 -19
- data/spec/unit/provider/service/gentoo_service_spec.rb +2 -2
- data/spec/unit/provider/service/init_service_spec.rb +9 -9
- data/spec/unit/provider/service/invokercd_service_spec.rb +9 -9
- data/spec/unit/provider/service/macosx_spec.rb +1 -1
- data/spec/unit/provider/service/openbsd_service_spec.rb +15 -11
- data/spec/unit/provider/service/simple_service_spec.rb +5 -5
- data/spec/unit/provider/service/upstart_service_spec.rb +14 -14
- data/spec/unit/provider/service/windows_spec.rb +53 -35
- data/spec/unit/provider/subversion_spec.rb +8 -4
- data/spec/unit/provider/systemd_unit_spec.rb +146 -146
- data/spec/unit/provider/template/content_spec.rb +28 -28
- data/spec/unit/provider/windows_task_spec.rb +7 -2
- data/spec/unit/provider_resolver_spec.rb +2 -2
- data/spec/unit/provider_spec.rb +2 -4
- data/spec/unit/recipe_spec.rb +3 -3
- data/spec/unit/resource/batch_spec.rb +1 -1
- data/spec/unit/resource/cab_package_spec.rb +1 -1
- data/spec/unit/resource/chef_gem_spec.rb +1 -1
- data/spec/unit/resource/directory_spec.rb +1 -1
- data/spec/unit/resource/dnf_package_spec.rb +1 -1
- data/spec/unit/resource/dsc_resource_spec.rb +1 -1
- data/spec/unit/resource/file/verification_spec.rb +1 -2
- data/spec/unit/resource/file_spec.rb +1 -1
- data/spec/unit/resource/group_spec.rb +1 -1
- data/spec/unit/resource/kernel_module_spec.rb +1 -0
- data/spec/unit/resource/link_spec.rb +1 -1
- data/spec/unit/resource/locale_spec.rb +12 -12
- data/spec/unit/resource/osx_profile_spec.rb +2 -1
- data/spec/unit/resource/powershell_script_spec.rb +12 -7
- data/spec/unit/resource/registry_key_spec.rb +3 -3
- data/spec/unit/resource/rhsm_repo_spec.rb +6 -0
- data/spec/unit/resource/service_spec.rb +1 -1
- data/spec/unit/resource/template_spec.rb +2 -2
- data/spec/unit/resource/windows_env_spec.rb +1 -1
- data/spec/unit/resource/windows_service_spec.rb +7 -7
- data/spec/unit/resource/windows_task_spec.rb +2 -2
- data/spec/unit/resource/windows_uac_spec.rb +2 -2
- data/spec/unit/resource/yum_package_spec.rb +1 -1
- data/spec/unit/resource_collection/resource_list_spec.rb +1 -1
- data/spec/unit/resource_collection/resource_set_spec.rb +7 -7
- data/spec/unit/resource_collection/stepable_iterator_spec.rb +2 -2
- data/spec/unit/resource_collection_spec.rb +4 -4
- data/spec/unit/resource_definition_spec.rb +2 -2
- data/spec/unit/resource_inspector_spec.rb +1 -1
- data/spec/unit/resource_reporter_spec.rb +6 -4
- data/spec/unit/resource_spec.rb +21 -21
- data/spec/unit/role_spec.rb +2 -2
- data/spec/unit/run_context/cookbook_compiler_spec.rb +24 -24
- data/spec/unit/run_list/run_list_expansion_spec.rb +9 -6
- data/spec/unit/run_list_spec.rb +1 -1
- data/spec/unit/runner_spec.rb +3 -3
- data/spec/unit/search/query_spec.rb +3 -2
- data/spec/unit/shell/model_wrapper_spec.rb +1 -1
- data/spec/unit/shell/shell_session_spec.rb +8 -11
- data/spec/unit/shell_spec.rb +1 -2
- data/spec/unit/user_spec.rb +4 -4
- data/spec/unit/user_v1_spec.rb +3 -3
- data/spec/unit/util/backup_spec.rb +1 -1
- data/spec/unit/util/editor_spec.rb +1 -1
- data/spec/unit/util/powershell/ps_credential_spec.rb +3 -2
- data/spec/unit/util/threaded_job_queue_spec.rb +2 -2
- data/spec/unit/version_class_spec.rb +4 -4
- data/spec/unit/win32/registry_spec.rb +5 -5
- data/spec/unit/win32/security_spec.rb +2 -1
- data/tasks/bin/run_external_test +1 -1
- data/tasks/docs.rb +78 -61
- data/tasks/rspec.rb +1 -1
- metadata +5 -33
- data/lib/.DS_Store +0 -0
- data/lib/chef/.DS_Store +0 -0
- data/lib/chef/dsl/.DS_Store +0 -0
- data/lib/chef/knife/.DS_Store +0 -0
- data/lib/chef/mixin/.DS_Store +0 -0
- data/lib/chef/nil_argument.rb +0 -3
- data/lib/chef/provider/.DS_Store +0 -0
- data/lib/chef/provider/package/.DS_Store +0 -0
- data/lib/chef/provider/package/freebsd/.DS_Store +0 -0
- data/lib/chef/resource/.DS_Store +0 -0
- data/lib/chef/resource/file/.DS_Store +0 -0
- data/spec/.DS_Store +0 -0
- data/spec/data/.DS_Store +0 -0
- data/spec/data/cookbooks/.DS_Store +0 -0
- data/spec/data/cookbooks/java/.DS_Store +0 -0
- data/spec/data/cookbooks/java/files/.DS_Store +0 -0
- data/spec/data/mac_users/.DS_Store +0 -0
- data/spec/data/nodes/Tim.local.json +0 -3
- data/spec/data/nodes/Tims-MBP.local.json +0 -3
- data/spec/data/run_context/.DS_Store +0 -0
- data/spec/data/run_context/cookbooks/.DS_Store +0 -0
- data/spec/functional/.DS_Store +0 -0
- data/spec/functional/resource/.DS_Store +0 -0
- data/spec/functional/util/.DS_Store +0 -0
- data/spec/integration/.DS_Store +0 -0
- data/spec/stress/.DS_Store +0 -0
- data/spec/support/.DS_Store +0 -0
- data/spec/unit/.DS_Store +0 -0
- data/tasks/.DS_Store +0 -0
@@ -134,7 +134,7 @@ describe Chef::Resource::RemoteFile do
|
|
134
134
|
let(:smb_file_local_file_name) { "smb_file.txt" }
|
135
135
|
let(:smb_file_local_path) { File.join( smb_share_root_directory, smb_file_local_file_name ) }
|
136
136
|
let(:smb_share_name) { "chef_smb_test" }
|
137
|
-
let(:smb_remote_path) { File.join("//#{ENV[
|
137
|
+
let(:smb_remote_path) { File.join("//#{ENV["COMPUTERNAME"]}", smb_share_name, smb_file_local_file_name).gsub(%r{/}, "\\") }
|
138
138
|
let(:smb_file_content) { "hellofun" }
|
139
139
|
let(:local_destination_path) { File.join(Dir.tmpdir, make_tmpname("chef_remote_file")) }
|
140
140
|
let(:windows_current_user) { ENV["USERNAME"] }
|
@@ -155,7 +155,7 @@ describe Chef::Resource::RemoteFile do
|
|
155
155
|
before do
|
156
156
|
shell_out("net.exe share #{smb_share_name} /delete")
|
157
157
|
File.write(smb_file_local_path, smb_file_content )
|
158
|
-
shell_out!("net.exe share #{smb_share_name}=\"#{smb_share_root_directory.gsub(
|
158
|
+
shell_out!("net.exe share #{smb_share_name}=\"#{smb_share_root_directory.gsub(%r{/}, '\\')}\" /grant:\"authenticated users\",read")
|
159
159
|
end
|
160
160
|
|
161
161
|
after do
|
@@ -47,13 +47,13 @@ describe Chef::Provider::User::Windows, :windows_only do
|
|
47
47
|
end
|
48
48
|
|
49
49
|
def backup_secedit_policy
|
50
|
-
backup_command = "secedit /export /cfg #{ENV[
|
50
|
+
backup_command = "secedit /export /cfg #{ENV["TEMP"]}\\secedit_restore.inf /areas SECURITYPOLICY"
|
51
51
|
shell_out(backup_command)
|
52
52
|
end
|
53
53
|
|
54
54
|
def restore_secedit_policy
|
55
55
|
security_database = "C:\\windows\\security\\database\\seceditnew.sdb"
|
56
|
-
restore_command = "secedit /configure /db #{security_database} /cfg #{ENV[
|
56
|
+
restore_command = "secedit /configure /db #{security_database} /cfg #{ENV["TEMP"]}\\secedit_restore.inf /areas SECURITYPOLICY"
|
57
57
|
shell_out(restore_command)
|
58
58
|
end
|
59
59
|
|
@@ -81,9 +81,9 @@ describe Chef::Resource::WindowsCertificate, :windows_only, :appveyor_only do
|
|
81
81
|
|
82
82
|
# Byepassing the validation so that we may create a custom store
|
83
83
|
allow_any_instance_of(Chef::Mixin::ParamsValidate)
|
84
|
-
|
85
|
-
|
86
|
-
|
84
|
+
.to receive(:_pv_equal_to)
|
85
|
+
.with(opts, key, to_be)
|
86
|
+
.and_return(true)
|
87
87
|
|
88
88
|
# Creating a custom store for the testing
|
89
89
|
create_store(store)
|
@@ -24,7 +24,7 @@ describe Chef::Resource::WindowsService, :windows_only, :system_windows_service_
|
|
24
24
|
include_context "using Win32::Service"
|
25
25
|
|
26
26
|
let(:username) { "service_spec_user" }
|
27
|
-
let(:qualified_username) { "#{ENV[
|
27
|
+
let(:qualified_username) { "#{ENV["COMPUTERNAME"]}\\#{username}" }
|
28
28
|
let(:password) { "1a2b3c4X!&narf" }
|
29
29
|
|
30
30
|
let(:user_resource) do
|
@@ -36,7 +36,7 @@ describe Chef::Resource::WindowsService, :windows_only, :system_windows_service_
|
|
36
36
|
end
|
37
37
|
|
38
38
|
let(:global_service_file_path) do
|
39
|
-
"#{ENV[
|
39
|
+
"#{ENV["WINDIR"]}\\temp\\#{File.basename(test_service[:service_file_path])}"
|
40
40
|
end
|
41
41
|
|
42
42
|
let(:service_params) do
|
@@ -59,7 +59,7 @@ describe Chef::Resource::WindowsService, :windows_only, :system_windows_service_
|
|
59
59
|
|
60
60
|
let(:service_resource) do
|
61
61
|
r = Chef::Resource::WindowsService.new(service_params[:service_name], run_context)
|
62
|
-
|
62
|
+
%i{run_as_user run_as_password}.each { |prop| r.send(prop, service_params[prop]) }
|
63
63
|
r
|
64
64
|
end
|
65
65
|
|
@@ -334,6 +334,7 @@ describe Chef::RunLock do
|
|
334
334
|
loop do
|
335
335
|
line = readline_nonblock(read_from_process)
|
336
336
|
break if line.nil?
|
337
|
+
|
337
338
|
event, time = line.split("@")
|
338
339
|
example.log_event("#{name}.last_event got #{event}")
|
339
340
|
example.log_event("[#{name}] #{event}", time.strip)
|
@@ -346,7 +347,7 @@ describe Chef::RunLock do
|
|
346
347
|
example.log_event("#{name}.run_to(#{to_event.inspect})")
|
347
348
|
|
348
349
|
# Start the process if it's not started
|
349
|
-
start
|
350
|
+
start unless pid
|
350
351
|
|
351
352
|
# Tell the process what to stop at (also means it can go)
|
352
353
|
write_to_process.print "#{to_event}\n"
|
@@ -370,7 +371,7 @@ describe Chef::RunLock do
|
|
370
371
|
def run_to_completion
|
371
372
|
example.log_event("#{name}.run_to_completion")
|
372
373
|
# Start the process if it's not started
|
373
|
-
start
|
374
|
+
start unless pid
|
374
375
|
|
375
376
|
# Tell the process to stop at nothing (no blocking)
|
376
377
|
@write_to_process.print "nothing\n"
|
@@ -29,7 +29,7 @@ describe Chef::Util::Powershell::Cmdlet, :windows_powershell_dsc_only do
|
|
29
29
|
let(:invalid_cmdlet) { Chef::Util::Powershell::Cmdlet.new(@node, "get-idontexist", cmd_output_format) }
|
30
30
|
let(:cmdlet_get_item_requires_switch_or_argument) { Chef::Util::Powershell::Cmdlet.new(@node, "get-item", cmd_output_format, { depth: 2 }) }
|
31
31
|
let(:cmdlet_alias_requires_switch_or_argument) { Chef::Util::Powershell::Cmdlet.new(@node, "alias", cmd_output_format, { depth: 2 }) }
|
32
|
-
let(:etc_directory) { "#{ENV[
|
32
|
+
let(:etc_directory) { "#{ENV["systemroot"]}\\system32\\drivers\\etc" }
|
33
33
|
let(:architecture_cmdlet) { Chef::Util::Powershell::Cmdlet.new(@node, "$env:PROCESSOR_ARCHITECTURE") }
|
34
34
|
|
35
35
|
it "executes a simple process" do
|
@@ -61,7 +61,8 @@ describe "Chef::Win32::Security", :windows_only do
|
|
61
61
|
describe "get_file_security" do
|
62
62
|
it "should return a security descriptor when called with a path that exists" do
|
63
63
|
security_descriptor = Chef::ReservedNames::Win32::Security.get_file_security(
|
64
|
-
"C:\\Program Files"
|
64
|
+
"C:\\Program Files"
|
65
|
+
)
|
65
66
|
# Make sure the security descriptor works
|
66
67
|
expect(security_descriptor.dacl_present?).to be true
|
67
68
|
end
|
@@ -70,7 +71,8 @@ describe "Chef::Win32::Security", :windows_only do
|
|
70
71
|
describe "access_check" do
|
71
72
|
let(:security_descriptor) do
|
72
73
|
Chef::ReservedNames::Win32::Security.get_file_security(
|
73
|
-
"C:\\Program Files"
|
74
|
+
"C:\\Program Files"
|
75
|
+
)
|
74
76
|
end
|
75
77
|
|
76
78
|
let(:token_rights) { Chef::ReservedNames::Win32::Security::TOKEN_ALL_ACCESS }
|
@@ -78,7 +80,8 @@ describe "Chef::Win32::Security", :windows_only do
|
|
78
80
|
let(:token) do
|
79
81
|
Chef::ReservedNames::Win32::Security.open_process_token(
|
80
82
|
Chef::ReservedNames::Win32::Process.get_current_process,
|
81
|
-
token_rights
|
83
|
+
token_rights
|
84
|
+
).duplicate_token(:SecurityImpersonation)
|
82
85
|
end
|
83
86
|
|
84
87
|
let(:mapping) do
|
@@ -94,7 +97,7 @@ describe "Chef::Win32::Security", :windows_only do
|
|
94
97
|
|
95
98
|
it "should check if the provided token has the desired access" do
|
96
99
|
expect(Chef::ReservedNames::Win32::Security.access_check(security_descriptor,
|
97
|
-
|
100
|
+
token, desired_access, mapping)).to be true
|
98
101
|
end
|
99
102
|
end
|
100
103
|
|
@@ -102,7 +105,8 @@ describe "Chef::Win32::Security", :windows_only do
|
|
102
105
|
let(:token) do
|
103
106
|
Chef::ReservedNames::Win32::Security.open_process_token(
|
104
107
|
Chef::ReservedNames::Win32::Process.get_current_process,
|
105
|
-
token_rights
|
108
|
+
token_rights
|
109
|
+
)
|
106
110
|
end
|
107
111
|
context "with all rights" do
|
108
112
|
let(:token_rights) { Chef::ReservedNames::Win32::Security::TOKEN_ALL_ACCESS }
|
@@ -127,11 +131,12 @@ describe "Chef::Win32::Security", :windows_only do
|
|
127
131
|
let(:token) do
|
128
132
|
Chef::ReservedNames::Win32::Security.open_process_token(
|
129
133
|
Chef::ReservedNames::Win32::Process.get_current_process,
|
130
|
-
token_rights
|
134
|
+
token_rights
|
135
|
+
)
|
131
136
|
end
|
132
137
|
|
133
138
|
context "when the token is valid" do
|
134
|
-
let(:token_elevation_type) {
|
139
|
+
let(:token_elevation_type) { %i{TokenElevationTypeDefault TokenElevationTypeFull TokenElevationTypeLimited} }
|
135
140
|
|
136
141
|
it "returns the token elevation type" do
|
137
142
|
elevation_type = Chef::ReservedNames::Win32::Security.get_token_information_elevation_type(token)
|
@@ -43,7 +43,7 @@ describe "Chef::Application::WindowsServiceManager", :windows_only, :system_wind
|
|
43
43
|
end
|
44
44
|
|
45
45
|
it "throws an error with required missing options" do
|
46
|
-
|
46
|
+
%i{service_name service_display_name service_description service_file_path}.each do |key|
|
47
47
|
service_def = test_service.dup
|
48
48
|
service_def.delete(key)
|
49
49
|
|
@@ -21,9 +21,7 @@ describe "chef-client" do
|
|
21
21
|
# just a normal file
|
22
22
|
# (expected_content should be uncompressed)
|
23
23
|
@api.get("/recipes.tgz", 200) do
|
24
|
-
File.open(recipes_filename, "rb")
|
25
|
-
f.read
|
26
|
-
end
|
24
|
+
File.open(recipes_filename, "rb", &:read)
|
27
25
|
end
|
28
26
|
end
|
29
27
|
|
@@ -55,19 +53,19 @@ describe "chef-client" do
|
|
55
53
|
it "should complete with success" do
|
56
54
|
file "config/client.rb", <<~EOM
|
57
55
|
local_mode true
|
58
|
-
cookbook_path "#{path_to(
|
56
|
+
cookbook_path "#{path_to("cookbooks")}"
|
59
57
|
EOM
|
60
58
|
|
61
|
-
shell_out!("#{chef_client} -c \"#{path_to(
|
59
|
+
shell_out!("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default'", cwd: chef_dir)
|
62
60
|
end
|
63
61
|
|
64
62
|
it "should complete successfully with --no-listen" do
|
65
63
|
file "config/client.rb", <<~EOM
|
66
64
|
local_mode true
|
67
|
-
cookbook_path "#{path_to(
|
65
|
+
cookbook_path "#{path_to("cookbooks")}"
|
68
66
|
EOM
|
69
67
|
|
70
|
-
result = shell_out("#{chef_client} --no-listen -c \"#{path_to(
|
68
|
+
result = shell_out("#{chef_client} --no-listen -c \"#{path_to("config/client.rb")}\" -o 'x::default'", cwd: chef_dir)
|
71
69
|
result.error!
|
72
70
|
end
|
73
71
|
|
@@ -108,10 +106,10 @@ describe "chef-client" do
|
|
108
106
|
it "should complete with success" do
|
109
107
|
file "config/client.rb", <<~EOM
|
110
108
|
local_mode true
|
111
|
-
cookbook_path "#{path_to(
|
109
|
+
cookbook_path "#{path_to("cookbooks")}"
|
112
110
|
EOM
|
113
111
|
|
114
|
-
result = shell_out("#{chef_client} -c \"#{path_to(
|
112
|
+
result = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default'", cwd: chef_dir)
|
115
113
|
result.error!
|
116
114
|
end
|
117
115
|
|
@@ -151,34 +149,34 @@ describe "chef-client" do
|
|
151
149
|
it "should complete with success even with a client key" do
|
152
150
|
file "config/client.rb", <<~EOM
|
153
151
|
local_mode true
|
154
|
-
client_key #{path_to(
|
155
|
-
cookbook_path #{path_to(
|
152
|
+
client_key #{path_to("mykey.pem").inspect}
|
153
|
+
cookbook_path #{path_to("cookbooks").inspect}
|
156
154
|
EOM
|
157
155
|
|
158
|
-
result = shell_out("#{chef_client} -c \"#{path_to(
|
156
|
+
result = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default'", cwd: chef_dir)
|
159
157
|
result.error!
|
160
158
|
end
|
161
159
|
|
162
160
|
it "should run recipes specified directly on the command line" do
|
163
161
|
file "config/client.rb", <<~EOM
|
164
162
|
local_mode true
|
165
|
-
client_key #{path_to(
|
166
|
-
cookbook_path #{path_to(
|
163
|
+
client_key #{path_to("mykey.pem").inspect}
|
164
|
+
cookbook_path #{path_to("cookbooks").inspect}
|
167
165
|
EOM
|
168
166
|
|
169
167
|
file "arbitrary.rb", <<~EOM
|
170
|
-
file #{path_to(
|
168
|
+
file #{path_to("tempfile.txt").inspect} do
|
171
169
|
content '1'
|
172
170
|
end
|
173
171
|
EOM
|
174
172
|
|
175
173
|
file "arbitrary2.rb", <<~EOM
|
176
|
-
file #{path_to(
|
174
|
+
file #{path_to("tempfile2.txt").inspect} do
|
177
175
|
content '2'
|
178
176
|
end
|
179
177
|
EOM
|
180
178
|
|
181
|
-
result = shell_out("#{chef_client} -c \"#{path_to(
|
179
|
+
result = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" #{path_to("arbitrary.rb")} #{path_to("arbitrary2.rb")}", cwd: chef_dir)
|
182
180
|
result.error!
|
183
181
|
|
184
182
|
expect(IO.read(path_to("tempfile.txt"))).to eq("1")
|
@@ -188,17 +186,17 @@ describe "chef-client" do
|
|
188
186
|
it "should run recipes specified as relative paths directly on the command line" do
|
189
187
|
file "config/client.rb", <<~EOM
|
190
188
|
local_mode true
|
191
|
-
client_key #{path_to(
|
192
|
-
cookbook_path #{path_to(
|
189
|
+
client_key #{path_to("mykey.pem").inspect}
|
190
|
+
cookbook_path #{path_to("cookbooks").inspect}
|
193
191
|
EOM
|
194
192
|
|
195
193
|
file "arbitrary.rb", <<~EOM
|
196
|
-
file #{path_to(
|
194
|
+
file #{path_to("tempfile.txt").inspect} do
|
197
195
|
content '1'
|
198
196
|
end
|
199
197
|
EOM
|
200
198
|
|
201
|
-
result = shell_out("#{chef_client} -c \"#{path_to(
|
199
|
+
result = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" arbitrary.rb", cwd: path_to(""))
|
202
200
|
result.error!
|
203
201
|
|
204
202
|
expect(IO.read(path_to("tempfile.txt"))).to eq("1")
|
@@ -207,8 +205,8 @@ describe "chef-client" do
|
|
207
205
|
it "should run recipes specified directly on the command line AFTER recipes in the run list" do
|
208
206
|
file "config/client.rb", <<~EOM
|
209
207
|
local_mode true
|
210
|
-
client_key #{path_to(
|
211
|
-
cookbook_path #{path_to(
|
208
|
+
client_key #{path_to("mykey.pem").inspect}
|
209
|
+
cookbook_path #{path_to("cookbooks").inspect}
|
212
210
|
EOM
|
213
211
|
|
214
212
|
file "cookbooks/x/recipes/constant_definition.rb", <<~EOM
|
@@ -218,12 +216,12 @@ describe "chef-client" do
|
|
218
216
|
EOM
|
219
217
|
|
220
218
|
file "arbitrary.rb", <<~EOM
|
221
|
-
file #{path_to(
|
219
|
+
file #{path_to("tempfile.txt").inspect} do
|
222
220
|
content ::Blah::THECONSTANT
|
223
221
|
end
|
224
222
|
EOM
|
225
223
|
|
226
|
-
result = shell_out("#{chef_client} -c \"#{path_to(
|
224
|
+
result = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o x::constant_definition arbitrary.rb", cwd: path_to(""))
|
227
225
|
result.error!
|
228
226
|
|
229
227
|
expect(IO.read(path_to("tempfile.txt"))).to eq("1")
|
@@ -232,8 +230,8 @@ describe "chef-client" do
|
|
232
230
|
it "should run recipes specified directly on the command line AFTER recipes in the run list (without an override_runlist this time)" do
|
233
231
|
file "config/client.rb", <<~EOM
|
234
232
|
local_mode true
|
235
|
-
client_key #{path_to(
|
236
|
-
cookbook_path #{path_to(
|
233
|
+
client_key #{path_to("mykey.pem").inspect}
|
234
|
+
cookbook_path #{path_to("cookbooks").inspect}
|
237
235
|
EOM
|
238
236
|
|
239
237
|
file "config/dna.json", <<~EOM
|
@@ -249,12 +247,12 @@ describe "chef-client" do
|
|
249
247
|
EOM
|
250
248
|
|
251
249
|
file "arbitrary.rb", <<~EOM
|
252
|
-
file #{path_to(
|
250
|
+
file #{path_to("tempfile.txt").inspect} do
|
253
251
|
content ::Blah::THECONSTANT
|
254
252
|
end
|
255
253
|
EOM
|
256
254
|
|
257
|
-
result = shell_out("#{chef_client} -c \"#{path_to(
|
255
|
+
result = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -j \"#{path_to("config/dna.json")}\" arbitrary.rb", cwd: path_to(""))
|
258
256
|
result.error!
|
259
257
|
|
260
258
|
expect(IO.read(path_to("tempfile.txt"))).to eq("1")
|
@@ -263,8 +261,8 @@ describe "chef-client" do
|
|
263
261
|
it "an override_runlist of an empty string should allow a recipe specified directly on the command line to be the only one run" do
|
264
262
|
file "config/client.rb", <<~EOM
|
265
263
|
local_mode true
|
266
|
-
client_key #{path_to(
|
267
|
-
cookbook_path #{path_to(
|
264
|
+
client_key #{path_to("mykey.pem").inspect}
|
265
|
+
cookbook_path #{path_to("cookbooks").inspect}
|
268
266
|
class ::Blah
|
269
267
|
THECONSTANT = "1"
|
270
268
|
end
|
@@ -284,12 +282,12 @@ describe "chef-client" do
|
|
284
282
|
|
285
283
|
file "arbitrary.rb", <<~EOM
|
286
284
|
raise "this test failed" unless ::Blah::THECONSTANT == "1"
|
287
|
-
file #{path_to(
|
285
|
+
file #{path_to("tempfile.txt").inspect} do
|
288
286
|
content ::Blah::THECONSTANT
|
289
287
|
end
|
290
288
|
EOM
|
291
289
|
|
292
|
-
result = shell_out("#{chef_client} -c \"#{path_to(
|
290
|
+
result = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -j \"#{path_to("config/dna.json")}\" -o \"\" arbitrary.rb", cwd: path_to(""))
|
293
291
|
result.error!
|
294
292
|
|
295
293
|
expect(IO.read(path_to("tempfile.txt"))).to eq("1")
|
@@ -300,30 +298,30 @@ describe "chef-client" do
|
|
300
298
|
it "should complete with success when passed the -z flag" do
|
301
299
|
file "config/client.rb", <<~EOM
|
302
300
|
chef_server_url 'http://omg.com/blah'
|
303
|
-
cookbook_path "#{path_to(
|
301
|
+
cookbook_path "#{path_to("cookbooks")}"
|
304
302
|
EOM
|
305
303
|
|
306
|
-
result = shell_out("#{chef_client} -c \"#{path_to(
|
304
|
+
result = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default' -z", cwd: chef_dir)
|
307
305
|
result.error!
|
308
306
|
end
|
309
307
|
|
310
308
|
it "should complete with success when passed the --local-mode flag" do
|
311
309
|
file "config/client.rb", <<~EOM
|
312
310
|
chef_server_url 'http://omg.com/blah'
|
313
|
-
cookbook_path "#{path_to(
|
311
|
+
cookbook_path "#{path_to("cookbooks")}"
|
314
312
|
EOM
|
315
313
|
|
316
|
-
result = shell_out("#{chef_client} -c \"#{path_to(
|
314
|
+
result = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default' --local-mode", cwd: chef_dir)
|
317
315
|
result.error!
|
318
316
|
end
|
319
317
|
|
320
318
|
it "should not print SSL warnings when running in local-mode" do
|
321
319
|
file "config/client.rb", <<~EOM
|
322
320
|
chef_server_url 'http://omg.com/blah'
|
323
|
-
cookbook_path "#{path_to(
|
321
|
+
cookbook_path "#{path_to("cookbooks")}"
|
324
322
|
EOM
|
325
323
|
|
326
|
-
result = shell_out("#{chef_client} -c \"#{path_to(
|
324
|
+
result = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default' --local-mode", cwd: chef_dir)
|
327
325
|
expect(result.stdout).not_to include("SSL validation of HTTPS requests is disabled.")
|
328
326
|
result.error!
|
329
327
|
end
|
@@ -331,20 +329,20 @@ describe "chef-client" do
|
|
331
329
|
it "should complete with success when passed -z and --chef-zero-port" do
|
332
330
|
file "config/client.rb", <<~EOM
|
333
331
|
chef_server_url 'http://omg.com/blah'
|
334
|
-
cookbook_path "#{path_to(
|
332
|
+
cookbook_path "#{path_to("cookbooks")}"
|
335
333
|
EOM
|
336
334
|
|
337
|
-
result = shell_out("#{chef_client} -c \"#{path_to(
|
335
|
+
result = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default' -z", cwd: chef_dir)
|
338
336
|
result.error!
|
339
337
|
end
|
340
338
|
|
341
339
|
it "should complete with success when setting the run list with -r" do
|
342
340
|
file "config/client.rb", <<~EOM
|
343
341
|
chef_server_url 'http://omg.com/blah'
|
344
|
-
cookbook_path "#{path_to(
|
342
|
+
cookbook_path "#{path_to("cookbooks")}"
|
345
343
|
EOM
|
346
344
|
|
347
|
-
result = shell_out("#{chef_client} -c \"#{path_to(
|
345
|
+
result = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -r 'x::default' -z -l info", cwd: chef_dir)
|
348
346
|
expect(result.stdout).not_to include("Overridden Run List")
|
349
347
|
expect(result.stdout).to include("Run List is [recipe[x::default]]")
|
350
348
|
result.error!
|
@@ -353,9 +351,9 @@ describe "chef-client" do
|
|
353
351
|
it "should complete with success when using --profile-ruby and output a profile file", :not_supported_on_aix do
|
354
352
|
file "config/client.rb", <<~EOM
|
355
353
|
local_mode true
|
356
|
-
cookbook_path "#{path_to(
|
354
|
+
cookbook_path "#{path_to("cookbooks")}"
|
357
355
|
EOM
|
358
|
-
result = shell_out!("#{chef_client} -c \"#{path_to(
|
356
|
+
result = shell_out!("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default' -z --profile-ruby", cwd: chef_dir)
|
359
357
|
result.error!
|
360
358
|
expect(File.exist?(path_to("config/local-mode-cache/cache/graph_profile.out"))).to be true
|
361
359
|
end
|
@@ -363,9 +361,9 @@ describe "chef-client" do
|
|
363
361
|
it "doesn't produce a profile when --profile-ruby is not present" do
|
364
362
|
file "config/client.rb", <<~EOM
|
365
363
|
local_mode true
|
366
|
-
cookbook_path "#{path_to(
|
364
|
+
cookbook_path "#{path_to("cookbooks")}"
|
367
365
|
EOM
|
368
|
-
result = shell_out!("#{chef_client} -c \"#{path_to(
|
366
|
+
result = shell_out!("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default' -z", cwd: chef_dir)
|
369
367
|
result.error!
|
370
368
|
expect(File.exist?(path_to("config/local-mode-cache/cache/graph_profile.out"))).to be false
|
371
369
|
end
|
@@ -381,11 +379,11 @@ describe "chef-client" do
|
|
381
379
|
EOM
|
382
380
|
file "config/client.rb", <<~EOM
|
383
381
|
local_mode true
|
384
|
-
cookbook_path "#{path_to(
|
382
|
+
cookbook_path "#{path_to("cookbooks")}"
|
385
383
|
EOM
|
386
384
|
end
|
387
385
|
it "should fail the chef client run" do
|
388
|
-
command = shell_out("#{chef_client} -c \"#{path_to(
|
386
|
+
command = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default' --no-fork", cwd: chef_dir)
|
389
387
|
expect(command.exitstatus).to eql(1)
|
390
388
|
expect(command.stdout).to match(/Chef::Exceptions::CookbookChefVersionMismatch/)
|
391
389
|
end
|
@@ -406,12 +404,12 @@ describe "chef-client" do
|
|
406
404
|
EOM
|
407
405
|
file "config/client.rb", <<-EOM
|
408
406
|
local_mode true
|
409
|
-
cookbook_path "#{path_to(
|
407
|
+
cookbook_path "#{path_to("cookbooks")}"
|
410
408
|
EOM
|
411
409
|
end
|
412
410
|
|
413
411
|
it "the cheffish DSL is loaded lazily" do
|
414
|
-
command = shell_out("#{chef_client} -c \"#{path_to(
|
412
|
+
command = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default' --no-fork", cwd: chef_dir)
|
415
413
|
expect(command.exitstatus).to eql(0)
|
416
414
|
end
|
417
415
|
end
|
@@ -437,7 +435,7 @@ describe "chef-client" do
|
|
437
435
|
it "should output each deprecation warning only once, at the end of the run" do
|
438
436
|
file "config/client.rb", <<~EOM
|
439
437
|
local_mode true
|
440
|
-
cookbook_path "#{path_to(
|
438
|
+
cookbook_path "#{path_to("cookbooks")}"
|
441
439
|
# Mimick what happens when you are on the console
|
442
440
|
formatters << :doc
|
443
441
|
log_level :warn
|
@@ -445,7 +443,7 @@ describe "chef-client" do
|
|
445
443
|
|
446
444
|
ENV.delete("CHEF_TREAT_DEPRECATION_WARNINGS_AS_ERRORS")
|
447
445
|
|
448
|
-
result = shell_out!("#{chef_client} -c \"#{path_to(
|
446
|
+
result = shell_out!("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default'", cwd: chef_dir)
|
449
447
|
expect(result.error?).to be_falsey
|
450
448
|
|
451
449
|
# Search to the end of the client run in the output
|
@@ -460,7 +458,7 @@ describe "chef-client" do
|
|
460
458
|
when_the_repository "has a cookbook that deploys a file" do
|
461
459
|
before do
|
462
460
|
file "cookbooks/x/recipes/default.rb", <<~RECIPE
|
463
|
-
cookbook_file #{path_to(
|
461
|
+
cookbook_file #{path_to("tempfile.txt").inspect} do
|
464
462
|
source "my_file"
|
465
463
|
end
|
466
464
|
RECIPE
|
@@ -476,9 +474,9 @@ describe "chef-client" do
|
|
476
474
|
file "config/client.rb", <<~EOM
|
477
475
|
no_lazy_load #{lazy}
|
478
476
|
local_mode true
|
479
|
-
cookbook_path "#{path_to(
|
477
|
+
cookbook_path "#{path_to("cookbooks")}"
|
480
478
|
EOM
|
481
|
-
result = shell_out("#{chef_client} -l debug -c \"#{path_to(
|
479
|
+
result = shell_out("#{chef_client} -l debug -c \"#{path_to("config/client.rb")}\" -o 'x::default' --no-fork", cwd: chef_dir)
|
482
480
|
result.error!
|
483
481
|
|
484
482
|
expect(IO.read(path_to("tempfile.txt")).strip).to eq("this is my file")
|
@@ -490,7 +488,7 @@ describe "chef-client" do
|
|
490
488
|
when_the_repository "has a cookbook with an ohai plugin" do
|
491
489
|
before do
|
492
490
|
file "cookbooks/x/recipes/default.rb", <<~RECIPE
|
493
|
-
file #{path_to(
|
491
|
+
file #{path_to("tempfile.txt").inspect} do
|
494
492
|
content node["english"]["version"]
|
495
493
|
end
|
496
494
|
RECIPE
|
@@ -508,12 +506,12 @@ describe "chef-client" do
|
|
508
506
|
|
509
507
|
file "config/client.rb", <<~EOM
|
510
508
|
local_mode true
|
511
|
-
cookbook_path "#{path_to(
|
509
|
+
cookbook_path "#{path_to("cookbooks")}"
|
512
510
|
EOM
|
513
511
|
end
|
514
512
|
|
515
513
|
it "should run the ohai plugin" do
|
516
|
-
result = shell_out("#{chef_client} -l debug -c \"#{path_to(
|
514
|
+
result = shell_out("#{chef_client} -l debug -c \"#{path_to("config/client.rb")}\" -o 'x::default' --no-fork", cwd: chef_dir)
|
517
515
|
result.error!
|
518
516
|
|
519
517
|
expect(IO.read(path_to("tempfile.txt"))).to eq("2014")
|
@@ -536,7 +534,7 @@ describe "chef-client" do
|
|
536
534
|
file "config/client.rb", <<~EOM
|
537
535
|
chef_repo_path "#{tmp_dir}"
|
538
536
|
EOM
|
539
|
-
result = shell_out("#{chef_client} -c \"#{path_to(
|
537
|
+
result = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" --recipe-url=http://localhost:9000/recipes.tgz -o 'x::default' -z", cwd: tmp_dir)
|
540
538
|
result.error!
|
541
539
|
end
|
542
540
|
|
@@ -569,17 +567,17 @@ describe "chef-client" do
|
|
569
567
|
|
570
568
|
file "config/client.rb", <<~EOM
|
571
569
|
local_mode true
|
572
|
-
cookbook_path "#{path_to(
|
570
|
+
cookbook_path "#{path_to("cookbooks")}"
|
573
571
|
EOM
|
574
572
|
end
|
575
573
|
|
576
574
|
it "the chef client run should succeed" do
|
577
|
-
command = shell_out("#{chef_client} -c \"#{path_to(
|
575
|
+
command = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default' --no-fork", cwd: chef_dir)
|
578
576
|
command.error!
|
579
577
|
end
|
580
578
|
|
581
579
|
it "a chef-solo run should succeed" do
|
582
|
-
command = shell_out("#{chef_solo} -c \"#{path_to(
|
580
|
+
command = shell_out("#{chef_solo} -c \"#{path_to("config/client.rb")}\" -o 'x::default' --no-fork", cwd: chef_dir)
|
583
581
|
command.error!
|
584
582
|
end
|
585
583
|
end
|
@@ -593,30 +591,30 @@ describe "chef-client" do
|
|
593
591
|
EOM
|
594
592
|
file "config/client.rb", <<~EOM
|
595
593
|
local_mode true
|
596
|
-
cookbook_path "#{path_to(
|
594
|
+
cookbook_path "#{path_to("cookbooks")}"
|
597
595
|
EOM
|
598
596
|
end
|
599
597
|
|
600
598
|
it "a chef client run should not log to info by default" do
|
601
|
-
command = shell_out("#{chef_client} -c \"#{path_to(
|
599
|
+
command = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default' --no-fork", cwd: chef_dir)
|
602
600
|
command.error!
|
603
601
|
expect(command.stdout).not_to include("INFO")
|
604
602
|
end
|
605
603
|
|
606
604
|
it "a chef client run to a pipe should not log to info by default" do
|
607
|
-
command = shell_out("#{chef_client} -c \"#{path_to(
|
605
|
+
command = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default' --no-fork | tee #{path_to("chefrun.out")}", cwd: chef_dir)
|
608
606
|
command.error!
|
609
607
|
expect(command.stdout).not_to include("INFO")
|
610
608
|
end
|
611
609
|
|
612
610
|
it "a chef solo run should not log to info by default" do
|
613
|
-
command = shell_out("#{chef_solo} -c \"#{path_to(
|
611
|
+
command = shell_out("#{chef_solo} -c \"#{path_to("config/client.rb")}\" -o 'x::default' --no-fork", cwd: chef_dir)
|
614
612
|
command.error!
|
615
613
|
expect(command.stdout).not_to include("INFO")
|
616
614
|
end
|
617
615
|
|
618
616
|
it "a chef solo run to a pipe should not log to info by default" do
|
619
|
-
command = shell_out("#{chef_solo} -c \"#{path_to(
|
617
|
+
command = shell_out("#{chef_solo} -c \"#{path_to("config/client.rb")}\" -o 'x::default' --no-fork | tee #{path_to("chefrun.out")}", cwd: chef_dir)
|
620
618
|
command.error!
|
621
619
|
expect(command.stdout).not_to include("INFO")
|
622
620
|
end
|
@@ -629,42 +627,42 @@ EOM
|
|
629
627
|
EOM
|
630
628
|
file "config/client.rb", <<~EOM
|
631
629
|
local_mode true
|
632
|
-
cookbook_path "#{path_to(
|
630
|
+
cookbook_path "#{path_to("cookbooks")}"
|
633
631
|
EOM
|
634
632
|
end
|
635
633
|
|
636
634
|
it "chef-client runs by default with no supervisor" do
|
637
|
-
command = shell_out("#{chef_client} -c \"#{path_to(
|
635
|
+
command = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default'", cwd: chef_dir)
|
638
636
|
command.error!
|
639
637
|
expect(command.stdout).to include("NOFORK")
|
640
638
|
end
|
641
639
|
|
642
640
|
it "chef-solo runs by default with no supervisor" do
|
643
|
-
command = shell_out("#{chef_solo} -c \"#{path_to(
|
641
|
+
command = shell_out("#{chef_solo} -c \"#{path_to("config/client.rb")}\" -o 'x::default'", cwd: chef_dir)
|
644
642
|
command.error!
|
645
643
|
expect(command.stdout).to include("NOFORK")
|
646
644
|
end
|
647
645
|
|
648
646
|
it "chef-client --no-fork does not fork" do
|
649
|
-
command = shell_out("#{chef_client} -c \"#{path_to(
|
647
|
+
command = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default' --no-fork", cwd: chef_dir)
|
650
648
|
command.error!
|
651
649
|
expect(command.stdout).to include("NOFORK")
|
652
650
|
end
|
653
651
|
|
654
652
|
it "chef-solo --no-fork does not fork" do
|
655
|
-
command = shell_out("#{chef_solo} -c \"#{path_to(
|
653
|
+
command = shell_out("#{chef_solo} -c \"#{path_to("config/client.rb")}\" -o 'x::default' --no-fork", cwd: chef_dir)
|
656
654
|
command.error!
|
657
655
|
expect(command.stdout).to include("NOFORK")
|
658
656
|
end
|
659
657
|
|
660
658
|
it "chef-client with --fork uses a supervisor" do
|
661
|
-
command = shell_out("#{chef_client} -c \"#{path_to(
|
659
|
+
command = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default' --fork", cwd: chef_dir)
|
662
660
|
command.error!
|
663
661
|
expect(command.stdout).to include("WITHFORK")
|
664
662
|
end
|
665
663
|
|
666
664
|
it "chef-solo with --fork uses a supervisor" do
|
667
|
-
command = shell_out("#{chef_solo} -c \"#{path_to(
|
665
|
+
command = shell_out("#{chef_solo} -c \"#{path_to("config/client.rb")}\" -o 'x::default' --fork", cwd: chef_dir)
|
668
666
|
command.error!
|
669
667
|
expect(command.stdout).to include("WITHFORK")
|
670
668
|
end
|
@@ -677,19 +675,19 @@ EOM
|
|
677
675
|
EOM
|
678
676
|
file "config/client.rb", <<~EOM
|
679
677
|
local_mode true
|
680
|
-
cookbook_path "#{path_to(
|
678
|
+
cookbook_path "#{path_to("cookbooks")}"
|
681
679
|
client_fork true
|
682
680
|
EOM
|
683
681
|
end
|
684
682
|
|
685
683
|
it "chef-client uses a supervisor" do
|
686
|
-
command = shell_out("#{chef_client} -c \"#{path_to(
|
684
|
+
command = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default'", cwd: chef_dir)
|
687
685
|
command.error!
|
688
686
|
expect(command.stdout).to include("WITHFORK")
|
689
687
|
end
|
690
688
|
|
691
689
|
it "chef-solo uses a supervisor" do
|
692
|
-
command = shell_out("#{chef_solo} -c \"#{path_to(
|
690
|
+
command = shell_out("#{chef_solo} -c \"#{path_to("config/client.rb")}\" -o 'x::default'", cwd: chef_dir)
|
693
691
|
command.error!
|
694
692
|
expect(command.stdout).to include("WITHFORK")
|
695
693
|
end
|
@@ -702,19 +700,19 @@ EOM
|
|
702
700
|
EOM
|
703
701
|
file "config/client.rb", <<~EOM
|
704
702
|
local_mode true
|
705
|
-
cookbook_path "#{path_to(
|
703
|
+
cookbook_path "#{path_to("cookbooks")}"
|
706
704
|
client_fork false
|
707
705
|
EOM
|
708
706
|
end
|
709
707
|
|
710
708
|
it "chef-client uses a supervisor" do
|
711
|
-
command = shell_out("#{chef_client} -c \"#{path_to(
|
709
|
+
command = shell_out("#{chef_client} -c \"#{path_to("config/client.rb")}\" -o 'x::default'", cwd: chef_dir)
|
712
710
|
command.error!
|
713
711
|
expect(command.stdout).to include("NOFORK")
|
714
712
|
end
|
715
713
|
|
716
714
|
it "chef-solo uses a supervisor" do
|
717
|
-
command = shell_out("#{chef_solo} -c \"#{path_to(
|
715
|
+
command = shell_out("#{chef_solo} -c \"#{path_to("config/client.rb")}\" -o 'x::default'", cwd: chef_dir)
|
718
716
|
command.error!
|
719
717
|
expect(command.stdout).to include("NOFORK")
|
720
718
|
end
|