Sha256: 3790b3e265948a0aa7d7bd00258844de2bbc6328a152d87967f5e3af7c32f10e

Contents?: true

Size: 1.25 KB

Versions: 2

Compression:

Stored size: 1.25 KB

Contents

#!/usr/bin/env rspec
require 'spec_helper'

describe Puppet::Util::ExecutionStub do
  it "should use the provided stub code when 'set' is called" do
    Puppet::Util::ExecutionStub.set do |command, options|
      command.should == ['/bin/foo', 'bar']
      "stub output"
    end
    Puppet::Util::ExecutionStub.current_value.should_not == nil
    Puppet::Util.execute(['/bin/foo', 'bar']).should == "stub output"
  end

  it "should automatically restore normal execution at the conclusion of each spec test" do
    # Note: this test relies on the previous test creating a stub.
    Puppet::Util::ExecutionStub.current_value.should == nil
  end

  it "should restore normal execution after 'reset' is called" do
    true_command = Puppet::Util.which('true') # Note: "true" exists at different paths in different OSes
    stub_call_count = 0
    Puppet::Util::ExecutionStub.set do |command, options|
      command.should == [true_command]
      stub_call_count += 1
      'stub called'
    end
    Puppet::Util.execute([true_command]).should == 'stub called'
    stub_call_count.should == 1
    Puppet::Util::ExecutionStub.reset
    Puppet::Util::ExecutionStub.current_value.should == nil
    Puppet::Util.execute([true_command]).should == ''
    stub_call_count.should == 1
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
puppet-2.7.3 spec/unit/util/execution_stub_spec.rb
puppet-2.7.1 spec/unit/util/execution_stub_spec.rb