chef 12.0.3 → 12.1.0.rc.0
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 -53
- data/bin/chef-service-manager +0 -37
- data/bin/chef-windows-service +0 -35
- 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
@@ -23,7 +23,7 @@ require 'net/ssh'
|
|
23
23
|
|
24
24
|
describe Chef::Knife::Bootstrap do
|
25
25
|
before do
|
26
|
-
Chef::Platform.
|
26
|
+
allow(Chef::Platform).to receive(:windows?) { false }
|
27
27
|
end
|
28
28
|
let(:knife) do
|
29
29
|
Chef::Log.logger = Logger.new(StringIO.new)
|
@@ -32,7 +32,7 @@ describe Chef::Knife::Bootstrap do
|
|
32
32
|
k = Chef::Knife::Bootstrap.new(bootstrap_cli_options)
|
33
33
|
k.merge_configs
|
34
34
|
|
35
|
-
k.ui.
|
35
|
+
allow(k.ui).to receive(:stderr).and_return(stderr)
|
36
36
|
allow(k).to receive(:encryption_secret_provided_ignore_encrypt_flag?).and_return(false)
|
37
37
|
k
|
38
38
|
end
|
@@ -44,8 +44,15 @@ describe Chef::Knife::Bootstrap do
|
|
44
44
|
let(:bootstrap_cli_options) { [ ] }
|
45
45
|
|
46
46
|
it "should use chef-full as default template" do
|
47
|
-
knife.bootstrap_template.
|
48
|
-
File.basename(knife.bootstrap_template).
|
47
|
+
expect(knife.bootstrap_template).to be_a_kind_of(String)
|
48
|
+
expect(File.basename(knife.bootstrap_template)).to eq("chef-full")
|
49
|
+
end
|
50
|
+
|
51
|
+
context "with --bootstrap-vault-item" do
|
52
|
+
let(:bootstrap_cli_options) { [ "--bootstrap-vault-item", "vault1:item1", "--bootstrap-vault-item", "vault1:item2", "--bootstrap-vault-item", "vault2:item1" ] }
|
53
|
+
it "sets the knife config cli option correctly" do
|
54
|
+
expect(knife.config[:bootstrap_vault_item]).to eq({"vault1"=>["item1", "item2"], "vault2"=>["item1"]})
|
55
|
+
end
|
49
56
|
end
|
50
57
|
|
51
58
|
context "with :distro and :bootstrap_template cli options" do
|
@@ -78,7 +85,7 @@ describe Chef::Knife::Bootstrap do
|
|
78
85
|
let(:bootstrap_template) { "/opt/blah/not/exists/template.erb" }
|
79
86
|
|
80
87
|
it "raises an error" do
|
81
|
-
|
88
|
+
expect { knife.find_template }.to raise_error
|
82
89
|
end
|
83
90
|
end
|
84
91
|
|
@@ -86,8 +93,8 @@ describe Chef::Knife::Bootstrap do
|
|
86
93
|
let(:bootstrap_template) { File.expand_path(File.join(CHEF_SPEC_DATA, "bootstrap", "test.erb")) }
|
87
94
|
|
88
95
|
it "loads the given file as the template" do
|
89
|
-
Chef::Log.
|
90
|
-
knife.find_template.
|
96
|
+
expect(Chef::Log).to receive(:debug)
|
97
|
+
expect(knife.find_template).to eq(File.expand_path(File.join(CHEF_SPEC_DATA, "bootstrap", "test.erb")))
|
91
98
|
end
|
92
99
|
end
|
93
100
|
end
|
@@ -95,7 +102,7 @@ describe Chef::Knife::Bootstrap do
|
|
95
102
|
context "when :bootstrap_template config is set to a template name" do
|
96
103
|
let(:bootstrap_template) { "example" }
|
97
104
|
|
98
|
-
let(:builtin_template_path) { File.expand_path(File.join(File.dirname(__FILE__), '../../../lib/chef/knife/bootstrap', "example.erb"))}
|
105
|
+
let(:builtin_template_path) { File.expand_path(File.join(File.dirname(__FILE__), '../../../lib/chef/knife/bootstrap/templates', "example.erb"))}
|
99
106
|
|
100
107
|
let(:chef_config_dir_template_path) { "/knife/chef/config/bootstrap/example.erb" }
|
101
108
|
|
@@ -104,7 +111,7 @@ describe Chef::Knife::Bootstrap do
|
|
104
111
|
let(:gem_files_template_path) { "/Users/schisamo/.rvm/gems/ruby-1.9.2-p180@chef-0.10/gems/knife-windows-0.5.4/lib/chef/knife/bootstrap/fake-bootstrap-template.erb" }
|
105
112
|
|
106
113
|
def configure_chef_config_dir
|
107
|
-
Chef::Knife.
|
114
|
+
allow(Chef::Knife).to receive(:chef_config_dir).and_return("/knife/chef/config")
|
108
115
|
end
|
109
116
|
|
110
117
|
def configure_env_home
|
@@ -112,13 +119,13 @@ describe Chef::Knife::Bootstrap do
|
|
112
119
|
end
|
113
120
|
|
114
121
|
def configure_gem_files
|
115
|
-
Gem.
|
122
|
+
allow(Gem).to receive(:find_files).and_return([ gem_files_template_path ])
|
116
123
|
end
|
117
124
|
|
118
125
|
before(:each) do
|
119
126
|
@original_home = ENV['HOME']
|
120
127
|
ENV['HOME'] = nil
|
121
|
-
File.
|
128
|
+
expect(File).to receive(:exists?).with(bootstrap_template).and_return(false)
|
122
129
|
end
|
123
130
|
|
124
131
|
after(:each) do
|
@@ -131,11 +138,11 @@ describe Chef::Knife::Bootstrap do
|
|
131
138
|
configure_env_home
|
132
139
|
configure_gem_files
|
133
140
|
|
134
|
-
File.
|
141
|
+
expect(File).to receive(:exists?).with(builtin_template_path).and_return(true)
|
135
142
|
end
|
136
143
|
|
137
144
|
it "should load the template from built-in templates" do
|
138
|
-
knife.find_template.
|
145
|
+
expect(knife.find_template).to eq(builtin_template_path)
|
139
146
|
end
|
140
147
|
end
|
141
148
|
|
@@ -145,8 +152,8 @@ describe Chef::Knife::Bootstrap do
|
|
145
152
|
configure_env_home
|
146
153
|
configure_gem_files
|
147
154
|
|
148
|
-
File.
|
149
|
-
File.
|
155
|
+
expect(File).to receive(:exists?).with(builtin_template_path).and_return(false)
|
156
|
+
expect(File).to receive(:exists?).with(chef_config_dir_template_path).and_return(true)
|
150
157
|
|
151
158
|
it "should load the template from chef_config_dir" do
|
152
159
|
knife.find_template.should eq(chef_config_dir_template_path)
|
@@ -160,13 +167,13 @@ describe Chef::Knife::Bootstrap do
|
|
160
167
|
configure_env_home
|
161
168
|
configure_gem_files
|
162
169
|
|
163
|
-
File.
|
164
|
-
File.
|
165
|
-
File.
|
170
|
+
expect(File).to receive(:exists?).with(builtin_template_path).and_return(false)
|
171
|
+
expect(File).to receive(:exists?).with(chef_config_dir_template_path).and_return(false)
|
172
|
+
expect(File).to receive(:exists?).with(env_home_template_path).and_return(true)
|
166
173
|
end
|
167
174
|
|
168
175
|
it "should load the template from chef_config_dir" do
|
169
|
-
knife.find_template.
|
176
|
+
expect(knife.find_template).to eq(env_home_template_path)
|
170
177
|
end
|
171
178
|
end
|
172
179
|
|
@@ -175,13 +182,13 @@ describe Chef::Knife::Bootstrap do
|
|
175
182
|
configure_chef_config_dir
|
176
183
|
configure_gem_files
|
177
184
|
|
178
|
-
File.
|
179
|
-
File.
|
180
|
-
File.
|
185
|
+
expect(File).to receive(:exists?).with(builtin_template_path).and_return(false)
|
186
|
+
expect(File).to receive(:exists?).with(chef_config_dir_template_path).and_return(false)
|
187
|
+
expect(File).to receive(:exists?).with(gem_files_template_path).and_return(true)
|
181
188
|
end
|
182
189
|
|
183
190
|
it "should load the template from Gem files" do
|
184
|
-
knife.find_template.
|
191
|
+
expect(knife.find_template).to eq(gem_files_template_path)
|
185
192
|
end
|
186
193
|
end
|
187
194
|
end
|
@@ -192,7 +199,7 @@ describe Chef::Knife::Bootstrap do
|
|
192
199
|
it "sets the knife :bootstrap_template config" do
|
193
200
|
knife.parse_options([t,"blahblah"])
|
194
201
|
knife.merge_configs
|
195
|
-
knife.bootstrap_template.
|
202
|
+
expect(knife.bootstrap_template).to eq("blahblah")
|
196
203
|
end
|
197
204
|
end
|
198
205
|
end
|
@@ -201,19 +208,19 @@ describe Chef::Knife::Bootstrap do
|
|
201
208
|
let(:bootstrap_template) { File.expand_path(File.join(CHEF_SPEC_DATA, "bootstrap", "test.erb")) }
|
202
209
|
|
203
210
|
it "should return an empty run_list" do
|
204
|
-
knife.render_template.
|
211
|
+
expect(knife.render_template).to eq('{"run_list":[]}')
|
205
212
|
end
|
206
213
|
|
207
214
|
it "should have role[base] in the run_list" do
|
208
215
|
knife.parse_options(["-r","role[base]"])
|
209
216
|
knife.merge_configs
|
210
|
-
knife.render_template.
|
217
|
+
expect(knife.render_template).to eq('{"run_list":["role[base]"]}')
|
211
218
|
end
|
212
219
|
|
213
220
|
it "should have role[base] and recipe[cupcakes] in the run_list" do
|
214
221
|
knife.parse_options(["-r", "role[base],recipe[cupcakes]"])
|
215
222
|
knife.merge_configs
|
216
|
-
knife.render_template.
|
223
|
+
expect(knife.render_template).to eq('{"run_list":["role[base]","recipe[cupcakes]"]}')
|
217
224
|
end
|
218
225
|
|
219
226
|
it "should have foo => {bar => baz} in the first_boot" do
|
@@ -221,7 +228,7 @@ describe Chef::Knife::Bootstrap do
|
|
221
228
|
knife.merge_configs
|
222
229
|
expected_hash = FFI_Yajl::Parser.new.parse('{"foo":{"bar":"baz"},"run_list":[]}')
|
223
230
|
actual_hash = FFI_Yajl::Parser.new.parse(knife.render_template)
|
224
|
-
actual_hash.
|
231
|
+
expect(actual_hash).to eq(expected_hash)
|
225
232
|
end
|
226
233
|
end
|
227
234
|
|
@@ -231,14 +238,14 @@ describe Chef::Knife::Bootstrap do
|
|
231
238
|
it "should create a hint file when told to" do
|
232
239
|
knife.parse_options(["--hint", "openstack"])
|
233
240
|
knife.merge_configs
|
234
|
-
knife.render_template.
|
241
|
+
expect(knife.render_template).to match /\/etc\/chef\/ohai\/hints\/openstack.json/
|
235
242
|
end
|
236
243
|
|
237
244
|
it "should populate a hint file with JSON when given a file to read" do
|
238
|
-
::File.
|
245
|
+
allow(::File).to receive(:read).and_return('{ "foo" : "bar" }')
|
239
246
|
knife.parse_options(["--hint", "openstack=hints/openstack.json"])
|
240
247
|
knife.merge_configs
|
241
|
-
knife.render_template.
|
248
|
+
expect(knife.render_template).to match /\{\"foo\":\"bar\"\}/
|
242
249
|
end
|
243
250
|
end
|
244
251
|
|
@@ -261,7 +268,7 @@ describe Chef::Knife::Bootstrap do
|
|
261
268
|
let(:setting) { "api.opscode.com" }
|
262
269
|
|
263
270
|
it "renders the client.rb with a single FQDN no_proxy entry" do
|
264
|
-
rendered_template.
|
271
|
+
expect(rendered_template).to match(%r{.*no_proxy\s*"api.opscode.com".*})
|
265
272
|
end
|
266
273
|
end
|
267
274
|
|
@@ -269,7 +276,7 @@ describe Chef::Knife::Bootstrap do
|
|
269
276
|
let(:setting) { "api.opscode.com,172.16.10.*" }
|
270
277
|
|
271
278
|
it "renders the client.rb with comma-separated FQDN and wildcard IP address no_proxy entries" do
|
272
|
-
rendered_template.
|
279
|
+
expect(rendered_template).to match(%r{.*no_proxy\s*"api.opscode.com,172.16.10.\*".*})
|
273
280
|
end
|
274
281
|
end
|
275
282
|
|
@@ -277,7 +284,7 @@ describe Chef::Knife::Bootstrap do
|
|
277
284
|
let(:options) { ["--node-ssl-verify-mode", "none"] }
|
278
285
|
|
279
286
|
it "renders the client.rb with ssl_verify_mode set to :verify_none" do
|
280
|
-
rendered_template.
|
287
|
+
expect(rendered_template).to match(/ssl_verify_mode :verify_none/)
|
281
288
|
end
|
282
289
|
end
|
283
290
|
|
@@ -285,7 +292,7 @@ describe Chef::Knife::Bootstrap do
|
|
285
292
|
let(:options) { ["--node-ssl-verify-mode", "peer"] }
|
286
293
|
|
287
294
|
it "renders the client.rb with ssl_verify_mode set to :verify_peer" do
|
288
|
-
rendered_template.
|
295
|
+
expect(rendered_template).to match(/ssl_verify_mode :verify_peer/)
|
289
296
|
end
|
290
297
|
end
|
291
298
|
|
@@ -293,7 +300,7 @@ describe Chef::Knife::Bootstrap do
|
|
293
300
|
let(:options) { ["--node-ssl-verify-mode", "all"] }
|
294
301
|
|
295
302
|
it "raises error" do
|
296
|
-
|
303
|
+
expect{ rendered_template }.to raise_error
|
297
304
|
end
|
298
305
|
end
|
299
306
|
|
@@ -301,7 +308,7 @@ describe Chef::Knife::Bootstrap do
|
|
301
308
|
let(:options) { ["--node-verify-api-cert"] }
|
302
309
|
|
303
310
|
it "renders the client.rb with verify_api_cert set to true" do
|
304
|
-
rendered_template.
|
311
|
+
expect(rendered_template).to match(/verify_api_cert true/)
|
305
312
|
end
|
306
313
|
end
|
307
314
|
|
@@ -309,7 +316,7 @@ describe Chef::Knife::Bootstrap do
|
|
309
316
|
let(:options) { ["--no-node-verify-api-cert"] }
|
310
317
|
|
311
318
|
it "renders the client.rb with verify_api_cert set to false" do
|
312
|
-
rendered_template.
|
319
|
+
expect(rendered_template).to match(/verify_api_cert false/)
|
313
320
|
end
|
314
321
|
end
|
315
322
|
end
|
@@ -327,13 +334,13 @@ describe Chef::Knife::Bootstrap do
|
|
327
334
|
it "creates a secret file" do
|
328
335
|
expect(knife).to receive(:encryption_secret_provided_ignore_encrypt_flag?).and_return(true)
|
329
336
|
expect(knife).to receive(:read_secret).and_return(secret)
|
330
|
-
rendered_template.
|
337
|
+
expect(rendered_template).to match(%r{#{secret}})
|
331
338
|
end
|
332
339
|
|
333
340
|
it "renders the client.rb with an encrypted_data_bag_secret entry" do
|
334
341
|
expect(knife).to receive(:encryption_secret_provided_ignore_encrypt_flag?).and_return(true)
|
335
342
|
expect(knife).to receive(:read_secret).and_return(secret)
|
336
|
-
rendered_template.
|
343
|
+
expect(rendered_template).to match(%r{encrypted_data_bag_secret\s*"/etc/chef/encrypted_data_bag_secret"})
|
337
344
|
end
|
338
345
|
|
339
346
|
end
|
@@ -348,8 +355,8 @@ describe Chef::Knife::Bootstrap do
|
|
348
355
|
|
349
356
|
before do
|
350
357
|
Chef::Config[:trusted_certs_dir] = trusted_certs_dir
|
351
|
-
IO.
|
352
|
-
IO.
|
358
|
+
allow(IO).to receive(:read).and_call_original
|
359
|
+
allow(IO).to receive(:read).with(File.expand_path(Chef::Config[:validation_key])).and_return("")
|
353
360
|
end
|
354
361
|
|
355
362
|
def certificates
|
@@ -357,22 +364,22 @@ describe Chef::Knife::Bootstrap do
|
|
357
364
|
end
|
358
365
|
|
359
366
|
it "creates /etc/chef/trusted_certs" do
|
360
|
-
rendered_template.
|
367
|
+
expect(rendered_template).to match(%r{mkdir -p /etc/chef/trusted_certs})
|
361
368
|
end
|
362
369
|
|
363
370
|
it "copies the certificates in the directory" do
|
364
371
|
certificates.each do |cert|
|
365
|
-
IO.
|
372
|
+
expect(IO).to receive(:read).with(File.expand_path(cert))
|
366
373
|
end
|
367
374
|
|
368
375
|
certificates.each do |cert|
|
369
|
-
rendered_template.
|
376
|
+
expect(rendered_template).to match(%r{cat > /etc/chef/trusted_certs/#{File.basename(cert)} <<'EOP'})
|
370
377
|
end
|
371
378
|
end
|
372
379
|
|
373
380
|
it "doesn't create /etc/chef/trusted_certs if :trusted_certs_dir is empty" do
|
374
|
-
Dir.
|
375
|
-
rendered_template.
|
381
|
+
expect(Dir).to receive(:glob).with(File.join(trusted_certs_dir, "*.{crt,pem}")).and_return([])
|
382
|
+
expect(rendered_template).not_to match(%r{mkdir -p /etc/chef/trusted_certs})
|
376
383
|
end
|
377
384
|
end
|
378
385
|
|
@@ -387,57 +394,57 @@ describe Chef::Knife::Bootstrap do
|
|
387
394
|
Chef::Config[:knife][:ssh_port] = nil
|
388
395
|
knife.config[:forward_agent] = true
|
389
396
|
knife.config[:identity_file] = "~/.ssh/me.rsa"
|
390
|
-
knife.
|
397
|
+
allow(knife).to receive(:render_template).and_return("")
|
391
398
|
knife.knife_ssh
|
392
399
|
end
|
393
400
|
|
394
401
|
it "configures the hostname" do
|
395
|
-
knife_ssh.name_args.first.
|
402
|
+
expect(knife_ssh.name_args.first).to eq("foo.example.com")
|
396
403
|
end
|
397
404
|
|
398
405
|
it "configures the ssh user" do
|
399
|
-
knife_ssh.config[:ssh_user].
|
406
|
+
expect(knife_ssh.config[:ssh_user]).to eq('rooty')
|
400
407
|
end
|
401
408
|
|
402
409
|
it "configures the ssh password" do
|
403
|
-
knife_ssh.config[:ssh_password].
|
410
|
+
expect(knife_ssh.config[:ssh_password]).to eq('open_sesame')
|
404
411
|
end
|
405
412
|
|
406
413
|
it "configures the ssh port" do
|
407
|
-
knife_ssh.config[:ssh_port].
|
414
|
+
expect(knife_ssh.config[:ssh_port]).to eq('4001')
|
408
415
|
end
|
409
416
|
|
410
417
|
it "configures the ssh agent forwarding" do
|
411
|
-
knife_ssh.config[:forward_agent].
|
418
|
+
expect(knife_ssh.config[:forward_agent]).to eq(true)
|
412
419
|
end
|
413
420
|
|
414
421
|
it "configures the ssh identity file" do
|
415
|
-
knife_ssh.config[:identity_file].
|
422
|
+
expect(knife_ssh.config[:identity_file]).to eq('~/.ssh/me.rsa')
|
416
423
|
end
|
417
424
|
end
|
418
425
|
|
419
426
|
context "validating use_sudo_password" do
|
420
427
|
before do
|
421
428
|
knife.config[:ssh_password] = "password"
|
422
|
-
knife.
|
429
|
+
allow(knife).to receive(:render_template).and_return("")
|
423
430
|
end
|
424
431
|
|
425
432
|
it "use_sudo_password contains description and long params for help" do
|
426
|
-
knife.options.
|
427
|
-
and knife.options[:use_sudo_password][:description].to_s.
|
428
|
-
and knife.options[:use_sudo_password][:long].to_s.
|
433
|
+
expect(knife.options).to have_key(:use_sudo_password) \
|
434
|
+
and expect(knife.options[:use_sudo_password][:description].to_s).not_to eq('')\
|
435
|
+
and expect(knife.options[:use_sudo_password][:long].to_s).not_to eq('')
|
429
436
|
end
|
430
437
|
|
431
438
|
it "uses the password from --ssh-password for sudo when --use-sudo-password is set" do
|
432
439
|
knife.config[:use_sudo] = true
|
433
440
|
knife.config[:use_sudo_password] = true
|
434
|
-
knife.ssh_command.
|
441
|
+
expect(knife.ssh_command).to include("echo \'#{knife.config[:ssh_password]}\' | sudo -S")
|
435
442
|
end
|
436
443
|
|
437
444
|
it "should not honor --use-sudo-password when --use-sudo is not set" do
|
438
445
|
knife.config[:use_sudo] = false
|
439
446
|
knife.config[:use_sudo_password] = true
|
440
|
-
knife.ssh_command.
|
447
|
+
expect(knife.ssh_command).not_to include("echo #{knife.config[:ssh_password]} | sudo -S")
|
441
448
|
end
|
442
449
|
end
|
443
450
|
|
@@ -450,34 +457,34 @@ describe Chef::Knife::Bootstrap do
|
|
450
457
|
Chef::Config[:knife][:identity_file] = "~/.ssh/you.rsa"
|
451
458
|
Chef::Config[:knife][:ssh_gateway] = "towel.blinkenlights.nl"
|
452
459
|
Chef::Config[:knife][:host_key_verify] = true
|
453
|
-
knife.
|
460
|
+
allow(knife).to receive(:render_template).and_return("")
|
454
461
|
knife.config = {}
|
455
462
|
knife.merge_configs
|
456
463
|
knife.knife_ssh
|
457
464
|
end
|
458
465
|
|
459
466
|
it "configures the ssh user" do
|
460
|
-
knife_ssh.config[:ssh_user].
|
467
|
+
expect(knife_ssh.config[:ssh_user]).to eq('curiosity')
|
461
468
|
end
|
462
469
|
|
463
470
|
it "configures the ssh port" do
|
464
|
-
knife_ssh.config[:ssh_port].
|
471
|
+
expect(knife_ssh.config[:ssh_port]).to eq('2430')
|
465
472
|
end
|
466
473
|
|
467
474
|
it "configures the ssh agent forwarding" do
|
468
|
-
knife_ssh.config[:forward_agent].
|
475
|
+
expect(knife_ssh.config[:forward_agent]).to eq(true)
|
469
476
|
end
|
470
477
|
|
471
478
|
it "configures the ssh identity file" do
|
472
|
-
knife_ssh.config[:identity_file].
|
479
|
+
expect(knife_ssh.config[:identity_file]).to eq('~/.ssh/you.rsa')
|
473
480
|
end
|
474
481
|
|
475
482
|
it "configures the ssh gateway" do
|
476
|
-
knife_ssh.config[:ssh_gateway].
|
483
|
+
expect(knife_ssh.config[:ssh_gateway]).to eq('towel.blinkenlights.nl')
|
477
484
|
end
|
478
485
|
|
479
486
|
it "configures the host key verify mode" do
|
480
|
-
knife_ssh.config[:host_key_verify].
|
487
|
+
expect(knife_ssh.config[:host_key_verify]).to eq(true)
|
481
488
|
end
|
482
489
|
end
|
483
490
|
|
@@ -486,27 +493,27 @@ describe Chef::Knife::Bootstrap do
|
|
486
493
|
knife.name_args = ["foo.example.com"]
|
487
494
|
knife.config[:ssh_user] = "rooty"
|
488
495
|
knife.config[:identity_file] = "~/.ssh/me.rsa"
|
489
|
-
knife.
|
496
|
+
allow(knife).to receive(:render_template).and_return("")
|
490
497
|
k = knife.knife_ssh
|
491
|
-
k.
|
492
|
-
knife.
|
498
|
+
allow(k).to receive(:get_password).and_return('typed_in_password')
|
499
|
+
allow(knife).to receive(:knife_ssh).and_return(k)
|
493
500
|
knife.knife_ssh_with_password_auth
|
494
501
|
end
|
495
502
|
|
496
503
|
it "prompts the user for a password " do
|
497
|
-
knife_ssh_with_password_auth.config[:ssh_password].
|
504
|
+
expect(knife_ssh_with_password_auth.config[:ssh_password]).to eq('typed_in_password')
|
498
505
|
end
|
499
506
|
|
500
507
|
it "configures knife not to use the identity file that didn't work previously" do
|
501
|
-
knife_ssh_with_password_auth.config[:identity_file].
|
508
|
+
expect(knife_ssh_with_password_auth.config[:identity_file]).to be_nil
|
502
509
|
end
|
503
510
|
end
|
504
511
|
end
|
505
512
|
|
506
513
|
it "verifies that a server to bootstrap was given as a command line arg" do
|
507
514
|
knife.name_args = nil
|
508
|
-
|
509
|
-
stderr.string.
|
515
|
+
expect { knife.run }.to raise_error(SystemExit)
|
516
|
+
expect(stderr.string).to match /ERROR:.+FQDN or ip/
|
510
517
|
end
|
511
518
|
|
512
519
|
describe "when running the bootstrap" do
|
@@ -514,31 +521,77 @@ describe Chef::Knife::Bootstrap do
|
|
514
521
|
knife.name_args = ["foo.example.com"]
|
515
522
|
knife.config[:ssh_user] = "rooty"
|
516
523
|
knife.config[:identity_file] = "~/.ssh/me.rsa"
|
517
|
-
knife.
|
524
|
+
allow(knife).to receive(:render_template).and_return("")
|
518
525
|
knife_ssh = knife.knife_ssh
|
519
|
-
knife.
|
526
|
+
allow(knife).to receive(:knife_ssh).and_return(knife_ssh)
|
520
527
|
knife_ssh
|
521
528
|
end
|
522
529
|
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
530
|
+
context "when running with a configured and present validation key" do
|
531
|
+
before do
|
532
|
+
# this tests runs the old code path where we have a validation key, so we need to pass that check
|
533
|
+
allow(File).to receive(:exist?).with(File.expand_path(Chef::Config[:validation_key])).and_return(true)
|
534
|
+
end
|
527
535
|
|
528
|
-
it "falls back to password based auth when auth fails the first time" do
|
529
|
-
knife.stub(:puts)
|
530
536
|
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
537
|
+
it "configures the underlying ssh command and then runs it" do
|
538
|
+
expect(knife_ssh).to receive(:run)
|
539
|
+
knife.run
|
540
|
+
end
|
541
|
+
|
542
|
+
it "falls back to password based auth when auth fails the first time" do
|
543
|
+
allow(knife).to receive(:puts)
|
544
|
+
|
545
|
+
fallback_knife_ssh = knife_ssh.dup
|
546
|
+
expect(knife_ssh).to receive(:run).and_raise(Net::SSH::AuthenticationFailed.new("no ssh for you"))
|
547
|
+
allow(knife).to receive(:knife_ssh_with_password_auth).and_return(fallback_knife_ssh)
|
548
|
+
expect(fallback_knife_ssh).to receive(:run)
|
549
|
+
knife.run
|
550
|
+
end
|
551
|
+
|
552
|
+
it "raises the exception if config[:ssh_password] is set and an authentication exception is raised" do
|
553
|
+
knife.config[:ssh_password] = "password"
|
554
|
+
expect(knife_ssh).to receive(:run).and_raise(Net::SSH::AuthenticationFailed)
|
555
|
+
expect { knife.run }.to raise_error(Net::SSH::AuthenticationFailed)
|
556
|
+
end
|
557
|
+
|
558
|
+
it "creates the client and adds chef-vault items if vault_list is set" do
|
559
|
+
knife.config[:bootstrap_vault_file] = "/not/our/responsibility/to/check/if/this/exists"
|
560
|
+
expect(knife_ssh).to receive(:run)
|
561
|
+
expect(knife.client_builder).to receive(:run)
|
562
|
+
expect(knife.chef_vault_handler).to receive(:run).with(node_name: knife.config[:chef_node_name])
|
563
|
+
knife.run
|
564
|
+
end
|
565
|
+
|
566
|
+
it "creates the client and adds chef-vault items if vault_items is set" do
|
567
|
+
knife.config[:bootstrap_vault_json] = '{ "vault" => "item" }'
|
568
|
+
expect(knife_ssh).to receive(:run)
|
569
|
+
expect(knife.client_builder).to receive(:run)
|
570
|
+
expect(knife.chef_vault_handler).to receive(:run).with(node_name: knife.config[:chef_node_name])
|
571
|
+
knife.run
|
572
|
+
end
|
573
|
+
|
574
|
+
it "does old-style validation without creating a client key if vault_list+vault_items is not set" do
|
575
|
+
expect(File).to receive(:exist?).with(File.expand_path(Chef::Config[:validation_key])).and_return(true)
|
576
|
+
expect(knife_ssh).to receive(:run)
|
577
|
+
expect(knife.client_builder).not_to receive(:run)
|
578
|
+
expect(knife.chef_vault_handler).not_to receive(:run).with(node_name: knife.config[:chef_node_name])
|
579
|
+
knife.run
|
580
|
+
end
|
536
581
|
end
|
537
582
|
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
583
|
+
context "when the validation key is not present" do
|
584
|
+
before do
|
585
|
+
# this tests runs the old code path where we have a validation key, so we need to pass that check
|
586
|
+
allow(File).to receive(:exist?).with(File.expand_path(Chef::Config[:validation_key])).and_return(false)
|
587
|
+
end
|
588
|
+
|
589
|
+
it "creates the client (and possibly adds chef-vault items)" do
|
590
|
+
expect(knife_ssh).to receive(:run)
|
591
|
+
expect(knife.client_builder).to receive(:run)
|
592
|
+
expect(knife.chef_vault_handler).to receive(:run).with(node_name: knife.config[:chef_node_name])
|
593
|
+
knife.run
|
594
|
+
end
|
542
595
|
end
|
543
596
|
end
|
544
597
|
|