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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
#! /usr/bin/env ruby
require 'spec_helper'
require 'puppet/pops'
describe "the 'defined' function" do
before :all do
Puppet::Parser::Functions.autoloader.loadall
end
before :each do
@compiler = Puppet::Parser::Compiler.new(Puppet::Node.new("foo"))
@scope = Puppet::Parser::Scope.new(@compiler)
end
it "exists" do
expect(Puppet::Parser::Functions.function("defined")).to be_eql("function_defined")
end
it "is true when the name is defined as a class" do
@scope.known_resource_types.add Puppet::Resource::Type.new(:hostclass, "yayness")
expect(@scope.function_defined(["yayness"])).to be_true
end
it "is true when the name is defined as a definition" do
@scope.known_resource_types.add Puppet::Resource::Type.new(:definition, "yayness")
expect(@scope.function_defined(["yayness"])).to be_true
end
it "is true when the name is defined as a builtin type" do
expect(@scope.function_defined(["file"])).to be_true
end
it "is true when any of the provided names are defined" do
@scope.known_resource_types.add Puppet::Resource::Type.new(:definition, "yayness")
expect(@scope.function_defined(["meh", "yayness", "booness"])).to be_true
end
it "is false when a single given name is not defined" do
expect(@scope.function_defined(["meh"])).to be_false
end
it "is false when none of the names are defined" do
expect(@scope.function_defined(["meh", "yayness", "booness"])).to be_false
end
it "is true when a resource reference is provided and the resource is in the catalog" do
resource = Puppet::Resource.new("file", "/my/file")
@compiler.add_resource(@scope, resource)
expect(@scope.function_defined([resource])).to be_true
end
context "with string variable references" do
it "is true when variable exists in scope" do
@scope['x'] = 'something'
expect(@scope.function_defined(['$x'])).to be_true
end
it "is true when at least one variable exists in scope" do
@scope['x'] = 'something'
expect(@scope.function_defined(['$y', '$x', '$z'])).to be_true
end
it "is false when variable does not exist in scope" do
expect(@scope.function_defined(['$x'])).to be_false
end
end
context "with future parser" do
before(:each) do
Puppet[:parser] = 'future'
end
it "is true when a future resource type reference is provided, and the resource is in the catalog" do
resource = Puppet::Resource.new("file", "/my/file")
@compiler.add_resource(@scope, resource)
resource_type = Puppet::Pops::Types::TypeFactory.resource('file', '/my/file')
expect(@scope.function_defined([resource_type])).to be_true
end
it "raises an argument error if you ask if Resource is defined" do
resource_type = Puppet::Pops::Types::TypeFactory.resource
expect { @scope.function_defined([resource_type]) }.to raise_error(ArgumentError, /reference to all.*type/)
end
it "is true if referencing a built in type" do
resource_type = Puppet::Pops::Types::TypeFactory.resource('file')
expect(@scope.function_defined([resource_type])).to be_true
end
it "is true if referencing a defined type" do
@scope.known_resource_types.add Puppet::Resource::Type.new(:definition, "yayness")
resource_type = Puppet::Pops::Types::TypeFactory.resource('yayness')
expect(@scope.function_defined([resource_type])).to be_true
end
it "is false if referencing an undefined type" do
resource_type = Puppet::Pops::Types::TypeFactory.resource('barbershops')
expect(@scope.function_defined([resource_type])).to be_false
end
it "is true when a future class reference type is provided" do
@scope.known_resource_types.add Puppet::Resource::Type.new(:hostclass, "cowabunga")
class_type = Puppet::Pops::Types::TypeFactory.host_class("cowabunga")
expect(@scope.function_defined([class_type])).to be_true
end
it "raises an argument error if you ask if Class is defined" do
class_type = Puppet::Pops::Types::TypeFactory.host_class
expect { @scope.function_defined([class_type]) }.to raise_error(ArgumentError, /reference to all.*class/)
end
end
end
|