# # Copyright:: Copyright (c) Chef Software Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # require "spec_helper" describe Chef::Resource::ChocolateyConfig do let(:resource) { Chef::Resource::ChocolateyConfig.new("fakey_fakerton") } let(:config) do <<-CONFIG CONFIG end # we save off the ENV and set ALLUSERSPROFILE so these specs will work on *nix and non-C drive Windows installs before(:each) do @original_env = ENV.to_hash ENV["ALLUSERSPROFILE"] = 'C:\ProgramData' end after(:each) do ENV.clear ENV.update(@original_env) end it "has a resource name of :chocolatey_config" do expect(resource.resource_name).to eql(:chocolatey_config) end it "has a name property of config_key" do expect(resource.config_key).to eql("fakey_fakerton") end it "sets the default action as :set" do expect(resource.action).to eql([:set]) end it "supports :set and :unset actions" do expect { resource.action :set }.not_to raise_error expect { resource.action :unset }.not_to raise_error end it "bypass_proxy property defaults to false" do expect { resource.bypass_proxy.to be_false } end describe "#fetch_config_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) expect { resource.fetch_config_element("foo") }.to raise_error(RuntimeError) end it "returns the value if present in the config file" do allow(::File).to receive(:exist?).with('C:\ProgramData\chocolatey\config\chocolatey.config').and_return(true) allow(::File).to receive(:read).with('C:\ProgramData\chocolatey\config\chocolatey.config').and_return(config) expect(resource.fetch_config_element("containsLegacyPackageInstalls")).to eq("true") expect { resource.fetch_config_element("foo") }.not_to raise_error end it "returns nil if the element is not present in the config file" do allow(::File).to receive(:exist?).with('C:\ProgramData\chocolatey\config\chocolatey.config').and_return(true) allow(::File).to receive(:read).with('C:\ProgramData\chocolatey\config\chocolatey.config').and_return(config) expect(resource.fetch_config_element("foo")).to be_nil expect { resource.fetch_config_element("foo") }.not_to raise_error end end end