chef 12.0.3-x86-mingw32 → 12.1.0.rc.0-x86-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 +4 -1
- data/README.md +42 -18
- data/distro/common/html/_sources/ctl_chef_client.txt +1 -1
- data/distro/common/html/_sources/ctl_chef_server.txt +53 -35
- data/distro/common/html/_sources/ctl_chef_solo.txt +1 -1
- data/distro/common/html/_sources/knife_bootstrap.txt +1 -1
- data/distro/common/html/_sources/knife_cookbook_site.txt +1 -1
- data/distro/common/html/_sources/knife_data_bag.txt +4 -4
- data/distro/common/html/_sources/knife_status.txt +1 -1
- data/distro/common/html/_static/searchtools.js +1 -1
- data/distro/common/html/ctl_chef_client.html +55 -7
- data/distro/common/html/ctl_chef_server.html +84 -41
- data/distro/common/html/ctl_chef_shell.html +45 -1
- data/distro/common/html/ctl_chef_solo.html +51 -5
- data/distro/common/html/index.html +2 -2
- data/distro/common/html/knife.html +1 -1
- data/distro/common/html/knife_bootstrap.html +30 -10
- data/distro/common/html/knife_cookbook_site.html +2 -0
- data/distro/common/html/knife_data_bag.html +4 -4
- data/distro/common/html/knife_node.html +2 -2
- data/distro/common/html/knife_raw.html +1 -1
- data/distro/common/html/knife_role.html +1 -1
- data/distro/common/html/knife_search.html +3 -3
- data/distro/common/html/knife_status.html +4 -0
- data/distro/common/html/searchindex.js +1 -1
- data/distro/common/man/man1/chef-shell.1 +72 -1
- data/distro/common/man/man1/knife-bootstrap.1 +71 -63
- data/distro/common/man/man1/knife-client.1 +1 -1
- data/distro/common/man/man1/knife-configure.1 +1 -1
- data/distro/common/man/man1/knife-cookbook-site.1 +4 -1
- data/distro/common/man/man1/knife-cookbook.1 +1 -1
- data/distro/common/man/man1/knife-data-bag.1 +5 -5
- data/distro/common/man/man1/knife-delete.1 +1 -1
- data/distro/common/man/man1/knife-deps.1 +1 -1
- data/distro/common/man/man1/knife-diff.1 +1 -1
- data/distro/common/man/man1/knife-download.1 +1 -1
- data/distro/common/man/man1/knife-edit.1 +1 -1
- data/distro/common/man/man1/knife-environment.1 +1 -1
- data/distro/common/man/man1/knife-exec.1 +1 -1
- data/distro/common/man/man1/knife-index-rebuild.1 +1 -1
- data/distro/common/man/man1/knife-list.1 +1 -1
- data/distro/common/man/man1/knife-node.1 +3 -3
- data/distro/common/man/man1/knife-raw.1 +2 -2
- data/distro/common/man/man1/knife-recipe-list.1 +1 -1
- data/distro/common/man/man1/knife-role.1 +2 -2
- data/distro/common/man/man1/knife-search.1 +4 -4
- data/distro/common/man/man1/knife-serve.1 +1 -1
- data/distro/common/man/man1/knife-show.1 +1 -1
- data/distro/common/man/man1/knife-ssh.1 +1 -1
- data/distro/common/man/man1/knife-ssl-check.1 +1 -1
- data/distro/common/man/man1/knife-ssl-fetch.1 +1 -1
- data/distro/common/man/man1/knife-status.1 +1 -1
- data/distro/common/man/man1/knife-tag.1 +1 -1
- data/distro/common/man/man1/knife-upload.1 +1 -1
- data/distro/common/man/man1/knife-user.1 +1 -1
- data/distro/common/man/man1/knife-xargs.1 +1 -1
- data/distro/common/man/man1/knife.1 +1 -1
- data/distro/common/man/man8/chef-apply.8 +86 -0
- data/distro/common/man/man8/chef-client.8 +76 -5
- data/distro/common/man/man8/chef-solo.8 +79 -6
- data/distro/common/markdown/man1/knife-bootstrap.mkd +1 -1
- data/distro/common/markdown/man1/knife-cookbook-site.mkd +1 -1
- data/distro/common/markdown/man1/knife-data-bag.mkd +1 -1
- data/distro/common/markdown/man1/knife-environment.mkd +1 -1
- data/distro/common/markdown/man1/knife.mkd +1 -1
- data/lib/chef.rb +0 -7
- data/lib/chef/api_client.rb +10 -2
- data/lib/chef/api_client/registration.rb +7 -9
- data/lib/chef/application.rb +28 -12
- data/lib/chef/application/apply.rb +17 -1
- data/lib/chef/application/client.rb +74 -6
- data/lib/chef/application/knife.rb +1 -2
- data/lib/chef/application/solo.rb +30 -0
- data/lib/chef/application/windows_service.rb +1 -0
- data/lib/chef/application/windows_service_manager.rb +8 -2
- data/lib/chef/applications.rb +0 -1
- data/lib/chef/audit/audit_event_proxy.rb +93 -0
- data/lib/chef/audit/audit_reporter.rb +169 -0
- data/lib/chef/audit/control_group_data.rb +140 -0
- data/lib/chef/audit/rspec_formatter.rb +37 -0
- data/lib/chef/audit/runner.rb +178 -0
- data/lib/chef/chef_fs/chef_fs_data_store.rb +11 -2
- data/lib/chef/chef_fs/config.rb +25 -4
- data/lib/chef/chef_fs/data_handler/policy_data_handler.rb +15 -0
- data/lib/chef/chef_fs/data_handler/user_data_handler.rb +1 -0
- data/lib/chef/chef_fs/file_system.rb +1 -1
- data/lib/chef/chef_fs/file_system/base_fs_dir.rb +5 -0
- data/lib/chef/chef_fs/file_system/chef_repository_file_system_cookbook_entry.rb +3 -2
- data/lib/chef/{shef/ext.rb → chef_fs/file_system/chef_repository_file_system_policies_dir.rb} +22 -3
- data/lib/chef/chef_fs/file_system/chef_repository_file_system_root_dir.rb +4 -0
- data/lib/chef/client.rb +81 -52
- data/lib/chef/config.rb +35 -3
- data/lib/chef/cookbook/metadata.rb +3 -3
- data/lib/chef/cookbook_manifest.rb +275 -0
- data/lib/chef/cookbook_site_streaming_uploader.rb +24 -23
- data/lib/chef/cookbook_uploader.rb +11 -2
- data/lib/chef/cookbook_version.rb +71 -194
- data/lib/chef/data_bag.rb +5 -2
- data/lib/chef/data_bag_item.rb +6 -3
- data/lib/chef/deprecation/warnings.rb +5 -4
- data/lib/chef/dsl/audit.rb +51 -0
- data/lib/chef/dsl/include_recipe.rb +2 -3
- data/lib/chef/dsl/reboot_pending.rb +1 -1
- data/lib/chef/dsl/recipe.rb +49 -31
- data/lib/chef/encrypted_data_bag_item/assertions.rb +0 -3
- data/lib/chef/environment.rb +5 -2
- data/lib/chef/event_dispatch/base.rb +36 -1
- data/lib/chef/event_dispatch/dispatcher.rb +3 -5
- data/lib/chef/exceptions.rb +61 -2
- data/lib/chef/file_access_control/unix.rb +12 -0
- data/lib/chef/file_access_control/windows.rb +14 -0
- data/lib/chef/formatters/doc.rb +47 -1
- data/{spec/unit/monkey_patches/string_spec.rb → lib/chef/guard_interpreter.rb} +11 -16
- data/lib/chef/guard_interpreter/resource_guard_interpreter.rb +3 -2
- data/lib/chef/http.rb +1 -2
- data/lib/chef/knife.rb +5 -3
- data/lib/chef/knife/bootstrap.rb +84 -15
- data/lib/chef/knife/bootstrap/chef_vault_handler.rb +165 -0
- data/lib/chef/knife/bootstrap/client_builder.rb +190 -0
- data/lib/chef/knife/bootstrap/{README.md → templates/README.md} +0 -0
- data/lib/chef/knife/bootstrap/{archlinux-gems.erb → templates/archlinux-gems.erb} +9 -0
- data/lib/chef/knife/bootstrap/{chef-aix.erb → templates/chef-aix.erb} +9 -0
- data/lib/chef/knife/bootstrap/{chef-full.erb → templates/chef-full.erb} +10 -1
- data/lib/chef/knife/client_create.rb +8 -7
- data/lib/chef/knife/cookbook_site_download.rb +1 -1
- data/lib/chef/knife/cookbook_site_install.rb +1 -1
- data/lib/chef/knife/cookbook_site_list.rb +1 -1
- data/lib/chef/knife/cookbook_site_search.rb +1 -1
- data/lib/chef/knife/cookbook_site_share.rb +39 -28
- data/lib/chef/knife/cookbook_site_show.rb +3 -3
- data/lib/chef/knife/cookbook_site_unshare.rb +1 -1
- data/lib/chef/knife/cookbook_test.rb +1 -0
- data/lib/chef/knife/cookbook_upload.rb +13 -8
- data/lib/chef/knife/core/bootstrap_context.rb +14 -3
- data/lib/chef/knife/core/generic_presenter.rb +5 -2
- data/lib/chef/knife/core/object_loader.rb +1 -1
- data/lib/chef/knife/core/subcommand_loader.rb +24 -0
- data/lib/chef/knife/core/ui.rb +9 -1
- data/lib/chef/knife/node_run_list_remove.rb +11 -3
- data/lib/chef/knife/raw.rb +14 -3
- data/lib/chef/knife/role_env_run_list_add.rb +86 -0
- data/lib/chef/knife/role_env_run_list_clear.rb +55 -0
- data/lib/chef/knife/role_env_run_list_remove.rb +57 -0
- data/lib/chef/knife/role_env_run_list_replace.rb +59 -0
- data/lib/chef/knife/role_env_run_list_set.rb +70 -0
- data/lib/chef/knife/role_run_list_add.rb +86 -0
- data/lib/chef/knife/role_run_list_clear.rb +55 -0
- data/lib/chef/knife/role_run_list_remove.rb +57 -0
- data/lib/chef/knife/role_run_list_replace.rb +59 -0
- data/lib/chef/knife/role_run_list_set.rb +70 -0
- data/lib/chef/knife/search.rb +4 -4
- data/lib/chef/knife/serve.rb +3 -0
- data/lib/chef/knife/ssh.rb +1 -1
- data/lib/chef/knife/ssl_check.rb +2 -2
- data/lib/chef/knife/ssl_fetch.rb +14 -1
- data/lib/chef/log.rb +10 -1
- data/lib/chef/mixin/command.rb +1 -1
- data/lib/chef/mixin/command/windows.rb +1 -5
- data/lib/chef/mixin/get_source_from_package.rb +1 -0
- data/lib/chef/mixin/params_validate.rb +2 -2
- data/lib/chef/mixin/securable.rb +1 -7
- data/lib/chef/mixin/shell_out.rb +7 -1
- data/lib/chef/mixin/template.rb +2 -14
- data/lib/chef/mixin/why_run.rb +1 -1
- data/lib/chef/monkey_patches/net_http.rb +4 -0
- data/lib/chef/monologger.rb +0 -2
- data/lib/chef/node.rb +5 -2
- data/lib/chef/node/attribute.rb +11 -9
- data/lib/chef/node/attribute_collections.rb +8 -12
- data/lib/chef/node/immutable_collections.rb +4 -10
- data/lib/chef/org.rb +148 -0
- data/lib/chef/platform/provider_mapping.rb +3 -2
- data/lib/chef/platform/provider_priority_map.rb +2 -0
- data/lib/chef/platform/query_helpers.rb +0 -3
- data/lib/chef/policy_builder/policyfile.rb +51 -8
- data/lib/chef/provider/deploy.rb +1 -2
- data/lib/chef/provider/directory.rb +3 -3
- data/lib/chef/provider/dsc_script.rb +13 -7
- data/lib/chef/provider/env.rb +8 -8
- data/lib/chef/provider/execute.rb +55 -36
- data/lib/chef/provider/file.rb +8 -0
- data/lib/chef/provider/group.rb +2 -0
- data/lib/chef/provider/group/dscl.rb +3 -4
- data/lib/chef/provider/ifconfig.rb +25 -25
- data/lib/chef/provider/ifconfig/aix.rb +25 -27
- data/lib/chef/provider/lwrp_base.rb +1 -1
- data/lib/chef/provider/mount.rb +2 -2
- data/lib/chef/provider/mount/mount.rb +3 -4
- data/lib/chef/provider/mount/solaris.rb +1 -1
- data/lib/chef/provider/package.rb +297 -48
- data/lib/chef/provider/package/aix.rb +25 -30
- data/lib/chef/provider/package/apt.rb +63 -19
- data/lib/chef/provider/package/dpkg.rb +15 -16
- data/lib/chef/provider/package/macports.rb +7 -7
- data/lib/chef/provider/package/openbsd.rb +107 -0
- data/lib/chef/provider/package/pacman.rb +13 -15
- data/lib/chef/provider/package/portage.rb +3 -4
- data/lib/chef/provider/package/rpm.rb +28 -17
- data/lib/chef/provider/package/rubygems.rb +9 -9
- data/lib/chef/provider/package/solaris.rb +17 -21
- data/lib/chef/provider/package/windows/msi.rb +1 -1
- data/lib/chef/provider/package/yum-dump.py +2 -2
- data/lib/chef/provider/package/yum.rb +117 -51
- data/lib/chef/provider/package/zypper.rb +17 -18
- data/lib/chef/provider/powershell_script.rb +4 -4
- data/lib/chef/provider/registry_key.rb +2 -2
- data/lib/chef/provider/remote_directory.rb +1 -1
- data/lib/chef/provider/script.rb +25 -16
- data/lib/chef/provider/service.rb +1 -1
- data/lib/chef/provider/service/freebsd.rb +1 -1
- data/lib/chef/provider/service/openbsd.rb +216 -0
- data/lib/chef/provider/service/upstart.rb +1 -1
- data/lib/chef/provider/service/windows.rb +99 -1
- data/lib/chef/provider/user.rb +1 -1
- data/lib/chef/provider/user/dscl.rb +19 -4
- data/lib/chef/providers.rb +2 -0
- data/lib/chef/recipe.rb +11 -5
- data/lib/chef/request_id.rb +1 -1
- data/lib/chef/resource.rb +839 -444
- data/lib/chef/resource/chef_gem.rb +20 -3
- data/lib/chef/resource/conditional.rb +3 -14
- data/lib/chef/resource/dsc_script.rb +14 -0
- data/lib/chef/resource/execute.rb +14 -7
- data/lib/chef/resource/file.rb +14 -0
- data/lib/chef/resource/file/verification.rb +122 -0
- data/lib/chef/resource/ips_package.rb +1 -1
- data/lib/chef/resource/lwrp_base.rb +2 -11
- data/lib/chef/resource/macports_package.rb +2 -1
- data/lib/chef/resource/openbsd_package.rb +51 -0
- data/lib/chef/resource/package.rb +2 -2
- data/lib/chef/resource/paludis_package.rb +1 -1
- data/lib/chef/resource/reboot.rb +1 -1
- data/lib/chef/resource/remote_file.rb +1 -0
- data/lib/chef/resource/rpm_package.rb +9 -0
- data/lib/chef/resource/script.rb +11 -0
- data/lib/chef/resource/template.rb +2 -3
- data/lib/chef/resource/windows_package.rb +1 -1
- data/lib/chef/resource/windows_service.rb +18 -0
- data/lib/chef/resource_builder.rb +137 -0
- data/lib/chef/resource_definition.rb +1 -1
- data/lib/chef/resource_reporter.rb +1 -1
- data/lib/chef/resources.rb +1 -0
- data/lib/chef/role.rb +17 -4
- data/lib/chef/run_context.rb +10 -6
- data/lib/chef/search/query.rb +66 -87
- data/lib/chef/shell/ext.rb +2 -2
- data/lib/chef/util/diff.rb +1 -4
- data/lib/chef/util/dsc/configuration_generator.rb +30 -6
- data/lib/chef/util/dsc/lcm_output_parser.rb +7 -3
- data/lib/chef/util/dsc/local_configuration_manager.rb +8 -8
- data/lib/chef/util/file_edit.rb +2 -2
- data/lib/chef/util/path_helper.rb +1 -4
- data/lib/chef/util/windows/net_use.rb +3 -3
- data/lib/chef/version.rb +1 -1
- data/lib/chef/win32/api.rb +1 -0
- data/lib/chef/win32/api/security.rb +26 -0
- data/lib/chef/win32/file.rb +21 -0
- data/lib/chef/win32/security.rb +46 -0
- data/lib/chef/win32/security/token.rb +8 -0
- data/lib/chef/win32/version.rb +0 -4
- data/spec/data/recipes.tgz +0 -0
- data/spec/functional/application_spec.rb +1 -1
- data/spec/functional/audit/rspec_formatter_spec.rb +54 -0
- data/spec/functional/audit/runner_spec.rb +137 -0
- data/spec/functional/dsl/reboot_pending_spec.rb +10 -10
- data/spec/functional/dsl/registry_helper_spec.rb +6 -6
- data/spec/functional/event_loggers/windows_eventlog_spec.rb +5 -5
- data/spec/functional/file_content_management/deploy_strategies_spec.rb +12 -21
- data/spec/functional/http/simple_spec.rb +1 -1
- data/spec/functional/knife/cookbook_delete_spec.rb +24 -24
- data/spec/functional/knife/exec_spec.rb +2 -4
- data/spec/functional/knife/smoke_test.rb +1 -1
- data/spec/functional/knife/ssh_spec.rb +23 -23
- data/spec/functional/provider/remote_file/cache_control_data_spec.rb +8 -8
- data/spec/functional/provider/whyrun_safe_ruby_block_spec.rb +2 -2
- data/spec/functional/rebooter_spec.rb +1 -1
- data/spec/functional/resource/aix_service_spec.rb +3 -0
- data/spec/functional/resource/aixinit_service_spec.rb +3 -3
- data/spec/functional/resource/bash_spec.rb +88 -0
- data/spec/functional/resource/deploy_revision_spec.rb +99 -100
- data/spec/functional/resource/env_spec.rb +3 -3
- data/spec/functional/resource/execute_spec.rb +97 -63
- data/spec/functional/resource/file_spec.rb +7 -7
- data/spec/functional/resource/git_spec.rb +13 -13
- data/spec/functional/resource/group_spec.rb +28 -25
- data/spec/functional/resource/ifconfig_spec.rb +2 -2
- data/spec/functional/resource/link_spec.rb +77 -78
- data/spec/functional/resource/mount_spec.rb +5 -5
- data/spec/functional/resource/ohai_spec.rb +1 -1
- data/spec/functional/resource/package_spec.rb +22 -22
- data/spec/functional/resource/powershell_spec.rb +57 -42
- data/spec/functional/resource/reboot_spec.rb +2 -2
- data/spec/functional/resource/registry_spec.rb +91 -91
- data/spec/functional/resource/remote_directory_spec.rb +19 -19
- data/spec/functional/resource/remote_file_spec.rb +18 -18
- data/spec/functional/resource/template_spec.rb +4 -4
- data/spec/functional/resource/user/dscl_spec.rb +4 -4
- data/spec/functional/resource/user/useradd_spec.rb +64 -51
- data/spec/functional/resource/windows_service_spec.rb +98 -0
- data/spec/functional/run_lock_spec.rb +9 -9
- data/spec/functional/shell_spec.rb +3 -3
- data/spec/functional/tiny_server_spec.rb +12 -12
- data/spec/functional/util/path_helper_spec.rb +1 -1
- data/spec/functional/version_spec.rb +1 -1
- data/spec/functional/win32/registry_helper_spec.rb +125 -125
- data/spec/functional/win32/security_spec.rb +65 -2
- data/spec/functional/win32/service_manager_spec.rb +30 -84
- data/spec/functional/win32/versions_spec.rb +6 -6
- data/spec/integration/client/client_spec.rb +102 -9
- data/spec/integration/knife/chef_fs_data_store_spec.rb +12 -8
- data/spec/integration/knife/common_options_spec.rb +3 -3
- data/spec/integration/knife/cookbook_api_ipv6_spec.rb +2 -2
- data/spec/integration/knife/deps_spec.rb +4 -4
- data/spec/integration/knife/diff_spec.rb +6 -6
- data/spec/integration/knife/download_spec.rb +6 -6
- data/spec/integration/knife/list_spec.rb +2 -2
- data/spec/integration/knife/raw_spec.rb +5 -5
- data/spec/integration/knife/serve_spec.rb +3 -3
- data/spec/integration/knife/show_spec.rb +3 -3
- data/spec/integration/knife/upload_spec.rb +18 -18
- data/spec/integration/recipes/lwrp_inline_resources_spec.rb +1 -1
- data/spec/integration/solo/solo_spec.rb +11 -12
- data/spec/spec_helper.rb +27 -15
- data/spec/stress/win32/file_spec.rb +4 -4
- data/spec/stress/win32/security_spec.rb +4 -4
- data/spec/support/chef_helpers.rb +3 -3
- data/spec/support/matchers/leak.rb +2 -2
- data/spec/support/mock/platform.rb +1 -1
- data/spec/support/pedant/Gemfile +3 -0
- data/spec/support/pedant/pedant_config.rb +9 -2
- data/spec/support/pedant/run_pedant.rb +15 -16
- data/spec/support/platform_helpers.rb +8 -12
- data/spec/support/shared/functional/directory_resource.rb +13 -13
- data/spec/support/shared/functional/file_resource.rb +83 -83
- data/spec/support/shared/functional/http.rb +1 -1
- data/spec/support/shared/functional/securable_resource.rb +64 -64
- data/spec/support/shared/functional/securable_resource_with_reporting.rb +43 -41
- data/spec/support/shared/functional/win32_service.rb +60 -0
- data/spec/support/shared/functional/windows_script.rb +8 -8
- data/spec/support/shared/integration/knife_support.rb +8 -5
- data/spec/support/shared/matchers/exit_with_code.rb +6 -2
- data/spec/support/shared/unit/api_error_inspector.rb +8 -8
- data/spec/support/shared/unit/execute_resource.rb +24 -20
- data/spec/support/shared/unit/file_system_support.rb +2 -2
- data/spec/support/shared/unit/platform_introspector.rb +21 -21
- data/spec/support/shared/unit/provider/file.rb +239 -210
- data/spec/support/shared/unit/provider/useradd_based_user_provider.rb +69 -69
- data/spec/support/shared/unit/script_resource.rb +40 -32
- data/spec/support/shared/unit/windows_script_resource.rb +8 -8
- data/spec/unit/api_client/registration_spec.rb +47 -47
- data/spec/unit/api_client_spec.rb +107 -69
- data/spec/unit/application/apply_spec.rb +31 -15
- data/spec/unit/application/client_spec.rb +146 -45
- data/spec/unit/application/knife_spec.rb +31 -31
- data/spec/unit/application/solo_spec.rb +59 -43
- data/spec/unit/application_spec.rb +109 -74
- data/spec/unit/audit/audit_event_proxy_spec.rb +311 -0
- data/spec/unit/audit/audit_reporter_spec.rb +393 -0
- data/spec/unit/audit/control_group_data_spec.rb +478 -0
- data/{lib/chef/monkey_patches/file.rb → spec/unit/audit/rspec_formatter_spec.rb} +11 -8
- data/spec/unit/audit/runner_spec.rb +135 -0
- data/spec/unit/chef_fs/config_spec.rb +52 -0
- data/spec/unit/chef_fs/diff_spec.rb +12 -12
- data/spec/unit/chef_fs/file_pattern_spec.rb +276 -277
- data/spec/unit/chef_fs/file_system/operation_failed_error_spec.rb +6 -6
- data/spec/unit/chef_fs/file_system_spec.rb +26 -13
- data/spec/unit/chef_fs/parallelizer.rb +87 -87
- data/spec/unit/chef_spec.rb +1 -1
- data/spec/unit/client_spec.rb +263 -97
- data/spec/unit/config_fetcher_spec.rb +13 -13
- data/spec/unit/config_spec.rb +105 -66
- data/spec/unit/cookbook/chefignore_spec.rb +6 -6
- data/spec/unit/cookbook/cookbook_version_loader_spec.rb +3 -3
- data/spec/unit/cookbook/metadata_spec.rb +149 -149
- data/spec/unit/cookbook/syntax_check_spec.rb +36 -31
- data/spec/unit/cookbook_loader_spec.rb +62 -58
- data/spec/unit/cookbook_manifest_spec.rb +141 -468
- data/spec/unit/cookbook_site_streaming_uploader_spec.rb +27 -27
- data/spec/unit/cookbook_spec.rb +15 -15
- data/spec/unit/cookbook_uploader_spec.rb +37 -3
- data/spec/unit/cookbook_version_file_specificity_spec.rb +554 -0
- data/spec/unit/cookbook_version_spec.rb +98 -240
- data/spec/unit/daemon_spec.rb +31 -31
- data/spec/unit/data_bag_item_spec.rb +121 -89
- data/spec/unit/data_bag_spec.rb +35 -35
- data/spec/unit/deprecation_spec.rb +27 -14
- data/spec/unit/digester_spec.rb +3 -3
- data/spec/unit/dsl/audit_spec.rb +43 -0
- data/spec/unit/dsl/data_query_spec.rb +1 -1
- data/spec/unit/dsl/platform_introspection_spec.rb +14 -14
- data/spec/unit/dsl/reboot_pending_spec.rb +18 -18
- data/spec/unit/dsl/regsitry_helper_spec.rb +6 -6
- data/spec/unit/encrypted_data_bag_item_spec.rb +58 -82
- data/spec/unit/environment_spec.rb +105 -105
- data/spec/unit/exceptions_spec.rb +47 -1
- data/spec/unit/file_access_control_spec.rb +62 -56
- data/spec/unit/file_cache_spec.rb +11 -11
- data/spec/unit/file_content_management/deploy/cp_spec.rb +2 -2
- data/spec/unit/file_content_management/deploy/mv_unix_spec.rb +10 -10
- data/spec/unit/file_content_management/deploy/mv_windows_spec.rb +23 -23
- data/spec/unit/formatters/error_inspectors/compile_error_inspector_spec.rb +14 -14
- data/spec/unit/formatters/error_inspectors/cookbook_resolve_error_inspector_spec.rb +12 -12
- data/spec/unit/formatters/error_inspectors/cookbook_sync_error_inspector_spec.rb +1 -1
- data/spec/unit/formatters/error_inspectors/resource_failure_inspector_spec.rb +16 -16
- data/spec/unit/formatters/error_inspectors/run_list_expansion_error_inspector_spec.rb +4 -4
- data/spec/unit/guard_interpreter/resource_guard_interpreter_spec.rb +103 -13
- data/spec/unit/guard_interpreter_spec.rb +41 -0
- data/spec/unit/handler/json_file_spec.rb +10 -10
- data/spec/unit/handler_spec.rb +39 -39
- data/spec/unit/http/basic_client_spec.rb +3 -3
- data/spec/unit/http/http_request_spec.rb +10 -10
- data/spec/unit/http/simple_spec.rb +3 -3
- data/spec/unit/http/ssl_policies_spec.rb +15 -15
- data/spec/unit/http/validate_content_length_spec.rb +18 -13
- data/spec/unit/http_spec.rb +16 -9
- data/spec/unit/knife/bootstrap/chef_vault_handler_spec.rb +153 -0
- data/spec/unit/knife/bootstrap/client_builder_spec.rb +178 -0
- data/spec/unit/knife/bootstrap_spec.rb +144 -91
- data/spec/unit/knife/client_bulk_delete_spec.rb +24 -24
- data/spec/unit/knife/client_create_spec.rb +57 -43
- data/spec/unit/knife/client_delete_spec.rb +15 -15
- data/spec/unit/knife/client_edit_spec.rb +4 -4
- data/spec/unit/knife/client_list_spec.rb +2 -2
- data/spec/unit/knife/client_reregister_spec.rb +9 -9
- data/spec/unit/knife/configure_client_spec.rb +20 -20
- data/spec/unit/knife/configure_spec.rb +85 -85
- data/spec/unit/knife/cookbook_bulk_delete_spec.rb +15 -15
- data/spec/unit/knife/cookbook_create_spec.rb +59 -59
- data/spec/unit/knife/cookbook_delete_spec.rb +49 -49
- data/spec/unit/knife/cookbook_download_spec.rb +56 -56
- data/spec/unit/knife/cookbook_list_spec.rb +9 -9
- data/spec/unit/knife/cookbook_metadata_from_file_spec.rb +8 -8
- data/spec/unit/knife/cookbook_metadata_spec.rb +44 -44
- data/spec/unit/knife/cookbook_show_spec.rb +29 -29
- data/spec/unit/knife/cookbook_site_download_spec.rb +26 -26
- data/spec/unit/knife/cookbook_site_install_spec.rb +5 -1
- data/spec/unit/knife/cookbook_site_share_spec.rb +68 -59
- data/spec/unit/knife/cookbook_site_unshare_spec.rb +15 -15
- data/spec/unit/knife/cookbook_test_spec.rb +16 -16
- data/spec/unit/knife/cookbook_upload_spec.rb +105 -71
- data/spec/unit/knife/core/bootstrap_context_spec.rb +37 -22
- data/spec/unit/knife/core/cookbook_scm_repo_spec.rb +36 -36
- data/spec/unit/knife/core/object_loader_spec.rb +3 -3
- data/spec/unit/knife/core/subcommand_loader_spec.rb +107 -33
- data/spec/unit/knife/core/ui_spec.rb +84 -72
- data/spec/unit/knife/data_bag_from_file_spec.rb +1 -1
- data/spec/unit/knife/environment_compare_spec.rb +12 -12
- data/spec/unit/knife/environment_create_spec.rb +16 -16
- data/spec/unit/knife/environment_delete_spec.rb +14 -14
- data/spec/unit/knife/environment_edit_spec.rb +15 -15
- data/spec/unit/knife/environment_from_file_spec.rb +17 -17
- data/spec/unit/knife/environment_list_spec.rb +7 -7
- data/spec/unit/knife/environment_show_spec.rb +10 -10
- data/spec/unit/knife/index_rebuild_spec.rb +17 -17
- data/spec/unit/knife/knife_help.rb +24 -24
- data/spec/unit/knife/node_bulk_delete_spec.rb +14 -14
- data/spec/unit/knife/node_delete_spec.rb +11 -11
- data/spec/unit/knife/node_edit_spec.rb +17 -17
- data/spec/unit/knife/node_environment_set_spec.rb +12 -12
- data/spec/unit/knife/node_from_file_spec.rb +8 -8
- data/spec/unit/knife/node_list_spec.rb +9 -9
- data/spec/unit/knife/node_run_list_add_spec.rb +29 -29
- data/spec/unit/knife/node_run_list_remove_spec.rb +28 -13
- data/spec/unit/knife/node_run_list_set_spec.rb +27 -27
- data/spec/unit/knife/raw_spec.rb +43 -0
- data/spec/unit/knife/role_bulk_delete_spec.rb +12 -12
- data/spec/unit/knife/role_create_spec.rb +12 -12
- data/spec/unit/knife/role_delete_spec.rb +10 -10
- data/spec/unit/knife/role_edit_spec.rb +13 -13
- data/spec/unit/knife/role_env_run_list_add_spec.rb +217 -0
- data/spec/unit/knife/role_env_run_list_clear_spec.rb +100 -0
- data/spec/unit/knife/role_env_run_list_remove_spec.rb +108 -0
- data/spec/unit/knife/role_env_run_list_replace_spec.rb +108 -0
- data/spec/unit/knife/role_env_run_list_set_spec.rb +102 -0
- data/spec/unit/knife/role_from_file_spec.rb +10 -10
- data/spec/unit/knife/role_list_spec.rb +7 -7
- data/spec/unit/knife/role_run_list_add_spec.rb +179 -0
- data/spec/unit/knife/role_run_list_clear_spec.rb +90 -0
- data/spec/unit/knife/role_run_list_remove_spec.rb +98 -0
- data/spec/unit/knife/role_run_list_replace_spec.rb +101 -0
- data/spec/unit/knife/role_run_list_set_spec.rb +92 -0
- data/spec/unit/knife/ssh_spec.rb +66 -66
- data/spec/unit/knife/ssl_check_spec.rb +27 -27
- data/spec/unit/knife/ssl_fetch_spec.rb +45 -12
- data/spec/unit/knife/status_spec.rb +5 -5
- data/spec/unit/knife/tag_create_spec.rb +5 -5
- data/spec/unit/knife/tag_delete_spec.rb +6 -6
- data/spec/unit/knife/tag_list_spec.rb +4 -4
- data/spec/unit/knife/user_create_spec.rb +18 -18
- data/spec/unit/knife/user_delete_spec.rb +4 -4
- data/spec/unit/knife/user_edit_spec.rb +7 -7
- data/spec/unit/knife/user_list_spec.rb +2 -2
- data/spec/unit/knife/user_reregister_spec.rb +10 -10
- data/spec/unit/knife/user_show_spec.rb +5 -5
- data/spec/unit/knife_spec.rb +36 -36
- data/spec/unit/lwrp_spec.rb +63 -39
- data/spec/unit/mash_spec.rb +6 -6
- data/spec/unit/mixin/checksum_spec.rb +2 -2
- data/spec/unit/mixin/command_spec.rb +13 -13
- data/spec/unit/mixin/convert_to_class_name_spec.rb +6 -6
- data/spec/unit/mixin/deep_merge_spec.rb +49 -49
- data/spec/unit/mixin/deprecation_spec.rb +5 -5
- data/spec/unit/mixin/enforce_ownership_and_permissions_spec.rb +14 -14
- data/spec/unit/mixin/homebrew_user_spec.rb +3 -3
- data/spec/unit/mixin/params_validate_spec.rb +71 -71
- data/spec/unit/mixin/path_sanity_spec.rb +14 -14
- data/spec/unit/mixin/securable_spec.rb +177 -177
- data/spec/unit/mixin/shell_out_spec.rb +56 -27
- data/spec/unit/mixin/template_spec.rb +31 -31
- data/spec/unit/mixin/windows_architecture_helper_spec.rb +5 -5
- data/spec/unit/mixin/xml_escape_spec.rb +7 -7
- data/spec/unit/monkey_patches/uri_spec.rb +1 -1
- data/spec/unit/monologger_spec.rb +3 -3
- data/spec/unit/node/attribute_spec.rb +185 -136
- data/spec/unit/node/immutable_collections_spec.rb +22 -22
- data/spec/unit/node_spec.rb +210 -179
- data/spec/unit/org_spec.rb +196 -0
- data/spec/unit/platform/query_helpers_spec.rb +5 -5
- data/spec/unit/platform_spec.rb +46 -46
- data/spec/unit/policy_builder/expand_node_object_spec.rb +17 -18
- data/spec/unit/policy_builder/policyfile_spec.rb +159 -71
- data/spec/unit/provider/directory_spec.rb +5 -5
- data/spec/unit/provider/dsc_script_spec.rb +6 -6
- data/spec/unit/provider/env_spec.rb +27 -14
- data/spec/unit/provider/execute_spec.rb +139 -68
- data/spec/unit/provider/file/content_spec.rb +8 -8
- data/spec/unit/provider/git_spec.rb +10 -5
- data/spec/unit/provider/group/dscl_spec.rb +8 -11
- data/spec/unit/provider/group_spec.rb +13 -13
- data/spec/unit/provider/ifconfig/aix_spec.rb +3 -2
- data/spec/unit/provider/ifconfig/debian_spec.rb +19 -19
- data/spec/unit/provider/ifconfig_spec.rb +2 -2
- data/spec/unit/provider/mdadm_spec.rb +2 -2
- data/spec/unit/provider/mount/aix_spec.rb +5 -5
- data/spec/unit/provider/mount/mount_spec.rb +22 -22
- data/spec/unit/provider/mount/solaris_spec.rb +20 -20
- data/spec/unit/provider/package/aix_spec.rb +23 -22
- data/spec/unit/provider/package/apt_spec.rb +23 -4
- data/spec/unit/provider/package/dpkg_spec.rb +14 -15
- data/spec/unit/provider/package/freebsd/pkgng_spec.rb +1 -1
- data/spec/unit/provider/package/freebsd/port_spec.rb +1 -1
- data/spec/unit/provider/package/ips_spec.rb +1 -2
- data/spec/unit/provider/package/macports_spec.rb +14 -14
- data/spec/unit/provider/package/openbsd_spec.rb +66 -0
- data/spec/unit/provider/package/pacman_spec.rb +15 -14
- data/spec/unit/provider/package/portage_spec.rb +11 -11
- data/spec/unit/provider/package/rpm_spec.rb +132 -84
- data/spec/unit/provider/package/rubygems_spec.rb +54 -25
- data/spec/unit/provider/package/solaris_spec.rb +22 -25
- data/spec/unit/provider/package/yum_spec.rb +237 -36
- data/spec/unit/provider/package/zypper_spec.rb +9 -12
- data/spec/unit/provider/package_spec.rb +276 -2
- data/spec/unit/provider/package_spec.rbe +0 -0
- data/spec/unit/provider/remote_directory_spec.rb +25 -25
- data/spec/unit/provider/remote_file/ftp_spec.rb +3 -3
- data/spec/unit/provider/route_spec.rb +3 -3
- data/spec/unit/provider/script_spec.rb +61 -43
- data/spec/unit/provider/service/aix_service_spec.rb +5 -5
- data/spec/unit/provider/service/arch_service_spec.rb +5 -5
- data/spec/unit/provider/service/debian_service_spec.rb +8 -8
- data/spec/unit/provider/service/freebsd_service_spec.rb +16 -2
- data/spec/unit/provider/service/gentoo_service_spec.rb +8 -8
- data/spec/unit/provider/service/init_service_spec.rb +5 -5
- data/spec/unit/provider/service/insserv_service_spec.rb +2 -2
- data/spec/unit/provider/service/invokercd_service_spec.rb +5 -5
- data/spec/unit/provider/service/macosx_spec.rb +7 -7
- data/spec/unit/provider/service/openbsd_service_spec.rb +543 -0
- data/spec/unit/provider/service/redhat_spec.rb +4 -4
- data/spec/unit/provider/service/simple_service_spec.rb +2 -2
- data/spec/unit/provider/service/solaris_smf_service_spec.rb +14 -14
- data/spec/unit/provider/service/systemd_service_spec.rb +15 -7
- data/spec/unit/provider/service/upstart_service_spec.rb +4 -4
- data/spec/unit/provider/service/windows_spec.rb +119 -25
- data/spec/unit/provider/service_spec.rb +1 -1
- data/spec/unit/provider/user/dscl_spec.rb +38 -30
- data/spec/unit/provider/user_spec.rb +1 -1
- data/spec/unit/provider_resolver_spec.rb +7 -7
- data/spec/unit/provider_spec.rb +23 -23
- data/spec/unit/recipe_spec.rb +194 -83
- data/spec/unit/registry_helper_spec.rb +143 -143
- data/spec/unit/resource/chef_gem_spec.rb +117 -3
- data/spec/unit/resource/conditional_action_not_nothing_spec.rb +2 -2
- data/spec/unit/resource/conditional_spec.rb +56 -15
- data/spec/unit/resource/deploy_spec.rb +2 -2
- data/spec/unit/resource/dsc_script_spec.rb +32 -0
- data/spec/unit/resource/execute_spec.rb +4 -0
- data/spec/unit/resource/file/verification_spec.rb +111 -0
- data/spec/unit/resource/file_spec.rb +14 -0
- data/spec/unit/resource/openbsd_package_spec.rb +49 -0
- data/spec/unit/resource/remote_file_spec.rb +12 -12
- data/spec/unit/resource/resource_notification_spec.rb +18 -18
- data/spec/unit/resource/rpm_package_spec.rb +12 -0
- data/spec/unit/resource/scm_spec.rb +4 -4
- data/spec/unit/resource/script_spec.rb +3 -5
- data/spec/unit/resource/subversion_spec.rb +1 -1
- data/spec/unit/resource_builder_spec.rb +1 -0
- data/spec/unit/resource_collection/resource_list_spec.rb +2 -2
- data/spec/unit/resource_collection/resource_set_spec.rb +3 -3
- data/spec/unit/resource_collection/stepable_iterator_spec.rb +24 -24
- data/spec/unit/resource_collection_spec.rb +52 -52
- data/spec/unit/resource_definition_spec.rb +1 -1
- data/spec/unit/resource_reporter_spec.rb +118 -118
- data/spec/unit/resource_spec.rb +131 -125
- data/spec/unit/rest/auth_credentials_spec.rb +73 -73
- data/spec/unit/rest_spec.rb +12 -12
- data/spec/unit/role_spec.rb +85 -84
- data/spec/unit/run_context/cookbook_compiler_spec.rb +18 -18
- data/spec/unit/run_context_spec.rb +39 -68
- data/spec/unit/run_list/run_list_expansion_spec.rb +21 -21
- data/spec/unit/run_list/run_list_item_spec.rb +28 -28
- data/spec/unit/run_list/versioned_recipe_list_spec.rb +14 -14
- data/spec/unit/run_list_spec.rb +55 -55
- data/spec/unit/run_lock_spec.rb +14 -14
- data/spec/unit/run_status_spec.rb +24 -24
- data/spec/unit/scan_access_control_spec.rb +23 -23
- data/spec/unit/search/query_spec.rb +54 -66
- data/spec/unit/shell/model_wrapper_spec.rb +13 -13
- data/spec/unit/shell/shell_ext_spec.rb +32 -32
- data/spec/unit/shell/shell_session_spec.rb +24 -24
- data/spec/unit/shell_out_spec.rb +4 -4
- data/spec/unit/shell_spec.rb +27 -27
- data/spec/unit/user_spec.rb +50 -50
- data/spec/unit/util/backup_spec.rb +32 -32
- data/spec/unit/util/diff_spec.rb +31 -31
- data/spec/unit/util/dsc/configuration_generator_spec.rb +38 -16
- data/spec/unit/util/dsc/lcm_output_parser_spec.rb +21 -26
- data/spec/unit/util/dsc/local_configuration_manager_spec.rb +10 -10
- data/spec/unit/util/editor_spec.rb +10 -10
- data/spec/unit/util/file_edit_spec.rb +10 -10
- data/spec/unit/util/path_helper_spec.rb +38 -46
- data/spec/unit/util/powershell/cmdlet_spec.rb +9 -9
- data/spec/unit/util/selinux_spec.rb +30 -30
- data/spec/unit/util/threaded_job_queue_spec.rb +6 -6
- data/spec/unit/version/platform_spec.rb +5 -5
- data/spec/unit/version_class_spec.rb +15 -15
- data/spec/unit/version_constraint/platform_spec.rb +7 -7
- data/spec/unit/version_constraint_spec.rb +43 -43
- data/spec/unit/windows_service_spec.rb +15 -15
- data/spec/unit/workstation_config_loader_spec.rb +2 -2
- data/tasks/rspec.rb +16 -18
- metadata +126 -49
- data/bin/shef +0 -35
- data/lib/chef/application/agent.rb +0 -18
- data/lib/chef/monkey_patches/fileutils.rb +0 -65
- data/lib/chef/monkey_patches/numeric.rb +0 -15
- data/lib/chef/monkey_patches/object.rb +0 -9
- data/lib/chef/monkey_patches/pathname.rb +0 -32
- data/lib/chef/monkey_patches/regexp.rb +0 -34
- data/lib/chef/monkey_patches/securerandom.rb +0 -44
- data/lib/chef/monkey_patches/string.rb +0 -49
- data/lib/chef/monkey_patches/tempfile.rb +0 -64
- data/lib/chef/monkey_patches/uri.rb +0 -70
data/lib/chef/config.rb
CHANGED
@@ -203,6 +203,10 @@ class Chef
|
|
203
203
|
# Does not apply to Enterprise Chef commands.
|
204
204
|
default(:user_path) { derive_path_from_chef_repo_path('users') }
|
205
205
|
|
206
|
+
# Location of policies on disk. String or array of strings.
|
207
|
+
# Defaults to <chef_repo_path>/policies.
|
208
|
+
default(:policy_path) { derive_path_from_chef_repo_path('policies') }
|
209
|
+
|
206
210
|
# Turn on "path sanity" by default. See also: http://wiki.opscode.com/display/chef/User+Environment+PATH+Sanity
|
207
211
|
default :enforce_path_sanity, true
|
208
212
|
|
@@ -271,7 +275,7 @@ class Chef
|
|
271
275
|
# * :fatal
|
272
276
|
# These work as you'd expect. There is also a special `:auto` setting.
|
273
277
|
# When set to :auto, Chef will auto adjust the log verbosity based on
|
274
|
-
# context. When a tty is available (usually
|
278
|
+
# context. When a tty is available (usually because the user is running chef
|
275
279
|
# in a console), the log level is set to :warn, and output formatters are
|
276
280
|
# used as the primary mode of output. When a tty is not available, the
|
277
281
|
# logger is the primary mode of output, and the log level is set to :info
|
@@ -317,8 +321,17 @@ class Chef
|
|
317
321
|
default :why_run, false
|
318
322
|
default :color, false
|
319
323
|
default :client_fork, true
|
324
|
+
default :ez, false
|
320
325
|
default :enable_reporting, true
|
321
326
|
default :enable_reporting_url_fatals, false
|
327
|
+
# Possible values for :audit_mode
|
328
|
+
# :enabled, :disabled, :audit_only,
|
329
|
+
#
|
330
|
+
# TODO: 11 Dec 2014: Currently audit-mode is an experimental feature
|
331
|
+
# and is disabled by default. When users choose to enable audit-mode,
|
332
|
+
# a warning is issued in application/client#reconfigure.
|
333
|
+
# This can be removed when audit-mode is enabled by default.
|
334
|
+
default :audit_mode, :disabled
|
322
335
|
|
323
336
|
# Policyfile is an experimental feature where a node gets its run list and
|
324
337
|
# cookbook version set from a single document on the server instead of
|
@@ -486,8 +499,20 @@ class Chef
|
|
486
499
|
# Deprecated:
|
487
500
|
default(:cache_options) { { :path => PathHelper.join(file_cache_path, "checksums") } }
|
488
501
|
|
489
|
-
#
|
490
|
-
default
|
502
|
+
# Whether errors should be raised for deprecation warnings. When set to
|
503
|
+
# `false` (the default setting), a warning is emitted but code using
|
504
|
+
# deprecated methods/features/etc. should work normally otherwise. When set
|
505
|
+
# to `true`, usage of deprecated methods/features will raise a
|
506
|
+
# `DeprecatedFeatureError`. This is used by Chef's tests to ensure that
|
507
|
+
# deprecated functionality is not used internally by Chef. End users
|
508
|
+
# should generally leave this at the default setting (especially in
|
509
|
+
# production), but it may be useful when testing cookbooks or other code if
|
510
|
+
# the user wishes to aggressively address deprecations.
|
511
|
+
default(:treat_deprecation_warnings_as_errors) do
|
512
|
+
# Using an environment variable allows this setting to be inherited in
|
513
|
+
# tests that spawn new processes.
|
514
|
+
ENV.key?("CHEF_TREAT_DEPRECATION_WARNINGS_AS_ERRORS")
|
515
|
+
end
|
491
516
|
|
492
517
|
# knife configuration data
|
493
518
|
config_context :knife do
|
@@ -602,6 +627,13 @@ class Chef
|
|
602
627
|
#
|
603
628
|
default :no_lazy_load, true
|
604
629
|
|
630
|
+
# Default for the chef_gem compile_time attribute. Nil is the same as false but will emit
|
631
|
+
# warnings on every use of chef_gem prompting the user to be explicit. If the user sets this to
|
632
|
+
# true then the user will get backcompat behavior but with a single nag warning that cookbooks
|
633
|
+
# may break with this setting in the future. The false setting is the recommended setting and
|
634
|
+
# will become the default.
|
635
|
+
default :chef_gem_compile_time, nil
|
636
|
+
|
605
637
|
# A whitelisted array of attributes you want sent over the wire when node
|
606
638
|
# data is saved.
|
607
639
|
# The default setting is nil, which collects all data. Setting to [] will not
|
@@ -227,11 +227,11 @@ class Chef
|
|
227
227
|
)
|
228
228
|
end
|
229
229
|
|
230
|
-
# Sets the current cookbook version, or returns it. Can be two or three digits,
|
230
|
+
# Sets the current cookbook version, or returns it. Can be two or three digits, separated
|
231
231
|
# by dots. ie: '2.1', '1.5.4' or '0.9'.
|
232
232
|
#
|
233
233
|
# === Parameters
|
234
|
-
# version<String>:: The
|
234
|
+
# version<String>:: The current version, as a string
|
235
235
|
#
|
236
236
|
# === Returns
|
237
237
|
# version<String>:: Returns the current version
|
@@ -246,7 +246,7 @@ class Chef
|
|
246
246
|
# Sets the name of the cookbook, or returns it.
|
247
247
|
#
|
248
248
|
# === Parameters
|
249
|
-
# name<String>:: The
|
249
|
+
# name<String>:: The current cookbook name.
|
250
250
|
#
|
251
251
|
# === Returns
|
252
252
|
# name<String>:: Returns the current cookbook name.
|
@@ -0,0 +1,275 @@
|
|
1
|
+
# Author:: Daniel DeLeo (<dan@chef.io>)
|
2
|
+
# Copyright:: Copyright 2015 Opscode, Inc.
|
3
|
+
# License:: Apache License, Version 2.0
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
require 'forwardable'
|
18
|
+
require 'chef/util/path_helper'
|
19
|
+
require 'chef/log'
|
20
|
+
|
21
|
+
class Chef
|
22
|
+
|
23
|
+
# Handles the details of representing a cookbook in JSON form for uploading
|
24
|
+
# to a Chef Server.
|
25
|
+
class CookbookManifest
|
26
|
+
|
27
|
+
# Duplicates the same constant in CookbookVersion. We cannot remove it
|
28
|
+
# there because it is treated by other code as part of CookbookVersion's
|
29
|
+
# public API (also used in some deprecated methods).
|
30
|
+
COOKBOOK_SEGMENTS = [ :resources, :providers, :recipes, :definitions, :libraries, :attributes, :files, :templates, :root_files ].freeze
|
31
|
+
|
32
|
+
extend Forwardable
|
33
|
+
|
34
|
+
attr_reader :cookbook_version
|
35
|
+
|
36
|
+
def_delegator :@cookbook_version, :root_paths
|
37
|
+
def_delegator :@cookbook_version, :segment_filenames
|
38
|
+
def_delegator :@cookbook_version, :name
|
39
|
+
def_delegator :@cookbook_version, :metadata
|
40
|
+
def_delegator :@cookbook_version, :full_name
|
41
|
+
def_delegator :@cookbook_version, :version
|
42
|
+
def_delegator :@cookbook_version, :frozen_version?
|
43
|
+
|
44
|
+
# Create a new CookbookManifest object for the given `cookbook_version`.
|
45
|
+
# You can subsequently call #to_hash to get a Hash representation of the
|
46
|
+
# cookbook_version in the "manifest" format, or #to_json to get a JSON
|
47
|
+
# representation of the cookbook_version.
|
48
|
+
#
|
49
|
+
# The inferface for this behavior is expected to change as we implement new
|
50
|
+
# manifest formats. The entire class should be considered a private API for
|
51
|
+
# now.
|
52
|
+
#
|
53
|
+
# @api private
|
54
|
+
# @param policy_mode [Boolean] whether to convert cookbooks to Hash/JSON in
|
55
|
+
# the format used by the `cookbook_artifacts` endpoint (for policyfiles).
|
56
|
+
# Setting this option also changes the behavior of #save_url and
|
57
|
+
# #force_save_url such that CookbookVersions will be uploaded to the new
|
58
|
+
# `cookbook_artifacts` API. This endpoint is currently under active
|
59
|
+
# development and the format is expected to change frequently, therefore
|
60
|
+
# the result of #manifest, #to_hash, and #to_json will not be stable when
|
61
|
+
# `policy_mode` is enabled.
|
62
|
+
def initialize(cookbook_version, policy_mode: false)
|
63
|
+
@cookbook_version = cookbook_version
|
64
|
+
@policy_mode = !!policy_mode
|
65
|
+
|
66
|
+
reset!
|
67
|
+
end
|
68
|
+
|
69
|
+
# Resets all lazily computed values.
|
70
|
+
def reset!
|
71
|
+
@manifest = nil
|
72
|
+
@checksums = nil
|
73
|
+
@manifest_records_by_path = nil
|
74
|
+
true
|
75
|
+
end
|
76
|
+
|
77
|
+
# Returns a 'manifest' data structure that can be uploaded to a Chef
|
78
|
+
# Server.
|
79
|
+
#
|
80
|
+
# The format is as follows:
|
81
|
+
#
|
82
|
+
# {
|
83
|
+
# :cookbook_name => name, # String
|
84
|
+
# :metadata => metadata, # Chef::Cookbook::Metadata
|
85
|
+
# :version => version, # Chef::Version
|
86
|
+
# :name => full_name, # String of "#{name}-#{version}"
|
87
|
+
#
|
88
|
+
# :recipes => Array<FileSpec>,
|
89
|
+
# :definitions => Array<FileSpec>,
|
90
|
+
# :libraries => Array<FileSpec>,
|
91
|
+
# :attributes => Array<FileSpec>,
|
92
|
+
# :files => Array<FileSpec>,
|
93
|
+
# :templates => Array<FileSpec>,
|
94
|
+
# :resources => Array<FileSpec>,
|
95
|
+
# :providers => Array<FileSpec>,
|
96
|
+
# :root_files => Array<FileSpec>
|
97
|
+
# }
|
98
|
+
#
|
99
|
+
# Where a `FileSpec` is a Hash of the form:
|
100
|
+
#
|
101
|
+
# {
|
102
|
+
# :name => file_name,
|
103
|
+
# :path => path,
|
104
|
+
# :checksum => csum,
|
105
|
+
# :specificity => specificity
|
106
|
+
# }
|
107
|
+
#
|
108
|
+
def manifest
|
109
|
+
@manifest || generate_manifest
|
110
|
+
@manifest
|
111
|
+
end
|
112
|
+
|
113
|
+
def checksums
|
114
|
+
@manifest || generate_manifest
|
115
|
+
@checksums
|
116
|
+
end
|
117
|
+
|
118
|
+
def manifest_records_by_path
|
119
|
+
@manifest || generate_manifest
|
120
|
+
@manifest_records_by_path
|
121
|
+
end
|
122
|
+
|
123
|
+
def policy_mode?
|
124
|
+
@policy_mode
|
125
|
+
end
|
126
|
+
|
127
|
+
def to_hash
|
128
|
+
result = manifest.dup
|
129
|
+
result['frozen?'] = frozen_version?
|
130
|
+
result['chef_type'] = 'cookbook_version'
|
131
|
+
result.to_hash
|
132
|
+
end
|
133
|
+
|
134
|
+
def to_json(*a)
|
135
|
+
result = to_hash
|
136
|
+
result['json_class'] = "Chef::CookbookVersion"
|
137
|
+
Chef::JSONCompat.to_json(result, *a)
|
138
|
+
end
|
139
|
+
|
140
|
+
# Return the URL to save (PUT) this object to the server via the
|
141
|
+
# REST api. If there is an existing document on the server and it
|
142
|
+
# is marked frozen, a PUT will result in a 409 Conflict.
|
143
|
+
def save_url
|
144
|
+
"#{cookbook_url_path}/#{name}/#{version}"
|
145
|
+
end
|
146
|
+
|
147
|
+
# Adds the `force=true` parameter to the upload URL. This allows
|
148
|
+
# the user to overwrite a frozen cookbook (a PUT against the
|
149
|
+
# normal #save_url raises a 409 Conflict in this case).
|
150
|
+
def force_save_url
|
151
|
+
"#{save_url}?force=true"
|
152
|
+
end
|
153
|
+
|
154
|
+
# Update this CookbookManifest from the contents of another manifest, and
|
155
|
+
# make the corresponding changes to the cookbook_version object. Required
|
156
|
+
# to provide backward compatibility with CookbookVersion#manifest= method.
|
157
|
+
def update_from(new_manifest)
|
158
|
+
@manifest = Mash.new new_manifest
|
159
|
+
@checksums = extract_checksums_from_manifest(@manifest)
|
160
|
+
@manifest_records_by_path = extract_manifest_records_by_path(@manifest)
|
161
|
+
|
162
|
+
COOKBOOK_SEGMENTS.each do |segment|
|
163
|
+
next unless @manifest.has_key?(segment)
|
164
|
+
filenames = @manifest[segment].map{|manifest_record| manifest_record['name']}
|
165
|
+
|
166
|
+
cookbook_version.replace_segment_filenames(segment, filenames)
|
167
|
+
end
|
168
|
+
end
|
169
|
+
|
170
|
+
private
|
171
|
+
|
172
|
+
def cookbook_url_path
|
173
|
+
policy_mode? ? "cookbook_artifacts" : "cookbooks"
|
174
|
+
end
|
175
|
+
|
176
|
+
# See #manifest for a description of the manifest return value.
|
177
|
+
# See #preferred_manifest_record for a description an individual manifest record.
|
178
|
+
def generate_manifest
|
179
|
+
manifest = Mash.new({
|
180
|
+
:recipes => Array.new,
|
181
|
+
:definitions => Array.new,
|
182
|
+
:libraries => Array.new,
|
183
|
+
:attributes => Array.new,
|
184
|
+
:files => Array.new,
|
185
|
+
:templates => Array.new,
|
186
|
+
:resources => Array.new,
|
187
|
+
:providers => Array.new,
|
188
|
+
:root_files => Array.new
|
189
|
+
})
|
190
|
+
@checksums = {}
|
191
|
+
|
192
|
+
if !root_paths || root_paths.size == 0
|
193
|
+
Chef::Log.error("Cookbook #{name} does not have root_paths! Cannot generate manifest.")
|
194
|
+
raise "Cookbook #{name} does not have root_paths! Cannot generate manifest."
|
195
|
+
end
|
196
|
+
|
197
|
+
COOKBOOK_SEGMENTS.each do |segment|
|
198
|
+
segment_filenames(segment).each do |segment_file|
|
199
|
+
next if File.directory?(segment_file)
|
200
|
+
|
201
|
+
path, specificity = parse_segment_file_from_root_paths(segment, segment_file)
|
202
|
+
file_name = File.basename(path)
|
203
|
+
|
204
|
+
csum = checksum_cookbook_file(segment_file)
|
205
|
+
@checksums[csum] = segment_file
|
206
|
+
rs = Mash.new({
|
207
|
+
:name => file_name,
|
208
|
+
:path => path,
|
209
|
+
:checksum => csum,
|
210
|
+
:specificity => specificity
|
211
|
+
})
|
212
|
+
|
213
|
+
manifest[segment] << rs
|
214
|
+
end
|
215
|
+
end
|
216
|
+
|
217
|
+
manifest[:cookbook_name] = name.to_s
|
218
|
+
manifest[:metadata] = metadata
|
219
|
+
manifest[:version] = metadata.version
|
220
|
+
manifest[:name] = full_name
|
221
|
+
|
222
|
+
@manifest_records_by_path = extract_manifest_records_by_path(manifest)
|
223
|
+
@manifest = manifest
|
224
|
+
end
|
225
|
+
|
226
|
+
def parse_segment_file_from_root_paths(segment, segment_file)
|
227
|
+
root_paths.each do |root_path|
|
228
|
+
pathname = Chef::Util::PathHelper.relative_path_from(root_path, segment_file)
|
229
|
+
|
230
|
+
parts = pathname.each_filename.take(2)
|
231
|
+
# Check if path is actually under root_path
|
232
|
+
next if parts[0] == '..'
|
233
|
+
if segment == :templates || segment == :files
|
234
|
+
# Check if pathname looks like files/foo or templates/foo (unscoped)
|
235
|
+
if pathname.each_filename.to_a.length == 2
|
236
|
+
# Use root_default in case the same path exists at root_default and default
|
237
|
+
return [ pathname.to_s, 'root_default' ]
|
238
|
+
else
|
239
|
+
return [ pathname.to_s, parts[1] ]
|
240
|
+
end
|
241
|
+
else
|
242
|
+
return [ pathname.to_s, 'default' ]
|
243
|
+
end
|
244
|
+
end
|
245
|
+
Chef::Log.error("Cookbook file #{segment_file} not under cookbook root paths #{root_paths.inspect}.")
|
246
|
+
raise "Cookbook file #{segment_file} not under cookbook root paths #{root_paths.inspect}."
|
247
|
+
end
|
248
|
+
|
249
|
+
def extract_checksums_from_manifest(manifest)
|
250
|
+
checksums = {}
|
251
|
+
COOKBOOK_SEGMENTS.each do |segment|
|
252
|
+
next unless manifest.has_key?(segment)
|
253
|
+
manifest[segment].each do |manifest_record|
|
254
|
+
checksums[manifest_record[:checksum]] = nil
|
255
|
+
end
|
256
|
+
end
|
257
|
+
checksums
|
258
|
+
end
|
259
|
+
|
260
|
+
def checksum_cookbook_file(filepath)
|
261
|
+
CookbookVersion.checksum_cookbook_file(filepath)
|
262
|
+
end
|
263
|
+
|
264
|
+
def extract_manifest_records_by_path(manifest)
|
265
|
+
manifest_records_by_path = {}
|
266
|
+
COOKBOOK_SEGMENTS.each do |segment|
|
267
|
+
next unless manifest.has_key?(segment)
|
268
|
+
manifest[segment].each do |manifest_record|
|
269
|
+
manifest_records_by_path[manifest_record[:path]] = manifest_record
|
270
|
+
end
|
271
|
+
end
|
272
|
+
manifest_records_by_path
|
273
|
+
end
|
274
|
+
end
|
275
|
+
end
|
@@ -18,6 +18,7 @@
|
|
18
18
|
# limitations under the License.
|
19
19
|
#
|
20
20
|
|
21
|
+
require 'uri'
|
21
22
|
require 'net/http'
|
22
23
|
require 'mixlib/authentication/signedheaderauth'
|
23
24
|
require 'openssl'
|
@@ -34,22 +35,22 @@ class Chef
|
|
34
35
|
|
35
36
|
class << self
|
36
37
|
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
38
|
+
def create_build_dir(cookbook)
|
39
|
+
tmp_cookbook_path = Tempfile.new("chef-#{cookbook.name}-build")
|
40
|
+
tmp_cookbook_path.close
|
41
|
+
tmp_cookbook_dir = tmp_cookbook_path.path
|
42
|
+
File.unlink(tmp_cookbook_dir)
|
43
|
+
FileUtils.mkdir_p(tmp_cookbook_dir)
|
44
|
+
Chef::Log.debug("Staging at #{tmp_cookbook_dir}")
|
45
|
+
checksums_to_on_disk_paths = cookbook.checksums
|
46
|
+
Chef::CookbookVersion::COOKBOOK_SEGMENTS.each do |segment|
|
47
|
+
cookbook.manifest[segment].each do |manifest_record|
|
48
|
+
path_in_cookbook = manifest_record[:path]
|
49
|
+
on_disk_path = checksums_to_on_disk_paths[manifest_record[:checksum]]
|
50
|
+
dest = File.join(tmp_cookbook_dir, cookbook.name.to_s, path_in_cookbook)
|
51
|
+
FileUtils.mkdir_p(File.dirname(dest))
|
52
|
+
Chef::Log.debug("Staging #{on_disk_path} to #{dest}")
|
53
|
+
FileUtils.cp(on_disk_path, dest)
|
53
54
|
end
|
54
55
|
end
|
55
56
|
|
@@ -86,13 +87,13 @@ class Chef
|
|
86
87
|
filepath = value.path
|
87
88
|
filename = File.basename(filepath)
|
88
89
|
parts << StringPart.new( "--" + boundary + "\r\n" +
|
89
|
-
|
90
|
-
|
90
|
+
"Content-Disposition: form-data; name=\"" + key.to_s + "\"; filename=\"" + filename + "\"\r\n" +
|
91
|
+
"Content-Type: application/octet-stream\r\n\r\n")
|
91
92
|
parts << StreamPart.new(value, File.size(filepath))
|
92
93
|
parts << StringPart.new("\r\n")
|
93
94
|
else
|
94
95
|
parts << StringPart.new( "--" + boundary + "\r\n" +
|
95
|
-
|
96
|
+
"Content-Disposition: form-data; name=\"" + key.to_s + "\"\r\n\r\n")
|
96
97
|
parts << StringPart.new(value.to_s + "\r\n")
|
97
98
|
end
|
98
99
|
end
|
@@ -243,10 +244,10 @@ class Chef
|
|
243
244
|
@part_offset = 0
|
244
245
|
next_part = read(how_much_next_part)
|
245
246
|
result = current_part + if next_part
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
247
|
+
next_part
|
248
|
+
else
|
249
|
+
''
|
250
|
+
end
|
250
251
|
else
|
251
252
|
@part_offset += how_much_current_part
|
252
253
|
result = current_part
|
@@ -3,6 +3,7 @@ require 'set'
|
|
3
3
|
require 'chef/exceptions'
|
4
4
|
require 'chef/knife/cookbook_metadata'
|
5
5
|
require 'chef/digester'
|
6
|
+
require 'chef/cookbook_manifest'
|
6
7
|
require 'chef/cookbook_version'
|
7
8
|
require 'chef/cookbook/syntax_check'
|
8
9
|
require 'chef/cookbook/file_system_file_vendor'
|
@@ -40,6 +41,7 @@ class Chef
|
|
40
41
|
@cookbooks = Array(cookbooks)
|
41
42
|
@rest = opts[:rest] || Chef::REST.new(Chef::Config[:chef_server_url])
|
42
43
|
@concurrency = opts[:concurrency] || 10
|
44
|
+
@policy_mode = opts[:policy_mode] || false
|
43
45
|
end
|
44
46
|
|
45
47
|
def upload_cookbooks
|
@@ -92,9 +94,12 @@ class Chef
|
|
92
94
|
|
93
95
|
# files are uploaded, so save the manifest
|
94
96
|
cookbooks.each do |cb|
|
95
|
-
|
97
|
+
|
98
|
+
manifest = Chef::CookbookManifest.new(cb, policy_mode: policy_mode?)
|
99
|
+
|
100
|
+
save_url = opts[:force] ? manifest.force_save_url : manifest.save_url
|
96
101
|
begin
|
97
|
-
rest.put(save_url,
|
102
|
+
rest.put(save_url, manifest)
|
98
103
|
rescue Net::HTTPServerException => e
|
99
104
|
case e.response.code
|
100
105
|
when "409"
|
@@ -143,5 +148,9 @@ class Chef
|
|
143
148
|
end
|
144
149
|
end
|
145
150
|
|
151
|
+
def policy_mode?
|
152
|
+
@policy_mode
|
153
|
+
end
|
154
|
+
|
146
155
|
end
|
147
156
|
end
|