# # Author:: Toomas Pelberg (toomas.pelberg@playtech.com>) # Author:: Claire McQuin (claire@chef.io) # Copyright:: Copyright (c) 2011, 2013-2016 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_relative "../../spec_helper.rb" tmp = ENV["TMPDIR"] || ENV["TMP"] || ENV["TEMP"] || "/tmp" shared_examples "a v7 loading failure" do before(:all) do begin Dir.mkdir("#{tmp}/plugins") rescue Errno::EEXIST # ignore end end before(:each) do fail_file = File.open("#{tmp}/plugins/fail.rb", "w+") fail_file.write(failstr) fail_file.close end after(:each) do File.delete("#{tmp}/plugins/fail.rb") end after(:all) do begin Dir.delete("#{tmp}/plugins") rescue # ignore end end before(:each) do @ohai = Ohai::System.new @loader = Ohai::Loader.new(@ohai) end it "should not have attribute keys" do @loader.load_plugin("#{tmp}/plugins/fail.rb") #@ohai.attributes.should_not have_key("fail") expect { @ohai.provides_map.find_providers_for(["fail"]) }.to raise_error(Ohai::Exceptions::AttributeNotFound) end it "should write to Ohai::Log" do expect(@loader.logger).to receive(:warn).once @loader.load_plugin("#{tmp}/plugins/fail.rb") end end shared_examples "a v7 loading success" do before(:all) do begin Dir.mkdir("#{tmp}/plugins") rescue Errno::EEXIST # ignore end end before(:each) do fail_file = File.open("#{tmp}/plugins/fail.rb", "w+") fail_file.write(failstr) fail_file.close end after(:each) do File.delete("#{tmp}/plugins/fail.rb") end after(:all) do begin Dir.delete("#{tmp}/plugins") rescue # ignore end end before(:each) do @ohai = Ohai::System.new @loader = Ohai::Loader.new(@ohai) end it "should have attribute keys" do @loader.load_plugin("#{tmp}/plugins/fail.rb") expect(@ohai.provides_map).to have_key("fail") end it "should not write to Ohai::Log" do expect(@loader.logger).not_to receive(:warn) @loader.load_plugin("#{tmp}/plugins/fail.rb") end end shared_examples "a v7 run failure" do before(:all) do begin Dir.mkdir("#{tmp}/plugins") rescue Errno::EEXIST # ignore end end before(:each) do fail_file = File.open("#{tmp}/plugins/fail.rb", "w+") fail_file.write(failstr) fail_file.close end after(:each) do File.delete("#{tmp}/plugins/fail.rb") end after(:all) do begin Dir.delete("#{tmp}/plugins") rescue # ignore end end before(:each) do @ohai = Ohai::System.new @loader = Ohai::Loader.new(@ohai) end it "should not have new attribute keys" do @loader.load_plugin("#{tmp}/plugins/fail.rb").new(@ohai).run expect(@ohai.provides_map).not_to have_key("other") end it "should write to Ohai::Log" do expect(@loader.logger).to receive(:warn).once @loader.load_plugin("#{tmp}/plugins/fail.rb").new(@ohai).run end end describe "when using DSL commands outside Ohai.plugin block" do failstr1 = <