chef-cli 5.6.14 → 5.6.18

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.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +5 -13
  3. data/chef-cli.gemspec +3 -3
  4. data/lib/chef-cli/command/clean_policy_cookbooks.rb +1 -1
  5. data/lib/chef-cli/command/clean_policy_revisions.rb +1 -1
  6. data/lib/chef-cli/command/delete_policy.rb +2 -2
  7. data/lib/chef-cli/command/delete_policy_group.rb +2 -2
  8. data/lib/chef-cli/command/diff.rb +3 -3
  9. data/lib/chef-cli/command/export.rb +1 -1
  10. data/lib/chef-cli/command/install.rb +1 -1
  11. data/lib/chef-cli/command/push.rb +2 -2
  12. data/lib/chef-cli/command/push_archive.rb +3 -3
  13. data/lib/chef-cli/command/show_policy.rb +3 -3
  14. data/lib/chef-cli/command/undelete.rb +2 -2
  15. data/lib/chef-cli/command/update.rb +2 -2
  16. data/lib/chef-cli/helpers.rb +1 -1
  17. data/lib/chef-cli/policyfile/artifactory_cookbook_source.rb +19 -10
  18. data/lib/chef-cli/policyfile/chef_server_cookbook_source.rb +6 -10
  19. data/lib/chef-cli/policyfile/community_cookbook_source.rb +5 -7
  20. data/lib/chef-cli/policyfile/delivery_supermarket_source.rb +6 -8
  21. data/lib/chef-cli/policyfile/dsl.rb +3 -3
  22. data/lib/chef-cli/policyfile/git_lock_fetcher.rb +1 -1
  23. data/lib/chef-cli/policyfile/policyfile_location_specification.rb +13 -17
  24. data/lib/chef-cli/policyfile/solution_dependencies.rb +1 -1
  25. data/lib/chef-cli/policyfile/uploader.rb +1 -1
  26. data/lib/chef-cli/policyfile_compiler.rb +2 -2
  27. data/lib/chef-cli/policyfile_lock.rb +1 -1
  28. data/lib/chef-cli/policyfile_services/export_repo.rb +6 -6
  29. data/lib/chef-cli/policyfile_services/install.rb +2 -2
  30. data/lib/chef-cli/policyfile_services/push.rb +2 -2
  31. data/lib/chef-cli/policyfile_services/push_archive.rb +2 -2
  32. data/lib/chef-cli/policyfile_services/update_attributes.rb +2 -2
  33. data/lib/chef-cli/skeletons/code_generator/files/default/repo/cookbooks/example/recipes/default.rb +1 -1
  34. data/lib/chef-cli/skeletons/code_generator/recipes/helpers.rb +1 -1
  35. data/lib/chef-cli/skeletons/code_generator/templates/default/kitchen.yml.erb +12 -4
  36. data/lib/chef-cli/skeletons/code_generator/templates/default/kitchen_dokken.yml.erb +34 -5
  37. data/lib/chef-cli/skeletons/code_generator/templates/default/kitchen_policyfile.yml.erb +12 -4
  38. data/lib/chef-cli/version.rb +1 -1
  39. data/spec/unit/command/generator_commands/cookbook_spec.rb +24 -8
  40. data/spec/unit/command/generator_commands/repo_spec.rb +1 -1
  41. data/spec/unit/policyfile/artifactory_cookbook_source_spec.rb +26 -0
  42. data/spec/unit/policyfile/differ_spec.rb +8 -8
  43. data/spec/unit/policyfile_lock_serialization_spec.rb +1 -1
  44. data/spec/unit/policyfile_services/clean_policies_spec.rb +1 -1
  45. metadata +18 -12
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e5ace4297d04cb8c5d06220ff10b33482402d8addc46666af48ec7d4d059216d
4
- data.tar.gz: df9ff23ccab179fef3074f774955c5c14e338aa19428b38c375ad2a2378c48da
3
+ metadata.gz: 8fbbeb4dc40f0845a31ea81d5272fbaec1ea1ef3d7ac8c1d5c60aa859819f53c
4
+ data.tar.gz: 51b13e0cf48bfd7e5786a3a8ed5cd94f99275b01d7d54e8cbd4c2df97b1af038
5
5
  SHA512:
6
- metadata.gz: 1f2ec47a77bba0c528f942824c138586690dff1a0069841df0981fd27d91b7e15c431c0065de241e22476fcccf78f76ece7c306180182ee3e1c864c970c0565c
7
- data.tar.gz: 87b4e9babe9b75b4469a96eebea4467f2165d5eb0daf738b296647469e58dd6025117d38d53301774913e10808faf5ddcaa6c2a75136b810afe7ca12932132f6
6
+ metadata.gz: 2e7487d02d583a1c61214cfe26cfeaeef7e39ecb3a312d2ff0cbff429f2c7e40cfe316fb364822c828d5d8fa27f0d6627f16e66d5d1d43b8be08c01b43845241
7
+ data.tar.gz: 9ad0ff08c0060f3420a77a1fd1b7d06cd748507475338213b809adb10dea7e445ace9d0b7508d74b97045f37bf8a837ca699acbf39d59d70fed5d77d656f5705
data/Gemfile CHANGED
@@ -2,24 +2,16 @@ source "https://rubygems.org"
2
2
 
3
3
  gemspec
4
4
 
5
+ gem "logger", "< 1.6" # 1.6 causes errors with mixlib-log < 3.1.1
6
+
5
7
  group :test do
6
8
  gem "rake"
7
9
  gem "rspec", "~> 3.8"
8
10
  gem "rspec-expectations", "~> 3.8"
9
11
  gem "rspec-mocks", "~> 3.8"
10
- gem "cookstyle", "=7.7.2" # this forces dependabot PRs to open which triggers cookstyle CI on the chef generate command
11
- gem "chefstyle", "=1.6.2"
12
- gem "test-kitchen", ">= 2.11.1"
13
-
14
- if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.6")
15
- gem "chef-zero", "~> 14"
16
- gem "chef", "~> 15"
17
- gem "chef-utils", "=16.6.14"
18
- end
19
- if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.7")
20
- gem "ohai", "~> 16"
21
- end
22
-
12
+ gem "cookstyle"
13
+ gem "chefstyle"
14
+ gem "test-kitchen"
23
15
  gem "simplecov", require: false
24
16
  end
25
17
 
data/chef-cli.gemspec CHANGED
@@ -29,7 +29,7 @@ Gem::Specification.new do |gem|
29
29
  gem.license = "Apache-2.0"
30
30
  gem.homepage = "https://www.chef.io/"
31
31
 
32
- gem.required_ruby_version = ">= 2.7"
32
+ gem.required_ruby_version = ">= 3.1"
33
33
 
34
34
  gem.files = %w{Rakefile LICENSE} +
35
35
  Dir.glob("Gemfile*") + # Includes Gemfile and locks
@@ -43,11 +43,11 @@ Gem::Specification.new do |gem|
43
43
  gem.add_dependency "mixlib-shellout", ">= 2.0", "< 4.0"
44
44
  gem.add_dependency "ffi-yajl", ">= 1.0", "< 3.0"
45
45
  gem.add_dependency "minitar", "~> 0.6"
46
- gem.add_dependency "chef", ">= 16.0"
46
+ gem.add_dependency "chef", "~> 18.0"
47
47
  gem.add_dependency "solve", "< 5.0", "> 2.0"
48
48
  gem.add_dependency "addressable", ">= 2.3.5", "< 2.9"
49
49
  gem.add_dependency "cookbook-omnifetch", "~> 0.5"
50
- gem.add_dependency "diff-lcs", ">= 1.0", "< 1.4" # 1.4 changes the output
50
+ gem.add_dependency "diff-lcs", ">= 1.2.4", "!= 1.4.0", "< 1.6.0" # 1.4 breaks output. Used in lib/chef/util/diff
51
51
  gem.add_dependency "pastel", "~> 0.7" # used for policyfile differ
52
52
  gem.add_dependency "license-acceptance", ">= 1.0.11", "< 3"
53
53
  end
@@ -70,7 +70,7 @@ module ChefCLI
70
70
 
71
71
  def clean_policy_cookbooks_service
72
72
  @clean_policy_cookbooks_service ||=
73
- PolicyfileServices::CleanPolicyCookbooks.new(config: chef_config, ui: ui)
73
+ PolicyfileServices::CleanPolicyCookbooks.new(config: chef_config, ui:)
74
74
  end
75
75
 
76
76
  def debug?
@@ -67,7 +67,7 @@ module ChefCLI
67
67
 
68
68
  def clean_policies_service
69
69
  @policy_list_service ||=
70
- PolicyfileServices::CleanPolicies.new(config: chef_config, ui: ui)
70
+ PolicyfileServices::CleanPolicies.new(config: chef_config, ui:)
71
71
  end
72
72
 
73
73
  def debug?
@@ -69,8 +69,8 @@ module ChefCLI
69
69
  def rm_policy_service
70
70
  @rm_policy_service ||=
71
71
  PolicyfileServices::RmPolicy.new(config: chef_config,
72
- ui: ui,
73
- policy_name: policy_name)
72
+ ui:,
73
+ policy_name:)
74
74
  end
75
75
 
76
76
  def debug?
@@ -69,8 +69,8 @@ module ChefCLI
69
69
  def rm_policy_group_service
70
70
  @rm_policy_group_service ||=
71
71
  PolicyfileServices::RmPolicyGroup.new(config: chef_config,
72
- ui: ui,
73
- policy_group: policy_group)
72
+ ui:,
73
+ policy_group:)
74
74
  end
75
75
 
76
76
  def debug?
@@ -145,10 +145,10 @@ module ChefCLI
145
145
 
146
146
  def differ(ui = self.ui)
147
147
  Policyfile::Differ.new(old_name: old_base.name,
148
- old_lock: old_lock,
148
+ old_lock:,
149
149
  new_name: new_base.name,
150
- new_lock: new_lock,
151
- ui: ui)
150
+ new_lock:,
151
+ ui:)
152
152
  end
153
153
 
154
154
  def http_client
@@ -127,7 +127,7 @@ module ChefCLI
127
127
  def export_service
128
128
  @export_service ||= PolicyfileServices::ExportRepo.new(
129
129
  policyfile: policyfile_relative_path,
130
- export_dir: export_dir,
130
+ export_dir:,
131
131
  root_dir: Dir.pwd,
132
132
  archive: archive?,
133
133
  force: config[:force],
@@ -74,7 +74,7 @@ module ChefCLI
74
74
  end
75
75
 
76
76
  def installer
77
- @installer ||= PolicyfileServices::Install.new(policyfile: policyfile_relative_path, ui: ui, root_dir: Dir.pwd, config: chef_config)
77
+ @installer ||= PolicyfileServices::Install.new(policyfile: policyfile_relative_path, ui:, root_dir: Dir.pwd, config: chef_config)
78
78
  end
79
79
 
80
80
  def debug?
@@ -84,8 +84,8 @@ module ChefCLI
84
84
 
85
85
  def push
86
86
  @push ||= PolicyfileServices::Push.new(policyfile: policyfile_relative_path,
87
- ui: ui,
88
- policy_group: policy_group,
87
+ ui:,
88
+ policy_group:,
89
89
  config: chef_config,
90
90
  root_dir: Dir.pwd)
91
91
  end
@@ -83,9 +83,9 @@ module ChefCLI
83
83
  def push_archive_service
84
84
  @push_archive_service ||=
85
85
  ChefCLI::PolicyfileServices::PushArchive.new(
86
- archive_file: archive_file,
87
- policy_group: policy_group,
88
- ui: ui,
86
+ archive_file:,
87
+ policy_group:,
88
+ ui:,
89
89
  config: chef_config
90
90
  )
91
91
  end
@@ -87,9 +87,9 @@ module ChefCLI
87
87
  def show_policy_service
88
88
  @policy_list_service ||=
89
89
  PolicyfileServices::ShowPolicy.new(config: chef_config,
90
- ui: ui,
91
- policy_name: policy_name,
92
- policy_group: policy_group,
90
+ ui:,
91
+ policy_name:,
92
+ policy_group:,
93
93
  show_orphans: show_orphans?,
94
94
  summary_diff: show_summary_diff?,
95
95
  pager: enable_pager?)
@@ -93,8 +93,8 @@ module ChefCLI
93
93
  def undelete_service
94
94
  @undelete_service ||=
95
95
  PolicyfileServices::Undelete.new(config: chef_config,
96
- ui: ui,
97
- undo_record_id: undo_record_id)
96
+ ui:,
97
+ undo_record_id:)
98
98
  end
99
99
 
100
100
  def debug?
@@ -100,12 +100,12 @@ module ChefCLI
100
100
  end
101
101
 
102
102
  def installer
103
- @installer ||= PolicyfileServices::Install.new(policyfile: policyfile_relative_path, ui: ui, root_dir: Dir.pwd, config: chef_config, overwrite: true)
103
+ @installer ||= PolicyfileServices::Install.new(policyfile: policyfile_relative_path, ui:, root_dir: Dir.pwd, config: chef_config, overwrite: true)
104
104
  end
105
105
 
106
106
  def attributes_updater
107
107
  @attributes_updater ||=
108
- PolicyfileServices::UpdateAttributes.new(policyfile: policyfile_relative_path, ui: ui, root_dir: Dir.pwd, chef_config: chef_config)
108
+ PolicyfileServices::UpdateAttributes.new(policyfile: policyfile_relative_path, ui:, root_dir: Dir.pwd, chef_config:)
109
109
  end
110
110
 
111
111
  def debug?
@@ -144,7 +144,7 @@ module ChefCLI
144
144
 
145
145
  def default_package_home
146
146
  if Chef::Platform.windows?
147
- File.join(ENV["LOCALAPPDATA"], ChefCLI::Dist::PRODUCT_PKG_HOME)
147
+ File.join(ENV["LOCALAPPDATA"], ChefCLI::Dist::PRODUCT_PKG_HOME).gsub("\\", "/")
148
148
  else
149
149
  File.expand_path("~/.#{ChefCLI::Dist::PRODUCT_PKG_HOME}")
150
150
  end
@@ -54,14 +54,12 @@ module ChefCLI
54
54
  end
55
55
 
56
56
  def universe_graph
57
- @universe_graph ||= begin
58
- full_community_graph.inject({}) do |normalized_graph, (cookbook_name, metadata_by_version)|
59
- normalized_graph[cookbook_name] = metadata_by_version.inject({}) do |deps_by_version, (version, metadata)|
60
- deps_by_version[version] = metadata["dependencies"]
61
- deps_by_version
62
- end
63
- normalized_graph
57
+ @universe_graph ||= full_community_graph.inject({}) do |normalized_graph, (cookbook_name, metadata_by_version)|
58
+ normalized_graph[cookbook_name] = metadata_by_version.inject({}) do |deps_by_version, (version, metadata)|
59
+ deps_by_version[version] = metadata["dependencies"]
60
+ deps_by_version
64
61
  end
62
+ normalized_graph
65
63
  end
66
64
  end
67
65
 
@@ -83,14 +81,25 @@ module ChefCLI
83
81
  end
84
82
 
85
83
  def artifactory_api_key
86
- chef_config&.artifactory_api_key || ENV["ARTIFACTORY_API_KEY"]
84
+ chef_config&.artifactory_api_key || (ENV["ARTIFACTORY_API_KEY"] unless ENV["ARTIFACTORY_API_KEY"].to_s.strip.empty?)
85
+ end
86
+
87
+ def artifactory_identity_token
88
+ chef_config&.artifactory_identity_token || (ENV["ARTIFACTORY_IDENTITY_TOKEN"] unless ENV["ARTIFACTORY_IDENTITY_TOKEN"].to_s.strip.empty?)
87
89
  end
88
90
 
89
91
  private
90
92
 
93
+ def auth_headers
94
+ if artifactory_identity_token
95
+ { "Authorization" => "Bearer #{artifactory_identity_token}" }
96
+ else
97
+ { "X-Jfrog-Art-API" => artifactory_api_key }
98
+ end
99
+ end
100
+
91
101
  def http_connection_for(base_url)
92
- headers = { "X-Jfrog-Art-API" => artifactory_api_key }
93
- @http_connections[base_url] ||= Chef::HTTP::Simple.new(base_url, headers: headers)
102
+ @http_connections[base_url] ||= Chef::HTTP::Simple.new(base_url, headers: auth_headers)
94
103
  end
95
104
 
96
105
  def full_community_graph
@@ -52,14 +52,12 @@ module ChefCLI
52
52
  end
53
53
 
54
54
  def universe_graph
55
- @universe_graph ||= begin
56
- full_chef_server_graph.inject({}) do |normalized_graph, (cookbook_name, metadata_by_version)|
57
- normalized_graph[cookbook_name] = metadata_by_version.inject({}) do |deps_by_version, (version, metadata)|
58
- deps_by_version[version] = metadata["dependencies"]
59
- deps_by_version
60
- end
61
- normalized_graph
55
+ @universe_graph ||= full_chef_server_graph.inject({}) do |normalized_graph, (cookbook_name, metadata_by_version)|
56
+ normalized_graph[cookbook_name] = metadata_by_version.inject({}) do |deps_by_version, (version, metadata)|
57
+ deps_by_version[version] = metadata["dependencies"]
58
+ deps_by_version
62
59
  end
60
+ normalized_graph
63
61
  end
64
62
  end
65
63
 
@@ -90,9 +88,7 @@ module ChefCLI
90
88
 
91
89
  def full_chef_server_graph
92
90
  @full_chef_server_graph ||=
93
- begin
94
- http_connection_for(uri.to_s).get("/universe")
95
- end
91
+ http_connection_for(uri.to_s).get("/universe")
96
92
  end
97
93
  end
98
94
  end
@@ -52,14 +52,12 @@ module ChefCLI
52
52
  end
53
53
 
54
54
  def universe_graph
55
- @universe_graph ||= begin
56
- full_community_graph.inject({}) do |normalized_graph, (cookbook_name, metadata_by_version)|
57
- normalized_graph[cookbook_name] = metadata_by_version.inject({}) do |deps_by_version, (version, metadata)|
58
- deps_by_version[version] = metadata["dependencies"]
59
- deps_by_version
60
- end
61
- normalized_graph
55
+ @universe_graph ||= full_community_graph.inject({}) do |normalized_graph, (cookbook_name, metadata_by_version)|
56
+ normalized_graph[cookbook_name] = metadata_by_version.inject({}) do |deps_by_version, (version, metadata)|
57
+ deps_by_version[version] = metadata["dependencies"]
58
+ deps_by_version
62
59
  end
60
+ normalized_graph
63
61
  end
64
62
  end
65
63
 
@@ -66,15 +66,13 @@ module ChefCLI
66
66
  end
67
67
 
68
68
  def universe_graph
69
- @universe_graph ||= begin
70
- @community_source.universe_graph.inject({}) do |truncated, (cookbook_name, version_and_deps_list)|
71
- sorted_versions = version_and_deps_list.keys.sort_by do |version_string|
72
- Semverse::Version.new(version_string)
73
- end
74
- greatest_version = sorted_versions.last
75
- truncated[cookbook_name] = { greatest_version => version_and_deps_list[greatest_version] }
76
- truncated
69
+ @universe_graph ||= @community_source.universe_graph.inject({}) do |truncated, (cookbook_name, version_and_deps_list)|
70
+ sorted_versions = version_and_deps_list.keys.sort_by do |version_string|
71
+ Semverse::Version.new(version_string)
77
72
  end
73
+ greatest_version = sorted_versions.last
74
+ truncated[cookbook_name] = { greatest_version => version_and_deps_list[greatest_version] }
75
+ truncated
78
76
  end
79
77
  end
80
78
 
@@ -27,7 +27,7 @@ module ChefCLI
27
27
  module Policyfile
28
28
  class DSL
29
29
 
30
- RUN_LIST_ITEM_COMPONENT = /^[.[:alnum:]_-]+$/.freeze
30
+ RUN_LIST_ITEM_COMPONENT = /^[.[:alnum:]_-]+$/
31
31
 
32
32
  include StorageConfigDelegation
33
33
 
@@ -203,7 +203,7 @@ module ChefCLI
203
203
  if source_uri.nil?
204
204
  @errors << "You must specify the server's URI when using a default_source :chef_server"
205
205
  else
206
- set_default_source(ChefServerCookbookSource.new(source_uri, chef_config: chef_config, &block))
206
+ set_default_source(ChefServerCookbookSource.new(source_uri, chef_config:, &block))
207
207
  end
208
208
  end
209
209
 
@@ -211,7 +211,7 @@ module ChefCLI
211
211
  if source_uri.nil?
212
212
  @errors << "You must specify the server's URI when using a default_source :artifactory"
213
213
  else
214
- set_default_source(ArtifactoryCookbookSource.new(source_uri, chef_config: chef_config, &block))
214
+ set_default_source(ArtifactoryCookbookSource.new(source_uri, chef_config:, &block))
215
215
  end
216
216
  end
217
217
 
@@ -87,7 +87,7 @@ module ChefCLI
87
87
  # @return [Hash] The source_options that describe how to fetch this exact lock again
88
88
  def source_options_for_lock
89
89
  source_options.merge({
90
- revision: revision,
90
+ revision:,
91
91
  })
92
92
  end
93
93
 
@@ -62,20 +62,18 @@ module ChefCLI
62
62
 
63
63
  # @return A policyfile lock fetcher compatible with the given source_options
64
64
  def fetcher
65
- @fetcher ||= begin
66
- if source_options[:path] && !source_options[:git]
67
- Policyfile::LocalLockFetcher.new(name, source_options, storage_config)
68
- elsif source_options[:remote]
69
- Policyfile::RemoteLockFetcher.new(name, source_options)
70
- elsif source_options[:server]
71
- Policyfile::ChefServerLockFetcher.new(name, source_options, chef_config)
72
- elsif source_options[:git]
73
- Policyfile::GitLockFetcher.new(name, source_options, storage_config)
74
- else
75
- raise ChefCLI::InvalidPolicyfileLocation.new(
76
- "Invalid policyfile lock location type. The supported locations are: #{LOCATION_TYPES.join(", ")}"
77
- )
78
- end
65
+ @fetcher ||= if source_options[:path] && !source_options[:git]
66
+ Policyfile::LocalLockFetcher.new(name, source_options, storage_config)
67
+ elsif source_options[:remote]
68
+ Policyfile::RemoteLockFetcher.new(name, source_options)
69
+ elsif source_options[:server]
70
+ Policyfile::ChefServerLockFetcher.new(name, source_options, chef_config)
71
+ elsif source_options[:git]
72
+ Policyfile::GitLockFetcher.new(name, source_options, storage_config)
73
+ else
74
+ raise ChefCLI::InvalidPolicyfileLocation.new(
75
+ "Invalid policyfile lock location type. The supported locations are: #{LOCATION_TYPES.join(", ")}"
76
+ )
79
77
  end
80
78
  end
81
79
 
@@ -106,9 +104,7 @@ module ChefCLI
106
104
  #
107
105
  # @return [PolicyfileLock] the loaded policyfile lock
108
106
  def policyfile_lock
109
- @policyfile_lock ||= begin
110
- PolicyfileLock.new(storage_config, ui: ui).build_from_lock_data(fetcher.lock_data)
111
- end
107
+ @policyfile_lock ||= PolicyfileLock.new(storage_config, ui:).build_from_lock_data(fetcher.lock_data)
112
108
  end
113
109
 
114
110
  # @return [Hash] The source_options that describe how to fetch this exact lock again
@@ -28,7 +28,7 @@ module ChefCLI
28
28
 
29
29
  class Cookbook
30
30
 
31
- VALID_STRING_FORMAT = /\A[^\s]+ \([^\s]+\)\Z/.freeze
31
+ VALID_STRING_FORMAT = /\A[^\s]+ \([^\s]+\)\Z/
32
32
 
33
33
  def self.valid_str?(str)
34
34
  !!(str =~ VALID_STRING_FORMAT)
@@ -207,7 +207,7 @@ module ChefCLI
207
207
  remote_already_has_cookbook?(cb_with_lock.cookbook)
208
208
  end
209
209
 
210
- Reports::Upload.new(reused_cbs: reused_cbs, uploaded_cbs: uploaded_cbs, ui: ui).show
210
+ Reports::Upload.new(reused_cbs:, uploaded_cbs:, ui:).show
211
211
 
212
212
  true
213
213
  end
@@ -42,7 +42,7 @@ module ChefCLI
42
42
  SOURCE_TYPES_WITH_FIXED_VERSIONS = %i{git path}.freeze
43
43
 
44
44
  def self.evaluate(policyfile_string, policyfile_filename, ui: nil, chef_config: nil)
45
- compiler = new(ui: ui, chef_config: chef_config)
45
+ compiler = new(ui:, chef_config:)
46
46
  compiler.evaluate_policyfile(policyfile_string, policyfile_filename)
47
47
  compiler
48
48
  end
@@ -61,7 +61,7 @@ module ChefCLI
61
61
 
62
62
  def initialize(ui: nil, chef_config: nil)
63
63
  @storage_config = Policyfile::StorageConfig.new
64
- @dsl = Policyfile::DSL.new(storage_config, chef_config: chef_config)
64
+ @dsl = Policyfile::DSL.new(storage_config, chef_config:)
65
65
  @artifact_server_cookbook_location_specs = {}
66
66
 
67
67
  @merged_graph = nil
@@ -64,7 +64,7 @@ module ChefCLI
64
64
  end
65
65
  end
66
66
 
67
- RUN_LIST_ITEM_FORMAT = /\Arecipe\[[^\s]+::[^\s]+\]\Z/.freeze
67
+ RUN_LIST_ITEM_FORMAT = /\Arecipe\[[^\s]+::[^\s]+\]\Z/
68
68
 
69
69
  def self.build(storage_config)
70
70
  lock = new(storage_config)
@@ -121,12 +121,12 @@ module ChefCLI
121
121
  random_string = SecureRandom.hex(2)
122
122
  path = "chef-export-#{random_string}"
123
123
  Dir.mktmpdir(path) do |d|
124
- begin
125
- @staging_dir = d
126
- yield
127
- ensure
128
- @staging_dir = nil
129
- end
124
+
125
+ @staging_dir = d
126
+ yield
127
+ ensure
128
+ @staging_dir = nil
129
+
130
130
  end
131
131
  end
132
132
 
@@ -73,7 +73,7 @@ module ChefCLI
73
73
  end
74
74
 
75
75
  def policyfile_compiler
76
- @policyfile_compiler ||= ChefCLI::PolicyfileCompiler.evaluate(policyfile_content, policyfile_expanded_path, ui: ui, chef_config: chef_config)
76
+ @policyfile_compiler ||= ChefCLI::PolicyfileCompiler.evaluate(policyfile_content, policyfile_expanded_path, ui:, chef_config:)
77
77
  end
78
78
 
79
79
  def expanded_run_list
@@ -89,7 +89,7 @@ module ChefCLI
89
89
 
90
90
  @policyfile_lock ||= begin
91
91
  lock_data = FFI_Yajl::Parser.new.parse(policyfile_lock_content)
92
- PolicyfileLock.new(storage_config, ui: ui).build_from_lock_data(lock_data)
92
+ PolicyfileLock.new(storage_config, ui:).build_from_lock_data(lock_data)
93
93
  end
94
94
  end
95
95
 
@@ -64,8 +64,8 @@ module ChefCLI
64
64
 
65
65
  def uploader
66
66
  ChefCLI::Policyfile::Uploader.new(policyfile_lock, policy_group,
67
- ui: ui,
68
- http_client: http_client,
67
+ ui:,
68
+ http_client:,
69
69
  policy_document_native_api: config.policy_document_native_api)
70
70
  end
71
71
 
@@ -69,8 +69,8 @@ module ChefCLI
69
69
  # @api private
70
70
  def uploader
71
71
  ChefCLI::Policyfile::Uploader.new(policyfile_lock, policy_group,
72
- ui: ui,
73
- http_client: http_client,
72
+ ui:,
73
+ http_client:,
74
74
  policy_document_native_api: config.policy_document_native_api)
75
75
  end
76
76
 
@@ -78,7 +78,7 @@ module ChefCLI
78
78
  end
79
79
 
80
80
  def policyfile_compiler
81
- @policyfile_compiler ||= ChefCLI::PolicyfileCompiler.evaluate(policyfile_content, policyfile_expanded_path, ui: ui, chef_config: chef_config)
81
+ @policyfile_compiler ||= ChefCLI::PolicyfileCompiler.evaluate(policyfile_content, policyfile_expanded_path, ui:, chef_config:)
82
82
  end
83
83
 
84
84
  def policyfile_lock_content
@@ -88,7 +88,7 @@ module ChefCLI
88
88
  def policyfile_lock
89
89
  @policyfile_lock ||= begin
90
90
  lock_data = FFI_Yajl::Parser.new.parse(policyfile_lock_content)
91
- PolicyfileLock.new(storage_config, ui: ui).build_from_lock_data(lock_data)
91
+ PolicyfileLock.new(storage_config, ui:).build_from_lock_data(lock_data)
92
92
  end
93
93
  end
94
94
 
@@ -1,7 +1,7 @@
1
1
  # This is a Chef Infra Client recipe file. It can be used to specify resources
2
2
  # which will apply configuration to a server.
3
3
 
4
- log "Welcome to Chef Infra Client, #{node['example']['name']}!" do
4
+ log "Welcome to Chef Infra Client, #{node["example"]["name"]}!" do
5
5
  level :info
6
6
  end
7
7
 
@@ -15,5 +15,5 @@ helper_class_name = "#{camelize(context.new_file_basename)}Helpers"
15
15
  template helpers_path do
16
16
  source 'helpers.rb.erb'
17
17
  helpers(ChefCLI::Generator::TemplateHelper)
18
- variables(cookbook_class_name: cookbook_class_name, helper_class_name: helper_class_name)
18
+ variables(cookbook_class_name:, helper_class_name:)
19
19
  end
@@ -10,7 +10,7 @@ driver:
10
10
  # - ["forwarded_port", {guest: 80, host: 8080}]
11
11
 
12
12
  provisioner:
13
- name: chef_zero
13
+ name: chef_infra
14
14
  # You may wish to disable always updating cookbooks in CI or other testing environments.
15
15
  # For example:
16
16
  # always_update_cookbooks: <%%= !ENV['CI'] %>
@@ -19,14 +19,22 @@ provisioner:
19
19
  ## product_name and product_version specifies a specific Chef product and version to install.
20
20
  ## see the Chef documentation for more details: https://docs.chef.io/workstation/config_yml_kitchen/
21
21
  # product_name: chef
22
- # product_version: 17
22
+ # product_version: 18
23
23
 
24
24
  verifier:
25
25
  name: inspec
26
26
 
27
27
  platforms:
28
- - name: ubuntu-20.04
29
- - name: centos-8
28
+ - name: almalinux-9
29
+ - name: amazonlinux-2023
30
+ - name: centos-stream-9
31
+ - name: debian-12
32
+ - name: fedora-latest
33
+ - name: freebsd-14
34
+ - name: opensuse-leap-15
35
+ - name: oraclelinux-9
36
+ - name: rockylinux-9
37
+ - name: ubuntu-24.04
30
38
 
31
39
  suites:
32
40
  - name: default
@@ -15,17 +15,46 @@ verifier:
15
15
  platforms:
16
16
  # @see https://github.com/chef-cookbooks/testing_examples/blob/main/kitchen.dokken.yml
17
17
  # @see https://hub.docker.com/u/dokken
18
- - name: ubuntu-20.04
18
+ - name: almalinux-9
19
19
  driver:
20
- image: dokken/ubuntu-20.04
20
+ image: dokken/almalinux-9
21
+ pid_one_command: /usr/lib/systemd/systemd
22
+ - name: amazonlinux-2023
23
+ driver:
24
+ image: dokken/amazonlinux-2023
25
+ pid_one_command: /usr/lib/systemd/systemd
26
+ - name: centos-stream-9
27
+ driver:
28
+ image: dokken/centos-stream-9
29
+ pid_one_command: /usr/lib/systemd/systemd
30
+ - name: debian-12
31
+ driver:
32
+ image: dokken/debian-12
21
33
  pid_one_command: /bin/systemd
22
34
  intermediate_instructions:
23
35
  - RUN /usr/bin/apt-get update
24
-
25
- - name: centos-8
36
+ - name: fedora-latest
37
+ driver:
38
+ image: dokken/fedora-latest
39
+ pid_one_command: /usr/lib/systemd/systemd
40
+ - name: opensuse-leap-15
26
41
  driver:
27
- image: dokken/centos-8
42
+ image: dokken/opensuse-leap-15
28
43
  pid_one_command: /usr/lib/systemd/systemd
44
+ - name: oraclelinux-9
45
+ driver:
46
+ image: dokken/oraclelinux-9
47
+ pid_one_command: /usr/lib/systemd/systemd
48
+ - name: rockylinux-9
49
+ driver:
50
+ image: dokken/rockylinux-9
51
+ pid_one_command: /usr/lib/systemd/systemd
52
+ - name: ubuntu-24.04
53
+ driver:
54
+ image: dokken/ubuntu-24.04
55
+ pid_one_command: /bin/systemd
56
+ intermediate_instructions:
57
+ - RUN /usr/bin/apt-get update
29
58
 
30
59
  suites:
31
60
  - name: default
@@ -10,19 +10,27 @@ driver:
10
10
  # - ["forwarded_port", {guest: 80, host: 8080}]
11
11
 
12
12
  provisioner:
13
- name: chef_zero
13
+ name: chef_infra
14
14
 
15
15
  ## product_name and product_version specifies a specific Chef product and version to install.
16
16
  ## see the Chef documentation for more details: https://docs.chef.io/workstation/config_yml_kitchen/
17
17
  # product_name: chef
18
- # product_version: 17
18
+ # product_version: 18
19
19
 
20
20
  verifier:
21
21
  name: inspec
22
22
 
23
23
  platforms:
24
- - name: ubuntu-20.04
25
- - name: centos-8
24
+ - name: almalinux-9
25
+ - name: amazonlinux-2023
26
+ - name: centos-stream-9
27
+ - name: debian-12
28
+ - name: fedora-latest
29
+ - name: freebsd-14
30
+ - name: opensuse-leap-15
31
+ - name: oraclelinux-9
32
+ - name: rockylinux-9
33
+ - name: ubuntu-24.04
26
34
 
27
35
  suites:
28
36
  - name: default
@@ -16,5 +16,5 @@
16
16
  #
17
17
 
18
18
  module ChefCLI
19
- VERSION = "5.6.14".freeze
19
+ VERSION = "5.6.18".freeze
20
20
  end
@@ -388,19 +388,27 @@ describe ChefCLI::Command::GeneratorCommands::Cookbook do
388
388
  # - ["forwarded_port", {guest: 80, host: 8080}]
389
389
 
390
390
  provisioner:
391
- name: chef_zero
391
+ name: chef_infra
392
392
 
393
393
  ## product_name and product_version specifies a specific Chef product and version to install.
394
394
  ## see the Chef documentation for more details: https://docs.chef.io/workstation/config_yml_kitchen/
395
395
  # product_name: chef
396
- # product_version: 17
396
+ # product_version: 18
397
397
 
398
398
  verifier:
399
399
  name: inspec
400
400
 
401
401
  platforms:
402
- - name: ubuntu-20.04
403
- - name: centos-8
402
+ - name: almalinux-9
403
+ - name: amazonlinux-2023
404
+ - name: centos-stream-9
405
+ - name: debian-12
406
+ - name: fedora-latest
407
+ - name: freebsd-14
408
+ - name: opensuse-leap-15
409
+ - name: oraclelinux-9
410
+ - name: rockylinux-9
411
+ - name: ubuntu-24.04
404
412
 
405
413
  suites:
406
414
  - name: default
@@ -520,7 +528,7 @@ describe ChefCLI::Command::GeneratorCommands::Cookbook do
520
528
  # - ["forwarded_port", {guest: 80, host: 8080}]
521
529
 
522
530
  provisioner:
523
- name: chef_zero
531
+ name: chef_infra
524
532
  # You may wish to disable always updating cookbooks in CI or other testing environments.
525
533
  # For example:
526
534
  # always_update_cookbooks: <%= !ENV['CI'] %>
@@ -529,14 +537,22 @@ describe ChefCLI::Command::GeneratorCommands::Cookbook do
529
537
  ## product_name and product_version specifies a specific Chef product and version to install.
530
538
  ## see the Chef documentation for more details: https://docs.chef.io/workstation/config_yml_kitchen/
531
539
  # product_name: chef
532
- # product_version: 17
540
+ # product_version: 18
533
541
 
534
542
  verifier:
535
543
  name: inspec
536
544
 
537
545
  platforms:
538
- - name: ubuntu-20.04
539
- - name: centos-8
546
+ - name: almalinux-9
547
+ - name: amazonlinux-2023
548
+ - name: centos-stream-9
549
+ - name: debian-12
550
+ - name: fedora-latest
551
+ - name: freebsd-14
552
+ - name: opensuse-leap-15
553
+ - name: oraclelinux-9
554
+ - name: rockylinux-9
555
+ - name: ubuntu-24.04
540
556
 
541
557
  suites:
542
558
  - name: default
@@ -256,7 +256,7 @@ describe ChefCLI::Command::GeneratorCommands::Repo do
256
256
  let(:file) { "cookbooks/example/recipes/default.rb" }
257
257
 
258
258
  it "has the right contents" do
259
- expect(file_contents).to match(/log "Welcome to Chef Infra Client, \#\{node\['example'\]\['name'\]\}!" do/)
259
+ expect(file_contents).to match(/log "Welcome to Chef Infra Client, \#\{node\["example"\]\["name"\]\}!" do/)
260
260
  end
261
261
  end
262
262
  end
@@ -82,4 +82,30 @@ describe ChefCLI::Policyfile::ArtifactoryCookbookSource do
82
82
  end
83
83
  end
84
84
  end
85
+
86
+ describe "#artifactory_identity_token" do
87
+ before do
88
+ ENV["ARTIFACTORY_IDENTITY_TOKEN"] = "test"
89
+ end
90
+
91
+ context "when config is not present" do
92
+ let(:config) { nil }
93
+ it "should get artifactory key from the env" do
94
+ expect(subject.artifactory_identity_token).to eq("test")
95
+ end
96
+ end
97
+
98
+ context "when config is present" do
99
+ let(:config) { double("Chef::Config") }
100
+ it "should get artifactory key from config when key is present" do
101
+ expect(config).to receive(:artifactory_identity_token).and_return "test1"
102
+ expect(subject.artifactory_identity_token).to eq("test1")
103
+ end
104
+ it "should get artifactory key from env when config is present but has a nil key" do
105
+ expect(config).to receive(:artifactory_identity_token).and_return nil
106
+ expect(subject.artifactory_identity_token).to eq("test")
107
+ end
108
+ end
109
+ end
110
+
85
111
  end
@@ -318,7 +318,7 @@ describe ChefCLI::Policyfile::Differ do
318
318
  REVISION ID CHANGED
319
319
  ===================
320
320
 
321
- @@ -1,2 +1,2 @@
321
+ @@ -1 +1 @@
322
322
  -cf4b8a020bdc1ba6914093a8a07a5514cce8a3a2979a967b1f32ea704a61785b
323
323
  +304566f86a620aae85797a3c491a51fb8c6ecf996407e77b8063aa3ee59672c5
324
324
 
@@ -369,7 +369,7 @@ describe ChefCLI::Policyfile::Differ do
369
369
  REVISION ID CHANGED
370
370
  ===================
371
371
 
372
- @@ -1,2 +1,2 @@
372
+ @@ -1 +1 @@
373
373
  -cf4b8a020bdc1ba6914093a8a07a5514cce8a3a2979a967b1f32ea704a61785b
374
374
  +304566f86a620aae85797a3c491a51fb8c6ecf996407e77b8063aa3ee59672c5
375
375
 
@@ -428,7 +428,7 @@ describe ChefCLI::Policyfile::Differ do
428
428
  REVISION ID CHANGED
429
429
  ===================
430
430
 
431
- @@ -1,2 +1,2 @@
431
+ @@ -1 +1 @@
432
432
  -cf4b8a020bdc1ba6914093a8a07a5514cce8a3a2979a967b1f32ea704a61785b
433
433
  +304566f86a620aae85797a3c491a51fb8c6ecf996407e77b8063aa3ee59672c5
434
434
 
@@ -501,7 +501,7 @@ describe ChefCLI::Policyfile::Differ do
501
501
  REVISION ID CHANGED
502
502
  ===================
503
503
 
504
- @@ -1,2 +1,2 @@
504
+ @@ -1 +1 @@
505
505
  -cf4b8a020bdc1ba6914093a8a07a5514cce8a3a2979a967b1f32ea704a61785b
506
506
  +304566f86a620aae85797a3c491a51fb8c6ecf996407e77b8063aa3ee59672c5
507
507
 
@@ -511,7 +511,7 @@ describe ChefCLI::Policyfile::Differ do
511
511
  bluepill
512
512
  --------
513
513
 
514
- @@ -1 +1,12 @@
514
+ @@ -1,11 +1,22 @@
515
515
  +{
516
516
  + "version": "2.3.2",
517
517
  + "identifier": "9c6990944d9a347dec8bd375e707ba0aecdc17cd",
@@ -563,7 +563,7 @@ describe ChefCLI::Policyfile::Differ do
563
563
  REVISION ID CHANGED
564
564
  ===================
565
565
 
566
- @@ -1,2 +1,2 @@
566
+ @@ -1 +1 @@
567
567
  -cf4b8a020bdc1ba6914093a8a07a5514cce8a3a2979a967b1f32ea704a61785b
568
568
  +304566f86a620aae85797a3c491a51fb8c6ecf996407e77b8063aa3ee59672c5
569
569
 
@@ -616,7 +616,7 @@ describe ChefCLI::Policyfile::Differ do
616
616
  REVISION ID CHANGED
617
617
  ===================
618
618
 
619
- @@ -1,2 +1,2 @@
619
+ @@ -1 +1 @@
620
620
  -cf4b8a020bdc1ba6914093a8a07a5514cce8a3a2979a967b1f32ea704a61785b
621
621
  +304566f86a620aae85797a3c491a51fb8c6ecf996407e77b8063aa3ee59672c5
622
622
 
@@ -662,7 +662,7 @@ describe ChefCLI::Policyfile::Differ do
662
662
  REVISION ID CHANGED
663
663
  ===================
664
664
 
665
- @@ -1,2 +1,2 @@
665
+ @@ -1 +1 @@
666
666
  -cf4b8a020bdc1ba6914093a8a07a5514cce8a3a2979a967b1f32ea704a61785b
667
667
  +304566f86a620aae85797a3c491a51fb8c6ecf996407e77b8063aa3ee59672c5
668
668
 
@@ -137,7 +137,7 @@ describe ChefCLI::PolicyfileLock, "when reading a Policyfile.lock" do
137
137
 
138
138
  it "requires the values in named_run_lists to be valid run lists" do
139
139
  bad_named_run_lists = valid_lock_data.dup
140
- bad_named_run_lists["named_run_lists"] = { "bad" => [ 42 ] }
140
+ bad_named_run_lists["named_run_lists"] = { "bad" => [ "42" ] }
141
141
 
142
142
  expect { lockfile.build_from_lock_data(bad_named_run_lists) }.to raise_error(ChefCLI::InvalidLockfile)
143
143
  end
@@ -215,7 +215,7 @@ describe ChefCLI::PolicyfileServices::CleanPolicies do
215
215
  # this will continue to print that out until they remove HTTPServerException
216
216
  expected_message = <<~ERROR
217
217
  Failed to delete some policy revisions:
218
- - appserver (4444444444444444444444444444444444444444444444444444444444444444): Net::HTTPServerException 403 \"Unauthorized\"
218
+ - appserver (4444444444444444444444444444444444444444444444444444444444444444): Net::HTTPClientException 403 \"Unauthorized\"
219
219
  ERROR
220
220
 
221
221
  expect { clean_policies_service.run }.to raise_error do |error|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.6.14
4
+ version: 5.6.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chef Software, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-15 00:00:00.000000000 Z
11
+ date: 2025-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mixlib-cli
@@ -88,16 +88,16 @@ dependencies:
88
88
  name: chef
89
89
  requirement: !ruby/object:Gem::Requirement
90
90
  requirements:
91
- - - ">="
91
+ - - "~>"
92
92
  - !ruby/object:Gem::Version
93
- version: '16.0'
93
+ version: '18.0'
94
94
  type: :runtime
95
95
  prerelease: false
96
96
  version_requirements: !ruby/object:Gem::Requirement
97
97
  requirements:
98
- - - ">="
98
+ - - "~>"
99
99
  - !ruby/object:Gem::Version
100
- version: '16.0'
100
+ version: '18.0'
101
101
  - !ruby/object:Gem::Dependency
102
102
  name: solve
103
103
  requirement: !ruby/object:Gem::Requirement
@@ -158,20 +158,26 @@ dependencies:
158
158
  requirements:
159
159
  - - ">="
160
160
  - !ruby/object:Gem::Version
161
- version: '1.0'
161
+ version: 1.2.4
162
+ - - "!="
163
+ - !ruby/object:Gem::Version
164
+ version: 1.4.0
162
165
  - - "<"
163
166
  - !ruby/object:Gem::Version
164
- version: '1.4'
167
+ version: 1.6.0
165
168
  type: :runtime
166
169
  prerelease: false
167
170
  version_requirements: !ruby/object:Gem::Requirement
168
171
  requirements:
169
172
  - - ">="
170
173
  - !ruby/object:Gem::Version
171
- version: '1.0'
174
+ version: 1.2.4
175
+ - - "!="
176
+ - !ruby/object:Gem::Version
177
+ version: 1.4.0
172
178
  - - "<"
173
179
  - !ruby/object:Gem::Version
174
- version: '1.4'
180
+ version: 1.6.0
175
181
  - !ruby/object:Gem::Dependency
176
182
  name: pastel
177
183
  requirement: !ruby/object:Gem::Requirement
@@ -607,14 +613,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
607
613
  requirements:
608
614
  - - ">="
609
615
  - !ruby/object:Gem::Version
610
- version: '2.7'
616
+ version: '3.1'
611
617
  required_rubygems_version: !ruby/object:Gem::Requirement
612
618
  requirements:
613
619
  - - ">="
614
620
  - !ruby/object:Gem::Version
615
621
  version: '0'
616
622
  requirements: []
617
- rubygems_version: 3.1.4
623
+ rubygems_version: 3.2.3
618
624
  signing_key:
619
625
  specification_version: 4
620
626
  summary: A streamlined development and deployment workflow for Chef platform.