chef 12.0.0.alpha.2-x86-mingw32 → 12.0.0.rc.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/CONTRIBUTING.md +9 -0
- data/README.md +1 -1
- data/Rakefile +12 -0
- data/bin/chef-service-manager +1 -1
- data/bin/chef-windows-service +35 -0
- data/distro/common/html/_sources/ctl_chef_server.txt +307 -10
- data/distro/common/html/ctl_chef_client.html +3 -7
- data/distro/common/html/ctl_chef_server.html +609 -41
- data/distro/common/html/ctl_chef_shell.html +2 -2
- data/distro/common/html/ctl_chef_solo.html +1 -1
- data/distro/common/html/index.html +13 -13
- data/distro/common/html/knife.html +10 -10
- data/distro/common/html/knife_bootstrap.html +8 -8
- data/distro/common/html/knife_client.html +12 -12
- data/distro/common/html/knife_common_options.html +7 -7
- data/distro/common/html/knife_configure.html +3 -3
- data/distro/common/html/knife_cookbook.html +19 -19
- data/distro/common/html/knife_cookbook_site.html +28 -28
- data/distro/common/html/knife_data_bag.html +28 -13
- data/distro/common/html/knife_delete.html +2 -2
- data/distro/common/html/knife_deps.html +3 -3
- data/distro/common/html/knife_diff.html +4 -4
- data/distro/common/html/knife_download.html +3 -3
- data/distro/common/html/knife_edit.html +2 -2
- data/distro/common/html/knife_environment.html +14 -14
- data/distro/common/html/knife_exec.html +11 -11
- data/distro/common/html/knife_index_rebuild.html +2 -2
- data/distro/common/html/knife_list.html +3 -3
- data/distro/common/html/knife_node.html +23 -23
- data/distro/common/html/knife_raw.html +4 -4
- data/distro/common/html/knife_recipe_list.html +3 -3
- data/distro/common/html/knife_role.html +11 -11
- data/distro/common/html/knife_search.html +4 -4
- data/distro/common/html/knife_serve.html +3 -3
- data/distro/common/html/knife_show.html +3 -3
- data/distro/common/html/knife_ssh.html +7 -7
- data/distro/common/html/knife_ssl_check.html +7 -7
- data/distro/common/html/knife_ssl_fetch.html +9 -9
- data/distro/common/html/knife_status.html +3 -3
- data/distro/common/html/knife_tag.html +9 -9
- data/distro/common/html/knife_upload.html +3 -3
- data/distro/common/html/knife_user.html +9 -9
- data/distro/common/html/knife_using.html +11 -11
- data/distro/common/html/knife_xargs.html +14 -5
- data/distro/common/html/search.html +2 -2
- data/distro/common/html/searchindex.js +1 -1
- data/distro/common/man/man1/chef-shell.1 +2 -2
- data/distro/common/man/man1/knife-bootstrap.1 +7 -7
- data/distro/common/man/man1/knife-client.1 +10 -10
- data/distro/common/man/man1/knife-configure.1 +5 -5
- data/distro/common/man/man1/knife-cookbook-site.1 +24 -24
- data/distro/common/man/man1/knife-cookbook.1 +12 -12
- data/distro/common/man/man1/knife-data-bag.1 +34 -10
- data/distro/common/man/man1/knife-delete.1 +5 -5
- data/distro/common/man/man1/knife-deps.1 +5 -5
- data/distro/common/man/man1/knife-diff.1 +7 -7
- data/distro/common/man/man1/knife-download.1 +5 -5
- data/distro/common/man/man1/knife-edit.1 +5 -5
- data/distro/common/man/man1/knife-environment.1 +11 -11
- data/distro/common/man/man1/knife-exec.1 +11 -11
- data/distro/common/man/man1/knife-index-rebuild.1 +1 -1
- data/distro/common/man/man1/knife-list.1 +5 -5
- data/distro/common/man/man1/knife-node.1 +16 -16
- data/distro/common/man/man1/knife-raw.1 +6 -6
- data/distro/common/man/man1/knife-recipe-list.1 +1 -1
- data/distro/common/man/man1/knife-role.1 +7 -7
- data/distro/common/man/man1/knife-search.1 +6 -6
- data/distro/common/man/man1/knife-serve.1 +6 -6
- data/distro/common/man/man1/knife-show.1 +5 -5
- data/distro/common/man/man1/knife-ssh.1 +9 -9
- data/distro/common/man/man1/knife-ssl-check.1 +7 -7
- data/distro/common/man/man1/knife-ssl-fetch.1 +9 -9
- data/distro/common/man/man1/knife-status.1 +5 -5
- data/distro/common/man/man1/knife-tag.1 +8 -8
- data/distro/common/man/man1/knife-upload.1 +5 -5
- data/distro/common/man/man1/knife-user.1 +8 -8
- data/distro/common/man/man1/knife-xargs.1 +36 -10
- data/distro/common/man/man1/knife.1 +14 -14
- data/distro/common/man/man8/chef-client.8 +3 -10
- data/distro/common/man/man8/chef-solo.8 +1 -1
- data/ext/win32-eventlog/Rakefile +50 -0
- data/ext/win32-eventlog/chef-log.man +26 -0
- data/lib/chef/application.rb +313 -241
- data/lib/chef/application/apply.rb +10 -8
- data/lib/chef/application/client.rb +58 -33
- data/lib/chef/application/solo.rb +33 -12
- data/lib/chef/chef_fs/chef_fs_data_store.rb +1 -1
- data/lib/chef/chef_fs/command_line.rb +1 -1
- data/lib/chef/chef_fs/file_system/organization_invites_entry.rb +2 -1
- data/lib/chef/chef_fs/file_system/organization_members_entry.rb +2 -1
- data/lib/chef/chef_fs/file_system/rest_list_entry.rb +2 -1
- data/lib/chef/client.rb +18 -48
- data/lib/chef/config.rb +43 -11
- data/lib/chef/cookbook/cookbook_version_loader.rb +14 -7
- data/lib/chef/cookbook/metadata.rb +81 -38
- data/lib/chef/cookbook/syntax_check.rb +18 -52
- data/lib/chef/cookbook_loader.rb +1 -1
- data/lib/chef/cookbook_version.rb +58 -39
- data/lib/chef/data_bag.rb +2 -2
- data/lib/chef/deprecation/provider/file.rb +2 -1
- data/lib/chef/dsl/data_query.rb +2 -29
- data/lib/chef/dsl/recipe.rb +8 -22
- data/lib/chef/encrypted_data_bag_item/assertions.rb +1 -1
- data/lib/chef/encrypted_data_bag_item/check_encrypted.rb +56 -0
- data/lib/chef/encrypted_data_bag_item/encrypted_data_bag_item_assertions.rb +1 -1
- data/lib/chef/event_loggers/base.rb +62 -0
- data/lib/chef/event_loggers/windows_eventlog.rb +104 -0
- data/lib/chef/exceptions.rb +18 -1
- data/lib/chef/file_cache.rb +3 -2
- data/lib/chef/guard_interpreter/resource_guard_interpreter.rb +15 -6
- data/lib/chef/http.rb +20 -13
- data/lib/chef/http/ssl_policies.rb +2 -1
- data/lib/chef/json_compat.rb +9 -3
- data/lib/chef/knife.rb +2 -1
- data/lib/chef/knife/bootstrap.rb +12 -18
- data/lib/chef/knife/bootstrap/archlinux-gems.erb +2 -2
- data/lib/chef/knife/bootstrap/chef-aix.erb +2 -2
- data/lib/chef/knife/bootstrap/chef-full.erb +2 -2
- data/lib/chef/knife/cookbook_create.rb +1 -1
- data/lib/chef/knife/cookbook_site_share.rb +43 -8
- data/lib/chef/knife/core/bootstrap_context.rb +6 -11
- data/lib/chef/knife/core/object_loader.rb +5 -5
- data/lib/chef/knife/core/status_presenter.rb +156 -0
- data/lib/chef/knife/core/subcommand_loader.rb +6 -5
- data/lib/chef/knife/core/ui.rb +4 -4
- data/lib/chef/knife/data_bag_create.rb +7 -32
- data/lib/chef/knife/data_bag_edit.rb +24 -43
- data/lib/chef/knife/data_bag_from_file.rb +6 -31
- data/lib/chef/knife/data_bag_secret_options.rb +142 -0
- data/lib/chef/knife/data_bag_show.rb +19 -33
- data/lib/chef/knife/node_from_file.rb +9 -8
- data/lib/chef/knife/ssh.rb +0 -7
- data/lib/chef/knife/ssl_check.rb +70 -6
- data/lib/chef/knife/status.rb +11 -58
- data/lib/chef/mixin/command/unix.rb +2 -2
- data/lib/chef/mixin/convert_to_class_name.rb +54 -0
- data/lib/chef/mixin/descendants_tracker.rb +82 -0
- data/lib/chef/mixin/homebrew_user.rb +68 -0
- data/lib/chef/mixin/shell_out.rb +0 -4
- data/lib/chef/mixin/windows_architecture_helper.rb +16 -0
- data/lib/chef/mixin/windows_env_helper.rb +56 -0
- data/lib/chef/node.rb +2 -2
- data/lib/chef/node_map.rb +146 -0
- data/lib/chef/platform/provider_mapping.rb +11 -39
- data/lib/chef/platform/provider_priority_map.rb +80 -0
- data/lib/chef/platform/query_helpers.rb +5 -1
- data/lib/chef/platform/service_helpers.rb +113 -0
- data/lib/chef/provider.rb +24 -0
- data/lib/chef/provider/breakpoint.rb +2 -0
- data/lib/chef/provider/cookbook_file.rb +2 -0
- data/lib/chef/provider/cron.rb +1 -1
- data/lib/chef/provider/cron/unix.rb +13 -9
- data/lib/chef/provider/deploy.rb +3 -2
- data/lib/chef/provider/deploy/revision.rb +4 -2
- data/lib/chef/provider/deploy/timestamped.rb +2 -0
- data/lib/chef/provider/directory.rb +2 -0
- data/lib/chef/provider/dsc_script.rb +179 -0
- data/lib/chef/provider/env.rb +25 -10
- data/lib/chef/provider/env/windows.rb +9 -16
- data/lib/chef/provider/erl_call.rb +2 -0
- data/lib/chef/provider/execute.rb +5 -2
- data/lib/chef/provider/file.rb +2 -0
- data/lib/chef/provider/git.rb +51 -23
- data/lib/chef/provider/group/dscl.rb +2 -2
- data/lib/chef/provider/group/pw.rb +9 -13
- data/lib/chef/provider/http_request.rb +2 -0
- data/lib/chef/provider/link.rb +3 -0
- data/lib/chef/provider/log.rb +2 -0
- data/lib/chef/provider/lwrp_base.rb +11 -9
- data/lib/chef/provider/mount/mount.rb +1 -1
- data/lib/chef/provider/package/aix.rb +2 -0
- data/lib/chef/provider/package/apt.rb +2 -0
- data/lib/chef/provider/package/dpkg.rb +2 -0
- data/lib/chef/provider/package/easy_install.rb +2 -0
- data/lib/chef/provider/package/freebsd/pkg.rb +2 -1
- data/lib/chef/provider/package/freebsd/pkgng.rb +1 -1
- data/lib/chef/provider/package/freebsd/port.rb +1 -9
- data/lib/chef/provider/package/homebrew.rb +127 -0
- data/lib/chef/provider/package/ips.rb +2 -0
- data/lib/chef/provider/package/macports.rb +3 -0
- data/lib/chef/provider/package/pacman.rb +5 -4
- data/lib/chef/provider/package/paludis.rb +4 -2
- data/lib/chef/provider/package/portage.rb +4 -1
- data/lib/chef/provider/package/rpm.rb +2 -0
- data/lib/chef/provider/package/rubygems.rb +4 -0
- data/lib/chef/provider/package/smartos.rb +2 -0
- data/lib/chef/provider/package/solaris.rb +2 -0
- data/lib/chef/provider/package/windows.rb +5 -2
- data/lib/chef/provider/package/yum.rb +2 -0
- data/lib/chef/provider/powershell_script.rb +3 -1
- data/lib/chef/provider/remote_directory.rb +25 -10
- data/lib/chef/provider/route.rb +2 -0
- data/lib/chef/provider/ruby_block.rb +2 -0
- data/lib/chef/provider/script.rb +6 -0
- data/lib/chef/provider/service/aix.rb +128 -0
- data/lib/chef/provider/service/aixinit.rb +117 -0
- data/lib/chef/provider/service/arch.rb +6 -0
- data/lib/chef/provider/service/debian.rb +35 -29
- data/lib/chef/provider/service/freebsd.rb +7 -1
- data/lib/chef/provider/service/gentoo.rb +5 -1
- data/lib/chef/provider/service/init.rb +2 -0
- data/lib/chef/provider/service/insserv.rb +15 -8
- data/lib/chef/provider/service/invokercd.rb +6 -0
- data/lib/chef/provider/service/macosx.rb +4 -1
- data/lib/chef/provider/service/redhat.rb +9 -3
- data/lib/chef/provider/service/simple.rb +2 -0
- data/lib/chef/provider/service/solaris.rb +2 -0
- data/lib/chef/provider/service/systemd.rb +7 -0
- data/lib/chef/provider/service/upstart.rb +7 -0
- data/lib/chef/provider/service/windows.rb +5 -0
- data/lib/chef/provider/subversion.rb +2 -0
- data/lib/chef/provider/template.rb +1 -0
- data/lib/chef/provider/user/dscl.rb +3 -2
- data/lib/chef/provider/whyrun_safe_ruby_block.rb +2 -0
- data/lib/chef/provider_resolver.rb +103 -0
- data/lib/chef/providers.rb +6 -2
- data/lib/chef/recipe.rb +2 -0
- data/lib/chef/resource.rb +69 -78
- data/lib/chef/resource/apt_package.rb +3 -1
- data/lib/chef/resource/bash.rb +1 -0
- data/lib/chef/resource/bff_package.rb +0 -1
- data/lib/chef/resource/breakpoint.rb +1 -1
- data/lib/chef/resource/chef_gem.rb +1 -2
- data/lib/chef/resource/conditional.rb +26 -6
- data/lib/chef/resource/cookbook_file.rb +2 -3
- data/lib/chef/resource/csh.rb +1 -0
- data/lib/chef/resource/deploy.rb +0 -1
- data/lib/chef/resource/deploy_revision.rb +6 -1
- data/lib/chef/resource/directory.rb +1 -2
- data/lib/chef/resource/dpkg_package.rb +2 -1
- data/lib/chef/resource/dsc_script.rb +125 -0
- data/lib/chef/resource/easy_install_package.rb +2 -1
- data/lib/chef/resource/erl_call.rb +1 -0
- data/lib/chef/resource/execute.rb +26 -9
- data/lib/chef/resource/file.rb +1 -3
- data/lib/chef/resource/freebsd_package.rb +10 -23
- data/lib/chef/resource/gem_package.rb +2 -1
- data/lib/chef/resource/git.rb +2 -1
- data/lib/chef/resource/homebrew_package.rb +46 -0
- data/lib/chef/resource/http_request.rb +1 -0
- data/lib/chef/resource/ips_package.rb +3 -1
- data/lib/chef/resource/link.rb +1 -2
- data/lib/chef/resource/log.rb +4 -0
- data/lib/chef/resource/lwrp_base.rb +24 -15
- data/lib/chef/resource/macports_package.rb +3 -1
- data/lib/chef/resource/pacman_package.rb +2 -1
- data/lib/chef/resource/paludis_package.rb +3 -1
- data/lib/chef/resource/perl.rb +1 -0
- data/lib/chef/resource/powershell_script.rb +0 -2
- data/lib/chef/resource/python.rb +1 -1
- data/lib/chef/resource/remote_directory.rb +1 -2
- data/lib/chef/resource/remote_file.rb +1 -1
- data/lib/chef/resource/rpm_package.rb +2 -1
- data/lib/chef/resource/ruby.rb +1 -0
- data/lib/chef/resource/ruby_block.rb +3 -0
- data/lib/chef/resource/script.rb +2 -25
- data/lib/chef/resource/service.rb +0 -4
- data/lib/chef/resource/smartos_package.rb +3 -4
- data/lib/chef/resource/solaris_package.rb +7 -1
- data/lib/chef/resource/subversion.rb +0 -1
- data/lib/chef/resource/template.rb +2 -3
- data/lib/chef/resource/timestamped_deploy.rb +1 -2
- data/lib/chef/resource/whyrun_safe_ruby_block.rb +0 -1
- data/lib/chef/resource/windows_package.rb +3 -4
- data/lib/chef/resource/windows_script.rb +3 -0
- data/lib/chef/resource/windows_service.rb +2 -2
- data/lib/chef/resource/yum_package.rb +3 -1
- data/lib/chef/resource_collection.rb +50 -227
- data/lib/chef/resource_collection/resource_collection_serialization.rb +59 -0
- data/lib/chef/resource_collection/resource_list.rb +89 -0
- data/lib/chef/resource_collection/resource_set.rb +170 -0
- data/lib/chef/resources.rb +2 -0
- data/lib/chef/role.rb +1 -1
- data/lib/chef/run_context.rb +5 -1
- data/lib/chef/shell/ext.rb +1 -1
- data/lib/chef/util/backup.rb +3 -2
- data/lib/chef/util/dsc/configuration_generator.rb +115 -0
- data/lib/chef/util/dsc/lcm_output_parser.rb +133 -0
- data/lib/chef/util/dsc/local_configuration_manager.rb +141 -0
- data/lib/chef/util/dsc/resource_info.rb +26 -0
- data/lib/chef/util/path_helper.rb +12 -0
- data/lib/chef/util/powershell/cmdlet.rb +136 -0
- data/lib/chef/util/powershell/cmdlet_result.rb +46 -0
- data/lib/chef/version.rb +1 -1
- data/lib/chef/win32/api/system.rb +9 -0
- data/lib/chef/win32/version.rb +2 -0
- data/spec/.DS_Store +0 -0
- data/spec/data/.DS_Store +0 -0
- data/spec/data/bootstrap/test-hints.erb +1 -1
- data/spec/data/bootstrap/test.erb +1 -1
- data/spec/data/cb_version_cookbooks/cookbook2/files/test.txt +0 -0
- data/spec/data/cb_version_cookbooks/cookbook2/templates/test.erb +0 -0
- data/spec/data/cookbooks/ignorken/files/default/not_me.rb +2 -0
- data/spec/data/cookbooks/ignorken/templates/ubuntu-12.10/not_me.rb +2 -0
- data/spec/data/cookbooks/openldap/libraries/openldap.rb +4 -0
- data/spec/data/cookbooks/openldap/libraries/openldap/version.rb +3 -0
- data/spec/data/lwrp/.DS_Store +0 -0
- data/spec/data/lwrp/providers/.DS_Store +0 -0
- data/spec/data/lwrp/providers/buck_passer.rb +9 -2
- data/spec/data/lwrp/resources/.DS_Store +0 -0
- data/spec/data/lwrp/resources/foo.rb +3 -2
- data/spec/data/lwrp_override/.DS_Store +0 -0
- data/spec/data/lwrp_override/providers/.DS_Store +0 -0
- data/spec/data/lwrp_override/providers/buck_passer.rb +5 -10
- data/spec/data/lwrp_override/resources/.DS_Store +0 -0
- data/spec/data/lwrp_override/resources/foo.rb +4 -3
- data/spec/functional/assets/chefinittest +34 -0
- data/spec/functional/assets/testchefsubsys +11 -0
- data/spec/functional/dsl/reboot_pending_spec.rb +19 -16
- data/spec/functional/event_loggers/windows_eventlog_spec.rb +82 -0
- data/spec/functional/knife/cookbook_delete_spec.rb +3 -3
- data/spec/functional/knife/exec_spec.rb +1 -1
- data/spec/functional/resource/aix_service_spec.rb +136 -0
- data/spec/functional/resource/aixinit_service_spec.rb +211 -0
- data/spec/functional/resource/base.rb +1 -0
- data/spec/functional/resource/batch_spec.rb +4 -11
- data/spec/functional/resource/cron_spec.rb +7 -1
- data/spec/functional/resource/dsc_script_spec.rb +382 -0
- data/spec/functional/resource/env_spec.rb +54 -0
- data/spec/functional/resource/execute_spec.rb +113 -0
- data/spec/functional/resource/file_spec.rb +2 -0
- data/spec/functional/resource/group_spec.rb +7 -4
- data/spec/functional/resource/powershell_spec.rb +198 -185
- data/spec/functional/resource/rpm_spec.rb +5 -4
- data/spec/functional/resource/user/dscl_spec.rb +2 -1
- data/spec/functional/util/path_helper_spec.rb +37 -0
- data/spec/functional/util/powershell/cmdlet_spec.rb +114 -0
- data/spec/integration/client/client_spec.rb +1 -1
- data/spec/integration/client/ipv6_spec.rb +1 -1
- data/spec/integration/knife/chef_fs_data_store_spec.rb +1 -1
- data/spec/integration/knife/chef_repo_path_spec.rb +1 -1
- data/spec/integration/knife/chef_repository_file_system_spec.rb +1 -1
- data/spec/integration/knife/chefignore_spec.rb +1 -1
- data/spec/integration/knife/common_options_spec.rb +1 -1
- data/spec/integration/knife/cookbook_api_ipv6_spec.rb +2 -2
- data/spec/integration/knife/delete_spec.rb +1 -1
- data/spec/integration/knife/deps_spec.rb +1 -1
- data/spec/integration/knife/diff_spec.rb +1 -1
- data/spec/integration/knife/download_spec.rb +1 -1
- data/spec/integration/knife/list_spec.rb +1 -1
- data/spec/integration/knife/raw_spec.rb +1 -1
- data/spec/integration/knife/redirection_spec.rb +1 -1
- data/spec/integration/knife/serve_spec.rb +1 -1
- data/spec/integration/knife/show_spec.rb +1 -1
- data/spec/integration/knife/upload_spec.rb +4 -3
- data/spec/integration/recipes/lwrp_inline_resources_spec.rb +1 -1
- data/spec/spec_helper.rb +15 -0
- data/spec/support/chef_helpers.rb +1 -0
- data/spec/support/lib/chef/provider/snakeoil.rb +1 -0
- data/spec/support/lib/chef/resource/zen_follower.rb +1 -7
- data/spec/support/platform_helpers.rb +28 -0
- data/spec/support/shared/functional/file_resource.rb +6 -0
- data/spec/support/shared/functional/windows_script.rb +118 -0
- data/spec/support/shared/integration/integration_helper.rb +5 -2
- data/spec/support/shared/matchers/exit_with_code.rb +28 -0
- data/spec/support/shared/matchers/match_environment_variable.rb +17 -0
- data/spec/support/shared/shared_examples.rb +14 -0
- data/spec/support/shared/unit/execute_resource.rb +0 -7
- data/spec/support/shared/unit/resource/static_provider_resolution.rb +71 -0
- data/spec/support/shared/unit/script_resource.rb +1 -1
- data/spec/support/shared/unit/windows_script_resource.rb +35 -2
- data/spec/tiny_server.rb +1 -2
- data/spec/unit/api_client_spec.rb +5 -1
- data/spec/unit/application/{apply.rb → apply_spec.rb} +13 -5
- data/spec/unit/application/client_spec.rb +106 -13
- data/spec/unit/application/solo_spec.rb +25 -1
- data/spec/unit/client_spec.rb +1 -26
- data/spec/unit/config_fetcher_spec.rb +2 -1
- data/spec/unit/config_spec.rb +91 -2
- data/spec/unit/cookbook/cookbook_version_loader_spec.rb +8 -0
- data/spec/unit/cookbook/metadata_spec.rb +43 -6
- data/spec/unit/cookbook/syntax_check_spec.rb +8 -2
- data/spec/unit/cookbook_loader_spec.rb +4 -2
- data/spec/unit/cookbook_version_spec.rb +83 -2
- data/spec/unit/data_bag_item_spec.rb +5 -1
- data/spec/unit/data_bag_spec.rb +6 -1
- data/spec/unit/dsl/data_query_spec.rb +8 -110
- data/spec/unit/encrypted_data_bag_item/check_encrypted_spec.rb +95 -0
- data/spec/unit/encrypted_data_bag_item_spec.rb +16 -23
- data/spec/unit/environment_spec.rb +6 -2
- data/spec/unit/exceptions_spec.rb +6 -0
- data/spec/unit/guard_interpreter/resource_guard_interpreter_spec.rb +16 -15
- data/spec/unit/json_compat_spec.rb +12 -2
- data/spec/unit/knife/bootstrap_spec.rb +16 -63
- data/spec/unit/knife/cookbook_site_share_spec.rb +59 -6
- data/spec/unit/knife/core/bootstrap_context_spec.rb +8 -37
- data/spec/unit/knife/core/subcommand_loader_spec.rb +1 -1
- data/spec/unit/knife/core/ui_spec.rb +28 -0
- data/spec/unit/knife/data_bag_create_spec.rb +63 -71
- data/spec/unit/knife/data_bag_edit_spec.rb +83 -49
- data/spec/unit/knife/data_bag_from_file_spec.rb +104 -126
- data/spec/unit/knife/data_bag_secret_options_spec.rb +165 -0
- data/spec/unit/knife/data_bag_show_spec.rb +74 -72
- data/spec/unit/knife/environment_from_file_spec.rb +3 -2
- data/spec/unit/knife/ssl_check_spec.rb +46 -1
- data/spec/unit/knife/status_spec.rb +1 -2
- data/spec/unit/knife_spec.rb +18 -1
- data/spec/unit/lwrp_spec.rb +29 -8
- data/spec/unit/mixin/homebrew_user_spec.rb +100 -0
- data/spec/unit/node_map_spec.rb +155 -0
- data/spec/unit/node_spec.rb +11 -0
- data/spec/unit/platform/query_helpers_spec.rb +23 -0
- data/spec/unit/platform_spec.rb +23 -0
- data/spec/unit/provider/breakpoint_spec.rb +9 -9
- data/spec/unit/provider/cookbook_file/content_spec.rb +3 -3
- data/spec/unit/provider/cookbook_file_spec.rb +1 -1
- data/spec/unit/provider/cron/unix_spec.rb +78 -60
- data/spec/unit/provider/cron_spec.rb +175 -175
- data/spec/unit/provider/deploy/revision_spec.rb +22 -21
- data/spec/unit/provider/deploy/timestamped_spec.rb +3 -3
- data/spec/unit/provider/deploy_spec.rb +231 -230
- data/spec/unit/provider/directory_spec.rb +55 -55
- data/spec/unit/provider/dsc_script_spec.rb +174 -0
- data/spec/unit/provider/env/windows_spec.rb +70 -34
- data/spec/unit/provider/env_spec.rb +95 -49
- data/spec/unit/provider/erl_call_spec.rb +9 -9
- data/spec/unit/provider/execute_spec.rb +43 -27
- data/spec/unit/provider/file/content_spec.rb +9 -9
- data/spec/unit/provider/file_spec.rb +1 -1
- data/spec/unit/provider/git_spec.rb +221 -159
- data/spec/unit/provider/group/dscl_spec.rb +64 -63
- data/spec/unit/provider/group/gpasswd_spec.rb +14 -14
- data/spec/unit/provider/group/groupadd_spec.rb +33 -33
- data/spec/unit/provider/group/groupmod_spec.rb +23 -23
- data/spec/unit/provider/group/pw_spec.rb +21 -21
- data/spec/unit/provider/group/usermod_spec.rb +20 -20
- data/spec/unit/provider/group/windows_spec.rb +15 -15
- data/spec/unit/provider/group_spec.rb +76 -76
- data/spec/unit/provider/http_request_spec.rb +30 -30
- data/spec/unit/provider/ifconfig/aix_spec.rb +20 -20
- data/spec/unit/provider/ifconfig/debian_spec.rb +25 -9
- data/spec/unit/provider/ifconfig/redhat_spec.rb +13 -13
- data/spec/unit/provider/ifconfig_spec.rb +43 -43
- data/spec/unit/provider/link_spec.rb +60 -60
- data/spec/unit/provider/log_spec.rb +0 -4
- data/spec/unit/provider/mdadm_spec.rb +23 -23
- data/spec/unit/provider/mount/aix_spec.rb +17 -17
- data/spec/unit/provider/mount/mount_spec.rb +115 -119
- data/spec/unit/provider/mount/solaris_spec.rb +72 -72
- data/spec/unit/provider/mount/windows_spec.rb +24 -24
- data/spec/unit/provider/ohai_spec.rb +11 -11
- data/spec/unit/provider/package/aix_spec.rb +34 -34
- data/spec/unit/provider/package/apt_spec.rb +36 -36
- data/spec/unit/provider/package/dpkg_spec.rb +27 -27
- data/spec/unit/provider/package/easy_install_spec.rb +16 -16
- data/spec/unit/provider/package/freebsd/pkg_spec.rb +53 -53
- data/spec/unit/provider/package/freebsd/pkgng_spec.rb +24 -24
- data/spec/unit/provider/package/freebsd/port_spec.rb +45 -35
- data/spec/unit/provider/package/homebrew_spec.rb +266 -0
- data/spec/unit/provider/package/ips_spec.rb +34 -34
- data/spec/unit/provider/package/macports_spec.rb +49 -49
- data/spec/unit/provider/package/pacman_spec.rb +35 -39
- data/spec/unit/provider/package/paludis_spec.rb +20 -20
- data/spec/unit/provider/package/portage_spec.rb +38 -38
- data/spec/unit/provider/package/rpm_spec.rb +29 -29
- data/spec/unit/provider/package/rubygems_spec.rb +284 -270
- data/spec/unit/provider/package/smartos_spec.rb +15 -15
- data/spec/unit/provider/package/solaris_spec.rb +35 -35
- data/spec/unit/provider/package/windows/msi_spec.rb +3 -3
- data/spec/unit/provider/package/windows_spec.rb +6 -6
- data/spec/unit/provider/package/yum_spec.rb +416 -416
- data/spec/unit/provider/package/zypper_spec.rb +47 -47
- data/spec/unit/provider/package_spec.rb +107 -107
- data/spec/unit/provider/powershell_spec.rb +1 -1
- data/spec/unit/provider/registry_key_spec.rb +61 -61
- data/spec/unit/provider/remote_directory_spec.rb +36 -36
- data/spec/unit/provider/remote_file/cache_control_data_spec.rb +24 -24
- data/spec/unit/provider/remote_file/content_spec.rb +45 -45
- data/spec/unit/provider/remote_file/fetcher_spec.rb +9 -9
- data/spec/unit/provider/remote_file/ftp_spec.rb +32 -32
- data/spec/unit/provider/remote_file/http_spec.rb +44 -44
- data/spec/unit/provider/remote_file/local_file_spec.rb +9 -9
- data/spec/unit/provider/remote_file_spec.rb +3 -3
- data/spec/unit/provider/route_spec.rb +63 -63
- data/spec/unit/provider/ruby_block_spec.rb +4 -4
- data/spec/unit/provider/script_spec.rb +12 -12
- data/spec/unit/provider/service/aix_service_spec.rb +181 -0
- data/spec/unit/provider/service/aixinit_service_spec.rb +269 -0
- data/spec/unit/provider/service/arch_service_spec.rb +48 -48
- data/spec/unit/provider/service/debian_service_spec.rb +40 -40
- data/spec/unit/provider/service/gentoo_service_spec.rb +28 -28
- data/spec/unit/provider/service/init_service_spec.rb +39 -39
- data/spec/unit/provider/service/insserv_service_spec.rb +8 -8
- data/spec/unit/provider/service/invokercd_service_spec.rb +35 -35
- data/spec/unit/provider/service/macosx_spec.rb +49 -49
- data/spec/unit/provider/service/redhat_spec.rb +27 -27
- data/spec/unit/provider/service/simple_service_spec.rb +28 -28
- data/spec/unit/provider/service/solaris_smf_service_spec.rb +43 -46
- data/spec/unit/provider/service/systemd_service_spec.rb +63 -63
- data/spec/unit/provider/service/upstart_service_spec.rb +78 -78
- data/spec/unit/provider/service/windows_spec.rb +92 -92
- data/spec/unit/provider/service_spec.rb +40 -40
- data/spec/unit/provider/subversion_spec.rb +80 -80
- data/spec/unit/provider/template/content_spec.rb +9 -9
- data/spec/unit/provider/template_spec.rb +6 -6
- data/spec/unit/provider/user/dscl_spec.rb +170 -167
- data/spec/unit/provider/user/pw_spec.rb +48 -48
- data/spec/unit/provider/user/solaris_spec.rb +8 -8
- data/spec/unit/provider/user/useradd_spec.rb +1 -1
- data/spec/unit/provider/user/windows_spec.rb +26 -26
- data/spec/unit/provider/user_spec.rb +72 -72
- data/spec/unit/provider/whyrun_safe_ruby_block_spec.rb +4 -4
- data/spec/unit/provider_resolver_spec.rb +387 -0
- data/spec/unit/recipe_spec.rb +33 -12
- data/spec/unit/resource/apt_package_spec.rb +10 -13
- data/spec/unit/resource/bash_spec.rb +4 -4
- data/spec/unit/resource/batch_spec.rb +1 -1
- data/spec/unit/resource/breakpoint_spec.rb +11 -7
- data/spec/unit/resource/chef_gem_spec.rb +8 -15
- data/spec/unit/resource/conditional_action_not_nothing_spec.rb +2 -2
- data/spec/unit/resource/conditional_spec.rb +35 -16
- data/spec/unit/resource/cookbook_file_spec.rb +13 -13
- data/spec/unit/resource/cron_spec.rb +37 -37
- data/spec/unit/resource/csh_spec.rb +4 -4
- data/spec/unit/resource/deploy_revision_spec.rb +13 -18
- data/spec/unit/resource/deploy_spec.rb +60 -55
- data/spec/unit/resource/directory_spec.rb +18 -18
- data/spec/unit/resource/dpkg_package_spec.rb +8 -14
- data/spec/unit/resource/dsc_script_spec.rb +98 -0
- data/spec/unit/resource/easy_install_package_spec.rb +9 -18
- data/spec/unit/resource/env_spec.rb +12 -12
- data/spec/unit/resource/erl_call_spec.rb +11 -11
- data/spec/unit/resource/execute_spec.rb +5 -0
- data/spec/unit/resource/file_spec.rb +29 -29
- data/spec/unit/resource/freebsd_package_spec.rb +11 -12
- data/spec/unit/resource/gem_package_spec.rb +8 -15
- data/spec/unit/resource/git_spec.rb +12 -8
- data/spec/unit/resource/group_spec.rb +27 -27
- data/spec/unit/resource/homebrew_package_spec.rb +50 -0
- data/spec/unit/resource/http_request_spec.rb +6 -6
- data/spec/unit/resource/ifconfig_spec.rb +8 -8
- data/spec/unit/resource/ips_package_spec.rb +10 -13
- data/spec/unit/resource/link_spec.rb +25 -25
- data/spec/unit/resource/log_spec.rb +9 -9
- data/spec/unit/resource/macports_package_spec.rb +8 -13
- data/spec/unit/resource/mdadm_spec.rb +18 -18
- data/spec/unit/resource/mount_spec.rb +45 -45
- data/spec/unit/resource/ohai_spec.rb +7 -7
- data/spec/unit/resource/package_spec.rb +12 -12
- data/spec/unit/resource/pacman_package_spec.rb +8 -14
- data/spec/unit/resource/perl_spec.rb +4 -4
- data/spec/unit/resource/portage_package_spec.rb +3 -3
- data/spec/unit/resource/powershell_spec.rb +7 -7
- data/spec/unit/resource/python_spec.rb +4 -4
- data/spec/unit/resource/registry_key_spec.rb +32 -32
- data/spec/unit/resource/remote_directory_spec.rb +17 -17
- data/spec/unit/resource/remote_file_spec.rb +41 -41
- data/spec/unit/resource/route_spec.rb +19 -19
- data/spec/unit/resource/rpm_package_spec.rb +9 -13
- data/spec/unit/resource/ruby_block_spec.rb +8 -8
- data/spec/unit/resource/ruby_spec.rb +4 -4
- data/spec/unit/resource/scm_spec.rb +40 -40
- data/spec/unit/resource/script_spec.rb +2 -2
- data/spec/unit/resource/service_spec.rb +37 -47
- data/spec/unit/resource/smartos_package_spec.rb +10 -15
- data/spec/unit/resource/solaris_package_spec.rb +13 -28
- data/spec/unit/resource/subversion_spec.rb +16 -12
- data/spec/unit/resource/template_spec.rb +35 -35
- data/spec/unit/resource/timestamped_deploy_spec.rb +30 -4
- data/spec/unit/resource/user_spec.rb +23 -23
- data/spec/unit/resource/windows_package_spec.rb +17 -10
- data/spec/unit/resource/windows_service_spec.rb +9 -6
- data/spec/unit/resource/yum_package_spec.rb +16 -21
- data/spec/unit/resource_collection/resource_list_spec.rb +137 -0
- data/spec/unit/resource_collection/resource_set_spec.rb +199 -0
- data/spec/unit/resource_collection_spec.rb +73 -92
- data/spec/unit/resource_definition_spec.rb +38 -40
- data/spec/unit/resource_reporter_spec.rb +3 -3
- data/spec/unit/resource_spec.rb +68 -33
- data/spec/unit/rest_spec.rb +83 -76
- data/spec/unit/role_spec.rb +5 -0
- data/spec/unit/run_list_spec.rb +5 -1
- data/spec/unit/runner_spec.rb +245 -238
- data/spec/unit/shell/shell_ext_spec.rb +1 -1
- data/spec/unit/user_spec.rb +5 -1
- data/spec/unit/util/dsc/configuration_generator_spec.rb +171 -0
- data/spec/unit/util/dsc/lcm_output_parser_spec.rb +169 -0
- data/spec/unit/util/dsc/local_configuration_manager_spec.rb +139 -0
- data/spec/unit/util/path_helper_spec.rb +23 -1
- data/spec/unit/util/powershell/cmdlet_spec.rb +106 -0
- data/spec/unit/workstation_config_loader_spec.rb +1 -1
- metadata +303 -196
- checksums.yaml +0 -7
- data/distro/README +0 -2
- data/distro/arch/etc/conf.d/chef-client.conf +0 -5
- data/distro/arch/etc/conf.d/chef-expander.conf +0 -8
- data/distro/arch/etc/conf.d/chef-server-webui.conf +0 -10
- data/distro/arch/etc/conf.d/chef-server.conf +0 -10
- data/distro/arch/etc/conf.d/chef-solr.conf +0 -8
- data/distro/arch/etc/rc.d/chef-client +0 -90
- data/distro/arch/etc/rc.d/chef-expander +0 -78
- data/distro/arch/etc/rc.d/chef-server +0 -78
- data/distro/arch/etc/rc.d/chef-server-webui +0 -78
- data/distro/arch/etc/rc.d/chef-solr +0 -78
- data/distro/debian/etc/default/chef-client +0 -4
- data/distro/debian/etc/default/chef-expander +0 -8
- data/distro/debian/etc/default/chef-server +0 -9
- data/distro/debian/etc/default/chef-server-webui +0 -9
- data/distro/debian/etc/default/chef-solr +0 -8
- data/distro/debian/etc/init.d/chef-client +0 -212
- data/distro/debian/etc/init.d/chef-expander +0 -176
- data/distro/debian/etc/init.d/chef-server +0 -122
- data/distro/debian/etc/init.d/chef-server-webui +0 -123
- data/distro/debian/etc/init.d/chef-solr +0 -176
- data/distro/debian/etc/init/chef-client.conf +0 -17
- data/distro/debian/etc/init/chef-expander.conf +0 -17
- data/distro/debian/etc/init/chef-server-webui.conf +0 -17
- data/distro/debian/etc/init/chef-server.conf +0 -17
- data/distro/debian/etc/init/chef-solr.conf +0 -17
- data/distro/redhat/etc/init.d/chef-client +0 -121
- data/distro/redhat/etc/init.d/chef-expander +0 -104
- data/distro/redhat/etc/init.d/chef-server +0 -112
- data/distro/redhat/etc/init.d/chef-server-webui +0 -112
- data/distro/redhat/etc/init.d/chef-solr +0 -104
- data/distro/redhat/etc/logrotate.d/chef-client +0 -8
- data/distro/redhat/etc/logrotate.d/chef-expander +0 -8
- data/distro/redhat/etc/logrotate.d/chef-server +0 -8
- data/distro/redhat/etc/logrotate.d/chef-server-webui +0 -8
- data/distro/redhat/etc/logrotate.d/chef-solr +0 -8
- data/distro/redhat/etc/sysconfig/chef-client +0 -15
- data/distro/redhat/etc/sysconfig/chef-expander +0 -7
- data/distro/redhat/etc/sysconfig/chef-server +0 -14
- data/distro/redhat/etc/sysconfig/chef-server-webui +0 -14
- data/distro/redhat/etc/sysconfig/chef-solr +0 -8
- data/distro/windows/service_manager.rb +0 -20
- data/lib/chef/resource_platform_map.rb +0 -151
- data/spec/support/shared/matchers.rb +0 -17
- data/spec/unit/resource_platform_map_spec.rb +0 -164
@@ -31,9 +31,9 @@ shared_examples_for "a registry key" do
|
|
31
31
|
|
32
32
|
@provider = Chef::Provider::RegistryKey.new(@new_resource, @run_context)
|
33
33
|
|
34
|
-
@provider.
|
34
|
+
allow(@provider).to receive(:running_on_windows!).and_return(true)
|
35
35
|
@double_registry = double(Chef::Win32::Registry)
|
36
|
-
@provider.
|
36
|
+
allow(@provider).to receive(:registry).and_return(@double_registry)
|
37
37
|
end
|
38
38
|
|
39
39
|
describe "when first created" do
|
@@ -42,36 +42,36 @@ shared_examples_for "a registry key" do
|
|
42
42
|
describe "executing load_current_resource" do
|
43
43
|
describe "when the key exists" do
|
44
44
|
before(:each) do
|
45
|
-
@double_registry.
|
46
|
-
@double_registry.
|
45
|
+
expect(@double_registry).to receive(:key_exists?).with(keyname).and_return(true)
|
46
|
+
expect(@double_registry).to receive(:get_values).with(keyname).and_return( testval2 )
|
47
47
|
@provider.load_current_resource
|
48
48
|
end
|
49
49
|
|
50
50
|
it "should set the key of the current resource to the key of the new resource" do
|
51
|
-
@provider.current_resource.key.
|
51
|
+
expect(@provider.current_resource.key).to eq(@new_resource.key)
|
52
52
|
end
|
53
53
|
|
54
54
|
it "should set the architecture of the current resource to the architecture of the new resource" do
|
55
|
-
@provider.current_resource.architecture.
|
55
|
+
expect(@provider.current_resource.architecture).to eq(@new_resource.architecture)
|
56
56
|
end
|
57
57
|
|
58
58
|
it "should set the recursive flag of the current resource to the recursive flag of the new resource" do
|
59
|
-
@provider.current_resource.recursive.
|
59
|
+
expect(@provider.current_resource.recursive).to eq(@new_resource.recursive)
|
60
60
|
end
|
61
61
|
|
62
62
|
it "should set the unscrubbed values of the current resource to the values it got from the registry" do
|
63
|
-
@provider.current_resource.unscrubbed_values.
|
63
|
+
expect(@provider.current_resource.unscrubbed_values).to eq([ testval2 ])
|
64
64
|
end
|
65
65
|
end
|
66
66
|
|
67
67
|
describe "when the key does not exist" do
|
68
68
|
before(:each) do
|
69
|
-
@double_registry.
|
69
|
+
expect(@double_registry).to receive(:key_exists?).with(keyname).and_return(false)
|
70
70
|
@provider.load_current_resource
|
71
71
|
end
|
72
72
|
|
73
73
|
it "should set the values in the current resource to empty array" do
|
74
|
-
@provider.current_resource.values.
|
74
|
+
expect(@provider.current_resource.values).to eq([])
|
75
75
|
end
|
76
76
|
end
|
77
77
|
end
|
@@ -79,29 +79,29 @@ shared_examples_for "a registry key" do
|
|
79
79
|
describe "action_create" do
|
80
80
|
context "when the key exists" do
|
81
81
|
before(:each) do
|
82
|
-
@double_registry.
|
82
|
+
expect(@double_registry).to receive(:key_exists?).twice.with(keyname).and_return(true)
|
83
83
|
end
|
84
84
|
it "should do nothing if the key and the value both exist" do
|
85
|
-
@double_registry.
|
86
|
-
@double_registry.
|
85
|
+
expect(@double_registry).to receive(:get_values).with(keyname).and_return( testval1 )
|
86
|
+
expect(@double_registry).not_to receive(:set_value)
|
87
87
|
@provider.load_current_resource
|
88
88
|
@provider.action_create
|
89
89
|
end
|
90
90
|
it "should create the value if the key exists but the value does not" do
|
91
|
-
@double_registry.
|
92
|
-
@double_registry.
|
91
|
+
expect(@double_registry).to receive(:get_values).with(keyname).and_return( testval2 )
|
92
|
+
expect(@double_registry).to receive(:set_value).with(keyname, testval1)
|
93
93
|
@provider.load_current_resource
|
94
94
|
@provider.action_create
|
95
95
|
end
|
96
96
|
it "should set the value if the key exists but the data does not match" do
|
97
|
-
@double_registry.
|
98
|
-
@double_registry.
|
97
|
+
expect(@double_registry).to receive(:get_values).with(keyname).and_return( testval1_wrong_data )
|
98
|
+
expect(@double_registry).to receive(:set_value).with(keyname, testval1)
|
99
99
|
@provider.load_current_resource
|
100
100
|
@provider.action_create
|
101
101
|
end
|
102
102
|
it "should set the value if the key exists but the type does not match" do
|
103
|
-
@double_registry.
|
104
|
-
@double_registry.
|
103
|
+
expect(@double_registry).to receive(:get_values).with(keyname).and_return( testval1_wrong_type )
|
104
|
+
expect(@double_registry).to receive(:set_value).with(keyname, testval1)
|
105
105
|
@provider.load_current_resource
|
106
106
|
@provider.action_create
|
107
107
|
end
|
@@ -109,30 +109,30 @@ shared_examples_for "a registry key" do
|
|
109
109
|
context "when the key exists and the values in the new resource are empty" do
|
110
110
|
it "when a value is in the key, it should do nothing" do
|
111
111
|
@provider.new_resource.values([])
|
112
|
-
@double_registry.
|
113
|
-
@double_registry.
|
114
|
-
@double_registry.
|
115
|
-
@double_registry.
|
112
|
+
expect(@double_registry).to receive(:key_exists?).twice.with(keyname).and_return(true)
|
113
|
+
expect(@double_registry).to receive(:get_values).with(keyname).and_return( testval1 )
|
114
|
+
expect(@double_registry).not_to receive(:create_key)
|
115
|
+
expect(@double_registry).not_to receive(:set_value)
|
116
116
|
@provider.load_current_resource
|
117
117
|
@provider.action_create
|
118
118
|
end
|
119
119
|
it "when no value is in the key, it should do nothing" do
|
120
120
|
@provider.new_resource.values([])
|
121
|
-
@double_registry.
|
122
|
-
@double_registry.
|
123
|
-
@double_registry.
|
124
|
-
@double_registry.
|
121
|
+
expect(@double_registry).to receive(:key_exists?).twice.with(keyname).and_return(true)
|
122
|
+
expect(@double_registry).to receive(:get_values).with(keyname).and_return( nil )
|
123
|
+
expect(@double_registry).not_to receive(:create_key)
|
124
|
+
expect(@double_registry).not_to receive(:set_value)
|
125
125
|
@provider.load_current_resource
|
126
126
|
@provider.action_create
|
127
127
|
end
|
128
128
|
end
|
129
129
|
context "when the key does not exist" do
|
130
130
|
before(:each) do
|
131
|
-
@double_registry.
|
131
|
+
expect(@double_registry).to receive(:key_exists?).twice.with(keyname).and_return(false)
|
132
132
|
end
|
133
133
|
it "should create the key and the value" do
|
134
|
-
@double_registry.
|
135
|
-
@double_registry.
|
134
|
+
expect(@double_registry).to receive(:create_key).with(keyname, false)
|
135
|
+
expect(@double_registry).to receive(:set_value).with(keyname, testval1)
|
136
136
|
@provider.load_current_resource
|
137
137
|
@provider.action_create
|
138
138
|
end
|
@@ -140,9 +140,9 @@ shared_examples_for "a registry key" do
|
|
140
140
|
context "when the key does not exist and the values in the new resource are empty" do
|
141
141
|
it "should create the key" do
|
142
142
|
@new_resource.values([])
|
143
|
-
@double_registry.
|
144
|
-
@double_registry.
|
145
|
-
@double_registry.
|
143
|
+
expect(@double_registry).to receive(:key_exists?).twice.with(keyname).and_return(false)
|
144
|
+
expect(@double_registry).to receive(:create_key).with(keyname, false)
|
145
|
+
expect(@double_registry).not_to receive(:set_value)
|
146
146
|
@provider.load_current_resource
|
147
147
|
@provider.action_create
|
148
148
|
end
|
@@ -152,40 +152,40 @@ shared_examples_for "a registry key" do
|
|
152
152
|
describe "action_create_if_missing" do
|
153
153
|
context "when the key exists" do
|
154
154
|
before(:each) do
|
155
|
-
@double_registry.
|
155
|
+
expect(@double_registry).to receive(:key_exists?).twice.with(keyname).and_return(true)
|
156
156
|
end
|
157
157
|
it "should do nothing if the key and the value both exist" do
|
158
|
-
@double_registry.
|
159
|
-
@double_registry.
|
158
|
+
expect(@double_registry).to receive(:get_values).with(keyname).and_return( testval1 )
|
159
|
+
expect(@double_registry).not_to receive(:set_value)
|
160
160
|
@provider.load_current_resource
|
161
161
|
@provider.action_create_if_missing
|
162
162
|
end
|
163
163
|
it "should create the value if the key exists but the value does not" do
|
164
|
-
@double_registry.
|
165
|
-
@double_registry.
|
164
|
+
expect(@double_registry).to receive(:get_values).with(keyname).and_return( testval2 )
|
165
|
+
expect(@double_registry).to receive(:set_value).with(keyname, testval1)
|
166
166
|
@provider.load_current_resource
|
167
167
|
@provider.action_create_if_missing
|
168
168
|
end
|
169
169
|
it "should not set the value if the key exists but the data does not match" do
|
170
|
-
@double_registry.
|
171
|
-
@double_registry.
|
170
|
+
expect(@double_registry).to receive(:get_values).with(keyname).and_return( testval1_wrong_data )
|
171
|
+
expect(@double_registry).not_to receive(:set_value)
|
172
172
|
@provider.load_current_resource
|
173
173
|
@provider.action_create_if_missing
|
174
174
|
end
|
175
175
|
it "should not set the value if the key exists but the type does not match" do
|
176
|
-
@double_registry.
|
177
|
-
@double_registry.
|
176
|
+
expect(@double_registry).to receive(:get_values).with(keyname).and_return( testval1_wrong_type )
|
177
|
+
expect(@double_registry).not_to receive(:set_value)
|
178
178
|
@provider.load_current_resource
|
179
179
|
@provider.action_create_if_missing
|
180
180
|
end
|
181
181
|
end
|
182
182
|
context "when the key does not exist" do
|
183
183
|
before(:each) do
|
184
|
-
@double_registry.
|
184
|
+
expect(@double_registry).to receive(:key_exists?).twice.with(keyname).and_return(false)
|
185
185
|
end
|
186
186
|
it "should create the key and the value" do
|
187
|
-
@double_registry.
|
188
|
-
@double_registry.
|
187
|
+
expect(@double_registry).to receive(:create_key).with(keyname, false)
|
188
|
+
expect(@double_registry).to receive(:set_value).with(keyname, testval1)
|
189
189
|
@provider.load_current_resource
|
190
190
|
@provider.action_create_if_missing
|
191
191
|
end
|
@@ -195,39 +195,39 @@ shared_examples_for "a registry key" do
|
|
195
195
|
describe "action_delete" do
|
196
196
|
context "when the key exists" do
|
197
197
|
before(:each) do
|
198
|
-
@double_registry.
|
198
|
+
expect(@double_registry).to receive(:key_exists?).twice.with(keyname).and_return(true)
|
199
199
|
end
|
200
200
|
it "deletes the value when the value exists" do
|
201
|
-
@double_registry.
|
202
|
-
@double_registry.
|
201
|
+
expect(@double_registry).to receive(:get_values).with(keyname).and_return( testval1 )
|
202
|
+
expect(@double_registry).to receive(:delete_value).with(keyname, testval1)
|
203
203
|
@provider.load_current_resource
|
204
204
|
@provider.action_delete
|
205
205
|
end
|
206
206
|
it "deletes the value when the value exists, but the type is wrong" do
|
207
|
-
@double_registry.
|
208
|
-
@double_registry.
|
207
|
+
expect(@double_registry).to receive(:get_values).with(keyname).and_return( testval1_wrong_type )
|
208
|
+
expect(@double_registry).to receive(:delete_value).with(keyname, testval1)
|
209
209
|
@provider.load_current_resource
|
210
210
|
@provider.action_delete
|
211
211
|
end
|
212
212
|
it "deletes the value when the value exists, but the data is wrong" do
|
213
|
-
@double_registry.
|
214
|
-
@double_registry.
|
213
|
+
expect(@double_registry).to receive(:get_values).with(keyname).and_return( testval1_wrong_data )
|
214
|
+
expect(@double_registry).to receive(:delete_value).with(keyname, testval1)
|
215
215
|
@provider.load_current_resource
|
216
216
|
@provider.action_delete
|
217
217
|
end
|
218
218
|
it "does not delete the value when the value does not exist" do
|
219
|
-
@double_registry.
|
220
|
-
@double_registry.
|
219
|
+
expect(@double_registry).to receive(:get_values).with(keyname).and_return( testval2 )
|
220
|
+
expect(@double_registry).not_to receive(:delete_value)
|
221
221
|
@provider.load_current_resource
|
222
222
|
@provider.action_delete
|
223
223
|
end
|
224
224
|
end
|
225
225
|
context "when the key does not exist" do
|
226
226
|
before(:each) do
|
227
|
-
@double_registry.
|
227
|
+
expect(@double_registry).to receive(:key_exists?).twice.with(keyname).and_return(false)
|
228
228
|
end
|
229
229
|
it "does nothing" do
|
230
|
-
@double_registry.
|
230
|
+
expect(@double_registry).not_to receive(:delete_value)
|
231
231
|
@provider.load_current_resource
|
232
232
|
@provider.action_delete
|
233
233
|
end
|
@@ -237,21 +237,21 @@ shared_examples_for "a registry key" do
|
|
237
237
|
describe "action_delete_key" do
|
238
238
|
context "when the key exists" do
|
239
239
|
before(:each) do
|
240
|
-
@double_registry.
|
240
|
+
expect(@double_registry).to receive(:key_exists?).twice.with(keyname).and_return(true)
|
241
241
|
end
|
242
242
|
it "deletes the key" do
|
243
|
-
@double_registry.
|
244
|
-
@double_registry.
|
243
|
+
expect(@double_registry).to receive(:get_values).with(keyname).and_return( testval1 )
|
244
|
+
expect(@double_registry).to receive(:delete_key).with(keyname, false)
|
245
245
|
@provider.load_current_resource
|
246
246
|
@provider.action_delete_key
|
247
247
|
end
|
248
248
|
end
|
249
249
|
context "when the key does not exist" do
|
250
250
|
before(:each) do
|
251
|
-
@double_registry.
|
251
|
+
expect(@double_registry).to receive(:key_exists?).twice.with(keyname).and_return(false)
|
252
252
|
end
|
253
253
|
it "does nothing" do
|
254
|
-
@double_registry.
|
254
|
+
expect(@double_registry).not_to receive(:delete_key)
|
255
255
|
@provider.load_current_resource
|
256
256
|
@provider.action_delete_key
|
257
257
|
end
|
@@ -27,7 +27,7 @@ end
|
|
27
27
|
|
28
28
|
describe Chef::Provider::RemoteDirectory do
|
29
29
|
before do
|
30
|
-
Chef::FileAccessControl.
|
30
|
+
allow_any_instance_of(Chef::FileAccessControl).to receive(:set_all)
|
31
31
|
|
32
32
|
@resource = Chef::Resource::RemoteDirectory.new(File.join(Dir.tmpdir, "tafty"))
|
33
33
|
# in CHEF_SPEC_DATA/cookbooks/openldap/files/default/remotedir
|
@@ -80,11 +80,11 @@ describe Chef::Provider::RemoteDirectory do
|
|
80
80
|
|
81
81
|
it "configures access control on intermediate directorys" do
|
82
82
|
directory_resource = @provider.send(:resource_for_directory, File.join(Dir.tmpdir, "intermediate_dir"))
|
83
|
-
directory_resource.path.
|
84
|
-
directory_resource.mode.
|
85
|
-
directory_resource.group.
|
86
|
-
directory_resource.owner.
|
87
|
-
directory_resource.recursive.
|
83
|
+
expect(directory_resource.path).to eq(File.join(Dir.tmpdir, "intermediate_dir"))
|
84
|
+
expect(directory_resource.mode).to eq("0750")
|
85
|
+
expect(directory_resource.group).to eq("wheel")
|
86
|
+
expect(directory_resource.owner).to eq("root")
|
87
|
+
expect(directory_resource.recursive).to be_true
|
88
88
|
end
|
89
89
|
|
90
90
|
it "configures access control on files in the directory" do
|
@@ -92,12 +92,12 @@ describe Chef::Provider::RemoteDirectory do
|
|
92
92
|
cookbook_file = @provider.send(:cookbook_file_resource,
|
93
93
|
"/target/destination/path.txt",
|
94
94
|
"relative/source/path.txt")
|
95
|
-
cookbook_file.cookbook_name.
|
96
|
-
cookbook_file.source.
|
97
|
-
cookbook_file.mode.
|
98
|
-
cookbook_file.group.
|
99
|
-
cookbook_file.owner.
|
100
|
-
cookbook_file.backup.
|
95
|
+
expect(cookbook_file.cookbook_name).to eq("berlin_style_tasty_cupcakes")
|
96
|
+
expect(cookbook_file.source).to eq("remotedir_root/relative/source/path.txt")
|
97
|
+
expect(cookbook_file.mode).to eq("0640")
|
98
|
+
expect(cookbook_file.group).to eq("staff")
|
99
|
+
expect(cookbook_file.owner).to eq("toor")
|
100
|
+
expect(cookbook_file.backup).to eq(23)
|
101
101
|
end
|
102
102
|
end
|
103
103
|
|
@@ -116,17 +116,17 @@ describe Chef::Provider::RemoteDirectory do
|
|
116
116
|
it "creates the toplevel directory without error " do
|
117
117
|
@resource.recursive(false)
|
118
118
|
@provider.run_action(:create)
|
119
|
-
::File.exist?(@destination_dir).
|
119
|
+
expect(::File.exist?(@destination_dir)).to be_true
|
120
120
|
end
|
121
121
|
|
122
122
|
it "transfers the directory with all contents" do
|
123
123
|
@provider.run_action(:create)
|
124
|
-
::File.exist?(@destination_dir + '/remote_dir_file1.txt').
|
125
|
-
::File.exist?(@destination_dir + '/remote_dir_file2.txt').
|
126
|
-
::File.exist?(@destination_dir + '/remotesubdir/remote_subdir_file1.txt').
|
127
|
-
::File.exist?(@destination_dir + '/remotesubdir/remote_subdir_file2.txt').
|
128
|
-
::File.exist?(@destination_dir + '/remotesubdir/.a_dotfile').
|
129
|
-
::File.exist?(@destination_dir + '/.a_dotdir/.a_dotfile_in_a_dotdir').
|
124
|
+
expect(::File.exist?(@destination_dir + '/remote_dir_file1.txt')).to be_true
|
125
|
+
expect(::File.exist?(@destination_dir + '/remote_dir_file2.txt')).to be_true
|
126
|
+
expect(::File.exist?(@destination_dir + '/remotesubdir/remote_subdir_file1.txt')).to be_true
|
127
|
+
expect(::File.exist?(@destination_dir + '/remotesubdir/remote_subdir_file2.txt')).to be_true
|
128
|
+
expect(::File.exist?(@destination_dir + '/remotesubdir/.a_dotfile')).to be_true
|
129
|
+
expect(::File.exist?(@destination_dir + '/.a_dotdir/.a_dotfile_in_a_dotdir')).to be_true
|
130
130
|
end
|
131
131
|
|
132
132
|
describe "only if it is missing" do
|
@@ -141,8 +141,8 @@ describe Chef::Provider::RemoteDirectory do
|
|
141
141
|
|
142
142
|
@provider.run_action(:create_if_missing)
|
143
143
|
|
144
|
-
file1md5.eql?(Digest::MD5.hexdigest(File.read(@destination_dir + '/remote_dir_file1.txt'))).
|
145
|
-
subdirfile1md5.eql?(Digest::MD5.hexdigest(File.read(@destination_dir + '/remotesubdir/remote_subdir_file1.txt'))).
|
144
|
+
expect(file1md5.eql?(Digest::MD5.hexdigest(File.read(@destination_dir + '/remote_dir_file1.txt')))).to be_true
|
145
|
+
expect(subdirfile1md5.eql?(Digest::MD5.hexdigest(File.read(@destination_dir + '/remotesubdir/remote_subdir_file1.txt')))).to be_true
|
146
146
|
end
|
147
147
|
end
|
148
148
|
|
@@ -155,13 +155,13 @@ describe Chef::Provider::RemoteDirectory do
|
|
155
155
|
FileUtils.touch(@destination_dir + '/remotesubdir/marked_for_death_again.txt')
|
156
156
|
@provider.run_action(:create)
|
157
157
|
|
158
|
-
::File.exist?(@destination_dir + '/remote_dir_file1.txt').
|
159
|
-
::File.exist?(@destination_dir + '/remote_dir_file2.txt').
|
160
|
-
::File.exist?(@destination_dir + '/remotesubdir/remote_subdir_file1.txt').
|
161
|
-
::File.exist?(@destination_dir + '/remotesubdir/remote_subdir_file2.txt').
|
158
|
+
expect(::File.exist?(@destination_dir + '/remote_dir_file1.txt')).to be_true
|
159
|
+
expect(::File.exist?(@destination_dir + '/remote_dir_file2.txt')).to be_true
|
160
|
+
expect(::File.exist?(@destination_dir + '/remotesubdir/remote_subdir_file1.txt')).to be_true
|
161
|
+
expect(::File.exist?(@destination_dir + '/remotesubdir/remote_subdir_file2.txt')).to be_true
|
162
162
|
|
163
|
-
::File.exist?(@destination_dir + '/marked_for_death.txt').
|
164
|
-
::File.exist?(@destination_dir + '/remotesubdir/marked_for_death_again.txt').
|
163
|
+
expect(::File.exist?(@destination_dir + '/marked_for_death.txt')).to be_false
|
164
|
+
expect(::File.exist?(@destination_dir + '/remotesubdir/marked_for_death_again.txt')).to be_false
|
165
165
|
end
|
166
166
|
|
167
167
|
it "removes files in subdirectories before files above" do
|
@@ -172,10 +172,10 @@ describe Chef::Provider::RemoteDirectory do
|
|
172
172
|
FileUtils.touch(@destination_dir + '/a/multiply/nested/baz.txt')
|
173
173
|
FileUtils.touch(@destination_dir + '/a/multiply/nested/directory/qux.txt')
|
174
174
|
@provider.run_action(:create)
|
175
|
-
::File.exist?(@destination_dir + '/a/foo.txt').
|
176
|
-
::File.exist?(@destination_dir + '/a/multiply/bar.txt').
|
177
|
-
::File.exist?(@destination_dir + '/a/multiply/nested/baz.txt').
|
178
|
-
::File.exist?(@destination_dir + '/a/multiply/nested/directory/qux.txt').
|
175
|
+
expect(::File.exist?(@destination_dir + '/a/foo.txt')).to be_false
|
176
|
+
expect(::File.exist?(@destination_dir + '/a/multiply/bar.txt')).to be_false
|
177
|
+
expect(::File.exist?(@destination_dir + '/a/multiply/nested/baz.txt')).to be_false
|
178
|
+
expect(::File.exist?(@destination_dir + '/a/multiply/nested/directory/qux.txt')).to be_false
|
179
179
|
end
|
180
180
|
|
181
181
|
it "removes directory symlinks properly", :not_supported_on_win2k3 do
|
@@ -188,12 +188,12 @@ describe Chef::Provider::RemoteDirectory do
|
|
188
188
|
Dir.mktmpdir do |tmp_dir|
|
189
189
|
begin
|
190
190
|
@fclass.file_class.symlink(tmp_dir.dup, symlinked_dir_path)
|
191
|
-
::File.exist?(symlinked_dir_path).
|
191
|
+
expect(::File.exist?(symlinked_dir_path)).to be_true
|
192
192
|
|
193
193
|
@provider.run_action
|
194
194
|
|
195
|
-
::File.exist?(symlinked_dir_path).
|
196
|
-
::File.exist?(tmp_dir).
|
195
|
+
expect(::File.exist?(symlinked_dir_path)).to be_false
|
196
|
+
expect(::File.exist?(tmp_dir)).to be_true
|
197
197
|
rescue Chef::Exceptions::Win32APIError => e
|
198
198
|
pending "This must be run as an Administrator to create symlinks"
|
199
199
|
end
|
@@ -212,8 +212,8 @@ describe Chef::Provider::RemoteDirectory do
|
|
212
212
|
file1md5 = Digest::MD5.hexdigest(::File.read(@destination_dir + '/remote_dir_file1.txt'))
|
213
213
|
subdirfile1md5 = Digest::MD5.hexdigest(::File.read(@destination_dir + '/remotesubdir/remote_subdir_file1.txt'))
|
214
214
|
@provider.run_action(:create)
|
215
|
-
file1md5.eql?(Digest::MD5.hexdigest(::File.read(@destination_dir + '/remote_dir_file1.txt'))).
|
216
|
-
subdirfile1md5.eql?(Digest::MD5.hexdigest(::File.read(@destination_dir + '/remotesubdir/remote_subdir_file1.txt'))).
|
215
|
+
expect(file1md5.eql?(Digest::MD5.hexdigest(::File.read(@destination_dir + '/remote_dir_file1.txt')))).to be_true
|
216
|
+
expect(subdirfile1md5.eql?(Digest::MD5.hexdigest(::File.read(@destination_dir + '/remotesubdir/remote_subdir_file1.txt')))).to be_true
|
217
217
|
end
|
218
218
|
end
|
219
219
|
|
@@ -44,21 +44,21 @@ describe Chef::Provider::RemoteFile::CacheControlData do
|
|
44
44
|
context "when loading data for an unknown URI" do
|
45
45
|
|
46
46
|
before do
|
47
|
-
Chef::FileCache.
|
47
|
+
expect(Chef::FileCache).to receive(:load).with(cache_path).and_raise(Chef::Exceptions::FileNotFound, "nope")
|
48
48
|
end
|
49
49
|
|
50
50
|
context "and there is no current copy of the file" do
|
51
51
|
let(:current_file_checksum) { nil }
|
52
52
|
|
53
53
|
it "returns empty cache control data" do
|
54
|
-
cache_control_data.etag.
|
55
|
-
cache_control_data.mtime.
|
54
|
+
expect(cache_control_data.etag).to be_nil
|
55
|
+
expect(cache_control_data.mtime).to be_nil
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
59
|
it "returns empty cache control data" do
|
60
|
-
cache_control_data.etag.
|
61
|
-
cache_control_data.mtime.
|
60
|
+
expect(cache_control_data.etag).to be_nil
|
61
|
+
expect(cache_control_data.mtime).to be_nil
|
62
62
|
end
|
63
63
|
|
64
64
|
context "and the URI contains a password" do
|
@@ -85,19 +85,19 @@ describe Chef::Provider::RemoteFile::CacheControlData do
|
|
85
85
|
cache["etag"] = etag
|
86
86
|
cache["mtime"] = mtime
|
87
87
|
cache["checksum"] = last_fetched_checksum
|
88
|
-
|
88
|
+
Chef::JSONCompat.to_json(cache)
|
89
89
|
end
|
90
90
|
|
91
91
|
before do
|
92
|
-
Chef::FileCache.
|
92
|
+
expect(Chef::FileCache).to receive(:load).with(cache_path).and_return(cache_json_data)
|
93
93
|
end
|
94
94
|
|
95
95
|
context "and there is no on-disk copy of the file" do
|
96
96
|
let(:current_file_checksum) { nil }
|
97
97
|
|
98
98
|
it "returns empty cache control data" do
|
99
|
-
cache_control_data.etag.
|
100
|
-
cache_control_data.mtime.
|
99
|
+
expect(cache_control_data.etag).to be_nil
|
100
|
+
expect(cache_control_data.mtime).to be_nil
|
101
101
|
end
|
102
102
|
end
|
103
103
|
|
@@ -105,16 +105,16 @@ describe Chef::Provider::RemoteFile::CacheControlData do
|
|
105
105
|
let(:current_file_checksum) { "e2a8938cc31754f6c067b35aab1d0d4864272e9bf8504536ef3e79ebf8432305" }
|
106
106
|
|
107
107
|
it "returns empty cache control data" do
|
108
|
-
cache_control_data.etag.
|
109
|
-
cache_control_data.mtime.
|
108
|
+
expect(cache_control_data.etag).to be_nil
|
109
|
+
expect(cache_control_data.mtime).to be_nil
|
110
110
|
end
|
111
111
|
end
|
112
112
|
|
113
113
|
context "and the cached checksum matches the on-disk copy" do
|
114
114
|
|
115
115
|
it "populates the cache control data" do
|
116
|
-
cache_control_data.etag.
|
117
|
-
cache_control_data.mtime.
|
116
|
+
expect(cache_control_data.etag).to eq(etag)
|
117
|
+
expect(cache_control_data.mtime).to eq(mtime)
|
118
118
|
end
|
119
119
|
end
|
120
120
|
|
@@ -122,16 +122,16 @@ describe Chef::Provider::RemoteFile::CacheControlData do
|
|
122
122
|
let(:cache_json_data) { '{"foo",,"bar" []}' }
|
123
123
|
|
124
124
|
it "returns empty cache control data" do
|
125
|
-
cache_control_data.etag.
|
126
|
-
cache_control_data.mtime.
|
125
|
+
expect(cache_control_data.etag).to be_nil
|
126
|
+
expect(cache_control_data.mtime).to be_nil
|
127
127
|
end
|
128
128
|
|
129
129
|
context "and it still is valid JSON" do
|
130
130
|
let(:cache_json_data) { '' }
|
131
131
|
|
132
132
|
it "returns empty cache control data" do
|
133
|
-
cache_control_data.etag.
|
134
|
-
cache_control_data.mtime.
|
133
|
+
expect(cache_control_data.etag).to be_nil
|
134
|
+
expect(cache_control_data.mtime).to be_nil
|
135
135
|
end
|
136
136
|
end
|
137
137
|
end
|
@@ -162,12 +162,12 @@ describe Chef::Provider::RemoteFile::CacheControlData do
|
|
162
162
|
# so we can't count on the order of the keys in the json format.
|
163
163
|
|
164
164
|
json_data = cache_control_data.json_data
|
165
|
-
Chef::JSONCompat.from_json(json_data).
|
165
|
+
expect(Chef::JSONCompat.from_json(json_data)).to eq(expected_serialization_data)
|
166
166
|
end
|
167
167
|
|
168
168
|
it "writes data to the cache" do
|
169
169
|
json_data = cache_control_data.json_data
|
170
|
-
Chef::FileCache.
|
170
|
+
expect(Chef::FileCache).to receive(:store).with(cache_path, json_data)
|
171
171
|
cache_control_data.save
|
172
172
|
end
|
173
173
|
|
@@ -178,7 +178,7 @@ describe Chef::Provider::RemoteFile::CacheControlData do
|
|
178
178
|
|
179
179
|
it "writes the data to the cache with a sanitized path name" do
|
180
180
|
json_data = cache_control_data.json_data
|
181
|
-
Chef::FileCache.
|
181
|
+
expect(Chef::FileCache).to receive(:store).with(cache_path, json_data)
|
182
182
|
cache_control_data.save
|
183
183
|
end
|
184
184
|
end
|
@@ -199,18 +199,18 @@ describe Chef::Provider::RemoteFile::CacheControlData do
|
|
199
199
|
it "truncates the file cache path to 102 characters" do
|
200
200
|
normalized_cache_path = cache_control_data.send('sanitized_cache_file_basename')
|
201
201
|
|
202
|
-
Chef::FileCache.
|
202
|
+
expect(Chef::FileCache).to receive(:store).with("remote_file/" + normalized_cache_path, cache_control_data.json_data)
|
203
203
|
|
204
204
|
cache_control_data.save
|
205
205
|
|
206
|
-
normalized_cache_path.length.
|
206
|
+
expect(normalized_cache_path.length).to eq(CACHE_FILE_PATH_LIMIT)
|
207
207
|
end
|
208
208
|
|
209
209
|
it "uses a file cache path that starts with the first #{CACHE_FILE_TRUNCATED_FRIENDLY_FILE_NAME_LENGTH} characters of the URI" do
|
210
210
|
normalized_cache_path = cache_control_data.send('sanitized_cache_file_basename')
|
211
211
|
|
212
|
-
truncated_file_cache_path.length.
|
213
|
-
normalized_cache_path.start_with?(truncated_file_cache_path).
|
212
|
+
expect(truncated_file_cache_path.length).to eq(CACHE_FILE_TRUNCATED_FRIENDLY_FILE_NAME_LENGTH)
|
213
|
+
expect(normalized_cache_path.start_with?(truncated_file_cache_path)).to eq(true)
|
214
214
|
end
|
215
215
|
end
|
216
216
|
|