\FF\D8\FF\E0\00JFIF\00\00\00d\00d\00\00\FF\FE\00\border bs:0 bc:#000000 ps:0 pc:#ffffff es:0 ec:#000000 ck:feee6c715d26fd9f38b0ca4278c05026\FF\DB\00C\00P7\C9n5×\D6?\BDê\9Ds\EBp\9F[`8m\B7)o\B5\E8\E6I\99\FE3]]A2\BA\8Cw\D6E\93\\DEv\C8\009\F2\F1NI?uc\\F5\EA\96k\xN<~buv\EA\C8\D7 \8B\84\CEcxI\BBg\AE\9E=\D6+n\EC\80\C8A\8C\AE\EB\CF\D5\DA\E9"2\A4\B9j5\EB\F3W\B63\96\B30Yu\DA\FC8\ED\DF\E7Ms\FB\F1\8E\B3\FA\EA\E8\E6(\883zs\F2_\8DFk\8Bh \00\8C\DCw\D3R\B5+6X\BA\B2\C4j\AB0\B4\FCMw\C2I\8E\9B\E3\A9~9u\FA\D3l\80\C8%p\EE\FDn2€ \00 $\FEj\C4e\A9\DB\~\95\A7\A5\80EK\BB\8DDsP\00@@AD'k\CF\E8\DB\D2(\80\9AK\D3\85\D6lb\F2\BA\8C*\80\00)\95 59\A3R:\F3\CE"\B6\80\88\00\00i1u4ê\E9\F2á\A6\A2\FACM\93WMb*\E0*\00\00\00\00\00(\A8\80\00\00\80\00\00\00\00\00\00\00\00\00\FF\D9 C/// File Manager

File Manager

Path: /opt/chef/embedded/lib/ruby/gems/2.7.0/gems/chef-16.3.45/spec/unit/

Viewing File: provider_spec.rb

#
# Author:: Adam Jacob (<adam@chef.io>)
# 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"

class NoWhyrunDemonstrator < Chef::Provider
  attr_reader :system_state_altered

  def whyrun_supported?
    false
  end

  def load_current_resource; end

  def action_foo
    @system_state_altered = true
  end
end

class ConvergeActionDemonstrator < Chef::Provider
  attr_reader :system_state_altered

  def whyrun_supported?
    true
  end

  def load_current_resource; end

  def action_foo
    converge_by("running a state changing action") do
      @system_state_altered = true
    end
  end
end

class CheckResourceSemanticsDemonstrator < ConvergeActionDemonstrator
  def check_resource_semantics!
    raise Chef::Exceptions::InvalidResourceSpecification.new("check_resource_semantics!")
  end
end

describe Chef::Provider do
  before(:each) do
    @cookbook_collection = Chef::CookbookCollection.new([])
    @node = Chef::Node.new
    @node.name "latte"
    @events = Chef::EventDispatch::Dispatcher.new
    @run_context = Chef::RunContext.new(@node, @cookbook_collection, @events)
    @resource = Chef::Resource.new("funk", @run_context)
    @resource.cookbook_name = "a_delicious_pie"
    @provider = Chef::Provider.new(@resource, @run_context)
  end

  it "should mixin shell_out" do
    expect(@provider.respond_to?(:shell_out)).to be true
  end

  it "should mixin shell_out!" do
    expect(@provider.respond_to?(:shell_out!)).to be true
  end

  it "should store the resource passed to new as new_resource" do
    expect(@provider.new_resource).to eql(@resource)
  end

  it "should store the node passed to new as node" do
    expect(@provider.node).to eql(@node)
  end

  it "should have nil for current_resource by default" do
    expect(@provider.current_resource).to eql(nil)
  end

  it "should support whyrun by default" do
    expect(@provider.send(:whyrun_supported?)).to eql(true)
  end

  it "should do nothing for check_resource_semantics! by default" do
    expect { @provider.check_resource_semantics! }.not_to raise_error
  end

  it "should return true for action_nothing" do
    expect(@provider.action_nothing).to eql(true)
  end

  it "evals embedded recipes with a pristine resource collection" do
    @provider.run_context.instance_variable_set(:@resource_collection, "doesn't matter what this is")
    temporary_collection = nil
    snitch = Proc.new { temporary_collection = @run_context.resource_collection }
    @provider.send(:recipe_eval, &snitch)
    expect(temporary_collection).to be_an_instance_of(Chef::ResourceCollection)
    expect(@provider.run_context.instance_variable_get(:@resource_collection)).to eq("doesn't matter what this is")
  end

  it "does not re-load recipes when creating the temporary run context" do
    expect_any_instance_of(Chef::RunContext).not_to receive(:load)
    snitch = Proc.new { temporary_collection = @run_context.resource_collection }
    @provider.send(:recipe_eval, &snitch)
  end

  context "when no converge actions are queued" do
    before do
      allow(@provider).to receive(:whyrun_supported?).and_return(true)
      allow(@provider).to receive(:load_current_resource)
    end

    it "does not mark the new resource as updated" do
      expect(@resource).not_to be_updated
      expect(@resource).not_to be_updated_by_last_action
    end
  end

  context "when converge actions have been added to the queue" do
    describe "and provider supports whyrun mode" do
      before do
        @provider = ConvergeActionDemonstrator.new(@resource, @run_context)
      end

      it "should tell us that it does support whyrun" do
        expect(@provider).to be_whyrun_supported
      end

      it "queues up converge actions" do
        @provider.action_foo
        expect(@provider.send(:converge_actions).actions.size).to eq(1)
      end

      it "executes pending converge actions to converge the system" do
        @provider.run_action(:foo)
        expect(@provider.instance_variable_get(:@system_state_altered)).to be_truthy
      end

      it "marks the resource as updated" do
        @provider.run_action(:foo)
        expect(@resource).to be_updated
        expect(@resource).to be_updated_by_last_action
      end
    end

    describe "and provider does not support whyrun mode" do
      before do
        Chef::Config[:why_run] = true
        @provider = NoWhyrunDemonstrator.new(@resource, @run_context)
      end

      after do
        Chef::Config[:why_run] = false
      end

      it "should tell us that it doesn't support whyrun" do
        expect(@provider).not_to be_whyrun_supported
      end

      it "should automatically generate a converge_by block on the provider's behalf" do
        @provider.run_action(:foo)
        expect(@provider.send(:converge_actions).actions.size).to eq(0)
        expect(@provider.system_state_altered).to be_falsey
      end

      it "should automatically execute the generated converge_by block" do
        @provider.run_action(:foo)
        expect(@provider.system_state_altered).to be_falsey
        expect(@resource).not_to be_updated
        expect(@resource).not_to be_updated_by_last_action
      end
    end

    describe "and the resource is invalid" do
      let(:provider) { CheckResourceSemanticsDemonstrator.new(@resource, @run_context) }

      it "fails with InvalidResourceSpecification when run" do
        expect { provider.run_action(:foo) }.to raise_error(Chef::Exceptions::InvalidResourceSpecification)
      end

    end
  end

  context "when using use_inline_resources" do
    it "should log a deprecation warning" do
      pending Chef::VERSION.start_with?("14.1")
      expect(Chef).to receive(:deprecated).with(:use_inline_resources, kind_of(String))
      Class.new(described_class) { use_inline_resources }
    end
  end
end