summaryrefslogtreecommitdiff
path: root/spec/functions/getparam_spec.rb
blob: d9c50a6c219c3705eaed67d183f0dde6c71c1797 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#! /usr/bin/env ruby -S rspec
require 'spec_helper'

require 'rspec-puppet'
describe 'getparam' do
  describe 'when a resource is not specified' do
    it do
      should run.with_params().and_raise_error(ArgumentError)
      should run.with_params('User[dan]').and_raise_error(ArgumentError)
      should run.with_params('User[dan]', {}).and_raise_error(ArgumentError)
      should run.with_params('User[dan]', '').and_return('')
    end
  end
  describe 'when compared against a resource with no params' do
    let :pre_condition do
      'user { "dan": }'
    end
    it do
      should run.with_params('User[dan]', 'shell').and_return('')
    end
  end

  describe 'when compared against a resource with params' do
    let :pre_condition do
      'user { "dan": ensure => present, shell => "/bin/sh", managehome => false}'
    end
    it do
      should run.with_params('User[dan]', 'shell').and_return('/bin/sh')
      should run.with_params('User[dan]', '').and_return('')
      should run.with_params('User[dan]', 'ensure').and_return('present')
      should run.with_params('User[dan]', 'managehome').and_return(false)
    end
  end
end