summaryrefslogtreecommitdiffstats
path: root/spec/unit/transaction_spec.rb
blob: f0e311371885be74ca2d513d6d7e1e9e9a286eb6 (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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
#!/usr/bin/env ruby

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

require 'puppet/transaction'

def without_warnings
    flag = $VERBOSE
    $VERBOSE = nil
    yield
    $VERBOSE = flag
end

describe Puppet::Transaction do
    before do
        @basepath = Puppet.features.posix? ? "/what/ever" : "C:/tmp"
        @transaction = Puppet::Transaction.new(Puppet::Resource::Catalog.new)
    end

    it "should delegate its event list to the event manager" do
        @transaction = Puppet::Transaction.new(Puppet::Resource::Catalog.new)
        @transaction.event_manager.expects(:events).returns %w{my events}
        @transaction.events.should == %w{my events}
    end

    it "should delegate adding times to its report" do
        @transaction = Puppet::Transaction.new(Puppet::Resource::Catalog.new)
        @transaction.report.expects(:add_times).with(:foo, 10)
        @transaction.report.expects(:add_times).with(:bar, 20)

        @transaction.add_times :foo => 10, :bar => 20
    end

    it "should be able to accept resource status instances" do
        resource = Puppet::Type.type(:notify).new :title => "foobar"
        status = Puppet::Resource::Status.new(resource)
        @transaction.add_resource_status(status)
        @transaction.resource_status(resource).should equal(status)
    end

    it "should be able to look resource status up by resource reference" do
        resource = Puppet::Type.type(:notify).new :title => "foobar"
        status = Puppet::Resource::Status.new(resource)
        @transaction.add_resource_status(status)
        @transaction.resource_status(resource.to_s).should equal(status)
    end

    # This will basically only ever be used during testing.
    it "should automatically create resource statuses if asked for a non-existent status" do
        resource = Puppet::Type.type(:notify).new :title => "foobar"
        @transaction.resource_status(resource).should be_instance_of(Puppet::Resource::Status)
    end

    it "should add provided resource statuses to its report" do
        resource = Puppet::Type.type(:notify).new :title => "foobar"
        status = Puppet::Resource::Status.new(resource)
        @transaction.add_resource_status(status)
        @transaction.report.resource_statuses[resource.to_s].should equal(status)
    end

    it "should calculate metrics on and report the report when asked to generate a report" do
        @transaction.report.expects(:calculate_metrics)
        @transaction.generate_report.should equal(@transaction.report)
    end

    it "should consider a resource to be failed if a status instance exists for that resource and indicates it is failed" do
        resource = Puppet::Type.type(:notify).new :name => "yayness"
        status = Puppet::Resource::Status.new(resource)
        status.failed = "some message"
        @transaction.add_resource_status(status)
        @transaction.should be_failed(resource)
    end

    it "should not consider a resource to be failed if a status instance exists for that resource but indicates it is not failed" do
        resource = Puppet::Type.type(:notify).new :name => "yayness"
        status = Puppet::Resource::Status.new(resource)
        @transaction.add_resource_status(status)
        @transaction.should_not be_failed(resource)
    end

    it "should consider there to be failed resources if any statuses are marked failed" do
        resource = Puppet::Type.type(:notify).new :name => "yayness"
        status = Puppet::Resource::Status.new(resource)
        status.failed = "some message"
        @transaction.add_resource_status(status)
        @transaction.should be_any_failed
    end

    it "should not consider there to be failed resources if no statuses are marked failed" do
        resource = Puppet::Type.type(:notify).new :name => "yayness"
        status = Puppet::Resource::Status.new(resource)
        @transaction.add_resource_status(status)
        @transaction.should_not be_any_failed
    end

    it "should be possible to replace the report object" do
        report = Puppet::Transaction::Report.new
        @transaction.report = report

        @transaction.report.should == report
    end

    it "should consider a resource to have failed dependencies if any of its dependencies are failed"

    describe "when initializing" do
        it "should create an event manager" do
            @transaction = Puppet::Transaction.new(Puppet::Resource::Catalog.new)
            @transaction.event_manager.should be_instance_of(Puppet::Transaction::EventManager)
            @transaction.event_manager.transaction.should equal(@transaction)
        end

        it "should create a resource harness" do
            @transaction = Puppet::Transaction.new(Puppet::Resource::Catalog.new)
            @transaction.resource_harness.should be_instance_of(Puppet::Transaction::ResourceHarness)
            @transaction.resource_harness.transaction.should equal(@transaction)
        end
    end

    describe "when evaluating a resource" do
        before do
            @transaction = Puppet::Transaction.new(Puppet::Resource::Catalog.new)
            @transaction.stubs(:eval_children_and_apply_resource)
            @transaction.stubs(:skip?).returns false

            @resource = Puppet::Type.type(:file).new :path => @basepath
        end

        it "should check whether the resource should be skipped" do
            @transaction.expects(:skip?).with(@resource).returns false

            @transaction.eval_resource(@resource)
        end

        it "should eval and apply children" do
            @transaction.expects(:eval_children_and_apply_resource).with(@resource, nil)

            @transaction.eval_resource(@resource)
        end

        it "should process events" do
            @transaction.event_manager.expects(:process_events).with(@resource)

            @transaction.eval_resource(@resource)
        end

        describe "and the resource should be skipped" do
            before do
                @transaction.expects(:skip?).with(@resource).returns true
            end

            it "should mark the resource's status as skipped" do
                @transaction.eval_resource(@resource)
                @transaction.resource_status(@resource).should be_skipped
            end
        end
    end

    describe "when applying a resource" do
        before do
            @resource = Puppet::Type.type(:file).new :path => @basepath
            @status = Puppet::Resource::Status.new(@resource)

            @transaction = Puppet::Transaction.new(Puppet::Resource::Catalog.new)
            @transaction.event_manager.stubs(:queue_events)
            @transaction.resource_harness.stubs(:evaluate).returns(@status)
        end

        it "should use its resource harness to apply the resource" do
            @transaction.resource_harness.expects(:evaluate).with(@resource)
            @transaction.apply(@resource)
        end

        it "should add the resulting resource status to its status list" do
            @transaction.apply(@resource)
            @transaction.resource_status(@resource).should be_instance_of(Puppet::Resource::Status)
        end

        it "should queue any events added to the resource status" do
            @status.expects(:events).returns %w{a b}
            @transaction.event_manager.expects(:queue_events).with(@resource, ["a", "b"])
            @transaction.apply(@resource)
        end

        it "should log and skip any resources that cannot be applied" do
            @transaction.resource_harness.expects(:evaluate).raises ArgumentError
            @resource.expects(:err)
            @transaction.apply(@resource)
            @transaction.report.resource_statuses[@resource.to_s].should be_nil
        end
    end

    describe "when generating resources" do
        it "should call 'generate' on all created resources" do
            first = Puppet::Type.type(:notify).new(:name => "first")
            second = Puppet::Type.type(:notify).new(:name => "second")
            third = Puppet::Type.type(:notify).new(:name => "third")

            @catalog = Puppet::Resource::Catalog.new
            @transaction = Puppet::Transaction.new(@catalog)

            first.expects(:generate).returns [second]
            second.expects(:generate).returns [third]
            third.expects(:generate)

            @transaction.generate_additional_resources(first, :generate)
        end

        it "should finish all resources" do
            generator = stub 'generator', :depthfirst? => true, :tags => []
            resource = stub 'resource', :tag => nil

            @catalog = Puppet::Resource::Catalog.new
            @transaction = Puppet::Transaction.new(@catalog)

            generator.expects(:generate).returns [resource]

            @catalog.expects(:add_resource).yields(resource)

            resource.expects(:finish)

            @transaction.generate_additional_resources(generator, :generate)
        end

        it "should skip generated resources that conflict with existing resources" do
            generator = mock 'generator', :tags => []
            resource = stub 'resource', :tag => nil

            @catalog = Puppet::Resource::Catalog.new
            @transaction = Puppet::Transaction.new(@catalog)

            generator.expects(:generate).returns [resource]

            @catalog.expects(:add_resource).raises(Puppet::Resource::Catalog::DuplicateResourceError.new("foo"))

            resource.expects(:finish).never
            resource.expects(:info) # log that it's skipped

            @transaction.generate_additional_resources(generator, :generate).should be_empty
        end

        it "should copy all tags to the newly generated resources" do
            child = stub 'child'
            generator = stub 'resource', :tags => ["one", "two"]

            @catalog = Puppet::Resource::Catalog.new
            @transaction = Puppet::Transaction.new(@catalog)

            generator.stubs(:generate).returns [child]
            @catalog.stubs(:add_resource)

            child.expects(:tag).with("one", "two")

            @transaction.generate_additional_resources(generator, :generate)
        end
    end

    describe "when skipping a resource" do
        before :each do
            @resource = Puppet::Type.type(:notify).new :name => "foo"
            @catalog = Puppet::Resource::Catalog.new
            @resource.catalog = @catalog
            @transaction = Puppet::Transaction.new(@catalog)
        end

        it "should skip resource with missing tags" do
            @transaction.stubs(:missing_tags?).returns(true)
            @transaction.should be_skip(@resource)
        end

        it "should skip unscheduled resources" do
            @transaction.stubs(:scheduled?).returns(false)
            @transaction.should be_skip(@resource)
        end

        it "should skip resources with failed dependencies" do
            @transaction.stubs(:failed_dependencies?).returns(true)
            @transaction.should be_skip(@resource)
        end

        it "should skip virtual resource" do
            @resource.stubs(:virtual?).returns true
            @transaction.should be_skip(@resource)
        end
    end

    describe "when determining if tags are missing" do
        before :each do
            @resource = Puppet::Type.type(:notify).new :name => "foo"
            @catalog = Puppet::Resource::Catalog.new
            @resource.catalog = @catalog
            @transaction = Puppet::Transaction.new(@catalog)

            @transaction.stubs(:ignore_tags?).returns false
        end

        it "should not be missing tags if tags are being ignored" do
            @transaction.expects(:ignore_tags?).returns true

            @resource.expects(:tagged?).never

            @transaction.should_not be_missing_tags(@resource)
        end

        it "should not be missing tags if the transaction tags are empty" do
            @transaction.tags = []
            @resource.expects(:tagged?).never
            @transaction.should_not be_missing_tags(@resource)
        end

        it "should otherwise let the resource determine if it is missing tags" do
            tags = ['one', 'two']
            @transaction.tags = tags
            @resource.expects(:tagged?).with(*tags).returns(false)
            @transaction.should be_missing_tags(@resource)
        end
    end

    describe "when determining if a resource should be scheduled" do
        before :each do
            @resource = Puppet::Type.type(:notify).new :name => "foo"
            @catalog = Puppet::Resource::Catalog.new
            @resource.catalog = @catalog
            @transaction = Puppet::Transaction.new(@catalog)
        end

        it "should always schedule resources if 'ignoreschedules' is set" do
            @transaction.ignoreschedules = true
            @transaction.resource_harness.expects(:scheduled?).never

            @transaction.should be_scheduled(@resource)
        end

        it "should let the resource harness determine whether the resource should be scheduled" do
            @transaction.resource_harness.expects(:scheduled?).with(@transaction.resource_status(@resource), @resource).returns "feh"

            @transaction.scheduled?(@resource).should == "feh"
        end
    end

    describe "when prefetching" do
        it "should match resources by name, not title" do
            @catalog = Puppet::Resource::Catalog.new
            @transaction = Puppet::Transaction.new(@catalog)

            # Have both a title and name
            resource = Puppet::Type.type(:sshkey).create :title => "foo", :name => "bar", :type => :dsa, :key => "eh"
            @catalog.add_resource resource

            resource.provider.class.expects(:prefetch).with("bar" => resource)

            @transaction.prefetch
        end
    end

    it "should return all resources for which the resource status indicates the resource has changed when determinig changed resources" do
        @catalog = Puppet::Resource::Catalog.new
        @transaction = Puppet::Transaction.new(@catalog)
        names = []
        2.times do |i|
            name = File.join(@basepath, "file#{i}")
            resource = Puppet::Type.type(:file).new :path => name
            names << resource.to_s
            @catalog.add_resource resource
            @transaction.add_resource_status Puppet::Resource::Status.new(resource)
        end

        @transaction.resource_status(names[0]).changed = true

        @transaction.changed?.should == [@catalog.resource(names[0])]
    end

    describe 'when checking application run state' do
        before do
            without_warnings { Puppet::Application = Class.new(Puppet::Application) }
            @catalog = Puppet::Resource::Catalog.new
            @transaction = Puppet::Transaction.new(@catalog)
        end

        after do
            without_warnings { Puppet::Application = Puppet::Application.superclass }
        end

        it 'should return true for :stop_processing? if Puppet::Application.stop_requested? is true' do
            Puppet::Application.stubs(:stop_requested?).returns(true)
            @transaction.stop_processing?.should be_true
        end

        it 'should return false for :stop_processing? if Puppet::Application.stop_requested? is false' do
            Puppet::Application.stubs(:stop_requested?).returns(false)
            @transaction.stop_processing?.should be_false
        end

        describe 'within an evaluate call' do
            before do
                @resource = stub 'resource', :ref => 'some_ref'
                @catalog.add_resource @resource
                @transaction.stubs(:prepare)
                @transaction.sorted_resources = [@resource]
            end

            it 'should stop processing if :stop_processing? is true' do
                @transaction.expects(:stop_processing?).returns(true)
                @transaction.expects(:eval_resource).never
                @transaction.evaluate
            end

            it 'should continue processing if :stop_processing? is false' do
                @transaction.expects(:stop_processing?).returns(false)
                @transaction.expects(:eval_resource).returns(nil)
                @transaction.evaluate
            end
        end
    end
end

describe Puppet::Transaction, " when determining tags" do
    before do
        @config = Puppet::Resource::Catalog.new
        @transaction = Puppet::Transaction.new(@config)
    end

    it "should default to the tags specified in the :tags setting" do
        Puppet.expects(:[]).with(:tags).returns("one")
        @transaction.tags.should == %w{one}
    end

    it "should split tags based on ','" do
        Puppet.expects(:[]).with(:tags).returns("one,two")
        @transaction.tags.should == %w{one two}
    end

    it "should use any tags set after creation" do
        Puppet.expects(:[]).with(:tags).never
        @transaction.tags = %w{one two}
        @transaction.tags.should == %w{one two}
    end

    it "should always convert assigned tags to an array" do
        @transaction.tags = "one::two"
        @transaction.tags.should == %w{one::two}
    end

    it "should accept a comma-delimited string" do
        @transaction.tags = "one, two"
        @transaction.tags.should == %w{one two}
    end

    it "should accept an empty string" do
        @transaction.tags = ""
        @transaction.tags.should == []
    end
end