chef 14.14.29-universal-mingw32 → 14.15.6-universal-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/README.md +18 -7
- data/Rakefile +7 -4
- data/chef.gemspec +1 -1
- data/lib/chef/knife/ssh.rb +6 -0
- data/lib/chef/provider/ifconfig.rb +14 -5
- data/lib/chef/provider/windows_task.rb +9 -5
- data/lib/chef/resource/kernel_module.rb +61 -0
- data/lib/chef/resource/windows_task.rb +4 -0
- data/lib/chef/version.rb +1 -1
- data/spec/data/cookbooks/openldap/metadata.rb +2 -2
- data/spec/data/metadata/quick_start/metadata.rb +2 -7
- data/spec/functional/audit/runner_spec.rb +1 -1
- data/spec/functional/dsl/reboot_pending_spec.rb +7 -25
- data/spec/functional/event_loggers/windows_eventlog_spec.rb +6 -4
- data/spec/functional/file_content_management/deploy_strategies_spec.rb +21 -21
- data/spec/functional/knife/exec_spec.rb +1 -1
- data/spec/functional/knife/ssh_spec.rb +3 -3
- data/spec/functional/mixin/user_context_spec.rb +3 -1
- data/spec/functional/rebooter_spec.rb +1 -1
- data/spec/functional/resource/aix_service_spec.rb +1 -1
- data/spec/functional/resource/aixinit_service_spec.rb +1 -1
- data/spec/functional/resource/apt_package_spec.rb +1 -1
- data/spec/functional/resource/chocolatey_package_spec.rb +2 -2
- data/spec/functional/resource/cookbook_file_spec.rb +1 -3
- data/spec/functional/resource/cron_spec.rb +4 -3
- data/spec/functional/resource/dpkg_package_spec.rb +4 -4
- data/spec/functional/resource/dsc_resource_spec.rb +2 -1
- data/spec/functional/resource/dsc_script_spec.rb +16 -20
- data/spec/functional/resource/execute_spec.rb +2 -2
- data/spec/functional/resource/git_spec.rb +6 -6
- data/spec/functional/resource/group_spec.rb +8 -6
- data/spec/functional/resource/ifconfig_spec.rb +3 -5
- data/spec/functional/resource/link_spec.rb +2 -2
- data/spec/functional/resource/mount_spec.rb +3 -7
- data/spec/functional/resource/powershell_script_spec.rb +9 -8
- data/spec/functional/resource/reboot_spec.rb +1 -1
- data/spec/functional/resource/remote_file_spec.rb +2 -2
- data/spec/functional/resource/template_spec.rb +1 -1
- data/spec/functional/resource/user/windows_spec.rb +2 -2
- data/spec/functional/resource/windows_certificate_spec.rb +3 -3
- data/spec/functional/resource/windows_service_spec.rb +3 -3
- data/spec/functional/resource/windows_task_spec.rb +51 -0
- data/spec/functional/run_lock_spec.rb +10 -3
- data/spec/functional/shell_spec.rb +1 -1
- data/spec/functional/util/powershell/cmdlet_spec.rb +1 -1
- data/spec/functional/version_spec.rb +1 -1
- data/spec/functional/win32/security_spec.rb +12 -7
- data/spec/functional/win32/service_manager_spec.rb +1 -1
- data/spec/functional/win32/version_info_spec.rb +4 -4
- data/spec/integration/client/client_spec.rb +114 -132
- data/spec/integration/client/exit_code_spec.rb +8 -8
- data/spec/integration/client/ipv6_spec.rb +5 -5
- data/spec/integration/knife/chef_fs_data_store_spec.rb +38 -38
- data/spec/integration/knife/chef_repo_path_spec.rb +42 -42
- data/spec/integration/knife/chef_repository_file_system_spec.rb +9 -9
- data/spec/integration/knife/chefignore_spec.rb +13 -13
- data/spec/integration/knife/client_bulk_delete_spec.rb +8 -8
- data/spec/integration/knife/client_create_spec.rb +1 -1
- data/spec/integration/knife/client_delete_spec.rb +4 -4
- data/spec/integration/knife/client_key_delete_spec.rb +1 -1
- data/spec/integration/knife/client_key_list_spec.rb +1 -1
- data/spec/integration/knife/client_list_spec.rb +1 -1
- data/spec/integration/knife/common_options_spec.rb +1 -1
- data/spec/integration/knife/config_get_spec.rb +1 -1
- data/spec/integration/knife/config_list_profiles_spec.rb +2 -1
- data/spec/integration/knife/cookbook_api_ipv6_spec.rb +3 -3
- data/spec/integration/knife/cookbook_bulk_delete_spec.rb +3 -3
- data/spec/integration/knife/cookbook_download_spec.rb +4 -4
- data/spec/integration/knife/cookbook_list_spec.rb +2 -2
- data/spec/integration/knife/cookbook_show_spec.rb +3 -3
- data/spec/integration/knife/cookbook_upload_spec.rb +6 -6
- data/spec/integration/knife/data_bag_delete_spec.rb +4 -4
- data/spec/integration/knife/data_bag_from_file_spec.rb +7 -7
- data/spec/integration/knife/data_bag_list_spec.rb +1 -1
- data/spec/integration/knife/delete_spec.rb +37 -37
- data/spec/integration/knife/deps_spec.rb +23 -23
- data/spec/integration/knife/diff_spec.rb +23 -23
- data/spec/integration/knife/download_spec.rb +79 -79
- data/spec/integration/knife/environment_compare_spec.rb +3 -3
- data/spec/integration/knife/environment_from_file_spec.rb +6 -6
- data/spec/integration/knife/environment_list_spec.rb +1 -1
- data/spec/integration/knife/environment_show_spec.rb +4 -4
- data/spec/integration/knife/list_spec.rb +25 -25
- data/spec/integration/knife/node_bulk_delete_spec.rb +2 -2
- data/spec/integration/knife/node_delete_spec.rb +2 -2
- data/spec/integration/knife/node_environment_set_spec.rb +1 -1
- data/spec/integration/knife/node_from_file_spec.rb +2 -2
- data/spec/integration/knife/node_list_spec.rb +1 -1
- data/spec/integration/knife/raw_spec.rb +12 -12
- data/spec/integration/knife/redirection_spec.rb +1 -1
- data/spec/integration/knife/role_bulk_delete_spec.rb +2 -2
- data/spec/integration/knife/role_delete_spec.rb +2 -2
- data/spec/integration/knife/role_from_file_spec.rb +5 -5
- data/spec/integration/knife/role_list_spec.rb +1 -1
- data/spec/integration/knife/role_show_spec.rb +1 -1
- data/spec/integration/knife/show_spec.rb +10 -10
- data/spec/integration/knife/upload_spec.rb +85 -85
- data/spec/integration/recipes/accumulator_spec.rb +4 -4
- data/spec/integration/recipes/lwrp_inline_resources_spec.rb +6 -6
- data/spec/integration/recipes/lwrp_spec.rb +6 -6
- data/spec/integration/recipes/notifies_spec.rb +45 -45
- data/spec/integration/recipes/notifying_block_spec.rb +4 -4
- data/spec/integration/recipes/provider_choice.rb +1 -2
- data/spec/integration/recipes/recipe_dsl_spec.rb +9 -9
- data/spec/integration/recipes/remote_directory.rb +2 -2
- data/spec/integration/recipes/resource_action_spec.rb +1 -1
- data/spec/integration/recipes/resource_converge_if_changed_spec.rb +19 -19
- data/spec/integration/solo/solo_spec.rb +29 -29
- data/spec/scripts/ssl-serve.rb +1 -1
- data/spec/spec_helper.rb +11 -14
- data/spec/stress/win32/security_spec.rb +1 -1
- data/spec/support/lib/chef/resource/zen_follower.rb +1 -1
- data/spec/support/lib/chef/resource/zen_master.rb +1 -1
- data/spec/support/mock/platform.rb +2 -2
- data/spec/support/platform_helpers.rb +12 -3
- data/spec/support/platforms/win32/spec_service.rb +6 -10
- data/spec/support/shared/context/client.rb +2 -1
- data/spec/support/shared/functional/execute_resource.rb +4 -4
- data/spec/support/shared/functional/file_resource.rb +1 -3
- data/spec/support/shared/functional/http.rb +20 -44
- data/spec/support/shared/functional/securable_resource.rb +4 -8
- data/spec/support/shared/functional/win32_service.rb +1 -1
- data/spec/support/shared/functional/windows_script.rb +2 -1
- data/spec/support/shared/integration/app_server_support.rb +3 -4
- data/spec/support/shared/integration/integration_helper.rb +1 -0
- data/spec/support/shared/integration/knife_support.rb +5 -5
- data/spec/support/shared/unit/application_dot_d.rb +10 -4
- data/spec/support/shared/unit/file_system_support.rb +3 -2
- data/spec/support/shared/unit/platform_introspector.rb +12 -12
- data/spec/support/shared/unit/provider/file.rb +1 -1
- data/spec/support/shared/unit/script_resource.rb +1 -1
- data/spec/support/shared/unit/windows_script_resource.rb +1 -1
- data/spec/tiny_server.rb +1 -1
- data/spec/unit/api_client/registration_spec.rb +1 -1
- data/spec/unit/api_client_spec.rb +5 -5
- data/spec/unit/api_client_v1_spec.rb +6 -6
- data/spec/unit/application/client_spec.rb +8 -8
- data/spec/unit/application/exit_code_spec.rb +3 -2
- data/spec/unit/application/knife_spec.rb +1 -2
- data/spec/unit/audit/audit_event_proxy_spec.rb +14 -7
- data/spec/unit/audit/audit_reporter_spec.rb +20 -11
- data/spec/unit/audit/control_group_data_spec.rb +17 -12
- data/spec/unit/chef_fs/config_spec.rb +3 -3
- data/spec/unit/chef_fs/file_system/repository/directory_spec.rb +1 -1
- data/spec/unit/chef_fs/parallelizer.rb +1 -1
- data/spec/unit/client_spec.rb +3 -3
- data/spec/unit/config_fetcher_spec.rb +1 -1
- data/spec/unit/cookbook/metadata_spec.rb +13 -13
- data/spec/unit/cookbook/synchronizer_spec.rb +6 -6
- data/spec/unit/cookbook_loader_spec.rb +17 -17
- data/spec/unit/cookbook_manifest_spec.rb +9 -9
- data/spec/unit/cookbook_site_streaming_uploader_spec.rb +1 -2
- data/spec/unit/cookbook_uploader_spec.rb +2 -2
- data/spec/unit/cookbook_version_file_specificity_spec.rb +9 -9
- data/spec/unit/cookbook_version_spec.rb +2 -2
- data/spec/unit/data_bag_item_spec.rb +7 -7
- data/spec/unit/data_bag_spec.rb +1 -1
- data/spec/unit/data_collector_spec.rb +23 -23
- data/spec/unit/decorator_spec.rb +2 -2
- data/spec/unit/deprecated_spec.rb +2 -2
- data/spec/unit/dsl/data_query_spec.rb +3 -2
- data/spec/unit/dsl/declare_resource_spec.rb +1 -1
- data/spec/unit/dsl/platform_introspection_spec.rb +2 -2
- data/spec/unit/encrypted_data_bag_item/check_encrypted_spec.rb +2 -1
- data/spec/unit/encrypted_data_bag_item_spec.rb +2 -1
- data/spec/unit/environment_spec.rb +13 -13
- data/spec/unit/event_dispatch/dsl_spec.rb +1 -1
- data/spec/unit/file_content_management/deploy/mv_unix_spec.rb +3 -3
- data/spec/unit/file_content_management/deploy/mv_windows_spec.rb +2 -2
- data/spec/unit/formatters/error_inspectors/resource_failure_inspector_spec.rb +3 -3
- data/spec/unit/guard_interpreter/resource_guard_interpreter_spec.rb +1 -1
- data/spec/unit/http/authenticator_spec.rb +4 -3
- data/spec/unit/http/json_input_spec.rb +1 -1
- data/spec/unit/http/socketless_chef_zero_client_spec.rb +15 -15
- data/spec/unit/key_spec.rb +8 -8
- data/spec/unit/knife/bootstrap_spec.rb +14 -10
- data/spec/unit/knife/client_bulk_delete_spec.rb +4 -4
- data/spec/unit/knife/configure_client_spec.rb +1 -1
- data/spec/unit/knife/configure_spec.rb +1 -1
- data/spec/unit/knife/cookbook_bulk_delete_spec.rb +1 -1
- data/spec/unit/knife/cookbook_delete_spec.rb +2 -2
- data/spec/unit/knife/cookbook_download_spec.rb +2 -2
- data/spec/unit/knife/cookbook_metadata_spec.rb +4 -4
- data/spec/unit/knife/cookbook_upload_spec.rb +7 -5
- data/spec/unit/knife/core/bootstrap_context_spec.rb +1 -1
- data/spec/unit/knife/core/cookbook_scm_repo_spec.rb +2 -2
- data/spec/unit/knife/core/gem_glob_loader_spec.rb +4 -4
- data/spec/unit/knife/core/hashed_command_loader_spec.rb +4 -2
- data/spec/unit/knife/core/node_editor_spec.rb +12 -12
- data/spec/unit/knife/core/ui_spec.rb +11 -11
- data/spec/unit/knife/data_bag_from_file_spec.rb +2 -1
- data/spec/unit/knife/data_bag_show_spec.rb +2 -1
- data/spec/unit/knife/key_create_spec.rb +1 -1
- data/spec/unit/knife/key_delete_spec.rb +3 -3
- data/spec/unit/knife/key_edit_spec.rb +4 -4
- data/spec/unit/knife/key_list_spec.rb +1 -1
- data/spec/unit/knife/key_show_spec.rb +3 -3
- data/spec/unit/knife/node_bulk_delete_spec.rb +3 -3
- data/spec/unit/knife/node_delete_spec.rb +2 -2
- data/spec/unit/knife/node_edit_spec.rb +1 -1
- data/spec/unit/knife/node_environment_set_spec.rb +1 -1
- data/spec/unit/knife/node_from_file_spec.rb +1 -1
- data/spec/unit/knife/node_policy_set_spec.rb +1 -1
- data/spec/unit/knife/node_run_list_add_spec.rb +1 -1
- data/spec/unit/knife/node_run_list_remove_spec.rb +1 -1
- data/spec/unit/knife/node_run_list_set_spec.rb +1 -1
- data/spec/unit/knife/node_show_spec.rb +1 -1
- data/spec/unit/knife/raw_spec.rb +2 -2
- data/spec/unit/knife/role_bulk_delete_spec.rb +2 -2
- data/spec/unit/knife/role_create_spec.rb +1 -1
- data/spec/unit/knife/role_delete_spec.rb +1 -1
- data/spec/unit/knife/role_edit_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_add_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_clear_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_remove_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_replace_spec.rb +1 -1
- data/spec/unit/knife/role_env_run_list_set_spec.rb +1 -1
- data/spec/unit/knife/role_from_file_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_add_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_clear_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_remove_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_replace_spec.rb +1 -1
- data/spec/unit/knife/role_run_list_set_spec.rb +1 -1
- data/spec/unit/knife/ssh_spec.rb +27 -17
- data/spec/unit/knife/ssl_check_spec.rb +4 -4
- data/spec/unit/knife/ssl_fetch_spec.rb +5 -5
- data/spec/unit/knife/status_spec.rb +3 -2
- data/spec/unit/knife/supermarket_download_spec.rb +4 -4
- data/spec/unit/knife/supermarket_install_spec.rb +5 -4
- data/spec/unit/knife/supermarket_share_spec.rb +1 -1
- data/spec/unit/knife_spec.rb +34 -33
- data/spec/unit/lwrp_spec.rb +19 -19
- data/spec/unit/mixin/homebrew_user_spec.rb +1 -1
- data/spec/unit/mixin/params_validate_spec.rb +10 -10
- data/spec/unit/mixin/properties_spec.rb +4 -4
- data/spec/unit/mixin/shell_out_spec.rb +27 -27
- data/spec/unit/mixin/template_spec.rb +4 -8
- data/spec/unit/mixin/unformatter_spec.rb +1 -2
- data/spec/unit/mixin/user_context_spec.rb +1 -2
- data/spec/unit/mixin/which.rb +2 -0
- data/spec/unit/mixin/windows_architecture_helper_spec.rb +3 -3
- data/spec/unit/node/attribute_spec.rb +79 -79
- data/spec/unit/node/immutable_collections_spec.rb +50 -50
- data/spec/unit/node_spec.rb +16 -16
- data/spec/unit/org_spec.rb +3 -3
- data/spec/unit/policy_builder/policyfile_spec.rb +2 -2
- data/spec/unit/property/state_spec.rb +26 -25
- data/spec/unit/property/validation_spec.rb +14 -13
- data/spec/unit/property_spec.rb +10 -9
- data/spec/unit/provider/apt_update_spec.rb +6 -6
- data/spec/unit/provider/cron_spec.rb +15 -15
- data/spec/unit/provider/dsc_resource_spec.rb +6 -3
- data/spec/unit/provider/dsc_script_spec.rb +1 -1
- data/spec/unit/provider/execute_spec.rb +5 -5
- data/spec/unit/provider/git_spec.rb +39 -39
- data/spec/unit/provider/group/dscl_spec.rb +3 -3
- data/spec/unit/provider/group/groupadd_spec.rb +1 -1
- data/spec/unit/provider/group_spec.rb +2 -3
- data/spec/unit/provider/ifconfig/aix_spec.rb +1 -1
- data/spec/unit/provider/ifconfig/debian_spec.rb +2 -2
- data/spec/unit/provider/ifconfig_spec.rb +45 -16
- data/spec/unit/provider/launchd_spec.rb +23 -15
- data/spec/unit/provider/link_spec.rb +22 -11
- data/spec/unit/provider/mount/aix_spec.rb +6 -6
- data/spec/unit/provider/mount/mount_spec.rb +31 -31
- data/spec/unit/provider/mount/solaris_spec.rb +11 -11
- data/spec/unit/provider/ohai_spec.rb +1 -1
- data/spec/unit/provider/osx_profile_spec.rb +5 -7
- data/spec/unit/provider/package/apt_spec.rb +5 -5
- data/spec/unit/provider/package/bff_spec.rb +1 -1
- data/spec/unit/provider/package/cab_spec.rb +1 -1
- data/spec/unit/provider/package/chocolatey_spec.rb +8 -8
- data/spec/unit/provider/package/freebsd/pkg_spec.rb +1 -1
- data/spec/unit/provider/package/ips_spec.rb +6 -6
- data/spec/unit/provider/package/macports_spec.rb +1 -1
- data/spec/unit/provider/package/msu_spec.rb +1 -1
- data/spec/unit/provider/package/openbsd_spec.rb +15 -11
- data/spec/unit/provider/package/pacman_spec.rb +3 -3
- data/spec/unit/provider/package/paludis_spec.rb +4 -4
- data/spec/unit/provider/package/portage_spec.rb +1 -1
- data/spec/unit/provider/package/powershell_spec.rb +1 -1
- data/spec/unit/provider/package/smartos_spec.rb +3 -3
- data/spec/unit/provider/package/solaris_spec.rb +1 -1
- data/spec/unit/provider/package/windows/exe_spec.rb +9 -9
- data/spec/unit/provider/package/windows/msi_spec.rb +7 -7
- data/spec/unit/provider/package/windows_spec.rb +2 -1
- data/spec/unit/provider/package/yum/yum_cache_spec.rb +1 -1
- data/spec/unit/provider/package/zypper_spec.rb +4 -4
- data/spec/unit/provider/package_spec.rb +1 -1
- data/spec/unit/provider/powershell_script_spec.rb +7 -7
- data/spec/unit/provider/registry_key_spec.rb +1 -1
- data/spec/unit/provider/remote_directory_spec.rb +6 -6
- data/spec/unit/provider/route_spec.rb +11 -11
- data/spec/unit/provider/service/arch_service_spec.rb +13 -13
- data/spec/unit/provider/service/debian_service_spec.rb +2 -1
- data/spec/unit/provider/service/freebsd_service_spec.rb +28 -24
- data/spec/unit/provider/service/gentoo_service_spec.rb +2 -2
- data/spec/unit/provider/service/init_service_spec.rb +11 -11
- data/spec/unit/provider/service/invokercd_service_spec.rb +11 -11
- data/spec/unit/provider/service/macosx_spec.rb +5 -5
- data/spec/unit/provider/service/openbsd_service_spec.rb +15 -11
- data/spec/unit/provider/service/simple_service_spec.rb +7 -7
- data/spec/unit/provider/service/upstart_service_spec.rb +14 -14
- data/spec/unit/provider/service/windows_spec.rb +53 -35
- data/spec/unit/provider/subversion_spec.rb +8 -4
- data/spec/unit/provider/systemd_unit_spec.rb +142 -142
- data/spec/unit/provider/template/content_spec.rb +29 -29
- data/spec/unit/provider/windows_task_spec.rb +1 -1
- data/spec/unit/provider_resolver_spec.rb +75 -75
- data/spec/unit/provider_spec.rb +2 -4
- data/spec/unit/recipe_spec.rb +4 -4
- data/spec/unit/resource/batch_spec.rb +1 -1
- data/spec/unit/resource/chef_gem_spec.rb +1 -1
- data/spec/unit/resource/chocolatey_config_spec.rb +1 -1
- data/spec/unit/resource/chocolatey_source_spec.rb +1 -1
- data/spec/unit/resource/directory_spec.rb +1 -1
- data/spec/unit/resource/dnf_package_spec.rb +1 -1
- data/spec/unit/resource/dsc_resource_spec.rb +1 -1
- data/spec/unit/resource/file/verification_spec.rb +1 -2
- data/spec/unit/resource/file_spec.rb +1 -1
- data/spec/unit/resource/group_spec.rb +1 -1
- data/spec/unit/resource/link_spec.rb +1 -1
- data/spec/unit/resource/osx_profile_spec.rb +2 -1
- data/spec/unit/resource/powershell_script_spec.rb +12 -7
- data/spec/unit/resource/registry_key_spec.rb +3 -3
- data/spec/unit/resource/rhsm_subscription_spec.rb +1 -1
- data/spec/unit/resource/service_spec.rb +1 -1
- data/spec/unit/resource/template_spec.rb +2 -2
- data/spec/unit/resource/windows_env_spec.rb +1 -1
- data/spec/unit/resource/windows_service_spec.rb +5 -5
- data/spec/unit/resource/windows_task_spec.rb +6 -2
- data/spec/unit/resource/yum_package_spec.rb +1 -1
- data/spec/unit/resource_collection/resource_list_spec.rb +1 -1
- data/spec/unit/resource_collection/resource_set_spec.rb +7 -7
- data/spec/unit/resource_collection/stepable_iterator_spec.rb +2 -2
- data/spec/unit/resource_collection_spec.rb +4 -4
- data/spec/unit/resource_definition_spec.rb +2 -2
- data/spec/unit/resource_inspector_spec.rb +1 -1
- data/spec/unit/resource_reporter_spec.rb +4 -4
- data/spec/unit/resource_spec.rb +22 -22
- data/spec/unit/role_spec.rb +3 -3
- data/spec/unit/run_context/cookbook_compiler_spec.rb +23 -23
- data/spec/unit/run_list/run_list_expansion_spec.rb +9 -6
- data/spec/unit/run_list_spec.rb +1 -1
- data/spec/unit/runner_spec.rb +3 -3
- data/spec/unit/search/query_spec.rb +3 -2
- data/spec/unit/shell/model_wrapper_spec.rb +1 -1
- data/spec/unit/shell/shell_session_spec.rb +8 -11
- data/spec/unit/shell_spec.rb +1 -2
- data/spec/unit/user_spec.rb +4 -4
- data/spec/unit/user_v1_spec.rb +3 -3
- data/spec/unit/util/backup_spec.rb +1 -1
- data/spec/unit/util/dsc/lcm_output_parser_spec.rb +13 -13
- data/spec/unit/util/dsc/local_configuration_manager_spec.rb +3 -3
- data/spec/unit/util/editor_spec.rb +1 -1
- data/spec/unit/util/powershell/ps_credential_spec.rb +3 -2
- data/spec/unit/util/threaded_job_queue_spec.rb +2 -2
- data/spec/unit/version_class_spec.rb +4 -4
- data/spec/unit/win32/registry_spec.rb +5 -5
- data/spec/unit/win32/security_spec.rb +2 -1
- data/tasks/announce.rb +4 -11
- metadata +10 -6
- data/tasks/maintainers.rb +0 -211
- data/tasks/templates/prerelease.md.erb +0 -35
data/spec/unit/node_spec.rb
CHANGED
@@ -21,7 +21,7 @@ require "ostruct"
|
|
21
21
|
|
22
22
|
describe Chef::Node do
|
23
23
|
|
24
|
-
let(:node) { Chef::Node.new
|
24
|
+
let(:node) { Chef::Node.new }
|
25
25
|
let(:platform_introspector) { node }
|
26
26
|
|
27
27
|
it_behaves_like "a platform introspector"
|
@@ -103,7 +103,7 @@ describe Chef::Node do
|
|
103
103
|
end
|
104
104
|
|
105
105
|
it "should always have a string for name" do
|
106
|
-
expect { node.name(
|
106
|
+
expect { node.name({}) }.to raise_error(ArgumentError)
|
107
107
|
end
|
108
108
|
|
109
109
|
it "cannot be blank" do
|
@@ -126,7 +126,7 @@ describe Chef::Node do
|
|
126
126
|
end
|
127
127
|
|
128
128
|
it "should disallow non-strings" do
|
129
|
-
expect { node.chef_environment(
|
129
|
+
expect { node.chef_environment({}) }.to raise_error(ArgumentError)
|
130
130
|
expect { node.chef_environment(42) }.to raise_error(ArgumentError)
|
131
131
|
end
|
132
132
|
|
@@ -162,7 +162,7 @@ describe Chef::Node do
|
|
162
162
|
end
|
163
163
|
|
164
164
|
it "disallows non-strings" do
|
165
|
-
expect { node.policy_name(
|
165
|
+
expect { node.policy_name({}) }.to raise_error(Chef::Exceptions::ValidationFailed)
|
166
166
|
expect { node.policy_name(42) }.to raise_error(Chef::Exceptions::ValidationFailed)
|
167
167
|
end
|
168
168
|
|
@@ -198,7 +198,7 @@ describe Chef::Node do
|
|
198
198
|
end
|
199
199
|
|
200
200
|
it "disallows non-strings" do
|
201
|
-
expect { node.policy_group(
|
201
|
+
expect { node.policy_group({}) }.to raise_error(Chef::Exceptions::ValidationFailed)
|
202
202
|
expect { node.policy_group(42) }.to raise_error(Chef::Exceptions::ValidationFailed)
|
203
203
|
end
|
204
204
|
|
@@ -769,7 +769,7 @@ describe Chef::Node do
|
|
769
769
|
|
770
770
|
it "caches both strings and symbols correctly" do
|
771
771
|
node.force_default[:solr][:version] = "4.10.2"
|
772
|
-
node.force_default[:solr][:data_dir] = "/opt/solr-#{node[
|
772
|
+
node.force_default[:solr][:data_dir] = "/opt/solr-#{node["solr"][:version]}/example/solr"
|
773
773
|
node.force_default[:solr][:xms] = "512M"
|
774
774
|
expect(node[:solr][:xms]).to eql("512M")
|
775
775
|
expect(node["solr"][:xms]).to eql("512M")
|
@@ -778,8 +778,8 @@ describe Chef::Node do
|
|
778
778
|
it "method interpolation syntax also works" do
|
779
779
|
Chef::Config[:treat_deprecation_warnings_as_errors] = false
|
780
780
|
node.default["passenger"]["version"] = "4.0.57"
|
781
|
-
node.default["passenger"]["root_path"] = "passenger-#{node[
|
782
|
-
node.default["passenger"]["root_path_2"] = "passenger-#{node[:passenger][
|
781
|
+
node.default["passenger"]["root_path"] = "passenger-#{node["passenger"]["version"]}"
|
782
|
+
node.default["passenger"]["root_path_2"] = "passenger-#{node[:passenger]["version"]}"
|
783
783
|
expect(node["passenger"]["root_path_2"]).to eql("passenger-4.0.57")
|
784
784
|
expect(node[:passenger]["root_path_2"]).to eql("passenger-4.0.57")
|
785
785
|
end
|
@@ -793,7 +793,7 @@ describe Chef::Node do
|
|
793
793
|
it "should allow you to iterate over attributes with each_attribute" do
|
794
794
|
node.default["sunshine"] = "is bright"
|
795
795
|
node.default["canada"] = "is a nice place"
|
796
|
-
seen_attributes =
|
796
|
+
seen_attributes = {}
|
797
797
|
node.each_attribute do |a, v|
|
798
798
|
seen_attributes[a] = v
|
799
799
|
end
|
@@ -1196,7 +1196,7 @@ describe Chef::Node do
|
|
1196
1196
|
expect(node.name).to eql("test.example.com-short")
|
1197
1197
|
expect(node["sunshine"]).to eql("in")
|
1198
1198
|
expect(node["something"]).to eql("else")
|
1199
|
-
expect(node.run_list).to eq(
|
1199
|
+
expect(node.run_list).to eq(%w{operations-master operations-monitoring})
|
1200
1200
|
end
|
1201
1201
|
|
1202
1202
|
it "should raise an exception if the file cannot be found or read" do
|
@@ -1215,7 +1215,7 @@ describe Chef::Node do
|
|
1215
1215
|
node.run_list << "role[leninist]"
|
1216
1216
|
node.run_list << "recipe[stalinist]"
|
1217
1217
|
|
1218
|
-
@example = Chef::Node.new
|
1218
|
+
@example = Chef::Node.new
|
1219
1219
|
@example.name("newname")
|
1220
1220
|
@example.chef_environment("prod")
|
1221
1221
|
@example.default_attrs = { "alpha" => { "bravo" => "charlie", "delta" => "echo" } }
|
@@ -1476,7 +1476,7 @@ describe Chef::Node do
|
|
1476
1476
|
|
1477
1477
|
node.default = {
|
1478
1478
|
"filesystem" => {
|
1479
|
-
"/dev/disk0s2"
|
1479
|
+
"/dev/disk0s2" => { "size" => "10mb" },
|
1480
1480
|
"map - autohome" => { "size" => "10mb" },
|
1481
1481
|
},
|
1482
1482
|
"network" => {
|
@@ -1549,7 +1549,7 @@ describe Chef::Node do
|
|
1549
1549
|
|
1550
1550
|
node.default = {
|
1551
1551
|
"filesystem" => {
|
1552
|
-
"/dev/disk0s2"
|
1552
|
+
"/dev/disk0s2" => { "size" => "10mb" },
|
1553
1553
|
"map - autohome" => { "size" => "10mb" },
|
1554
1554
|
},
|
1555
1555
|
}
|
@@ -1576,7 +1576,7 @@ describe Chef::Node do
|
|
1576
1576
|
|
1577
1577
|
node.default = {
|
1578
1578
|
"filesystem" => {
|
1579
|
-
"/dev/disk0s2"
|
1579
|
+
"/dev/disk0s2" => { "size" => "10mb" },
|
1580
1580
|
"map - autohome" => { "size" => "10mb" },
|
1581
1581
|
},
|
1582
1582
|
"network" => {
|
@@ -1613,7 +1613,7 @@ describe Chef::Node do
|
|
1613
1613
|
|
1614
1614
|
node.default = {
|
1615
1615
|
"filesystem" => {
|
1616
|
-
"/dev/disk0s2"
|
1616
|
+
"/dev/disk0s2" => { "size" => "10mb" },
|
1617
1617
|
"map - autohome" => { "size" => "10mb" },
|
1618
1618
|
},
|
1619
1619
|
}
|
@@ -1624,7 +1624,7 @@ describe Chef::Node do
|
|
1624
1624
|
selected_data = {
|
1625
1625
|
"default" => {
|
1626
1626
|
"filesystem" => {
|
1627
|
-
"/dev/disk0s2"
|
1627
|
+
"/dev/disk0s2" => { "size" => "10mb" },
|
1628
1628
|
"map - autohome" => { "size" => "10mb" },
|
1629
1629
|
},
|
1630
1630
|
},
|
data/spec/unit/org_spec.rb
CHANGED
@@ -52,7 +52,7 @@ describe Chef::Org do
|
|
52
52
|
end
|
53
53
|
|
54
54
|
it "raises an ArgumentError if you feed it anything but a string" do
|
55
|
-
expect { org.name
|
55
|
+
expect { org.name({}) }.to raise_error(ArgumentError)
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
@@ -63,7 +63,7 @@ describe Chef::Org do
|
|
63
63
|
end
|
64
64
|
|
65
65
|
it "raises an ArgumentError if you feed it anything but a string" do
|
66
|
-
expect { org.name
|
66
|
+
expect { org.name({}) }.to raise_error(ArgumentError)
|
67
67
|
end
|
68
68
|
end
|
69
69
|
|
@@ -74,7 +74,7 @@ describe Chef::Org do
|
|
74
74
|
end
|
75
75
|
|
76
76
|
it "raises an ArgumentError if you feed it something lame" do
|
77
|
-
expect { org.private_key
|
77
|
+
expect { org.private_key({}) }.to raise_error(ArgumentError)
|
78
78
|
end
|
79
79
|
end
|
80
80
|
|
@@ -403,9 +403,9 @@ describe Chef::PolicyBuilder::Policyfile do
|
|
403
403
|
|
404
404
|
before do
|
405
405
|
allow(policy_builder).to receive(:run_list)
|
406
|
-
|
406
|
+
.and_return(run_list)
|
407
407
|
allow(policy_builder).to receive(:cookbook_lock_for)
|
408
|
-
|
408
|
+
.and_return(version_hash)
|
409
409
|
end
|
410
410
|
|
411
411
|
it "sends the run_list_expanded event" do
|
@@ -28,7 +28,8 @@ describe "Chef::Resource#identity and #state" do
|
|
28
28
|
def self.english_join(values)
|
29
29
|
return "<nothing>" if values.size == 0
|
30
30
|
return values[0].inspect if values.size == 1
|
31
|
-
|
31
|
+
|
32
|
+
"#{values[0..-2].map(&:inspect).join(", ")} and #{values[-1].inspect}"
|
32
33
|
end
|
33
34
|
|
34
35
|
def self.with_property(*properties, &block)
|
@@ -254,31 +255,31 @@ describe "Chef::Resource#identity and #state" do
|
|
254
255
|
end
|
255
256
|
|
256
257
|
with_property ":x, identity: true, default: 'xxx'",
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
258
|
+
":y, identity: true, default: 'yyy'",
|
259
|
+
":z, identity: true, default: 'zzz'" do
|
260
|
+
it "identity_property raises an error if multiple identity values are defined" do
|
261
|
+
expect { resource_class.identity_property }.to raise_error Chef::Exceptions::MultipleIdentityError
|
262
|
+
end
|
263
|
+
it "identity_attr raises an error if multiple identity values are defined" do
|
264
|
+
expect { resource_class.identity_attr }.to raise_error Chef::Exceptions::MultipleIdentityError
|
265
|
+
end
|
266
|
+
it "identity returns all identity values in a hash if multiple are defined" do
|
267
|
+
resource.x "foo"
|
268
|
+
resource.y "bar"
|
269
|
+
resource.z "baz"
|
270
|
+
expect(resource.identity).to eq(x: "foo", y: "bar", z: "baz")
|
271
|
+
end
|
272
|
+
it "identity returns all values whether any value is set or not" do
|
273
|
+
expect(resource.identity).to eq(x: "xxx", y: "yyy", z: "zzz")
|
274
|
+
end
|
275
|
+
it "identity_properties wipes out any other identity attributes if multiple are defined" do
|
276
|
+
resource_class.identity_properties :y
|
277
|
+
resource.x "foo"
|
278
|
+
resource.y "bar"
|
279
|
+
resource.z "baz"
|
280
|
+
expect(resource.identity).to eq "bar"
|
281
|
+
end
|
280
282
|
end
|
281
|
-
end
|
282
283
|
|
283
284
|
with_property ":x, identity: true, name_property: true" do
|
284
285
|
it "identity when x is not defined returns the value of x" do
|
@@ -55,7 +55,8 @@ describe "Chef::Resource.property validation" do
|
|
55
55
|
def self.english_join(values)
|
56
56
|
return "<nothing>" if values.size == 0
|
57
57
|
return values[0].inspect if values.size == 1
|
58
|
-
|
58
|
+
|
59
|
+
"#{values[0..-2].map(&:inspect).join(", ")} and #{values[-1].inspect}"
|
59
60
|
end
|
60
61
|
|
61
62
|
def self.with_property(*properties, &block)
|
@@ -231,19 +232,19 @@ describe "Chef::Resource.property validation" do
|
|
231
232
|
[ :b ]
|
232
233
|
|
233
234
|
validation_test ":a, is: :b",
|
234
|
-
|
235
|
+
%i{a b},
|
235
236
|
[ :c ]
|
236
237
|
|
237
238
|
validation_test ":a, is: [ :b, :c ]",
|
238
|
-
|
239
|
+
%i{a b c},
|
239
240
|
[ :d ]
|
240
241
|
|
241
242
|
validation_test "[ :a, :b ], is: :c",
|
242
|
-
|
243
|
+
%i{a b c},
|
243
244
|
[ :d ]
|
244
245
|
|
245
246
|
validation_test "[ :a, :b ], is: [ :c, :d ]",
|
246
|
-
|
247
|
+
%i{a b c d},
|
247
248
|
[ :e ]
|
248
249
|
|
249
250
|
validation_test "nil",
|
@@ -279,12 +280,12 @@ describe "Chef::Resource.property validation" do
|
|
279
280
|
[ :b ]
|
280
281
|
|
281
282
|
validation_test "is: [ :a, :b ]",
|
282
|
-
|
283
|
-
[
|
283
|
+
%i{a b},
|
284
|
+
[ %i{a b} ]
|
284
285
|
|
285
286
|
validation_test "is: [ [ :a, :b ] ]",
|
286
|
-
[
|
287
|
-
|
287
|
+
[ %i{a b} ],
|
288
|
+
%i{a b}
|
288
289
|
|
289
290
|
# Regex
|
290
291
|
validation_test "is: /abc/",
|
@@ -352,13 +353,13 @@ describe "Chef::Resource.property validation" do
|
|
352
353
|
:nil_is_valid
|
353
354
|
|
354
355
|
validation_test "equal_to: [ :a, :b ]",
|
355
|
-
|
356
|
-
[
|
356
|
+
%i{a b},
|
357
|
+
[ %i{a b} ],
|
357
358
|
:nil_is_valid
|
358
359
|
|
359
360
|
validation_test "equal_to: [ [ :a, :b ] ]",
|
360
|
-
[
|
361
|
-
|
361
|
+
[ %i{a b} ],
|
362
|
+
%i{a b},
|
362
363
|
:nil_is_valid
|
363
364
|
|
364
365
|
validation_test "equal_to: nil",
|
data/spec/unit/property_spec.rb
CHANGED
@@ -51,7 +51,8 @@ describe "Chef::Resource.property" do
|
|
51
51
|
def self.english_join(values)
|
52
52
|
return "<nothing>" if values.size == 0
|
53
53
|
return values[0].inspect if values.size == 1
|
54
|
-
|
54
|
+
|
55
|
+
"#{values[0..-2].map(&:inspect).join(", ")} and #{values[-1].inspect}"
|
55
56
|
end
|
56
57
|
|
57
58
|
def self.with_property(*properties, &block)
|
@@ -1051,19 +1052,19 @@ describe "Chef::Resource.property" do
|
|
1051
1052
|
context "default ordering deprecation warnings" do
|
1052
1053
|
it "emits an error for property :x, default: 10, #{name}: true" do
|
1053
1054
|
expect { resource_class.property :x, :default => 10, name.to_sym => true }.to raise_error ArgumentError,
|
1054
|
-
|
1055
|
+
%r{A property cannot be both a name_property/name_attribute and have a default value. Use one or the other on property x of resource chef_resource_property_spec_(\d+)}
|
1055
1056
|
end
|
1056
1057
|
it "emits an error for property :x, default: nil, #{name}: true" do
|
1057
1058
|
expect { resource_class.property :x, :default => nil, name.to_sym => true }.to raise_error ArgumentError,
|
1058
|
-
|
1059
|
+
%r{A property cannot be both a name_property/name_attribute and have a default value. Use one or the other on property x of resource chef_resource_property_spec_(\d+)}
|
1059
1060
|
end
|
1060
1061
|
it "emits an error for property :x, #{name}: true, default: 10" do
|
1061
1062
|
expect { resource_class.property :x, name.to_sym => true, :default => 10 }.to raise_error ArgumentError,
|
1062
|
-
|
1063
|
+
%r{A property cannot be both a name_property/name_attribute and have a default value. Use one or the other on property x of resource chef_resource_property_spec_(\d+)}
|
1063
1064
|
end
|
1064
1065
|
it "emits an error for property :x, #{name}: true, default: nil" do
|
1065
1066
|
expect { resource_class.property :x, name.to_sym => true, :default => nil }.to raise_error ArgumentError,
|
1066
|
-
|
1067
|
+
%r{A property cannot be both a name_property/name_attribute and have a default value. Use one or the other on property x of resource chef_resource_property_spec_(\d+)}
|
1067
1068
|
end
|
1068
1069
|
end
|
1069
1070
|
end
|
@@ -1085,13 +1086,13 @@ describe "Chef::Resource.property" do
|
|
1085
1086
|
expect do
|
1086
1087
|
module ::PropertySpecPropertyTypes
|
1087
1088
|
include Chef::Mixin::Properties
|
1088
|
-
property_type(is:
|
1089
|
+
property_type(is: %i{a b}, default: :c)
|
1089
1090
|
end
|
1090
1091
|
end.to raise_error(Chef::Exceptions::ValidationFailed)
|
1091
1092
|
expect do
|
1092
1093
|
module ::PropertySpecPropertyTypes
|
1093
1094
|
include Chef::Mixin::Properties
|
1094
|
-
property_type(is:
|
1095
|
+
property_type(is: %i{a b}, default: :b)
|
1095
1096
|
end
|
1096
1097
|
end.not_to raise_error
|
1097
1098
|
end
|
@@ -1100,8 +1101,8 @@ describe "Chef::Resource.property" do
|
|
1100
1101
|
before :all do
|
1101
1102
|
module ::PropertySpecPropertyTypes
|
1102
1103
|
include Chef::Mixin::Properties
|
1103
|
-
ABType = property_type(is:
|
1104
|
-
CDType = property_type(is:
|
1104
|
+
ABType = property_type(is: %i{a b})
|
1105
|
+
CDType = property_type(is: %i{c d})
|
1105
1106
|
end
|
1106
1107
|
end
|
1107
1108
|
|
@@ -47,7 +47,7 @@ describe Chef::Provider::AptUpdate do
|
|
47
47
|
before do
|
48
48
|
FileUtils.rmdir config_dir
|
49
49
|
expect(File.exist?(config_dir)).to be false
|
50
|
-
allow_any_instance_of(Chef::Provider::Execute).to receive(:shell_out_compacted!).with(*apt_update_cmd, anything
|
50
|
+
allow_any_instance_of(Chef::Provider::Execute).to receive(:shell_out_compacted!).with(*apt_update_cmd, anything)
|
51
51
|
end
|
52
52
|
|
53
53
|
it "should create the directory" do
|
@@ -66,7 +66,7 @@ describe Chef::Provider::AptUpdate do
|
|
66
66
|
describe "#action_update" do
|
67
67
|
it "should update the apt cache" do
|
68
68
|
provider.load_current_resource
|
69
|
-
expect_any_instance_of(Chef::Provider::Execute).to receive(:shell_out_compacted!).with(*apt_update_cmd, anything
|
69
|
+
expect_any_instance_of(Chef::Provider::Execute).to receive(:shell_out_compacted!).with(*apt_update_cmd, anything)
|
70
70
|
provider.run_action(:update)
|
71
71
|
expect(new_resource).to be_updated_by_last_action
|
72
72
|
end
|
@@ -81,14 +81,14 @@ describe Chef::Provider::AptUpdate do
|
|
81
81
|
|
82
82
|
it "should run if the time stamp is old" do
|
83
83
|
expect(File).to receive(:mtime).with("#{stamp_dir}/update-success-stamp").and_return(Time.now - 86_500)
|
84
|
-
expect_any_instance_of(Chef::Provider::Execute).to receive(:shell_out_compacted!).with(*apt_update_cmd, anything
|
84
|
+
expect_any_instance_of(Chef::Provider::Execute).to receive(:shell_out_compacted!).with(*apt_update_cmd, anything)
|
85
85
|
provider.run_action(:periodic)
|
86
86
|
expect(new_resource).to be_updated_by_last_action
|
87
87
|
end
|
88
88
|
|
89
89
|
it "should not run if the time stamp is new" do
|
90
90
|
expect(File).to receive(:mtime).with("#{stamp_dir}/update-success-stamp").and_return(Time.now)
|
91
|
-
expect_any_instance_of(Chef::Provider::Execute).not_to receive(:shell_out_compacted!).with(*apt_update_cmd, anything
|
91
|
+
expect_any_instance_of(Chef::Provider::Execute).not_to receive(:shell_out_compacted!).with(*apt_update_cmd, anything)
|
92
92
|
provider.run_action(:periodic)
|
93
93
|
expect(new_resource).to_not be_updated_by_last_action
|
94
94
|
end
|
@@ -100,14 +100,14 @@ describe Chef::Provider::AptUpdate do
|
|
100
100
|
|
101
101
|
it "should run if the time stamp is old" do
|
102
102
|
expect(File).to receive(:mtime).with("#{stamp_dir}/update-success-stamp").and_return(Time.now - 500)
|
103
|
-
expect_any_instance_of(Chef::Provider::Execute).to receive(:shell_out_compacted!).with(*apt_update_cmd, anything
|
103
|
+
expect_any_instance_of(Chef::Provider::Execute).to receive(:shell_out_compacted!).with(*apt_update_cmd, anything)
|
104
104
|
provider.run_action(:periodic)
|
105
105
|
expect(new_resource).to be_updated_by_last_action
|
106
106
|
end
|
107
107
|
|
108
108
|
it "should not run if the time stamp is new" do
|
109
109
|
expect(File).to receive(:mtime).with("#{stamp_dir}/update-success-stamp").and_return(Time.now - 300)
|
110
|
-
expect_any_instance_of(Chef::Provider::Execute).not_to receive(:shell_out_compacted!).with(*apt_update_cmd, anything
|
110
|
+
expect_any_instance_of(Chef::Provider::Execute).not_to receive(:shell_out_compacted!).with(*apt_update_cmd, anything)
|
111
111
|
provider.run_action(:periodic)
|
112
112
|
expect(new_resource).to_not be_updated_by_last_action
|
113
113
|
end
|
@@ -51,7 +51,7 @@ describe Chef::Provider::Cron do
|
|
51
51
|
2 * 1 * * /bin/false
|
52
52
|
|
53
53
|
# Another comment
|
54
|
-
CRONTAB
|
54
|
+
CRONTAB
|
55
55
|
end
|
56
56
|
|
57
57
|
it "should set cron_exists" do
|
@@ -80,7 +80,7 @@ CRONTAB
|
|
80
80
|
2 * 1 * * /bin/false
|
81
81
|
|
82
82
|
# Another comment
|
83
|
-
CRONTAB
|
83
|
+
CRONTAB
|
84
84
|
cron = @provider.load_current_resource
|
85
85
|
expect(cron.mailto).to eq("foo@example.com")
|
86
86
|
expect(cron.shell).to eq("/bin/foosh")
|
@@ -97,7 +97,7 @@ CRONTAB
|
|
97
97
|
TEST=lol
|
98
98
|
FLAG=1
|
99
99
|
@reboot /bin/true
|
100
|
-
CRONTAB
|
100
|
+
CRONTAB
|
101
101
|
cron = @provider.load_current_resource
|
102
102
|
|
103
103
|
expect(cron.mailto).to eq("warn@example.com")
|
@@ -112,7 +112,7 @@ CRONTAB
|
|
112
112
|
TEST=lol
|
113
113
|
ENVIRONMENT=production
|
114
114
|
@reboot /bin/true
|
115
|
-
CRONTAB
|
115
|
+
CRONTAB
|
116
116
|
cron = @provider.load_current_resource
|
117
117
|
|
118
118
|
expect(cron.time).to eq(:reboot)
|
@@ -175,7 +175,7 @@ CRONTAB
|
|
175
175
|
* 5 * * * /bin/true
|
176
176
|
|
177
177
|
# Another comment
|
178
|
-
CRONTAB
|
178
|
+
CRONTAB
|
179
179
|
end
|
180
180
|
|
181
181
|
it "should not set cron_exists or cron_empty" do
|
@@ -193,7 +193,7 @@ CRONTAB
|
|
193
193
|
allow(@provider).to receive(:read_crontab).and_return(<<~CRONTAB)
|
194
194
|
# Chef Name: foo[bar] (baz)
|
195
195
|
21 */4 * * * some_prog 1234567
|
196
|
-
CRONTAB
|
196
|
+
CRONTAB
|
197
197
|
expect do
|
198
198
|
@provider.load_current_resource
|
199
199
|
end.not_to raise_error
|
@@ -211,7 +211,7 @@ CRONTAB
|
|
211
211
|
2 * 1 * * /bin/false
|
212
212
|
|
213
213
|
# Another comment
|
214
|
-
CRONTAB
|
214
|
+
CRONTAB
|
215
215
|
end
|
216
216
|
|
217
217
|
it "should set cron_exists" do
|
@@ -245,7 +245,7 @@ CRONTAB
|
|
245
245
|
2 * 1 * * /bin/false
|
246
246
|
|
247
247
|
# Another comment
|
248
|
-
CRONTAB
|
248
|
+
CRONTAB
|
249
249
|
cron = @provider.load_current_resource
|
250
250
|
expect(cron.mailto).to eq("foo@example.com")
|
251
251
|
expect(cron.shell).to eq("/bin/foosh")
|
@@ -267,7 +267,7 @@ CRONTAB
|
|
267
267
|
TEST=lol
|
268
268
|
FLAG=1
|
269
269
|
* 5 * * * /bin/true
|
270
|
-
CRONTAB
|
270
|
+
CRONTAB
|
271
271
|
cron = @provider.load_current_resource
|
272
272
|
|
273
273
|
expect(cron.mailto).to eq("warn@example.com")
|
@@ -282,7 +282,7 @@ CRONTAB
|
|
282
282
|
TEST=lol
|
283
283
|
ENVIRONMENT=production
|
284
284
|
* 5 * * * /bin/true
|
285
|
-
CRONTAB
|
285
|
+
CRONTAB
|
286
286
|
cron = @provider.load_current_resource
|
287
287
|
|
288
288
|
expect(cron.minute).to eq("*")
|
@@ -307,7 +307,7 @@ CRONTAB
|
|
307
307
|
2 * 1 * * /bin/false
|
308
308
|
|
309
309
|
# Another comment
|
310
|
-
CRONTAB
|
310
|
+
CRONTAB
|
311
311
|
end
|
312
312
|
|
313
313
|
it "should set cron_exists" do
|
@@ -338,7 +338,7 @@ CRONTAB
|
|
338
338
|
0 2 * * * /some/other/command
|
339
339
|
|
340
340
|
# Chef Name: cronhole some stuff
|
341
|
-
CRONTAB
|
341
|
+
CRONTAB
|
342
342
|
cron = @provider.load_current_resource
|
343
343
|
expect(@provider.cron_exists).to eq(true)
|
344
344
|
expect(cron.minute).to eq("*")
|
@@ -356,7 +356,7 @@ CRONTAB
|
|
356
356
|
|
357
357
|
# Chef Name: cronhole some stuff
|
358
358
|
#* 5 * 1 * /bin/true param1 param2
|
359
|
-
CRONTAB
|
359
|
+
CRONTAB
|
360
360
|
cron = @provider.load_current_resource
|
361
361
|
expect(@provider.cron_exists).to eq(true)
|
362
362
|
expect(cron.minute).to eq("*")
|
@@ -378,7 +378,7 @@ CRONTAB
|
|
378
378
|
2 * 1 * * /bin/false
|
379
379
|
|
380
380
|
# Another comment
|
381
|
-
CRONTAB
|
381
|
+
CRONTAB
|
382
382
|
cron = @provider.load_current_resource
|
383
383
|
expect(@provider.cron_exists).to eq(true)
|
384
384
|
expect(cron.minute).to eq("*")
|
@@ -401,7 +401,7 @@ CRONTAB
|
|
401
401
|
@provider.current_resource = @current_resource
|
402
402
|
end
|
403
403
|
|
404
|
-
|
404
|
+
%i{minute hour day month weekday command mailto path shell home}.each do |property|
|
405
405
|
it "should return true if #{property} doesn't match" do
|
406
406
|
@new_resource.send(property, "something_else")
|
407
407
|
expect(@provider.cron_different?).to eql(true)
|