puppetlabs-stdlib/spec/functions/getparam_spec.rb
Ashley Penney 6287a200af Convert specs to RSpec 2.99.0 syntax with Transpec
This conversion is done by Transpec 2.2.1 with the following command:
    transpec spec/functions

* 345 conversions
    from: obj.should
      to: expect(obj).to

* 122 conversions
    from: == expected
      to: eq(expected)

* 85 conversions
    from: lambda { }.should
      to: expect { }.to

* 22 conversions
    from: be_true
      to: be_truthy

* 16 conversions
    from: be_false
      to: be_falsey

* 11 conversions
    from: pending
      to: skip

* 9 conversions
    from: it { should ... }
      to: it { is_expected.to ... }

* 5 conversions
    from: =~ [1, 2]
      to: match_array([1, 2])

* 2 conversions
    from: =~ /pattern/
      to: match(/pattern/)

* 2 conversions
    from: obj.should_not
      to: expect(obj).not_to

For more details: https://github.com/yujinakayama/transpec#supported-conversions
2014-06-04 14:38:37 -04:00

76 lines
2.5 KiB
Ruby
Executable file

#! /usr/bin/env ruby -S rspec
require 'spec_helper'
require 'rspec-puppet'
require 'puppet_spec/compiler'
describe 'getparam' do
include PuppetSpec::Compiler
before :each do
Puppet::Parser::Functions.autoloader.loadall
Puppet::Parser::Functions.function(:getparam)
end
let :node do Puppet::Node.new('localhost') end
let :compiler do Puppet::Parser::Compiler.new(node) end
if Puppet.version.to_f >= 3.0
let :scope do Puppet::Parser::Scope.new(compiler) end
else
let :scope do
newscope = Puppet::Parser::Scope.new
newscope.compiler = compiler
newscope.source = Puppet::Resource::Type.new(:node, :localhost)
newscope
end
end
it "should exist" do
expect(Puppet::Parser::Functions.function("getparam")).to eq("function_getparam")
end
describe 'when a resource is not specified' do
it { expect { scope.function_getparam([]) }.to raise_error }
it { expect { scope.function_getparam(['User[dan]']) }.to raise_error }
it { expect { scope.function_getparam(['User[dan]']) }.to raise_error }
it { expect { scope.function_getparam(['User[dan]', {}]) }.to raise_error }
# This seems to be OK because we just check for a string.
it { expect { scope.function_getparam(['User[dan]', '']) }.to_not raise_error }
end
describe 'when compared against a resource with no params' do
let :catalog do
compile_to_catalog(<<-EOS
user { "dan": }
EOS
)
end
it do
expect(scope.function_getparam(['User[dan]', 'shell'])).to eq('')
end
end
describe 'when compared against a resource with params' do
let :catalog do
compile_to_catalog(<<-EOS
user { 'dan': ensure => present, shell => '/bin/sh', managehome => false}
$test = getparam(User[dan], 'shell')
EOS
)
end
it do
resource = Puppet::Parser::Resource.new(:user, 'dan', {:scope => scope})
resource.set_parameter('ensure', 'present')
resource.set_parameter('shell', '/bin/sh')
resource.set_parameter('managehome', false)
compiler.add_resource(scope, resource)
expect(scope.function_getparam(['User[dan]', 'shell'])).to eq('/bin/sh')
expect(scope.function_getparam(['User[dan]', ''])).to eq('')
expect(scope.function_getparam(['User[dan]', 'ensure'])).to eq('present')
# TODO: Expected this to be false, figure out why we're getting '' back.
expect(scope.function_getparam(['User[dan]', 'managehome'])).to eq('')
end
end
end