summaryrefslogtreecommitdiffstats
path: root/spec/unit/type.rb
blob: 2bcac7aec14de114072f1e2ec8d50396a5f6b987 (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
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
#!/usr/bin/env ruby

require File.dirname(__FILE__) + '/../spec_helper'

describe Puppet::Type do
    it "should include the Cacher module" do
        Puppet::Type.ancestors.should be_include(Puppet::Util::Cacher)
    end

    it "should use its catalog as its expirer" do
        catalog = Puppet::Resource::Catalog.new
        resource = Puppet::Type.type(:mount).new(:name => "foo", :fstype => "bar", :pass => 1, :ensure => :present)
        resource.catalog = catalog
        resource.expirer.should equal(catalog)
    end

    it "should do nothing when asked to expire when it has no catalog" do
        resource = Puppet::Type.type(:mount).new(:name => "foo", :fstype => "bar", :pass => 1, :ensure => :present)
        lambda { resource.expire }.should_not raise_error
    end

    it "should be able to retrieve a property by name" do
        resource = Puppet::Type.type(:mount).new(:name => "foo", :fstype => "bar", :pass => 1, :ensure => :present)
        resource.property(:fstype).must be_instance_of(Puppet::Type.type(:mount).attrclass(:fstype))
    end

    it "should be able to retrieve a parameter by name" do
        resource = Puppet::Type.type(:mount).new(:name => "foo", :fstype => "bar", :pass => 1, :ensure => :present)
        resource.parameter(:name).must be_instance_of(Puppet::Type.type(:mount).attrclass(:name))
    end

    it "should be able to retrieve a property by name using the :parameter method" do
        resource = Puppet::Type.type(:mount).new(:name => "foo", :fstype => "bar", :pass => 1, :ensure => :present)
        resource.parameter(:fstype).must be_instance_of(Puppet::Type.type(:mount).attrclass(:fstype))
    end

    it "should have a method for setting default values for resources" do
        Puppet::Type.type(:mount).new(:name => "foo").should respond_to(:set_default)
    end

    it "should do nothing for attributes that have no defaults and no specified value" do
        Puppet::Type.type(:mount).new(:name => "foo").parameter(:noop).should be_nil
    end

    it "should have a method for adding tags" do
        Puppet::Type.type(:mount).new(:name => "foo").should respond_to(:tags)
    end

    it "should use the tagging module" do
        Puppet::Type.type(:mount).ancestors.should be_include(Puppet::Util::Tagging)
    end

    it "should delegate to the tagging module when tags are added" do
        resource = Puppet::Type.type(:mount).new(:name => "foo")
        resource.stubs(:tag).with(:mount)

        resource.expects(:tag).with(:tag1, :tag2)

        resource.tags = [:tag1,:tag2]
    end

    it "should add the current type as tag" do
        resource = Puppet::Type.type(:mount).new(:name => "foo")
        resource.stubs(:tag)

        resource.expects(:tag).with(:mount)

        resource.tags = [:tag1,:tag2]
    end

    it "should have a method to know if the resource is exported" do
        Puppet::Type.type(:mount).new(:name => "foo").should respond_to(:exported?)
    end

    describe "when choosing a default provider" do
        it "should choose the provider with the highest specificity" do
            # Make a fake type
            type = Puppet::Type.newtype(:defaultprovidertest) do
                newparam(:name) do end
            end

            basic = type.provide(:basic) {}
            greater = type.provide(:greater) {}

            basic.stubs(:specificity).returns 1
            greater.stubs(:specificity).returns 2

            type.defaultprovider.should equal(greater)
        end
    end

    describe "when initializing" do
        describe "and passed a TransObject" do
            it "should fail" do
                trans = Puppet::TransObject.new("/foo", :mount)
                lambda { Puppet::Type.type(:mount).new(trans) }.should raise_error(Puppet::DevError)
            end
        end

        describe "and passed a Puppet::Resource instance" do
            it "should set its title to the title of the resource if the resource type is equal to the current type" do
                resource = Puppet::Resource.new(:mount, "/foo", :name => "/other")
                Puppet::Type.type(:mount).new(resource).title.should == "/foo"
            end

            it "should set its title to the resource reference if the resource type is not equal to the current type" do
                resource = Puppet::Resource.new(:user, "foo")
                Puppet::Type.type(:mount).new(resource).title.should == "User[foo]"
            end

            [:line, :file, :catalog, :exported].each do |param|
                it "should copy '#{param}' from the resource if present" do
                    resource = Puppet::Resource.new(:mount, "/foo")
                    resource.send(param.to_s + "=", "foo")
                    resource.send(param.to_s + "=", "foo")
                    Puppet::Type.type(:mount).new(resource).send(param).should == "foo"
                end
            end

            it "should copy any tags from the resource" do
                resource = Puppet::Resource.new(:mount, "/foo")
                resource.tag "one", "two"
                tags = Puppet::Type.type(:mount).new(resource).tags
                tags.should be_include("one")
                tags.should be_include("two")
            end

            it "should copy the resource's parameters as its own" do
                resource = Puppet::Resource.new(:mount, "/foo", :atboot => true, :fstype => "boo")
                params = Puppet::Type.type(:mount).new(resource).to_hash
                params[:fstype].should == "boo"
                params[:atboot].should == true
            end
        end

        describe "and passed a Hash" do
            it "should extract the title from the hash" do
                Puppet::Type.type(:mount).new(:title => "/yay").title.should == "/yay"
            end

            it "should work when hash keys are provided as strings" do
                Puppet::Type.type(:mount).new("title" => "/yay").title.should == "/yay"
            end

            it "should work when hash keys are provided as symbols" do
                Puppet::Type.type(:mount).new(:title => "/yay").title.should == "/yay"
            end

            it "should use the name from the hash as the title if no explicit title is provided" do
                Puppet::Type.type(:mount).new(:name => "/yay").title.should == "/yay"
            end

            it "should use the Resource Type's namevar to determine how to find the name in the hash" do
                Puppet::Type.type(:file).new(:path => "/yay").title.should == "/yay"
            end

            it "should fail if the namevar is not equal to :name and both :name and the namevar are provided" do
                lambda { Puppet::Type.type(:file).new(:path => "/yay", :name => "/foo") }.should raise_error(Puppet::Error)
                @type.stubs(:namevar).returns :myname
            end

            [:catalog].each do |param|
                it "should extract '#{param}' from the hash if present" do
                    Puppet::Type.type(:mount).new(:name => "/yay", param => "foo").send(param).should == "foo"
                end
            end

            it "should use any remaining hash keys as its parameters" do
                resource = Puppet::Type.type(:mount).new(:title => "/foo", :catalog => "foo", :atboot => true, :fstype => "boo")
                resource[:fstype].must == "boo"
                resource[:atboot].must == true
            end
        end

        it "should fail if any invalid attributes have been provided" do
            lambda { Puppet::Type.type(:mount).new(:title => "/foo", :nosuchattr => "whatever") }.should raise_error(Puppet::Error)
        end

        it "should set its name to the resource's title if the resource does not have a :name or namevar parameter set" do
            resource = Puppet::Resource.new(:mount, "/foo")

            Puppet::Type.type(:mount).new(resource).name.should == "/foo"
        end

        it "should fail if no title, name, or namevar are provided" do
            lambda { Puppet::Type.type(:file).new(:atboot => true) }.should raise_error(Puppet::Error)
        end

        it "should set the attributes in the order returned by the class's :allattrs method" do
            Puppet::Type.type(:mount).stubs(:allattrs).returns([:name, :atboot, :noop])
            resource = Puppet::Resource.new(:mount, "/foo", :name => "myname", :atboot => "myboot", :noop => "whatever")

            set = []

            Puppet::Type.type(:mount).any_instance.stubs(:newattr).with do |param, hash|
                set << param
                true
            end

            Puppet::Type.type(:mount).new(resource)

            set[-1].should == :noop
            set[-2].should == :atboot
        end

        it "should always set the name and then default provider before anything else" do
            Puppet::Type.type(:mount).stubs(:allattrs).returns([:provider, :name, :atboot])
            resource = Puppet::Resource.new(:mount, "/foo", :name => "myname", :atboot => "myboot")

            set = []

            Puppet::Type.type(:mount).any_instance.stubs(:newattr).with do |param, hash|
                set << param
                true
            end

            Puppet::Type.type(:mount).new(resource)
            set[0].should == :name
            set[1].should == :provider
        end

        # This one is really hard to test :/
        it "should each default immediately if no value is provided" do
            defaults = []
            Puppet::Type.type(:package).any_instance.stubs(:set_default).with { |value| defaults << value; true }

            Puppet::Type.type(:package).new :name => "whatever"

            defaults[0].should == :provider
        end

        it "should retain a copy of the originally provided parameters" do
            Puppet::Type.type(:mount).new(:name => "foo", :atboot => true, :noop => false).original_parameters.should == {:atboot => true, :noop => false}
        end

        it "should delete the name via the namevar from the originally provided parameters" do
            Puppet::Type.type(:file).new(:name => "/foo").original_parameters[:path].should be_nil
        end
    end

    it "should have a class method for converting a hash into a Puppet::Resource instance" do
        Puppet::Type.type(:mount).must respond_to(:hash2resource)
    end

    describe "when converting a hash to a Puppet::Resource instance" do
        before do
            @type = Puppet::Type.type(:mount)
        end

        it "should treat a :title key as the title of the resource" do
            @type.hash2resource(:name => "/foo", :title => "foo").title.should == "foo"
        end

        it "should use the name from the hash as the title if no explicit title is provided" do
            @type.hash2resource(:name => "foo").title.should == "foo"
        end

        it "should use the Resource Type's namevar to determine how to find the name in the hash" do
            @type.stubs(:namevar).returns :myname

            @type.hash2resource(:myname => "foo").title.should == "foo"
        end

        it "should fail if the namevar is not equal to :name and both :name and the namevar are provided" do
            @type.stubs(:namevar).returns :myname

            lambda { @type.hash2resource(:myname => "foo", :name => 'bar') }.should raise_error(Puppet::Error)
        end

        [:catalog].each do |attr|
            it "should use any provided #{attr}" do
                @type.hash2resource(:name => "foo", attr => "eh").send(attr).should == "eh"
            end
        end

        it "should set all provided parameters on the resource" do
            @type.hash2resource(:name => "foo", :fstype => "boo", :boot => "fee").to_hash.should == {:name => "foo", :fstype => "boo", :boot => "fee"}
        end

        it "should not set the title as a parameter on the resource" do
            @type.hash2resource(:name => "foo", :title => "eh")[:title].should be_nil
        end

        it "should not set the catalog as a parameter on the resource" do
            @type.hash2resource(:name => "foo", :catalog => "eh")[:catalog].should be_nil
        end

        it "should treat hash keys equivalently whether provided as strings or symbols" do
            resource = @type.hash2resource("name" => "foo", "title" => "eh", "fstype" => "boo")
            resource.title.should == "eh"
            resource[:name].should == "foo"
            resource[:fstype].should == "boo"
        end
    end

    describe "when retrieving current property values" do
        # Use 'mount' as an example, because it doesn't override 'retrieve'
        before do
            @resource = Puppet::Type.type(:mount).new(:name => "foo", :fstype => "bar", :pass => 1, :ensure => :present)
            @properties = {}
        end

        it "should return a hash containing values for all set properties" do
            values = @resource.retrieve
            [@resource.property(:fstype), @resource.property(:pass)].each { |property| values.should be_include(property) }
        end

        it "should not call retrieve on non-ensure properties if the resource is absent" do
            @resource.property(:ensure).expects(:retrieve).returns :absent
            @resource.property(:fstype).expects(:retrieve).never
            @resource.retrieve[@resource.property(:fstype)]
        end

        it "should set all values to :absent if the resource is absent" do
            @resource.property(:ensure).expects(:retrieve).returns :absent
            @resource.retrieve[@resource.property(:fstype)].should == :absent
        end

        it "should include the result of retrieving each property's current value if the resource is present" do
            @resource.property(:ensure).expects(:retrieve).returns :present
            @resource.property(:fstype).expects(:retrieve).returns 15
            @resource.retrieve[@resource.property(:fstype)].should == 15
        end
    end


    describe "when in a catalog" do
        before do
            @catalog = Puppet::Resource::Catalog.new
            @container = Puppet::Type.type(:component).new(:name => "container")
            @one = Puppet::Type.type(:file).new(:path => "/file/one")
            @two = Puppet::Type.type(:file).new(:path => "/file/two")

            @catalog.add_resource @container
            @catalog.add_resource @one
            @catalog.add_resource @two
            @catalog.add_edge @container, @one
            @catalog.add_edge @container, @two
        end

        it "should have no parent if there is no in edge" do
            @container.parent.should be_nil
        end

        it "should set its parent to its in edge" do
            @one.parent.ref.should == @container.ref
        end

        after do
            @catalog.clear(true)
        end
    end

    describe "when managing relationships" do
    end
end

describe Puppet::Type::RelationshipMetaparam do
    it "should be a subclass of Puppet::Parameter" do
        Puppet::Type::RelationshipMetaparam.superclass.should equal(Puppet::Parameter)
    end

    it "should be able to produce a list of subclasses" do
        Puppet::Type::RelationshipMetaparam.should respond_to(:subclasses)
    end

    describe "when munging relationships" do
        before do
            @resource = Puppet::Type.type(:mount).new :name => "/foo"
            @metaparam = Puppet::Type.metaparamclass(:require).new :resource => @resource
        end

        it "should accept Puppet::Resource::Reference instances" do
            ref = Puppet::Resource::Reference.new(:file, "/foo")
            @metaparam.munge(ref)[0].should equal(ref)
        end

        it "should turn any string into a Puppet::Resource::Reference" do
            @metaparam.munge("File[/ref]")[0].should be_instance_of(Puppet::Resource::Reference)
        end
    end

    it "should be able to validate relationships" do
        Puppet::Type.metaparamclass(:require).new(:resource => mock("resource")).should respond_to(:validate_relationship)
    end

    it "should fail if any specified resource is not found in the catalog" do
        catalog = mock 'catalog'
        resource = stub 'resource', :catalog => catalog, :ref => "resource"

        param = Puppet::Type.metaparamclass(:require).new(:resource => resource, :value => %w{Foo[bar] Class[test]})

        catalog.expects(:resource).with("Foo[bar]").returns "something"
        catalog.expects(:resource).with("Class[test]").returns nil

        param.expects(:fail).with { |string| string.include?("Class[test]") }

        param.validate_relationship
    end
end