blob: d6795889fa59086b69a5e8c43aba30b1c769993c (
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
|
class LeapTest
#
# Matches the regexp in the file, and returns the first matched string (or fails if no match).
#
def file_match(filename, regexp)
if match = File.read(filename).match(regexp)
match.captures.first
else
fail "Regexp #{regexp.inspect} not found in file #{filename.inspect}."
end
end
#
# Matches the regexp in the file, and returns array of matched strings (or fails if no match).
#
def file_matches(filename, regexp)
if match = File.read(filename).match(regexp)
match.captures
else
fail "Regexp #{regexp.inspect} not found in file #{filename.inspect}."
end
end
#
# checks to make sure the given property path exists in $node (e.g. hiera.yaml)
# and returns the value
#
def assert_property(property)
latest = $node
property.split('.').each do |segment|
latest = latest[segment]
fail "Required node property `#{property}` is missing." if latest.nil?
end
return latest
end
#
# a handy function to get the value of a long property path
# without needing to test the existance individually of each part
# in the tree.
#
# e.g. property("stunnel.clients.couch_client")
#
def property(property)
latest = $node
property.split('.').each do |segment|
latest = latest[segment]
return nil if latest.nil?
end
return latest
end
end
|