Skip to content

Commit 5889df7

Browse files
committed
Adding code to allow usage of arrays with validate_absolute_path, also extending rspec tests and documentation
1 parent b347cc8 commit 5889df7

File tree

4 files changed

+82
-36
lines changed

4 files changed

+82
-36
lines changed

README.markdown

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1052,15 +1052,21 @@ for windows and unix style paths.
10521052

10531053
The following values will pass:
10541054

1055-
$my_path = "C:/Program Files (x86)/Puppet Labs/Puppet"
1055+
$my_path = 'C:/Program Files (x86)/Puppet Labs/Puppet'
10561056
validate_absolute_path($my_path)
1057-
$my_path2 = "/var/lib/puppet"
1057+
$my_path2 = '/var/lib/puppet'
10581058
validate_absolute_path($my_path2)
1059+
$my_path3 = ['C:/Program Files (x86)/Puppet Labs/Puppet','C:/Program Files/Puppet Labs/Puppet']
1060+
validate_absolute_path($my_path3)
1061+
$my_path4 = ['/var/lib/puppet','/usr/share/puppet']
1062+
validate_absolute_path($my_path4)
10591063

10601064

10611065
The following values will fail, causing compilation to abort:
10621066

10631067
validate_absolute_path(true)
1068+
validate_absolute_path('../var/lib/puppet')
1069+
validate_absolute_path('var/lib/puppet')
10641070
validate_absolute_path([ 'var/lib/puppet', '/var/foo' ])
10651071
validate_absolute_path([ '/var/lib/puppet', 'var/foo' ])
10661072
$undefined = undef

lib/puppet/parser/functions/validate_absolute_path.rb

Lines changed: 31 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -28,28 +28,39 @@ module Puppet::Parser::Functions
2828
end
2929

3030
args.each do |arg|
31-
# This logic was borrowed from
32-
# [lib/puppet/file_serving/base.rb](https://github.com/puppetlabs/puppet/blob/master/lib/puppet/file_serving/base.rb)
31+
# put arg to candidate var to be able to replace it
32+
candidates = arg
33+
# if arg is just a string with a path to test, convert it to an array
34+
# to avoid test code duplication
35+
unless arg.is_a?(Array) then
36+
candidates = Array.new(1,arg)
37+
end
38+
39+
# iterate over all pathes within the candidates array
40+
candidates.each do |path|
41+
# This logic was borrowed from
42+
# [lib/puppet/file_serving/base.rb](https://github.com/puppetlabs/puppet/blob/master/lib/puppet/file_serving/base.rb)
43+
44+
# Puppet 2.7 and beyond will have Puppet::Util.absolute_path? Fall back to a back-ported implementation otherwise.
45+
if Puppet::Util.respond_to?(:absolute_path?) then
46+
unless Puppet::Util.absolute_path?(path, :posix) or Puppet::Util.absolute_path?(path, :windows)
47+
raise Puppet::ParseError, ("#{path.inspect} is not an absolute path.")
48+
end
49+
else
50+
# This code back-ported from 2.7.x's lib/puppet/util.rb Puppet::Util.absolute_path?
51+
# Determine in a platform-specific way whether a path is absolute. This
52+
# defaults to the local platform if none is specified.
53+
# Escape once for the string literal, and once for the regex.
54+
slash = '[\\\\/]'
55+
name = '[^\\\\/]+'
56+
regexes = {
57+
:windows => %r!^(([A-Z]:#{slash})|(#{slash}#{slash}#{name}#{slash}#{name})|(#{slash}#{slash}\?#{slash}#{name}))!i,
58+
:posix => %r!^/!,
59+
}
3360

34-
# Puppet 2.7 and beyond will have Puppet::Util.absolute_path? Fall back to a back-ported implementation otherwise.
35-
if Puppet::Util.respond_to?(:absolute_path?) then
36-
unless Puppet::Util.absolute_path?(arg, :posix) or Puppet::Util.absolute_path?(arg, :windows)
37-
raise Puppet::ParseError, ("#{arg.inspect} is not an absolute path.")
61+
rval = (!!(path =~ regexes[:posix])) || (!!(path =~ regexes[:windows]))
62+
rval or raise Puppet::ParseError, ("#{path.inspect} is not an absolute path.")
3863
end
39-
else
40-
# This code back-ported from 2.7.x's lib/puppet/util.rb Puppet::Util.absolute_path?
41-
# Determine in a platform-specific way whether a path is absolute. This
42-
# defaults to the local platform if none is specified.
43-
# Escape once for the string literal, and once for the regex.
44-
slash = '[\\\\/]'
45-
name = '[^\\\\/]+'
46-
regexes = {
47-
:windows => %r!^(([A-Z]:#{slash})|(#{slash}#{slash}#{name}#{slash}#{name})|(#{slash}#{slash}\?#{slash}#{name}))!i,
48-
:posix => %r!^/!,
49-
}
50-
51-
rval = (!!(arg =~ regexes[:posix])) || (!!(arg =~ regexes[:windows]))
52-
rval or raise Puppet::ParseError, ("#{arg.inspect} is not an absolute path.")
5364
end
5465
end
5566
end

lib/puppet/parser/functions/validate_array.rb

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,25 @@ module Puppet::Parser::Functions
66
77
The following values will pass:
88
9-
$my_array = [ 'one', 'two' ]
10-
validate_array($my_array)
9+
$my_path = 'C:/Program Files (x86)/Puppet Labs/Puppet'
10+
validate_absolute_path($my_path)
11+
$my_path2 = '/var/lib/puppet'
12+
validate_absolute_path($my_path2)
13+
$my_path3 = ['C:/Program Files (x86)/Puppet Labs/Puppet','C:/Program Files/Puppet Labs/Puppet']
14+
validate_absolute_path($my_path3)
15+
$my_path4 = ['/var/lib/puppet','/usr/share/puppet']
16+
validate_absolute_path($my_path4)
17+
1118
1219
The following values will fail, causing compilation to abort:
1320
14-
validate_array(true)
15-
validate_array('some_string')
21+
validate_absolute_path(true)
22+
validate_absolute_path('../var/lib/puppet')
23+
validate_absolute_path('var/lib/puppet')
24+
validate_absolute_path([ 'var/lib/puppet', '/var/foo' ])
25+
validate_absolute_path([ '/var/lib/puppet', 'var/foo' ])
1626
$undefined = undef
17-
validate_array($undefined)
27+
validate_absolute_path($undefined)
1828
1929
ENDHEREDOC
2030

spec/functions/validate_absolute_path_spec.rb

Lines changed: 28 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ def self.valid_paths
3939
expect { subject.call [path] }.not_to raise_error
4040
end
4141
end
42+
valid_paths do
43+
it "validate_absolute_path(#{valid_paths.inspect}) should not fail" do
44+
expect { subject.call [valid_paths] }.not_to raise_error
45+
end
46+
end
4247
end
4348

4449
context "Puppet without mocking" do
@@ -47,6 +52,11 @@ def self.valid_paths
4752
expect { subject.call [path] }.not_to raise_error
4853
end
4954
end
55+
valid_paths do
56+
it "validate_absolute_path(#{valid_paths.inspect}) should not fail" do
57+
expect { subject.call [valid_paths] }.not_to raise_error
58+
end
59+
end
5060
end
5161
end
5262

@@ -55,6 +65,7 @@ def self.valid_paths
5565
[
5666
nil,
5767
[ nil ],
68+
[ nil, nil ],
5869
{ 'foo' => 'bar' },
5970
{ },
6071
'',
@@ -66,19 +77,27 @@ def self.valid_paths
6677
end
6778

6879
context 'Relative paths' do
69-
%w{
70-
relative1
71-
.
72-
..
73-
./foo
74-
../foo
75-
etc/puppetlabs/puppet
76-
opt/puppet/bin
77-
}.each do |path|
80+
def self.rel_paths
81+
%w{
82+
relative1
83+
.
84+
..
85+
./foo
86+
../foo
87+
etc/puppetlabs/puppet
88+
opt/puppet/bin
89+
}
90+
end
91+
rel_paths.each do |path|
7892
it "validate_absolute_path(#{path.inspect}) should fail" do
7993
expect { subject.call [path] }.to raise_error Puppet::ParseError
8094
end
8195
end
96+
rel_paths do
97+
it "validate_absolute_path(#{rel_paths.inspect}) should fail" do
98+
expect { subject.call [rel_paths] }.to raise_error Puppet::ParseError
99+
end
100+
end
82101
end
83102
end
84103
end

0 commit comments

Comments
 (0)