summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Ewan Park <gep13@gep13.co.uk>2019-06-03 13:57:10 -0700
committerGary Ewan Park <gep13@gep13.co.uk>2019-06-04 21:46:37 +0100
commit1671fe7bbaf122a2d4e13e2d3ac432b916d26a5a (patch)
treed09c9ff4d538430075fcde526d5726e1f9b57279
parenta25d9108d4d6d15f173a86b82dcbf1911d2f2810 (diff)
downloadchef-1671fe7bbaf122a2d4e13e2d3ac432b916d26a5a.tar.gz
(GH-8634) Add ability to further configure source
This provides the ability to set additional properties for a Chocolatey source with properties `admin_only` and `allow_self_service`. As well as the ability to enable/disable a source. Signed-off-by: Gary Ewan Park <gep13@gep13.co.uk>
-rw-r--r--lib/chef/resource/chocolatey_source.rb36
-rw-r--r--spec/unit/resource/chocolatey_source_spec.rb55
2 files changed, 89 insertions, 2 deletions
diff --git a/lib/chef/resource/chocolatey_source.rb b/lib/chef/resource/chocolatey_source.rb
index e8ef95aad5..c9b3316300 100644
--- a/lib/chef/resource/chocolatey_source.rb
+++ b/lib/chef/resource/chocolatey_source.rb
@@ -17,6 +17,7 @@
class Chef
class Resource
class ChocolateySource < Chef::Resource
+ preview_resource true
resource_name :chocolatey_source
description "Use the chocolatey_source resource to add or remove Chocolatey sources."
@@ -31,9 +32,17 @@ class Chef
property :bypass_proxy, [TrueClass, FalseClass], default: false,
description: "Whether or not to bypass the system's proxy settings to access the source."
+ property :admin_only, [TrueClass, FalseClass], default: false,
+ description: "Whether or not to set the source to be accessible to only admins."
+
+ property :allow_self_service, [TrueClass, FalseClass], default: false,
+ description: "Whether or not to set the source to be used for self service."
+
property :priority, Integer, default: 0,
description: "The priority level of the source."
+ property :source_state, [TrueClass, FalseClass], default: false, desired_state: false, skip_docs: true
+
load_current_value do
element = fetch_source_element(source_name)
current_value_does_not_exist! if element.nil?
@@ -41,13 +50,16 @@ class Chef
source_name element["id"]
source element["value"]
bypass_proxy element["bypassProxy"] == "true"
+ admin_only element["adminOnly"] == "true"
+ allow_self_service element["selfService"] == "true"
priority element["priority"].to_i
+ source_state element["disabled"] == "true"
end
# @param [String] id the source name
# @return [REXML::Attributes] finds the source element with the
def fetch_source_element(id)
- require "rexml/document" unless defined?(REXML::Document)
+ require "rexml/document"
config_file = "#{ENV['ALLUSERSPROFILE']}\\chocolatey\\config\\chocolatey.config"
raise "Could not find the Chocolatey config at #{config_file}!" unless ::File.exist?(config_file)
@@ -77,6 +89,26 @@ class Chef
end
end
+ action :disable do
+ description "Disables a Chocolatey source."
+
+ if current_resource.source_state != true
+ converge_by("disable Chocolatey source '#{new_resource.source_name}'") do
+ shell_out!(choco_cmd("disable"))
+ end
+ end
+ end
+
+ action :enable do
+ description "Enables a Chocolatey source."
+
+ if current_resource.source_state == true
+ converge_by("enable Chocolatey source '#{new_resource.source_name}'") do
+ shell_out!(choco_cmd("enable"))
+ end
+ end
+ end
+
action_class do
# @param [String] action the name of the action to perform
# @return [String] the choco source command string
@@ -85,6 +117,8 @@ class Chef
if action == "add"
cmd << " -s #{new_resource.source} --priority=#{new_resource.priority}"
cmd << " --bypassproxy" if new_resource.bypass_proxy
+ cmd << " --allowselfservice" if new_resource.allow_self_service
+ cmd << " --adminonly" if new_resource.admin_only
end
cmd
end
diff --git a/spec/unit/resource/chocolatey_source_spec.rb b/spec/unit/resource/chocolatey_source_spec.rb
index 1463a448de..455e94c6cb 100644
--- a/spec/unit/resource/chocolatey_source_spec.rb
+++ b/spec/unit/resource/chocolatey_source_spec.rb
@@ -19,7 +19,14 @@ require "spec_helper"
describe Chef::Resource::ChocolateySource do
- let(:resource) { Chef::Resource::ChocolateySource.new("fakey_fakerton") }
+ let(:node) { Chef::Node.new }
+
+ let(:events) { Chef::EventDispatch::Dispatcher.new }
+ let(:run_context) { Chef::RunContext.new(node, {}, events) }
+ let(:resource) { Chef::Resource::ChocolateySource.new("fakey_fakerton", run_context) }
+ let(:disable_provider) { resource.provider_for_action(:disable) }
+ let(:enable_provider) { resource.provider_for_action(:enable) }
+ let(:current_resource) { Chef::Resource::ChocolateySource.new("fakey_fakerton") }
let(:config) do
<<-CONFIG
<?xml version="1.0" encoding="utf-8"?>
@@ -40,6 +47,11 @@ describe Chef::Resource::ChocolateySource do
# we save off the ENV and set ALLUSERSPROFILE so these specs will work on *nix and non-C drive Windows installs
before(:each) do
+ disable_provider # vivify before mocking
+ enable_provider
+ allow(resource).to receive(:provider_for_action).and_return(disable_provider)
+ allow(resource).to receive(:provider_for_action).and_return(enable_provider)
+ allow(resource).to receive(:dup).and_return(current_resource)
@original_env = ENV.to_hash
ENV["ALLUSERSPROFILE"] = 'C:\ProgramData'
end
@@ -64,6 +76,8 @@ describe Chef::Resource::ChocolateySource do
it "supports :add and :remove actions" do
expect { resource.action :add }.not_to raise_error
expect { resource.action :remove }.not_to raise_error
+ expect { resource.action :disable }.not_to raise_error
+ expect { resource.action :enable }.not_to raise_error
end
it "bypass_proxy property defaults to false" do
@@ -74,6 +88,45 @@ describe Chef::Resource::ChocolateySource do
expect { resource.priority.to eq(0) }
end
+ it "admin_only property defaults to false" do
+ expect { resource.admin_only.to be_false }
+ end
+
+ it "allow_self_service property defaults to false" do
+ expect { resource.allow_self_service.to be_false }
+ end
+
+ describe "#load_current_resource" do
+ it "sets the source_state to true when the XML disabled property is true" do
+ allow(current_resource).to receive(:fetch_source_element).with("fakey_fakerton").and_return(OpenStruct.new(disabled: "true"))
+ disable_provider.load_current_resource
+ expect(current_resource.source_state).to be true
+ end
+
+ it "sets the source_state to false when the XML disabled property is false" do
+ allow(current_resource).to receive(:fetch_source_element).with("fakey_fakerton").and_return(OpenStruct.new(disabled: "false"))
+ enable_provider.load_current_resource
+ expect(current_resource.source_state).to be false
+ end
+ end
+
+ describe "run_action(:enable)" do
+ it "when source is disabled, it enables it correctly" do
+ resource.source_state true
+ allow(current_resource).to receive(:fetch_source_element).with("fakey_fakerton").and_return(OpenStruct.new(disabled: "true"))
+ expect(enable_provider).to receive(:shell_out!).with("C:\\ProgramData\\chocolatey\\bin\\choco source enable -n \"fakey_fakerton\"")
+ resource.run_action(:enable)
+ expect(resource.updated_by_last_action?).to be true
+ end
+
+ it "when source is enabled, it is idempotent when trying to enable" do
+ resource.source_state false
+ allow(current_resource).to receive(:fetch_source_element).with("fakey_fakerton").and_return(OpenStruct.new(disabled: "false"))
+ resource.run_action(:enable)
+ expect(resource.updated_by_last_action?).to be false
+ end
+ end
+
describe "#fetch_source_element" do
it "raises and error if the config file cannot be found" do
allow(::File).to receive(:exist?).with('C:\ProgramData\chocolatey\config\chocolatey.config').and_return(false)