summaryrefslogtreecommitdiff
path: root/spec/aliases/unixpath_spec.rb
blob: 6aecfe71e6b9c8768e50c4fdb2fd56a2fbf392c3 (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
require 'spec_helper'

if Puppet::Util::Package.versioncmp(Puppet.version, '4.5.0') >= 0
  describe 'test::unixpath', type: :class do
    describe 'valid handling' do
      %w{
        /usr2/username/bin:/usr/local/bin:/usr/bin:.
        /var/tmp
        /Users/helencampbell/workspace/puppetlabs-stdlib
        /var/ůťƒ8
        /var/ネット
        /var//tmp
        /var/../tmp
      }.each do |value|
        describe value.inspect do
          let(:params) {{ value: value }}
          it { is_expected.to compile }
        end
      end
    end

    describe 'invalid path handling' do
      context 'garbage inputs' do
        [
          nil,
          [ nil ],
          [ nil, nil ],
          { 'foo' => 'bar' },
          { },
          '',
          "C:/whatever",
          "\\var\\tmp",
          "\\Users/hc/wksp/stdlib",
          "*/Users//nope",
          "var\ůťƒ8",
          "var\ネット"
        ].each do |value|
          describe value.inspect do
            let(:params) {{ value: value }}
            it { is_expected.to compile.and_raise_error(/parameter 'value' expects a match for Stdlib::Unixpath/) }
          end
        end
      end

    end
  end
end