chef 12.18.31-universal-mingw32 → 12.19.33-universal-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (305) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +5 -4
  3. data/README.md +12 -13
  4. data/VERSION +1 -1
  5. data/acceptance/Gemfile +4 -4
  6. data/acceptance/Gemfile.lock +70 -69
  7. data/chef-universal-mingw32.gemspec +2 -3
  8. data/chef.gemspec +6 -6
  9. data/lib/chef/api_client.rb +8 -10
  10. data/lib/chef/api_client_v1.rb +9 -11
  11. data/lib/chef/application/apply.rb +8 -10
  12. data/lib/chef/application/client.rb +1 -1
  13. data/lib/chef/application/exit_code.rb +3 -5
  14. data/lib/chef/application/knife.rb +2 -2
  15. data/lib/chef/application/windows_service.rb +29 -30
  16. data/lib/chef/application/windows_service_manager.rb +1 -1
  17. data/lib/chef/audit/audit_event_proxy.rb +2 -2
  18. data/lib/chef/audit/control_group_data.rb +1 -1
  19. data/lib/chef/chef_class.rb +1 -0
  20. data/lib/chef/chef_fs/chef_fs_data_store.rb +5 -7
  21. data/lib/chef/chef_fs/command_line.rb +15 -16
  22. data/lib/chef/chef_fs/data_handler/client_data_handler.rb +1 -1
  23. data/lib/chef/chef_fs/data_handler/container_data_handler.rb +1 -1
  24. data/lib/chef/chef_fs/data_handler/cookbook_data_handler.rb +1 -1
  25. data/lib/chef/chef_fs/data_handler/data_bag_item_data_handler.rb +1 -1
  26. data/lib/chef/chef_fs/data_handler/environment_data_handler.rb +1 -1
  27. data/lib/chef/chef_fs/data_handler/group_data_handler.rb +1 -1
  28. data/lib/chef/chef_fs/data_handler/node_data_handler.rb +1 -1
  29. data/lib/chef/chef_fs/data_handler/organization_data_handler.rb +1 -1
  30. data/lib/chef/chef_fs/data_handler/role_data_handler.rb +1 -1
  31. data/lib/chef/chef_fs/data_handler/user_data_handler.rb +1 -1
  32. data/lib/chef/chef_fs/file_pattern.rb +2 -2
  33. data/lib/chef/chef_fs/file_system.rb +1 -1
  34. data/lib/chef/chef_fs/file_system/chef_server/cookbook_dir.rb +5 -6
  35. data/lib/chef/chef_fs/file_system/chef_server/cookbook_file.rb +8 -10
  36. data/lib/chef/chef_fs/file_system/chef_server/data_bags_dir.rb +8 -10
  37. data/lib/chef/chef_fs/file_system/chef_server/nodes_dir.rb +10 -12
  38. data/lib/chef/chef_fs/file_system/chef_server/policies_dir.rb +28 -30
  39. data/lib/chef/chef_fs/file_system/chef_server/policy_group_entry.rb +1 -1
  40. data/lib/chef/chef_fs/file_system/chef_server/rest_list_dir.rb +27 -29
  41. data/lib/chef/chef_fs/file_system/chef_server/rest_list_entry.rb +18 -24
  42. data/lib/chef/chef_fs/file_system/memory/memory_file.rb +1 -1
  43. data/lib/chef/chef_fs/file_system/multiplexed_dir.rb +10 -12
  44. data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_cookbook_dir.rb +10 -12
  45. data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_cookbook_entry.rb +9 -13
  46. data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_root_dir.rb +2 -0
  47. data/lib/chef/chef_fs/file_system/repository/cookbooks_dir.rb +1 -1
  48. data/lib/chef/chef_fs/file_system/repository/nodes_dir.rb +3 -0
  49. data/lib/chef/chef_fs/parallelizer.rb +9 -11
  50. data/lib/chef/cookbook/cookbook_version_loader.rb +25 -31
  51. data/lib/chef/cookbook/metadata.rb +26 -26
  52. data/lib/chef/cookbook/syntax_check.rb +1 -1
  53. data/lib/chef/cookbook_version.rb +3 -3
  54. data/lib/chef/data_bag.rb +1 -1
  55. data/lib/chef/data_bag_item.rb +3 -3
  56. data/lib/chef/data_collector.rb +3 -4
  57. data/lib/chef/decorator.rb +1 -1
  58. data/lib/chef/deprecated.rb +30 -0
  59. data/lib/chef/dsl/audit.rb +2 -2
  60. data/lib/chef/dsl/declare_resource.rb +1 -1
  61. data/lib/chef/dsl/platform_introspection.rb +29 -31
  62. data/lib/chef/dsl/reboot_pending.rb +1 -1
  63. data/lib/chef/dsl/resources.rb +6 -8
  64. data/lib/chef/encrypted_data_bag_item.rb +2 -2
  65. data/lib/chef/environment.rb +9 -11
  66. data/lib/chef/event_loggers/windows_eventlog.rb +1 -1
  67. data/lib/chef/exceptions.rb +4 -1
  68. data/lib/chef/file_access_control/unix.rb +14 -14
  69. data/lib/chef/file_access_control/windows.rb +1 -1
  70. data/lib/chef/formatters/error_inspectors/api_error_formatting.rb +4 -5
  71. data/lib/chef/formatters/error_mapper.rb +6 -6
  72. data/lib/chef/http/api_versions.rb +50 -0
  73. data/lib/chef/http/validate_content_length.rb +2 -2
  74. data/lib/chef/json_compat.rb +6 -10
  75. data/lib/chef/key.rb +5 -5
  76. data/lib/chef/knife.rb +4 -4
  77. data/lib/chef/knife/cookbook_site_install.rb +2 -2
  78. data/lib/chef/knife/core/cookbook_scm_repo.rb +2 -2
  79. data/lib/chef/knife/core/gem_glob_loader.rb +1 -1
  80. data/lib/chef/knife/core/status_presenter.rb +1 -1
  81. data/lib/chef/knife/core/ui.rb +19 -25
  82. data/lib/chef/knife/data_bag_secret_options.rb +1 -1
  83. data/lib/chef/knife/deps.rb +32 -34
  84. data/lib/chef/knife/help.rb +1 -1
  85. data/lib/chef/knife/list.rb +1 -1
  86. data/lib/chef/knife/search.rb +2 -2
  87. data/lib/chef/knife/ssh.rb +37 -27
  88. data/lib/chef/knife/ssl_check.rb +1 -1
  89. data/lib/chef/knife/user_delete.rb +1 -1
  90. data/lib/chef/mash.rb +1 -1
  91. data/lib/chef/mixin/command.rb +2 -2
  92. data/lib/chef/mixin/create_path.rb +3 -5
  93. data/lib/chef/mixin/from_file.rb +2 -2
  94. data/lib/chef/mixin/get_source_from_package.rb +2 -2
  95. data/lib/chef/mixin/notifying_block.rb +7 -9
  96. data/lib/chef/mixin/params_validate.rb +3 -3
  97. data/lib/chef/mixin/securable.rb +1 -1
  98. data/lib/chef/mixin/shell_out.rb +23 -3
  99. data/lib/chef/mixin/unformatter.rb +2 -2
  100. data/lib/chef/mixin/uris.rb +4 -6
  101. data/lib/chef/mixin/versioned_api.rb +69 -0
  102. data/lib/chef/mixin/which.rb +25 -8
  103. data/lib/chef/mixin/windows_architecture_helper.rb +2 -2
  104. data/lib/chef/mixin/xml_escape.rb +3 -5
  105. data/lib/chef/monkey_patches/webrick-utils.rb +1 -1
  106. data/lib/chef/node.rb +8 -8
  107. data/lib/chef/node/attribute.rb +4 -4
  108. data/lib/chef/node/common_api.rb +5 -7
  109. data/lib/chef/org.rb +10 -12
  110. data/lib/chef/platform/provider_mapping.rb +7 -7
  111. data/lib/chef/platform/query_helpers.rb +1 -1
  112. data/lib/chef/policy_builder/policyfile.rb +1 -0
  113. data/lib/chef/property.rb +31 -0
  114. data/lib/chef/provider/batch.rb +1 -1
  115. data/lib/chef/provider/breakpoint.rb +1 -1
  116. data/lib/chef/provider/cookbook_file.rb +3 -3
  117. data/lib/chef/provider/cron.rb +38 -38
  118. data/lib/chef/provider/deploy.rb +81 -81
  119. data/lib/chef/provider/deploy/revision.rb +3 -5
  120. data/lib/chef/provider/directory.rb +32 -32
  121. data/lib/chef/provider/dsc_resource.rb +22 -6
  122. data/lib/chef/provider/env.rb +28 -28
  123. data/lib/chef/provider/env/windows.rb +1 -1
  124. data/lib/chef/provider/erl_call.rb +13 -13
  125. data/lib/chef/provider/execute.rb +5 -2
  126. data/lib/chef/provider/file.rb +49 -51
  127. data/lib/chef/provider/git.rb +55 -55
  128. data/lib/chef/provider/http_request.rb +36 -36
  129. data/lib/chef/provider/launchd.rb +2 -2
  130. data/lib/chef/provider/link.rb +50 -50
  131. data/lib/chef/provider/log.rb +2 -2
  132. data/lib/chef/provider/mdadm.rb +25 -25
  133. data/lib/chef/provider/mount/aix.rb +2 -2
  134. data/lib/chef/provider/mount/mount.rb +2 -2
  135. data/lib/chef/provider/ohai.rb +1 -1
  136. data/lib/chef/provider/osx_profile.rb +23 -23
  137. data/lib/chef/provider/package.rb +74 -56
  138. data/lib/chef/provider/package/aix.rb +55 -52
  139. data/lib/chef/provider/package/apt.rb +15 -13
  140. data/lib/chef/provider/package/cab.rb +49 -20
  141. data/lib/chef/provider/package/chocolatey.rb +9 -10
  142. data/lib/chef/provider/package/dnf.rb +20 -18
  143. data/lib/chef/provider/package/dnf/dnf_helper.py +1 -1
  144. data/lib/chef/provider/package/dnf/python_helper.rb +63 -26
  145. data/lib/chef/provider/package/dnf/version.rb +1 -1
  146. data/lib/chef/provider/package/dpkg.rb +8 -9
  147. data/lib/chef/provider/package/easy_install.rb +22 -22
  148. data/lib/chef/provider/package/freebsd/base.rb +10 -10
  149. data/lib/chef/provider/package/freebsd/pkg.rb +15 -15
  150. data/lib/chef/provider/package/freebsd/pkgng.rb +13 -15
  151. data/lib/chef/provider/package/freebsd/port.rb +7 -7
  152. data/lib/chef/provider/package/homebrew.rb +11 -10
  153. data/lib/chef/provider/package/ips.rb +18 -23
  154. data/lib/chef/provider/package/macports.rb +23 -23
  155. data/lib/chef/provider/package/msu.rb +11 -11
  156. data/lib/chef/provider/package/openbsd.rb +25 -22
  157. data/lib/chef/provider/package/pacman.rb +16 -16
  158. data/lib/chef/provider/package/paludis.rb +26 -27
  159. data/lib/chef/provider/package/portage.rb +22 -22
  160. data/lib/chef/provider/package/powershell.rb +17 -17
  161. data/lib/chef/provider/package/rpm.rb +25 -25
  162. data/lib/chef/provider/package/rubygems.rb +60 -60
  163. data/lib/chef/provider/package/smartos.rb +16 -16
  164. data/lib/chef/provider/package/solaris.rb +44 -44
  165. data/lib/chef/provider/package/windows.rb +3 -3
  166. data/lib/chef/provider/package/windows/exe.rb +6 -6
  167. data/lib/chef/provider/package/windows/msi.rb +6 -6
  168. data/lib/chef/provider/package/yum.rb +318 -268
  169. data/lib/chef/provider/package/yum/rpm_utils.rb +34 -34
  170. data/lib/chef/provider/package/yum/yum_cache.rb +12 -12
  171. data/lib/chef/provider/package/zypper.rb +11 -11
  172. data/lib/chef/provider/powershell_script.rb +15 -7
  173. data/lib/chef/provider/reboot.rb +10 -10
  174. data/lib/chef/provider/registry_key.rb +39 -39
  175. data/lib/chef/provider/remote_directory.rb +3 -3
  176. data/lib/chef/provider/remote_file.rb +3 -3
  177. data/lib/chef/provider/route.rb +1 -1
  178. data/lib/chef/provider/ruby_block.rb +3 -3
  179. data/lib/chef/provider/script.rb +42 -6
  180. data/lib/chef/provider/service.rb +49 -49
  181. data/lib/chef/provider/service/solaris.rb +1 -1
  182. data/lib/chef/provider/service/systemd.rb +1 -1
  183. data/lib/chef/provider/subversion.rb +39 -39
  184. data/lib/chef/provider/systemd_unit.rb +2 -0
  185. data/lib/chef/provider/template.rb +3 -3
  186. data/lib/chef/provider/user.rb +42 -42
  187. data/lib/chef/provider/whyrun_safe_ruby_block.rb +4 -4
  188. data/lib/chef/resource.rb +27 -16
  189. data/lib/chef/resource/apt_repository.rb +0 -1
  190. data/lib/chef/resource/chef_gem.rb +1 -1
  191. data/lib/chef/resource/dnf_package.rb +6 -3
  192. data/lib/chef/resource/dsc_resource.rb +9 -1
  193. data/lib/chef/resource/execute.rb +70 -6
  194. data/lib/chef/resource/file/verification/systemd_unit.rb +67 -0
  195. data/lib/chef/resource/freebsd_package.rb +1 -1
  196. data/lib/chef/resource/gem_package.rb +1 -1
  197. data/lib/chef/resource/launchd.rb +13 -1
  198. data/lib/chef/resource/package.rb +2 -2
  199. data/lib/chef/resource/registry_key.rb +1 -1
  200. data/lib/chef/resource/yum_package.rb +12 -3
  201. data/lib/chef/resource/yum_repository.rb +0 -1
  202. data/lib/chef/resource_collection/resource_collection_serialization.rb +3 -3
  203. data/lib/chef/resource_collection/resource_set.rb +2 -2
  204. data/lib/chef/resource_reporter.rb +1 -1
  205. data/lib/chef/run_context.rb +3 -3
  206. data/lib/chef/run_list/run_list_item.rb +1 -1
  207. data/lib/chef/run_list/versioned_recipe_list.rb +6 -6
  208. data/lib/chef/server_api.rb +2 -0
  209. data/lib/chef/server_api_versions.rb +40 -0
  210. data/lib/chef/shell.rb +1 -1
  211. data/lib/chef/shell/ext.rb +3 -3
  212. data/lib/chef/shell/shell_session.rb +1 -1
  213. data/lib/chef/user.rb +9 -11
  214. data/lib/chef/user_v1.rb +9 -11
  215. data/lib/chef/util/diff.rb +1 -1
  216. data/lib/chef/util/dsc/lcm_output_parser.rb +1 -1
  217. data/lib/chef/util/selinux.rb +1 -1
  218. data/lib/chef/util/windows/net_group.rb +18 -30
  219. data/lib/chef/util/windows/net_use.rb +7 -11
  220. data/lib/chef/util/windows/net_user.rb +11 -17
  221. data/lib/chef/util/windows/volume.rb +9 -15
  222. data/lib/chef/version.rb +1 -1
  223. data/lib/chef/version_class.rb +1 -1
  224. data/lib/chef/win32/api.rb +4 -6
  225. data/lib/chef/win32/api/file.rb +25 -31
  226. data/lib/chef/win32/api/installer.rb +2 -2
  227. data/lib/chef/win32/file.rb +4 -6
  228. data/lib/chef/win32/registry.rb +9 -9
  229. data/lib/chef/win32/security.rb +2 -2
  230. data/lib/chef/win32/security/acl.rb +2 -2
  231. data/lib/chef/win32/unicode.rb +2 -2
  232. data/lib/chef/win32/version.rb +1 -1
  233. data/spec/data/prefer_metadata_json/metadata.json +51 -0
  234. data/spec/data/prefer_metadata_json/metadata.rb +6 -0
  235. data/spec/data/prefer_metadata_json/recipes/default.rb +0 -0
  236. data/spec/functional/knife/ssh_spec.rb +5 -5
  237. data/spec/functional/resource/batch_spec.rb +5 -1
  238. data/spec/functional/resource/dsc_script_spec.rb +2 -4
  239. data/spec/functional/resource/execute_spec.rb +17 -0
  240. data/spec/functional/resource/user/dscl_spec.rb +2 -4
  241. data/spec/integration/client/client_spec.rb +33 -0
  242. data/spec/integration/recipes/recipe_dsl_spec.rb +58 -58
  243. data/spec/spec_helper.rb +4 -0
  244. data/spec/support/chef_helpers.rb +5 -7
  245. data/spec/support/platform_helpers.rb +6 -0
  246. data/spec/support/platforms/prof/gc.rb +4 -6
  247. data/spec/support/shared/context/client.rb +1 -1
  248. data/spec/support/shared/functional/execute_resource.rb +150 -0
  249. data/spec/support/shared/functional/windows_script.rb +74 -4
  250. data/spec/support/shared/unit/execute_resource.rb +37 -0
  251. data/spec/support/shared/unit/provider/file.rb +10 -0
  252. data/spec/unit/cookbook/cookbook_version_loader_spec.rb +9 -0
  253. data/spec/unit/cookbook/syntax_check_spec.rb +8 -2
  254. data/spec/unit/http/api_versions_spec.rb +69 -0
  255. data/spec/unit/knife/ssh_spec.rb +34 -36
  256. data/spec/unit/mixin/versioned_api_spec.rb +107 -0
  257. data/spec/unit/mixin/which.rb +160 -0
  258. data/spec/unit/platform_spec.rb +28 -1
  259. data/spec/unit/provider/deploy_spec.rb +1 -1
  260. data/spec/unit/provider/directory_spec.rb +10 -0
  261. data/spec/unit/provider/dsc_resource_spec.rb +175 -0
  262. data/spec/unit/provider/execute_spec.rb +0 -1
  263. data/spec/unit/provider/launchd_spec.rb +2 -2
  264. data/spec/unit/provider/package/aix_spec.rb +22 -22
  265. data/spec/unit/provider/package/apt_spec.rb +27 -27
  266. data/spec/unit/provider/package/cab_spec.rb +59 -5
  267. data/spec/unit/provider/package/dnf/python_helper_spec.rb +29 -0
  268. data/spec/unit/provider/package/dpkg_spec.rb +16 -16
  269. data/spec/unit/provider/package/easy_install_spec.rb +18 -18
  270. data/spec/unit/provider/package/freebsd/pkg_spec.rb +15 -15
  271. data/spec/unit/provider/package/freebsd/pkgng_spec.rb +9 -9
  272. data/spec/unit/provider/package/freebsd/port_spec.rb +9 -9
  273. data/spec/unit/provider/package/homebrew_spec.rb +9 -9
  274. data/spec/unit/provider/package/ips_spec.rb +37 -31
  275. data/spec/unit/provider/package/macports_spec.rb +10 -10
  276. data/spec/unit/provider/package/openbsd_spec.rb +10 -10
  277. data/spec/unit/provider/package/pacman_spec.rb +6 -6
  278. data/spec/unit/provider/package/paludis_spec.rb +7 -7
  279. data/spec/unit/provider/package/portage_spec.rb +6 -7
  280. data/spec/unit/provider/package/rpm_spec.rb +23 -23
  281. data/spec/unit/provider/package/rubygems_spec.rb +38 -38
  282. data/spec/unit/provider/package/solaris_spec.rb +15 -15
  283. data/spec/unit/provider/package/windows_spec.rb +2 -1
  284. data/spec/unit/provider/package/yum_spec.rb +51 -43
  285. data/spec/unit/provider/package/zypper_spec.rb +34 -34
  286. data/spec/unit/provider/package_spec.rb +8 -0
  287. data/spec/unit/provider/remote_file/sftp_spec.rb +3 -3
  288. data/spec/unit/provider/route_spec.rb +7 -1
  289. data/spec/unit/provider/script_spec.rb +49 -6
  290. data/spec/unit/resource/dsc_resource_spec.rb +6 -0
  291. data/spec/unit/resource/execute_spec.rb +214 -0
  292. data/spec/unit/resource/file/verification/systemd_unit_spec.rb +103 -0
  293. data/spec/unit/resource/freebsd_package_spec.rb +2 -2
  294. data/spec/unit/resource/package_spec.rb +5 -0
  295. data/spec/unit/resource/yum_package_spec.rb +42 -1
  296. data/spec/unit/resource_reporter_spec.rb +1 -1
  297. data/spec/unit/resource_spec.rb +18 -0
  298. data/spec/unit/server_api_versions_spec.rb +44 -0
  299. data/spec/unit/util/selinux_spec.rb +3 -14
  300. data/spec/unit/win32/error_spec.rb +67 -0
  301. data/spec/unit/win32/security_spec.rb +66 -0
  302. data/tasks/changelog.rb +1 -1
  303. data/tasks/dependencies.rb +20 -4
  304. metadata +39 -18
  305. data/lib/chef/monkey_patches/net-ssh-multi.rb +0 -141
@@ -30,27 +30,21 @@ class Chef::Util::Windows::Volume < Chef::Util::Windows
30
30
  end
31
31
 
32
32
  def device
33
- begin
34
- Chef::ReservedNames::Win32::File.get_volume_name_for_volume_mount_point(mount_point)
35
- rescue Chef::Exceptions::Win32APIError => e
36
- raise ArgumentError, e
37
- end
33
+ Chef::ReservedNames::Win32::File.get_volume_name_for_volume_mount_point(mount_point)
34
+ rescue Chef::Exceptions::Win32APIError => e
35
+ raise ArgumentError, e
38
36
  end
39
37
 
40
38
  def delete
41
- begin
42
- Chef::ReservedNames::Win32::File.delete_volume_mount_point(mount_point)
43
- rescue Chef::Exceptions::Win32APIError => e
44
- raise ArgumentError, e
45
- end
39
+ Chef::ReservedNames::Win32::File.delete_volume_mount_point(mount_point)
40
+ rescue Chef::Exceptions::Win32APIError => e
41
+ raise ArgumentError, e
46
42
  end
47
43
 
48
44
  def add(args)
49
- begin
50
- Chef::ReservedNames::Win32::File.set_volume_mount_point(mount_point, args[:remote])
51
- rescue Chef::Exceptions::Win32APIError => e
52
- raise ArgumentError, e
53
- end
45
+ Chef::ReservedNames::Win32::File.set_volume_mount_point(mount_point, args[:remote])
46
+ rescue Chef::Exceptions::Win32APIError => e
47
+ raise ArgumentError, e
54
48
  end
55
49
 
56
50
  def mount_point
@@ -21,7 +21,7 @@
21
21
 
22
22
  class Chef
23
23
  CHEF_ROOT = File.expand_path("../..", __FILE__)
24
- VERSION = "12.18.31"
24
+ VERSION = "12.19.33"
25
25
  end
26
26
 
27
27
  #
@@ -34,7 +34,7 @@ class Chef
34
34
 
35
35
  def <=>(other)
36
36
  [:major, :minor, :patch].each do |method|
37
- version = self.send(method)
37
+ version = send(method)
38
38
  begin
39
39
  ans = (version <=> other.send(method))
40
40
  rescue NoMethodError # if the other thing isn't a version object, return nil
@@ -29,12 +29,10 @@ class Chef
29
29
  # function into the calling module. If this fails a dummy method is
30
30
  # defined which when called, raises a helpful exception to the end-user.
31
31
  def safe_attach_function(win32_func, *args)
32
- begin
33
- attach_function(win32_func.to_sym, *args)
34
- rescue FFI::NotFoundError
35
- define_method(win32_func.to_sym) do |*margs|
36
- raise Chef::Exceptions::Win32APIFunctionNotImplemented, "This version of Windows does not implement the Win32 function [#{win32_func}]."
37
- end
32
+ attach_function(win32_func.to_sym, *args)
33
+ rescue FFI::NotFoundError
34
+ define_method(win32_func.to_sym) do |*margs|
35
+ raise Chef::Exceptions::Win32APIFunctionNotImplemented, "This version of Windows does not implement the Win32 function [#{win32_func}]."
38
36
  end
39
37
  end
40
38
 
@@ -537,24 +537,22 @@ BOOL WINAPI VerQueryValue(
537
537
  # ensures the handle is closed on exit of the block
538
538
  # FIXME: yard with @yield
539
539
  def file_search_handle(path)
540
- begin
541
540
  # Workaround for CHEF-4419:
542
541
  # Make sure paths starting with "/" has a drive letter
543
542
  # assigned from the current working diretory.
544
543
  # Note: With CHEF-4427 this issue will be fixed with a
545
544
  # broader fix to map all the paths starting with "/" to
546
545
  # SYSTEM_DRIVE on windows.
547
- path = ::File.expand_path(path) if path.start_with? "/"
548
- path = canonical_encode_path(path)
549
- find_data = WIN32_FIND_DATA.new
550
- handle = FindFirstFileW(path, find_data)
551
- if handle == INVALID_HANDLE_VALUE
552
- Chef::ReservedNames::Win32::Error.raise!
553
- end
554
- yield(handle, find_data)
555
- ensure
556
- FindClose(handle) if handle && handle != INVALID_HANDLE_VALUE
546
+ path = ::File.expand_path(path) if path.start_with? "/"
547
+ path = canonical_encode_path(path)
548
+ find_data = WIN32_FIND_DATA.new
549
+ handle = FindFirstFileW(path, find_data)
550
+ if handle == INVALID_HANDLE_VALUE
551
+ Chef::ReservedNames::Win32::Error.raise!
557
552
  end
553
+ yield(handle, find_data)
554
+ ensure
555
+ FindClose(handle) if handle && handle != INVALID_HANDLE_VALUE
558
556
  end
559
557
 
560
558
  # retrieves a file handle and passes it
@@ -562,34 +560,30 @@ BOOL WINAPI VerQueryValue(
562
560
  # ensures the handle is closed on exit of the block
563
561
  # FIXME: yard with @yield
564
562
  def file_handle(path)
565
- begin
566
- path = canonical_encode_path(path)
567
- handle = CreateFileW(path, GENERIC_READ, FILE_SHARE_READ,
568
- nil, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_BACKUP_SEMANTICS, nil)
563
+ path = canonical_encode_path(path)
564
+ handle = CreateFileW(path, GENERIC_READ, FILE_SHARE_READ,
565
+ nil, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_BACKUP_SEMANTICS, nil)
569
566
 
570
- if handle == INVALID_HANDLE_VALUE
571
- Chef::ReservedNames::Win32::Error.raise!
572
- end
573
- yield(handle)
574
- ensure
575
- CloseHandle(handle) if handle && handle != INVALID_HANDLE_VALUE
567
+ if handle == INVALID_HANDLE_VALUE
568
+ Chef::ReservedNames::Win32::Error.raise!
576
569
  end
570
+ yield(handle)
571
+ ensure
572
+ CloseHandle(handle) if handle && handle != INVALID_HANDLE_VALUE
577
573
  end
578
574
 
579
575
  # FIXME: yard with @yield
580
576
  def symlink_file_handle(path)
581
- begin
582
- path = encode_path(path)
583
- handle = CreateFileW(path, FILE_READ_EA, FILE_SHARE_READ,
584
- nil, OPEN_EXISTING, FILE_FLAG_OPEN_REPARSE_POINT | FILE_FLAG_BACKUP_SEMANTICS, nil)
577
+ path = encode_path(path)
578
+ handle = CreateFileW(path, FILE_READ_EA, FILE_SHARE_READ,
579
+ nil, OPEN_EXISTING, FILE_FLAG_OPEN_REPARSE_POINT | FILE_FLAG_BACKUP_SEMANTICS, nil)
585
580
 
586
- if handle == INVALID_HANDLE_VALUE
587
- Chef::ReservedNames::Win32::Error.raise!
588
- end
589
- yield(handle)
590
- ensure
591
- CloseHandle(handle) if handle && handle != INVALID_HANDLE_VALUE
581
+ if handle == INVALID_HANDLE_VALUE
582
+ Chef::ReservedNames::Win32::Error.raise!
592
583
  end
584
+ yield(handle)
585
+ ensure
586
+ CloseHandle(handle) if handle && handle != INVALID_HANDLE_VALUE
593
587
  end
594
588
 
595
589
  def retrieve_file_info(file_name)
@@ -107,7 +107,7 @@ UINT MsiCloseHandle(
107
107
  end
108
108
 
109
109
  msi_close_handle(pkg_ptr.read_pointer)
110
- return buffer.chomp(0.chr)
110
+ buffer.chomp(0.chr)
111
111
  end
112
112
 
113
113
  # Opens a Microsoft Installer (MSI) file from an absolute path and returns a pointer to a handle
@@ -124,7 +124,7 @@ UINT MsiCloseHandle(
124
124
  else
125
125
  raise Chef::Exceptions::Package, "msi_open_package: unexpected status #{status}: #{Chef::ReservedNames::Win32::Error.format_message(status)}"
126
126
  end
127
- return pkg_ptr
127
+ pkg_ptr
128
128
  end
129
129
 
130
130
  # All installed product_codes should have a VersionString
@@ -155,13 +155,11 @@ class Chef
155
155
  end
156
156
 
157
157
  def self.verify_links_supported!
158
- begin
159
- CreateSymbolicLinkW(nil)
160
- rescue Chef::Exceptions::Win32APIFunctionNotImplemented => e
161
- raise e
162
- rescue Exception
158
+ CreateSymbolicLinkW(nil)
159
+ rescue Chef::Exceptions::Win32APIFunctionNotImplemented => e
160
+ raise e
161
+ rescue Exception
163
162
  # things are ok.
164
- end
165
163
  end
166
164
 
167
165
  def self.file_access_check(path, desired_access)
@@ -170,7 +170,7 @@ class Chef
170
170
  rescue Chef::Exceptions::Win32RegHiveMissing => e
171
171
  return false
172
172
  end
173
- return true
173
+ true
174
174
  end
175
175
 
176
176
  def has_subkeys?(key_path)
@@ -179,7 +179,7 @@ class Chef
179
179
  hive.open(key, ::Win32::Registry::KEY_READ | registry_system_architecture) do |reg|
180
180
  reg.each_key { |key| return true }
181
181
  end
182
- return false
182
+ false
183
183
  end
184
184
 
185
185
  def get_subkeys(key_path)
@@ -189,7 +189,7 @@ class Chef
189
189
  hive.open(key, ::Win32::Registry::KEY_READ | registry_system_architecture) do |reg|
190
190
  reg.each_key { |current_key| subkeys << current_key }
191
191
  end
192
- return subkeys
192
+ subkeys
193
193
  end
194
194
 
195
195
  # 32-bit chef clients running on 64-bit machines will default to reading the 64-bit registry
@@ -204,7 +204,7 @@ class Chef
204
204
  hive.open(key, ::Win32::Registry::KEY_READ | registry_system_architecture) do |reg|
205
205
  return true if reg.any? { |val| safely_downcase(val) == safely_downcase(value[:name]) }
206
206
  end
207
- return false
207
+ false
208
208
  end
209
209
 
210
210
  def data_exists?(key_path, value)
@@ -219,7 +219,7 @@ class Chef
219
219
  end
220
220
  end
221
221
  end
222
- return false
222
+ false
223
223
  end
224
224
 
225
225
  def value_exists!(key_path, value)
@@ -249,7 +249,7 @@ class Chef
249
249
  end
250
250
  end
251
251
  end
252
- return false
252
+ false
253
253
  end
254
254
 
255
255
  def type_matches!(key_path, value)
@@ -279,7 +279,7 @@ class Chef
279
279
  if val.is_a? String
280
280
  return val.downcase
281
281
  end
282
- return val
282
+ val
283
283
  end
284
284
 
285
285
  def node
@@ -316,7 +316,7 @@ class Chef
316
316
 
317
317
  raise Chef::Exceptions::Win32RegHiveMissing, "Registry Hive #{hive_name} does not exist" unless hive
318
318
 
319
- return hive, key
319
+ [hive, key]
320
320
  end
321
321
 
322
322
  def _type_name_map
@@ -345,7 +345,7 @@ class Chef
345
345
  5 => ::Win32::Registry::REG_DWORD_BIG_ENDIAN,
346
346
  11 => ::Win32::Registry::REG_QWORD,
347
347
  }[val_type]
348
- return value
348
+ value
349
349
  end
350
350
 
351
351
  def create_missing(key_path)
@@ -239,7 +239,7 @@ class Chef
239
239
  security_descriptor = FFI::MemoryPointer.new :pointer
240
240
  hr = GetNamedSecurityInfoW(path.to_wstring, type, info, nil, nil, nil, nil, security_descriptor)
241
241
  if hr != ERROR_SUCCESS
242
- Chef::ReservedNames::Win32::Error.raise!("get_named_security_info(#{path}, #{type}, #{info})")
242
+ Chef::ReservedNames::Win32::Error.raise!("get_named_security_info(#{path}, #{type}, #{info})", hr)
243
243
  end
244
244
 
245
245
  result_pointer = security_descriptor.read_pointer
@@ -538,7 +538,7 @@ class Chef
538
538
 
539
539
  hr = SetNamedSecurityInfoW(path.to_wstring, type, security_information, owner, group, dacl, sacl)
540
540
  if hr != ERROR_SUCCESS
541
- Chef::ReservedNames::Win32::Error.raise!
541
+ Chef::ReservedNames::Win32::Error.raise! nil, hr
542
542
  end
543
543
  end
544
544
 
@@ -48,7 +48,7 @@ class Chef
48
48
  0.upto(length - 1) do |i|
49
49
  return false if self[i] != other[i]
50
50
  end
51
- return true
51
+ true
52
52
  end
53
53
 
54
54
  def pointer
@@ -88,7 +88,7 @@ class Chef
88
88
  end
89
89
 
90
90
  def to_s
91
- "[#{self.collect { |ace| ace.to_s }.join(", ")}]"
91
+ "[#{collect { |ace| ace.to_s }.join(", ")}]"
92
92
  end
93
93
 
94
94
  def self.align_dword(size)
@@ -40,13 +40,13 @@ module FFI
40
40
  last_char = nil
41
41
  while last_char != "\000\000"
42
42
  length += 1
43
- last_char = self.get_bytes(0, length * 2)[-2..-1]
43
+ last_char = get_bytes(0, length * 2)[-2..-1]
44
44
  end
45
45
 
46
46
  num_wchars = length
47
47
  end
48
48
 
49
- wide_to_utf8(self.get_bytes(0, num_wchars * 2))
49
+ wide_to_utf8(get_bytes(0, num_wchars * 2))
50
50
  end
51
51
  end
52
52
  end
@@ -100,7 +100,7 @@ class Chef
100
100
 
101
101
  define_method(:marketing_name) do
102
102
  marketing_names.each do |mn|
103
- break mn[0] if self.send(mn[1])
103
+ break mn[0] if send(mn[1])
104
104
  end
105
105
  end
106
106
 
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "prefer_metadata_json",
3
+ "description": "",
4
+ "long_description": "",
5
+ "maintainer": null,
6
+ "maintainer_email": null,
7
+ "license": "All rights reserved",
8
+ "platforms": {
9
+
10
+ },
11
+ "dependencies": {
12
+
13
+ },
14
+ "recommendations": {
15
+
16
+ },
17
+ "suggestions": {
18
+
19
+ },
20
+ "conflicting": {
21
+
22
+ },
23
+ "providing": {
24
+
25
+ },
26
+ "replacing": {
27
+
28
+ },
29
+ "attributes": {
30
+
31
+ },
32
+ "groupings": {
33
+
34
+ },
35
+ "recipes": {
36
+
37
+ },
38
+ "version": "1.2.3",
39
+ "source_url": "",
40
+ "issues_url": "",
41
+ "privacy": false,
42
+ "chef_versions": [
43
+
44
+ ],
45
+ "ohai_versions": [
46
+
47
+ ],
48
+ "gems": [
49
+
50
+ ]
51
+ }
@@ -0,0 +1,6 @@
1
+ # these deliberately do not match metadata.json
2
+ name "test"
3
+ version "0.0.1"
4
+
5
+ # this raises hard if anything even tries to parse it
6
+ raise "TEH SADNESS"
@@ -181,7 +181,7 @@ describe Chef::Knife::Ssh do
181
181
 
182
182
  it "uses the ssh_attribute" do
183
183
  @knife.run
184
- expect(@knife.get_ssh_attribute(Chef::Node.new)).to eq("ec2.public_hostname")
184
+ expect(@knife.get_ssh_attribute({ "knife_config" => "ec2.public_hostname" })).to eq("ec2.public_hostname")
185
185
  end
186
186
  end
187
187
 
@@ -193,11 +193,11 @@ describe Chef::Knife::Ssh do
193
193
 
194
194
  it "uses the default" do
195
195
  @knife.run
196
- expect(@knife.get_ssh_attribute(Chef::Node.new)).to eq("fqdn")
196
+ expect(@knife.get_ssh_attribute({ "fqdn" => "fqdn" })).to eq("fqdn")
197
197
  end
198
198
  end
199
199
 
200
- context "when -a ec2.public_ipv4 is provided" do
200
+ context "when -a ec2.public_public_hostname is provided" do
201
201
  before do
202
202
  setup_knife(["-a ec2.public_hostname", "*:*", "uptime"])
203
203
  Chef::Config[:knife][:ssh_attribute] = nil
@@ -276,8 +276,8 @@ describe Chef::Knife::Ssh do
276
276
  Chef::Config[:client_key] = nil
277
277
  Chef::Config[:chef_server_url] = "http://localhost:9000"
278
278
 
279
- @api.get("/search/node?q=*:*&sort=X_CHEF_id_CHEF_X%20asc&start=0", 200) do
280
- %({"total":1, "start":0, "rows":[{"name":"i-xxxxxxxx", "json_class":"Chef::Node", "automatic":{"fqdn":"the.fqdn", "ec2":{"public_hostname":"the_public_hostname"}},"recipes":[]}]})
279
+ @api.post("/search/node?q=*:*&sort=X_CHEF_id_CHEF_X%20asc&start=0", 200) do
280
+ %({"total":1, "start":0, "rows":[{"data": {"fqdn":"the.fqdn", "config": "the_public_hostname", "knife_config": "the_public_hostname" }}]})
281
281
  end
282
282
  end
283
283
 
@@ -23,7 +23,11 @@ describe Chef::Resource::WindowsScript::Batch, :windows_only do
23
23
 
24
24
  let(:output_command) { " > " }
25
25
 
26
- let (:architecture_command) { "@echo %PROCESSOR_ARCHITECTURE%" }
26
+ let(:architecture_command) { "@echo %PROCESSOR_ARCHITECTURE%" }
27
+
28
+ let(:resource) do
29
+ Chef::Resource::WindowsScript::Batch.new("Batch resource functional test", @run_context)
30
+ end
27
31
 
28
32
  it_behaves_like "a Windows script running on Windows"
29
33
 
@@ -65,10 +65,8 @@ describe Chef::Resource::DscScript, :windows_powershell_dsc_only do
65
65
  end
66
66
 
67
67
  def delete_user(target_user)
68
- begin
69
- shell_out!("net user #{target_user} /delete")
70
- rescue Mixlib::ShellOut::ShellCommandFailed
71
- end
68
+ shell_out!("net user #{target_user} /delete")
69
+ rescue Mixlib::ShellOut::ShellCommandFailed
72
70
  end
73
71
 
74
72
  let(:dsc_env_variable) { "chefenvtest" }