Sha256: 8b2ec8463245e0c073dbe20f8f4720cb78c9e0278a843203a42ab0be18bb2289

Contents?: true

Size: 1.86 KB

Versions: 278

Compression:

Stored size: 1.86 KB

Contents

require 'spec_helper'

require 'puppet/provider/command'

describe Puppet::Provider::Command do
  let(:name) { "the name" }
  let(:the_options) { { :option => 1 } }
  let(:no_options) { {} }
  let(:executable) { "foo" }
  let(:executable_absolute_path) { "/foo/bar" }

  let(:executor) { mock('executor') }
  let(:resolver) { mock('resolver') }

  let(:path_resolves_to_itself) do
    resolves = Object.new
    class << resolves
      def which(path)
        path
      end
    end
    resolves
  end

  it "executes a simple command" do
    executor.expects(:execute).with([executable], no_options)

    command = Puppet::Provider::Command.new(name, executable, path_resolves_to_itself, executor)
    command.execute()
  end

  it "executes a command with extra options" do
    executor.expects(:execute).with([executable], the_options)

    command = Puppet::Provider::Command.new(name, executable, path_resolves_to_itself, executor, the_options)
    command.execute()
  end

  it "executes a command with arguments" do
    executor.expects(:execute).with([executable, "arg1", "arg2"], no_options)

    command = Puppet::Provider::Command.new(name, executable, path_resolves_to_itself, executor)
    command.execute("arg1", "arg2")
  end

  it "resolves to an absolute path for better execution" do
    resolver.expects(:which).with(executable).returns(executable_absolute_path)
    executor.expects(:execute).with([executable_absolute_path], no_options)

    command = Puppet::Provider::Command.new(name, executable, resolver, executor)
    command.execute()
  end

  it "errors when the executable resolves to nothing" do
    resolver.expects(:which).with(executable).returns(nil)
    executor.expects(:execute).never

    command = Puppet::Provider::Command.new(name, executable, resolver, executor)

    expect { command.execute() }.to raise_error(Puppet::Error, "Command #{name} is missing")
  end
end

Version data entries

278 entries across 278 versions & 1 rubygems

Version Path
puppet-6.4.0 spec/unit/provider/command_spec.rb
puppet-6.4.0-x86-mingw32 spec/unit/provider/command_spec.rb
puppet-6.4.0-x64-mingw32 spec/unit/provider/command_spec.rb
puppet-6.4.0-universal-darwin spec/unit/provider/command_spec.rb
puppet-6.0.7 spec/unit/provider/command_spec.rb
puppet-6.0.7-x86-mingw32 spec/unit/provider/command_spec.rb
puppet-6.0.7-x64-mingw32 spec/unit/provider/command_spec.rb
puppet-6.0.7-universal-darwin spec/unit/provider/command_spec.rb
puppet-5.5.12 spec/unit/provider/command_spec.rb
puppet-5.5.12-x86-mingw32 spec/unit/provider/command_spec.rb
puppet-5.5.12-x64-mingw32 spec/unit/provider/command_spec.rb
puppet-5.5.12-universal-darwin spec/unit/provider/command_spec.rb
puppet-6.3.0 spec/unit/provider/command_spec.rb
puppet-6.3.0-x86-mingw32 spec/unit/provider/command_spec.rb
puppet-6.3.0-x64-mingw32 spec/unit/provider/command_spec.rb
puppet-6.3.0-universal-darwin spec/unit/provider/command_spec.rb
puppet-6.2.0 spec/unit/provider/command_spec.rb
puppet-6.2.0-x86-mingw32 spec/unit/provider/command_spec.rb
puppet-6.2.0-x64-mingw32 spec/unit/provider/command_spec.rb
puppet-6.2.0-universal-darwin spec/unit/provider/command_spec.rb