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
@@ -34,30 +34,30 @@ describe Chef::Provider::Mount::Mount do
|
|
34
34
|
|
35
35
|
@provider = Chef::Provider::Mount::Mount.new(@new_resource, @run_context)
|
36
36
|
|
37
|
-
::File.
|
38
|
-
::File.
|
39
|
-
::File.
|
40
|
-
::File.
|
37
|
+
allow(::File).to receive(:exists?).with("/dev/sdz1").and_return true
|
38
|
+
allow(::File).to receive(:exists?).with("/tmp/foo").and_return true
|
39
|
+
allow(::File).to receive(:realpath).with("/dev/sdz1").and_return "/dev/sdz1"
|
40
|
+
allow(::File).to receive(:realpath).with("/tmp/foo").and_return "/tmp/foo"
|
41
41
|
end
|
42
42
|
|
43
43
|
describe "when discovering the current fs state" do
|
44
44
|
before do
|
45
|
-
@provider.
|
46
|
-
::File.
|
45
|
+
allow(@provider).to receive(:shell_out!).and_return(OpenStruct.new(:stdout => ''))
|
46
|
+
allow(::File).to receive(:foreach).with("/etc/fstab")
|
47
47
|
end
|
48
48
|
|
49
49
|
it "should create a current resource with the same mount point and device" do
|
50
50
|
@provider.load_current_resource
|
51
|
-
@provider.current_resource.name.
|
52
|
-
@provider.current_resource.mount_point.
|
53
|
-
@provider.current_resource.device.
|
51
|
+
expect(@provider.current_resource.name).to eq('/tmp/foo')
|
52
|
+
expect(@provider.current_resource.mount_point).to eq('/tmp/foo')
|
53
|
+
expect(@provider.current_resource.device).to eq('/dev/sdz1')
|
54
54
|
end
|
55
55
|
|
56
56
|
it "should accecpt device_type :uuid", :not_supported_on_solaris do
|
57
57
|
@new_resource.device_type :uuid
|
58
58
|
@new_resource.device "d21afe51-a0fe-4dc6-9152-ac733763ae0a"
|
59
59
|
@stdout_findfs = double("STDOUT", :first => "/dev/sdz1")
|
60
|
-
@provider.
|
60
|
+
expect(@provider).to receive(:popen4).with("/sbin/findfs UUID=d21afe51-a0fe-4dc6-9152-ac733763ae0a").and_yield(@pid,@stdin,@stdout_findfs,@stderr).and_return(@status)
|
61
61
|
@provider.load_current_resource()
|
62
62
|
@provider.mountable?
|
63
63
|
end
|
@@ -67,28 +67,28 @@ describe Chef::Provider::Mount::Mount do
|
|
67
67
|
"cifs" => "//cifsserver/share" }.each do |type, fs_spec|
|
68
68
|
it "should detect network fs_spec (#{type})" do
|
69
69
|
@new_resource.device fs_spec
|
70
|
-
@provider.network_device
|
70
|
+
expect(@provider.network_device?).to be_true
|
71
71
|
end
|
72
72
|
|
73
73
|
it "should ignore trailing slash and set mounted to true for network mount (#{type})" do
|
74
74
|
@new_resource.device fs_spec
|
75
|
-
@provider.
|
75
|
+
allow(@provider).to receive(:shell_out!).and_return(OpenStruct.new(:stdout => "#{fs_spec}/ on /tmp/foo type #{type} (rw)\n"))
|
76
76
|
@provider.load_current_resource
|
77
|
-
@provider.current_resource.mounted.
|
77
|
+
expect(@provider.current_resource.mounted).to be_true
|
78
78
|
end
|
79
79
|
end
|
80
80
|
end
|
81
81
|
|
82
82
|
it "should raise an error if the mount device does not exist" do
|
83
|
-
::File.
|
84
|
-
|
83
|
+
allow(::File).to receive(:exists?).with("/dev/sdz1").and_return false
|
84
|
+
expect { @provider.load_current_resource();@provider.mountable? }.to raise_error(Chef::Exceptions::Mount)
|
85
85
|
end
|
86
86
|
|
87
87
|
it "should not call mountable? with load_current_resource - CHEF-1565" do
|
88
|
-
::File.
|
89
|
-
@provider.
|
90
|
-
@provider.
|
91
|
-
@provider.
|
88
|
+
allow(::File).to receive(:exists?).with("/dev/sdz1").and_return false
|
89
|
+
expect(@provider).to receive(:mounted?).and_return(true)
|
90
|
+
expect(@provider).to receive(:enabled?).and_return(true)
|
91
|
+
expect(@provider).not_to receive(:mountable?)
|
92
92
|
@provider.load_current_resource
|
93
93
|
end
|
94
94
|
|
@@ -97,55 +97,51 @@ describe Chef::Provider::Mount::Mount do
|
|
97
97
|
@new_resource.device "d21afe51-a0fe-4dc6-9152-ac733763ae0a"
|
98
98
|
status_findfs = double("Status", :exitstatus => 1)
|
99
99
|
stdout_findfs = double("STDOUT", :first => nil)
|
100
|
-
@provider.
|
101
|
-
::File.
|
102
|
-
|
100
|
+
expect(@provider).to receive(:popen4).with("/sbin/findfs UUID=d21afe51-a0fe-4dc6-9152-ac733763ae0a").and_yield(@pid,@stdin,stdout_findfs,@stderr).and_return(status_findfs)
|
101
|
+
expect(::File).to receive(:exists?).with("").and_return(false)
|
102
|
+
expect { @provider.load_current_resource();@provider.mountable? }.to raise_error(Chef::Exceptions::Mount)
|
103
103
|
end
|
104
104
|
|
105
105
|
it "should raise an error if the mount point does not exist" do
|
106
|
-
::File.
|
107
|
-
|
106
|
+
allow(::File).to receive(:exists?).with("/tmp/foo").and_return false
|
107
|
+
expect { @provider.load_current_resource();@provider.mountable? }.to raise_error(Chef::Exceptions::Mount)
|
108
108
|
end
|
109
109
|
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
it "does not expect the device to exist for Fuse filesystems" do
|
117
|
-
@new_resource.fstype("fuse")
|
118
|
-
@new_resource.device("nilfs#xxx")
|
119
|
-
lambda { @provider.load_current_resource();@provider.mountable? }.should_not raise_error
|
110
|
+
[ "tmpfs", "fuse", "cgroup" ].each do |fstype|
|
111
|
+
it "does not expect the device to exist for #{fstype}" do
|
112
|
+
@new_resource.fstype(fstype)
|
113
|
+
@new_resource.device("whatever")
|
114
|
+
expect { @provider.load_current_resource();@provider.mountable? }.not_to raise_error
|
115
|
+
end
|
120
116
|
end
|
121
117
|
|
122
118
|
it "does not expect the device to exist if it's none" do
|
123
119
|
@new_resource.device("none")
|
124
|
-
|
120
|
+
expect { @provider.load_current_resource();@provider.mountable? }.not_to raise_error
|
125
121
|
end
|
126
122
|
|
127
123
|
it "should set mounted true if the mount point is found in the mounts list" do
|
128
|
-
@provider.
|
124
|
+
allow(@provider).to receive(:shell_out!).and_return(OpenStruct.new(:stdout => "/dev/sdz1 on /tmp/foo type ext3 (rw)\n"))
|
129
125
|
@provider.load_current_resource()
|
130
|
-
@provider.current_resource.mounted.
|
126
|
+
expect(@provider.current_resource.mounted).to be_true
|
131
127
|
end
|
132
128
|
|
133
129
|
it "should set mounted false if another mount point beginning with the same path is found in the mounts list" do
|
134
|
-
@provider.
|
130
|
+
allow(@provider).to receive(:shell_out!).and_return(OpenStruct.new(:stdout => "/dev/sdz1 on /tmp/foobar type ext3 (rw)\n"))
|
135
131
|
@provider.load_current_resource()
|
136
|
-
@provider.current_resource.mounted.
|
132
|
+
expect(@provider.current_resource.mounted).to be_false
|
137
133
|
end
|
138
134
|
|
139
135
|
it "should set mounted true if the symlink target of the device is found in the mounts list" do
|
140
136
|
# expand the target path to correct specs on Windows
|
141
137
|
target = ::File.expand_path('/dev/mapper/target')
|
142
138
|
|
143
|
-
::File.
|
144
|
-
::File.
|
139
|
+
allow(::File).to receive(:symlink?).with("#{@new_resource.device}").and_return(true)
|
140
|
+
allow(::File).to receive(:readlink).with("#{@new_resource.device}").and_return(target)
|
145
141
|
|
146
|
-
@provider.
|
142
|
+
allow(@provider).to receive(:shell_out!).and_return(OpenStruct.new(:stdout => "#{target} on /tmp/foo type ext3 (rw)\n"))
|
147
143
|
@provider.load_current_resource()
|
148
|
-
@provider.current_resource.mounted.
|
144
|
+
expect(@provider.current_resource.mounted).to be_true
|
149
145
|
end
|
150
146
|
|
151
147
|
it "should set mounted true if the symlink target of the device is relative and is found in the mounts list - CHEF-4957" do
|
@@ -154,109 +150,109 @@ describe Chef::Provider::Mount::Mount do
|
|
154
150
|
# expand the target path to correct specs on Windows
|
155
151
|
absolute_target = ::File.expand_path("/dev/xsdz1")
|
156
152
|
|
157
|
-
::File.
|
158
|
-
::File.
|
153
|
+
allow(::File).to receive(:symlink?).with("#{@new_resource.device}").and_return(true)
|
154
|
+
allow(::File).to receive(:readlink).with("#{@new_resource.device}").and_return(target)
|
159
155
|
|
160
|
-
@provider.
|
156
|
+
allow(@provider).to receive(:shell_out!).and_return(OpenStruct.new(:stdout => "#{absolute_target} on /tmp/foo type ext3 (rw)\n"))
|
161
157
|
@provider.load_current_resource()
|
162
|
-
@provider.current_resource.mounted.
|
158
|
+
expect(@provider.current_resource.mounted).to be_true
|
163
159
|
end
|
164
160
|
|
165
161
|
it "should set mounted true if the mount point is found last in the mounts list" do
|
166
162
|
mount = "/dev/sdy1 on #{@new_resource.mount_point} type ext3 (rw)\n"
|
167
163
|
mount << "#{@new_resource.device} on #{@new_resource.mount_point} type ext3 (rw)\n"
|
168
164
|
|
169
|
-
@provider.
|
165
|
+
allow(@provider).to receive(:shell_out!).and_return(OpenStruct.new(:stdout => mount))
|
170
166
|
@provider.load_current_resource()
|
171
|
-
@provider.current_resource.mounted.
|
167
|
+
expect(@provider.current_resource.mounted).to be_true
|
172
168
|
end
|
173
169
|
|
174
170
|
it "should set mounted false if the mount point is not last in the mounts list" do
|
175
171
|
mount = "#{@new_resource.device} on #{@new_resource.mount_point} type ext3 (rw)\n"
|
176
172
|
mount << "/dev/sdy1 on #{@new_resource.mount_point} type ext3 (rw)\n"
|
177
173
|
|
178
|
-
@provider.
|
174
|
+
allow(@provider).to receive(:shell_out!).and_return(OpenStruct.new(:stdout => mount))
|
179
175
|
@provider.load_current_resource()
|
180
|
-
@provider.current_resource.mounted.
|
176
|
+
expect(@provider.current_resource.mounted).to be_false
|
181
177
|
end
|
182
178
|
|
183
179
|
it "mounted should be false if the mount point is not found in the mounts list" do
|
184
|
-
@provider.
|
180
|
+
allow(@provider).to receive(:shell_out!).and_return(OpenStruct.new(:stdout => "/dev/sdy1 on /tmp/foo type ext3 (rw)\n"))
|
185
181
|
@provider.load_current_resource()
|
186
|
-
@provider.current_resource.mounted.
|
182
|
+
expect(@provider.current_resource.mounted).to be_false
|
187
183
|
end
|
188
184
|
|
189
185
|
it "should set enabled to true if the mount point is last in fstab" do
|
190
186
|
fstab1 = "/dev/sdy1 /tmp/foo ext3 defaults 1 2\n"
|
191
187
|
fstab2 = "#{@new_resource.device} #{@new_resource.mount_point} ext3 defaults 1 2\n"
|
192
188
|
|
193
|
-
::File.
|
189
|
+
allow(::File).to receive(:foreach).with("/etc/fstab").and_yield(fstab1).and_yield(fstab2)
|
194
190
|
|
195
191
|
@provider.load_current_resource
|
196
|
-
@provider.current_resource.enabled.
|
192
|
+
expect(@provider.current_resource.enabled).to be_true
|
197
193
|
end
|
198
194
|
|
199
195
|
it "should set enabled to true if the mount point is not last in fstab and mount_point is a substring of another mount" do
|
200
196
|
fstab1 = "#{@new_resource.device} #{@new_resource.mount_point} ext3 defaults 1 2\n"
|
201
197
|
fstab2 = "/dev/sdy1 /tmp/foo/bar ext3 defaults 1 2\n"
|
202
198
|
|
203
|
-
::File.
|
199
|
+
allow(::File).to receive(:foreach).with("/etc/fstab").and_yield(fstab1).and_yield(fstab2)
|
204
200
|
|
205
201
|
@provider.load_current_resource
|
206
|
-
@provider.current_resource.enabled.
|
202
|
+
expect(@provider.current_resource.enabled).to be_true
|
207
203
|
end
|
208
204
|
|
209
205
|
it "should set enabled to true if the symlink target is in fstab" do
|
210
206
|
target = "/dev/mapper/target"
|
211
207
|
|
212
|
-
::File.
|
213
|
-
::File.
|
208
|
+
allow(::File).to receive(:symlink?).with("#{@new_resource.device}").and_return(true)
|
209
|
+
allow(::File).to receive(:readlink).with("#{@new_resource.device}").and_return(target)
|
214
210
|
|
215
211
|
fstab = "/dev/sdz1 /tmp/foo ext3 defaults 1 2\n"
|
216
212
|
|
217
|
-
::File.
|
213
|
+
allow(::File).to receive(:foreach).with("/etc/fstab").and_yield fstab
|
218
214
|
|
219
215
|
@provider.load_current_resource
|
220
|
-
@provider.current_resource.enabled.
|
216
|
+
expect(@provider.current_resource.enabled).to be_true
|
221
217
|
end
|
222
218
|
|
223
219
|
it "should set enabled to true if the symlink target is relative and is in fstab - CHEF-4957" do
|
224
220
|
target = "xsdz1"
|
225
221
|
|
226
|
-
::File.
|
227
|
-
::File.
|
222
|
+
allow(::File).to receive(:symlink?).with("#{@new_resource.device}").and_return(true)
|
223
|
+
allow(::File).to receive(:readlink).with("#{@new_resource.device}").and_return(target)
|
228
224
|
|
229
225
|
fstab = "/dev/sdz1 /tmp/foo ext3 defaults 1 2\n"
|
230
226
|
|
231
|
-
::File.
|
227
|
+
allow(::File).to receive(:foreach).with("/etc/fstab").and_yield fstab
|
232
228
|
|
233
229
|
@provider.load_current_resource
|
234
|
-
@provider.current_resource.enabled.
|
230
|
+
expect(@provider.current_resource.enabled).to be_true
|
235
231
|
end
|
236
232
|
|
237
233
|
it "should set enabled to false if the mount point is not in fstab" do
|
238
234
|
fstab = "/dev/sdy1 #{@new_resource.mount_point} ext3 defaults 1 2\n"
|
239
|
-
::File.
|
235
|
+
allow(::File).to receive(:foreach).with("/etc/fstab").and_yield fstab
|
240
236
|
|
241
237
|
@provider.load_current_resource
|
242
|
-
@provider.current_resource.enabled.
|
238
|
+
expect(@provider.current_resource.enabled).to be_false
|
243
239
|
end
|
244
240
|
|
245
241
|
it "should ignore commented lines in fstab " do
|
246
242
|
fstab = "\# #{@new_resource.device} #{@new_resource.mount_point} ext3 defaults 1 2\n"
|
247
|
-
::File.
|
243
|
+
allow(::File).to receive(:foreach).with("/etc/fstab").and_yield fstab
|
248
244
|
|
249
245
|
@provider.load_current_resource
|
250
|
-
@provider.current_resource.enabled.
|
246
|
+
expect(@provider.current_resource.enabled).to be_false
|
251
247
|
end
|
252
248
|
|
253
249
|
it "should set enabled to false if the mount point is not last in fstab" do
|
254
250
|
line_1 = "#{@new_resource.device} #{@new_resource.mount_point} ext3 defaults 1 2\n"
|
255
251
|
line_2 = "/dev/sdy1 #{@new_resource.mount_point} ext3 defaults 1 2\n"
|
256
|
-
::File.
|
252
|
+
allow(::File).to receive(:foreach).with("/etc/fstab").and_yield(line_1).and_yield(line_2)
|
257
253
|
|
258
254
|
@provider.load_current_resource
|
259
|
-
@provider.current_resource.enabled.
|
255
|
+
expect(@provider.current_resource.enabled).to be_false
|
260
256
|
end
|
261
257
|
|
262
258
|
it "should not mangle the mount options if the device in fstab is a symlink" do
|
@@ -264,26 +260,26 @@ describe Chef::Provider::Mount::Mount do
|
|
264
260
|
target = "/dev/mapper/target"
|
265
261
|
options = "rw,noexec,noauto"
|
266
262
|
|
267
|
-
::File.
|
268
|
-
::File.
|
263
|
+
allow(::File).to receive(:symlink?).with(@new_resource.device).and_return(true)
|
264
|
+
allow(::File).to receive(:readlink).with(@new_resource.device).and_return(target)
|
269
265
|
|
270
266
|
fstab = "#{@new_resource.device} #{@new_resource.mount_point} #{@new_resource.fstype} #{options} 1 2\n"
|
271
|
-
::File.
|
267
|
+
allow(::File).to receive(:foreach).with("/etc/fstab").and_yield fstab
|
272
268
|
@provider.load_current_resource
|
273
|
-
@provider.current_resource.options.
|
269
|
+
expect(@provider.current_resource.options).to eq(options.split(','))
|
274
270
|
end
|
275
271
|
|
276
272
|
it "should not mangle the mount options if the symlink target is in fstab" do
|
277
273
|
target = ::File.expand_path("/dev/mapper/target")
|
278
274
|
options = "rw,noexec,noauto"
|
279
275
|
|
280
|
-
::File.
|
281
|
-
::File.
|
276
|
+
allow(::File).to receive(:symlink?).with(@new_resource.device).and_return(true)
|
277
|
+
allow(::File).to receive(:readlink).with(@new_resource.device).and_return(target)
|
282
278
|
|
283
279
|
fstab = "#{target} #{@new_resource.mount_point} #{@new_resource.fstype} #{options} 1 2\n"
|
284
|
-
::File.
|
280
|
+
allow(::File).to receive(:foreach).with("/etc/fstab").and_yield fstab
|
285
281
|
@provider.load_current_resource
|
286
|
-
@provider.current_resource.options.
|
282
|
+
expect(@provider.current_resource.options).to eq(options.split(','))
|
287
283
|
end
|
288
284
|
end
|
289
285
|
|
@@ -299,14 +295,14 @@ describe Chef::Provider::Mount::Mount do
|
|
299
295
|
|
300
296
|
describe "mount_fs" do
|
301
297
|
it "should mount the filesystem if it is not mounted" do
|
302
|
-
@provider.
|
298
|
+
expect(@provider).to receive(:shell_out!).with("mount -t ext3 -o defaults /dev/sdz1 /tmp/foo")
|
303
299
|
@provider.mount_fs()
|
304
300
|
end
|
305
301
|
|
306
302
|
it "should mount the filesystem with options if options were passed" do
|
307
303
|
options = "rw,noexec,noauto"
|
308
304
|
@new_resource.options(%w{rw noexec noauto})
|
309
|
-
@provider.
|
305
|
+
expect(@provider).to receive(:shell_out!).with("mount -t ext3 -o rw,noexec,noauto /dev/sdz1 /tmp/foo")
|
310
306
|
@provider.mount_fs()
|
311
307
|
end
|
312
308
|
|
@@ -314,16 +310,16 @@ describe Chef::Provider::Mount::Mount do
|
|
314
310
|
@new_resource.device "d21afe51-a0fe-4dc6-9152-ac733763ae0a"
|
315
311
|
@new_resource.device_type :uuid
|
316
312
|
@stdout_findfs = double("STDOUT", :first => "/dev/sdz1")
|
317
|
-
@provider.
|
313
|
+
allow(@provider).to receive(:popen4).with("/sbin/findfs UUID=d21afe51-a0fe-4dc6-9152-ac733763ae0a").and_yield(@pid,@stdin,@stdout_findfs,@stderr).and_return(@status)
|
318
314
|
@stdout_mock = double('stdout mock')
|
319
|
-
@stdout_mock.
|
320
|
-
@provider.
|
315
|
+
allow(@stdout_mock).to receive(:each).and_yield("#{@new_resource.device} on #{@new_resource.mount_point}")
|
316
|
+
expect(@provider).to receive(:shell_out!).with("mount -t #{@new_resource.fstype} -o defaults -U #{@new_resource.device} #{@new_resource.mount_point}").and_return(@stdout_mock)
|
321
317
|
@provider.mount_fs()
|
322
318
|
end
|
323
319
|
|
324
320
|
it "should not mount the filesystem if it is mounted" do
|
325
|
-
@current_resource.
|
326
|
-
@provider.
|
321
|
+
allow(@current_resource).to receive(:mounted).and_return(true)
|
322
|
+
expect(@provider).not_to receive(:shell_out!)
|
327
323
|
@provider.mount_fs()
|
328
324
|
end
|
329
325
|
|
@@ -332,13 +328,13 @@ describe Chef::Provider::Mount::Mount do
|
|
332
328
|
describe "umount_fs" do
|
333
329
|
it "should umount the filesystem if it is mounted" do
|
334
330
|
@current_resource.mounted(true)
|
335
|
-
@provider.
|
331
|
+
expect(@provider).to receive(:shell_out!).with("umount /tmp/foo")
|
336
332
|
@provider.umount_fs()
|
337
333
|
end
|
338
334
|
|
339
335
|
it "should not umount the filesystem if it is not mounted" do
|
340
336
|
@current_resource.mounted(false)
|
341
|
-
@provider.
|
337
|
+
expect(@provider).not_to receive(:shell_out!)
|
342
338
|
@provider.umount_fs()
|
343
339
|
end
|
344
340
|
end
|
@@ -347,7 +343,7 @@ describe Chef::Provider::Mount::Mount do
|
|
347
343
|
it "should use mount -o remount if remount is supported" do
|
348
344
|
@new_resource.supports({:remount => true})
|
349
345
|
@current_resource.mounted(true)
|
350
|
-
@provider.
|
346
|
+
expect(@provider).to receive(:shell_out!).with("mount -o remount,defaults #{@new_resource.mount_point}")
|
351
347
|
@provider.remount_fs
|
352
348
|
end
|
353
349
|
|
@@ -356,24 +352,24 @@ describe Chef::Provider::Mount::Mount do
|
|
356
352
|
options = "rw,noexec,noauto"
|
357
353
|
@new_resource.options(%w{rw noexec noauto})
|
358
354
|
@current_resource.mounted(true)
|
359
|
-
@provider.
|
355
|
+
expect(@provider).to receive(:shell_out!).with("mount -o remount,rw,noexec,noauto #{@new_resource.mount_point}")
|
360
356
|
@provider.remount_fs
|
361
357
|
end
|
362
358
|
|
363
359
|
it "should umount and mount if remount is not supported" do
|
364
360
|
@new_resource.supports({:remount => false})
|
365
361
|
@current_resource.mounted(true)
|
366
|
-
@provider.
|
367
|
-
@provider.
|
368
|
-
@provider.
|
362
|
+
expect(@provider).to receive(:umount_fs)
|
363
|
+
expect(@provider).to receive(:sleep).with(1)
|
364
|
+
expect(@provider).to receive(:mount_fs)
|
369
365
|
@provider.remount_fs()
|
370
366
|
end
|
371
367
|
|
372
368
|
it "should not try to remount at all if mounted is false" do
|
373
369
|
@current_resource.mounted(false)
|
374
|
-
@provider.
|
375
|
-
@provider.
|
376
|
-
@provider.
|
370
|
+
expect(@provider).not_to receive(:shell_out!)
|
371
|
+
expect(@provider).not_to receive(:umount_fs)
|
372
|
+
expect(@provider).not_to receive(:mount_fs)
|
377
373
|
@provider.remount_fs()
|
378
374
|
end
|
379
375
|
end
|
@@ -383,9 +379,9 @@ describe Chef::Provider::Mount::Mount do
|
|
383
379
|
@current_resource.enabled(false)
|
384
380
|
|
385
381
|
@fstab = StringIO.new
|
386
|
-
::File.
|
382
|
+
allow(::File).to receive(:open).with("/etc/fstab", "a").and_yield(@fstab)
|
387
383
|
@provider.enable_fs
|
388
|
-
@fstab.string.
|
384
|
+
expect(@fstab.string).to match(%r{^/dev/sdz1\s+/tmp/foo\s+ext3\s+defaults\s+0\s+2\s*$})
|
389
385
|
end
|
390
386
|
|
391
387
|
it "should not enable if enabled is true and resources match" do
|
@@ -394,7 +390,7 @@ describe Chef::Provider::Mount::Mount do
|
|
394
390
|
@current_resource.options(["defaults"])
|
395
391
|
@current_resource.dump(0)
|
396
392
|
@current_resource.pass(2)
|
397
|
-
::File.
|
393
|
+
expect(::File).not_to receive(:open).with("/etc/fstab", "a")
|
398
394
|
|
399
395
|
@provider.enable_fs
|
400
396
|
end
|
@@ -406,9 +402,9 @@ describe Chef::Provider::Mount::Mount do
|
|
406
402
|
@current_resource.dump(0)
|
407
403
|
@current_resource.pass(2)
|
408
404
|
@fstab = StringIO.new
|
409
|
-
::File.
|
410
|
-
::File.
|
411
|
-
::File.
|
405
|
+
allow(::File).to receive(:readlines).and_return([])
|
406
|
+
expect(::File).to receive(:open).once.with("/etc/fstab", "w").and_yield(@fstab)
|
407
|
+
expect(::File).to receive(:open).once.with("/etc/fstab", "a").and_yield(@fstab)
|
412
408
|
|
413
409
|
@provider.enable_fs
|
414
410
|
end
|
@@ -422,13 +418,13 @@ describe Chef::Provider::Mount::Mount do
|
|
422
418
|
this_mount = "/dev/sdz1 /tmp/foo ext3 defaults 1 2\n"
|
423
419
|
|
424
420
|
@fstab_read = [this_mount, other_mount]
|
425
|
-
::File.
|
421
|
+
allow(::File).to receive(:readlines).with("/etc/fstab").and_return(@fstab_read)
|
426
422
|
@fstab_write = StringIO.new
|
427
|
-
::File.
|
423
|
+
allow(::File).to receive(:open).with("/etc/fstab", "w").and_yield(@fstab_write)
|
428
424
|
|
429
425
|
@provider.disable_fs
|
430
|
-
@fstab_write.string.
|
431
|
-
@fstab_write.string.
|
426
|
+
expect(@fstab_write.string).to match(Regexp.escape(other_mount))
|
427
|
+
expect(@fstab_write.string).not_to match(Regexp.escape(this_mount))
|
432
428
|
end
|
433
429
|
|
434
430
|
it "should disable if enabled is true and ignore commented lines" do
|
@@ -439,37 +435,37 @@ describe Chef::Provider::Mount::Mount do
|
|
439
435
|
%q{#/dev/sdz1 /tmp/foo ext3 defaults 1 2}]
|
440
436
|
fstab_write = StringIO.new
|
441
437
|
|
442
|
-
::File.
|
443
|
-
::File.
|
438
|
+
allow(::File).to receive(:readlines).with("/etc/fstab").and_return(fstab_read)
|
439
|
+
allow(::File).to receive(:open).with("/etc/fstab", "w").and_yield(fstab_write)
|
444
440
|
|
445
441
|
@provider.disable_fs
|
446
|
-
fstab_write.string.
|
447
|
-
fstab_write.string.
|
448
|
-
fstab_write.string.
|
442
|
+
expect(fstab_write.string).to match(%r{^/dev/sdy1 /tmp/foo ext3 defaults 1 2$})
|
443
|
+
expect(fstab_write.string).to match(%r{^#/dev/sdz1 /tmp/foo ext3 defaults 1 2$})
|
444
|
+
expect(fstab_write.string).not_to match(%r{^/dev/sdz1 /tmp/foo ext3 defaults 1 2$})
|
449
445
|
end
|
450
446
|
|
451
447
|
it "should disable only the last entry if enabled is true" do
|
452
|
-
@current_resource.
|
448
|
+
allow(@current_resource).to receive(:enabled).and_return(true)
|
453
449
|
fstab_read = ["/dev/sdz1 /tmp/foo ext3 defaults 1 2\n",
|
454
450
|
"/dev/sdy1 /tmp/foo ext3 defaults 1 2\n",
|
455
451
|
"/dev/sdz1 /tmp/foo ext3 defaults 1 2\n",
|
456
452
|
"/dev/sdz1 /tmp/foobar ext3 defaults 1 2\n"]
|
457
453
|
|
458
454
|
fstab_write = StringIO.new
|
459
|
-
::File.
|
460
|
-
::File.
|
455
|
+
allow(::File).to receive(:readlines).with("/etc/fstab").and_return(fstab_read)
|
456
|
+
allow(::File).to receive(:open).with("/etc/fstab", "w").and_yield(fstab_write)
|
461
457
|
|
462
458
|
@provider.disable_fs
|
463
|
-
fstab_write.string.
|
459
|
+
expect(fstab_write.string).to eq("/dev/sdz1 /tmp/foo ext3 defaults 1 2\n" +
|
464
460
|
"/dev/sdy1 /tmp/foo ext3 defaults 1 2\n" +
|
465
|
-
"/dev/sdz1 /tmp/foobar ext3 defaults 1 2\n"
|
461
|
+
"/dev/sdz1 /tmp/foobar ext3 defaults 1 2\n")
|
466
462
|
end
|
467
463
|
|
468
464
|
it "should not disable if enabled is false" do
|
469
|
-
@current_resource.
|
465
|
+
allow(@current_resource).to receive(:enabled).and_return(false)
|
470
466
|
|
471
|
-
::File.
|
472
|
-
::File.
|
467
|
+
allow(::File).to receive(:readlines).with("/etc/fstab").and_return([])
|
468
|
+
expect(::File).not_to receive(:open).and_yield(@fstab)
|
473
469
|
|
474
470
|
@provider.disable_fs
|
475
471
|
end
|