blob: c5f1573008c97d1d2ba781ba94da7940c19f051a (
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
#! /usr/bin/env ruby
require 'spec_helper'
require 'puppet_spec/files'
describe "the 'file' function" do
include PuppetSpec::Files
before :all do
Puppet::Parser::Functions.autoloader.loadall
end
let :node do Puppet::Node.new('localhost') end
let :compiler do Puppet::Parser::Compiler.new(node) end
let :scope do Puppet::Parser::Scope.new(compiler) end
def with_file_content(content)
path = tmpfile('file-function')
file = File.new(path, 'w')
file.sync = true
file.print content
yield path
end
it "should read a file" do
with_file_content('file content') do |name|
scope.function_file([name]).should == "file content"
end
end
it "should read a file from a module path" do
with_file_content('file content') do |name|
mod = mock 'module'
mod.stubs(:file).with('myfile').returns(name)
compiler.environment.stubs(:module).with('mymod').returns(mod)
scope.function_file(['mymod/myfile']).should == 'file content'
end
end
it "should return the first file if given two files with absolute paths" do
with_file_content('one') do |one|
with_file_content('two') do |two|
scope.function_file([one, two]).should == "one"
end
end
end
it "should return the first file if given two files with module paths" do
with_file_content('one') do |one|
with_file_content('two') do |two|
mod = mock 'module'
compiler.environment.expects(:module).with('mymod').returns(mod)
mod.expects(:file).with('one').returns(one)
mod.stubs(:file).with('two').returns(two)
scope.function_file(['mymod/one','mymod/two']).should == 'one'
end
end
end
it "should return the first file if given two files with mixed paths, absolute first" do
with_file_content('one') do |one|
with_file_content('two') do |two|
mod = mock 'module'
compiler.environment.stubs(:module).with('mymod').returns(mod)
mod.stubs(:file).with('two').returns(two)
scope.function_file([one,'mymod/two']).should == 'one'
end
end
end
it "should return the first file if given two files with mixed paths, module first" do
with_file_content('one') do |one|
with_file_content('two') do |two|
mod = mock 'module'
compiler.environment.expects(:module).with('mymod').returns(mod)
mod.stubs(:file).with('two').returns(two)
scope.function_file(['mymod/two',one]).should == 'two'
end
end
end
it "should not fail when some files are absent" do
expect {
with_file_content('one') do |one|
scope.function_file([make_absolute("/should-not-exist"), one]).should == 'one'
end
}.to_not raise_error
end
it "should fail when all files are absent" do
expect {
scope.function_file([File.expand_path('one')])
}.to raise_error(Puppet::ParseError, /Could not find any files/)
end
end
|