summaryrefslogtreecommitdiff
path: root/spec/unit/puppet/parser/functions/validate_absolute_path_spec.rb
blob: 2b44f506ab1e97466f1f849a95dcb650dbc7f553 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
require 'spec_helper'

describe Puppet::Parser::Functions.function(:validate_absolute_path) do
  before :all do
    Puppet::Parser::Functions.autoloader.loadall
  end

  let(:scope) do
    scope = Puppet::Parser::Scope.new
  end

  # The subject of these examplres is the method itself.
  subject do
    scope.method :function_validate_absolute_path
  end

  context 'Using Puppet::Parser::Scope.new' do

    describe 'Garbage inputs' do
      paths = [
        nil,
        [ nil ],
        { 'foo' => 'bar' },
        { },
        '',
      ]

      paths.each do |path|
        it "validate_absolute_path(#{path.inspect}) should fail" do
          expect { subject.call [path] }.to raise_error Puppet::ParseError
        end
      end
    end
    describe 'relative paths' do
      paths = %w{
        relative1
        .
        ..
        ./foo
        ../foo
        etc/puppetlabs/puppet
        opt/puppet/bin
      }

      paths.each do |path|
        it "validate_absolute_path(#{path.inspect}) should fail" do
          expect { subject.call [path] }.to raise_error Puppet::ParseError
        end
      end
    end
    describe 'absolute paths' do
      paths = %w{
        C:/
        C:\\
        C:\\WINDOWS\\System32
        C:/windows/system32
        X:/foo/bar
        X:\\foo\\bar
        /var/tmp
        /var/lib/puppet
        /var/opt/../lib/puppet
      }

      paths = paths + [
        'C:\\Program Files (x86)\\Puppet Labs\\Puppet Enterprise',
        'C:/Program Files (x86)/Puppet Labs/Puppet Enterprise',
      ]

      paths.each do |path|
        it "validate_absolute_path(#{path.inspect}) should not fail" do
          expect { subject.call [path] }.not_to raise_error
        end
      end
    end
  end
end