# # Author:: Toomas Pelberg (toomas.pelberg@playtech.com>) # Author:: Claire McQuin (claire@opscode.com) # Copyright:: Copyright (c) 2011, 2013 Opscode, 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 File.expand_path(File.join(File.dirname(__FILE__), '..', '..', '/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") lambda { @ohai.provides_map.find_providers_for(["fail"]) }.should raise_error(Ohai::Exceptions::AttributeNotFound) end it "should not have source key" do @loader.load_plugin("#{tmp}/plugins/fail.rb") @ohai.v6_dependency_solver.should_not have_key("#{tmp}/plugins/fail.rb") end it "should write to Ohai::Log" do Ohai::Log.should_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") @ohai.provides_map.should have_key("fail") end it "should have source key" do @loader.load_plugin("#{tmp}/plugins/fail.rb") @ohai.v6_dependency_solver.should have_key("#{tmp}/plugins/fail.rb") end it "should not write to Ohai::Log" do Ohai::Log.should_not_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 @ohai.provides_map.should_not have_key("other") end it "should write to Ohai::Log" do Ohai::Log.should_receive(:warn).once @loader.load_plugin("#{tmp}/plugins/fail.rb").new(@ohai).run end end =begin shared_examples "a v6 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 add data keys" do @loader.load_plugin("#{tmp}/plugins/fail.rb") @ohai.data.should_not have_key("fail") end it "should write to Ohai::Log" do Ohai::Log.should_receive(:warn).once @loader.load_plugin("#{tmp}/plugins/fail.rb").new(@ohai).run end end =end describe "when using DSL commands outside Ohai.plugin block" do failstr1 = <