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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
|
#! /usr/bin/env ruby
require 'spec_helper'
require 'puppet_spec/compiler'
require 'puppet/parser/functions'
require 'matchers/containment_matchers'
require 'matchers/resource'
require 'matchers/include_in_order'
require 'unit/parser/functions/shared'
describe 'The "contain" function' do
include PuppetSpec::Compiler
include ContainmentMatchers
include Matchers::Resource
it "includes the class" do
catalog = compile_to_catalog(<<-MANIFEST)
class contained {
notify { "contained": }
}
class container {
contain contained
}
include container
MANIFEST
expect(catalog.classes).to include("contained")
end
it "includes the class when using a fully qualified anchored name" do
catalog = compile_to_catalog(<<-MANIFEST)
class contained {
notify { "contained": }
}
class container {
contain ::contained
}
include container
MANIFEST
expect(catalog.classes).to include("contained")
end
it "ensures that the edge is with the correct class" do
catalog = compile_to_catalog(<<-MANIFEST)
class outer {
class named { }
contain named
}
class named { }
include named
include outer
MANIFEST
expect(catalog).to have_resource("Class[Named]")
expect(catalog).to have_resource("Class[Outer]")
expect(catalog).to have_resource("Class[Outer::Named]")
expect(catalog).to contain_class("outer::named").in("outer")
end
it "makes the class contained in the current class" do
catalog = compile_to_catalog(<<-MANIFEST)
class contained {
notify { "contained": }
}
class container {
contain contained
}
include container
MANIFEST
expect(catalog).to contain_class("contained").in("container")
end
it "can contain multiple classes" do
catalog = compile_to_catalog(<<-MANIFEST)
class a {
notify { "a": }
}
class b {
notify { "b": }
}
class container {
contain a, b
}
include container
MANIFEST
expect(catalog).to contain_class("a").in("container")
expect(catalog).to contain_class("b").in("container")
end
context "when containing a class in multiple classes" do
it "creates a catalog with all containment edges" do
catalog = compile_to_catalog(<<-MANIFEST)
class contained {
notify { "contained": }
}
class container {
contain contained
}
class another {
contain contained
}
include container
include another
MANIFEST
expect(catalog).to contain_class("contained").in("container")
expect(catalog).to contain_class("contained").in("another")
end
it "and there are no dependencies applies successfully" do
manifest = <<-MANIFEST
class contained {
notify { "contained": }
}
class container {
contain contained
}
class another {
contain contained
}
include container
include another
MANIFEST
expect { apply_compiled_manifest(manifest) }.not_to raise_error
end
it "and there are explicit dependencies on the containing class causes a dependency cycle" do
manifest = <<-MANIFEST
class contained {
notify { "contained": }
}
class container {
contain contained
}
class another {
contain contained
}
include container
include another
Class["container"] -> Class["another"]
MANIFEST
expect { apply_compiled_manifest(manifest) }.to raise_error(
Puppet::Error,
/Found 1 dependency cycle/
)
end
end
it "does not create duplicate edges" do
catalog = compile_to_catalog(<<-MANIFEST)
class contained {
notify { "contained": }
}
class container {
contain contained
contain contained
}
include container
MANIFEST
contained = catalog.resource("Class", "contained")
container = catalog.resource("Class", "container")
expect(catalog.edges_between(container, contained)).to have(1).item
end
context "when a containing class has a dependency order" do
it "the contained class is applied in that order" do
catalog = compile_to_relationship_graph(<<-MANIFEST)
class contained {
notify { "contained": }
}
class container {
contain contained
}
class first {
notify { "first": }
}
class last {
notify { "last": }
}
include container, first, last
Class["first"] -> Class["container"] -> Class["last"]
MANIFEST
expect(order_resources_traversed_in(catalog)).to include_in_order(
"Notify[first]", "Notify[contained]", "Notify[last]"
)
end
end
describe "When the future parser is in use" do
require 'puppet/pops'
before(:each) do
Puppet[:parser] = 'future'
compiler = Puppet::Parser::Compiler.new(Puppet::Node.new("foo"))
@scope = Puppet::Parser::Scope.new(compiler)
end
it_should_behave_like 'all functions transforming relative to absolute names', :function_contain
it_should_behave_like 'an inclusion function, regardless of the type of class reference,', :contain
end
end
|