summaryrefslogtreecommitdiffstats
path: root/spec/unit/indirector/indirection.rb
blob: fe456b61e1c9ac5a14920adf21221d1145ac2f18 (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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
#!/usr/bin/env ruby

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

require 'puppet/indirector'



describe Puppet::Indirector::Indirection, " when initializing" do
    # (LAK) I've no idea how to test this, really.
    it "should store a reference to itself before it consumes its options" do
        proc { @indirection = Puppet::Indirector::Indirection.new(Object.new, :testingness, :not_valid_option) }.should raise_error
        Puppet::Indirector::Indirection.instance(:testingness).should be_instance_of(Puppet::Indirector::Indirection)
        Puppet::Indirector::Indirection.instance(:testingness).delete
    end

    it "should keep a reference to the indirecting model" do
        model = mock 'model'
        @indirection = Puppet::Indirector::Indirection.new(model, :myind)
        @indirection.model.should equal(model)
    end

    it "should set the name" do
        @indirection = Puppet::Indirector::Indirection.new(mock('model'), :myind)
        @indirection.name.should == :myind
    end

    it "should require indirections to have unique names" do
        @indirection = Puppet::Indirector::Indirection.new(mock('model'), :test)
        proc { Puppet::Indirector::Indirection.new(:test) }.should raise_error(ArgumentError)
    end

    it "should extend itself with any specified module" do
        mod = Module.new
        @indirection = Puppet::Indirector::Indirection.new(mock('model'), :test, :extend => mod)
        @indirection.metaclass.included_modules.should include(mod)
    end

    after do
        @indirection.delete if defined? @indirection
    end
end

describe Puppet::Indirector::Indirection do
    before :each do
        @indirection = Puppet::Indirector::Indirection.new(mock('model'), :test)
        @terminus = stub 'terminus', :has_most_recent? => false
        @indirection.stubs(:terminus).returns(@terminus)
        @indirection.stubs(:terminus_class).returns(:whatever)
        @instance = stub 'instance', :version => nil, :version= => nil, :name => "whatever"
        @name = :mything
    end
  
    describe Puppet::Indirector::Indirection, " when looking for a model instance" do

        it "should let the appropriate terminus perform the lookup" do
            @terminus.expects(:find).with(@name).returns(@instance)
            @indirection.find(@name).should == @instance
        end

        it "should not attempt to set a timestamp if the terminus cannot find the instance" do
            @terminus.expects(:find).with(@name).returns(nil)
            proc { @indirection.find(@name) }.should_not raise_error
        end

        it "should pass the instance to the :post_find hook if there is one" do
            class << @terminus
                def post_find
                end
            end
            @terminus.expects(:post_find).with(@instance)
            @terminus.expects(:find).with(@name).returns(@instance)
            @indirection.find(@name)
        end
    end
    
    describe Puppet::Indirector::Indirection, " when removing a model instance" do

        it "should let the appropriate terminus remove the instance" do
            @terminus.expects(:destroy).with(@name).returns(@instance)
            @indirection.destroy(@name).should == @instance
        end
    end

    describe Puppet::Indirector::Indirection, " when searching for multiple model instances" do

        it "should let the appropriate terminus find the matching instances" do
            @terminus.expects(:search).with(@name).returns(@instance)
            @indirection.search(@name).should == @instance
        end

        it "should pass the instances to the :post_search hook if there is one" do
            class << @terminus
                def post_search
                end
            end
            @terminus.expects(:post_search).with(@instance)
            @terminus.expects(:search).with(@name).returns(@instance)
            @indirection.search(@name)
        end
    end

    describe Puppet::Indirector::Indirection, " when storing a model instance" do

        it "should let the appropriate terminus store the instance" do
            @terminus.expects(:save).with(@instance).returns(@instance)
            @indirection.save(@instance).should == @instance
        end
    end
    
    describe Puppet::Indirector::Indirection, " when handling instance versions" do

        it "should let the appropriate terminus perform the lookup" do
            @terminus.expects(:version).with(@name).returns(5)
            @indirection.version(@name).should == 5
        end

        it "should add versions to found instances that do not already have them" do
            @terminus.expects(:find).with(@name).returns(@instance)
            time = mock 'time'
            time.expects(:utc).returns(:mystamp)
            Time.expects(:now).returns(time)
            @instance.expects(:version=).with(:mystamp)
            @indirection.find(@name)
        end

        it "should add versions to saved instances that do not already have them" do
            time = mock 'time'
            time.expects(:utc).returns(:mystamp)
            Time.expects(:now).returns(time)
            @instance.expects(:version=).with(:mystamp)
            @terminus.stubs(:save)
            @indirection.save(@instance)
        end

        # We've already tested this, basically, but...
        it "should use the current time in UTC for versions" do
            @instance.expects(:version=).with do |time|
                time.utc?
            end
            @terminus.stubs(:save)
            @indirection.save(@instance)
        end
    end


    describe Puppet::Indirector::Indirection, " when an authorization hook is present" do

        before do
            # So the :respond_to? turns out right.
            class << @terminus
                def authorized?
                end
            end
        end

        it "should not check authorization if a node name is not provided" do
            @terminus.expects(:authorized?).never
            @terminus.stubs(:find)
            @indirection.find("/my/key")
        end

        it "should fail while finding instances if authorization returns false" do
            @terminus.expects(:authorized?).with(:find, "/my/key", :node => "mynode").returns(false)
            @terminus.stubs(:find)
            proc { @indirection.find("/my/key", :node => "mynode") }.should raise_error(ArgumentError)
        end

        it "should continue finding instances if authorization returns true" do
            @terminus.expects(:authorized?).with(:find, "/my/key", :node => "mynode").returns(true)
            @terminus.stubs(:find)
            @indirection.find("/my/key", :node => "mynode")
        end

        it "should fail while saving instances if authorization returns false" do
            @terminus.expects(:authorized?).with(:save, :myinstance, :node => "mynode").returns(false)
            @terminus.stubs(:save)
            proc { @indirection.save(:myinstance, :node => "mynode") }.should raise_error(ArgumentError)
        end

        it "should continue saving instances if authorization returns true" do
            instance = stub 'instance', :version => 1.0, :name => "eh"
            @terminus.expects(:authorized?).with(:save, instance, :node => "mynode").returns(true)
            @terminus.stubs(:save)
            @indirection.save(instance, :node => "mynode")
        end

        it "should fail while destroying instances if authorization returns false" do
            @terminus.expects(:authorized?).with(:destroy, "/my/key", :node => "mynode").returns(false)
            @terminus.stubs(:destroy)
            proc { @indirection.destroy("/my/key", :node => "mynode") }.should raise_error(ArgumentError)
        end

        it "should continue destroying instances if authorization returns true" do
            instance = stub 'instance', :version => 1.0, :name => "eh"
            @terminus.expects(:authorized?).with(:destroy, instance, :node => "mynode").returns(true)
            @terminus.stubs(:destroy)
            @indirection.destroy(instance, :node => "mynode")
        end

        it "should fail while searching for instances if authorization returns false" do
            @terminus.expects(:authorized?).with(:search, "/my/key", :node => "mynode").returns(false)
            @terminus.stubs(:search)
            proc { @indirection.search("/my/key", :node => "mynode") }.should raise_error(ArgumentError)
        end

        it "should continue searching for instances if authorization returns true" do
            @terminus.expects(:authorized?).with(:search, "/my/key", :node => "mynode").returns(true)
            @terminus.stubs(:search)
            @indirection.search("/my/key", :node => "mynode")
        end
    end

    after :each do
        @indirection.delete
        Puppet::Indirector::Indirection.clear_cache
    end
end


describe Puppet::Indirector::Indirection, " when managing indirection instances" do
    it "should allow an indirection to be retrieved by name" do
        @indirection = Puppet::Indirector::Indirection.new(mock('model'), :test)
        Puppet::Indirector::Indirection.instance(:test).should equal(@indirection)
    end
    
    it "should return nil when the named indirection has not been created" do
        Puppet::Indirector::Indirection.instance(:test).should be_nil
    end

    it "should allow an indirection's model to be retrieved by name" do
        mock_model = mock('model')
        @indirection = Puppet::Indirector::Indirection.new(mock_model, :test)
        Puppet::Indirector::Indirection.model(:test).should equal(mock_model)
    end
    
    it "should return nil when no model matches the requested name" do
        Puppet::Indirector::Indirection.model(:test).should be_nil
    end

    after do
        @indirection.delete if defined? @indirection
    end
end

describe Puppet::Indirector::Indirection, " when choosing the terminus class" do
    before do
        @indirection = Puppet::Indirector::Indirection.new(mock('model'), :test)
        @terminus = mock 'terminus'
        @terminus_class = stub 'terminus class', :new => @terminus
        Puppet::Indirector::Terminus.stubs(:terminus_class).with(:test, :default).returns(@terminus_class)
    end

    it "should choose the default terminus class if one is specified and no specific terminus class is provided" do
        @indirection.terminus_class = :default
        @indirection.terminus_class.should equal(:default)
    end

    it "should use the provided Puppet setting if told to do so" do
        Puppet::Indirector::Terminus.stubs(:terminus_class).with(:test, :my_terminus).returns(mock("terminus_class2"))
        Puppet.settings.expects(:value).with(:my_setting).returns("my_terminus")
        @indirection.terminus_setting = :my_setting
        @indirection.terminus_class.should equal(:my_terminus)
    end

    it "should fail if the provided terminus class is not valid" do
        Puppet::Indirector::Terminus.stubs(:terminus_class).with(:test, :nosuchclass).returns(nil)
        proc { @indirection.terminus_class = :nosuchclass }.should raise_error(ArgumentError)
    end
    
    it "should fail if no terminus class is picked" do
        proc { @indirection.terminus_class }.should raise_error(Puppet::DevError)
    end

    after do
        @indirection.delete if defined? @indirection
    end
end

describe Puppet::Indirector::Indirection, " when specifying the terminus class to use" do
    before do
        @indirection = Puppet::Indirector::Indirection.new(mock('model'), :test)
        @terminus = mock 'terminus'
        @terminus_class = stub 'terminus class', :new => @terminus
    end

    it "should allow specification of a terminus type" do
        @indirection.should respond_to(:terminus_class=)
    end

    it "should fail to redirect if no terminus type has been specified" do
        proc { @indirection.find("blah") }.should raise_error(Puppet::DevError)
    end

    it "should fail when the terminus class name is an empty string" do
        proc { @indirection.terminus_class = "" }.should raise_error(ArgumentError)
    end

    it "should fail when the terminus class name is nil" do
        proc { @indirection.terminus_class = nil }.should raise_error(ArgumentError)
    end

    it "should fail when the specified terminus class cannot be found" do
        Puppet::Indirector::Terminus.expects(:terminus_class).with(:test, :foo).returns(nil)
        proc { @indirection.terminus_class = :foo }.should raise_error(ArgumentError)
    end

    it "should select the specified terminus class if a terminus class name is provided" do
        Puppet::Indirector::Terminus.expects(:terminus_class).with(:test, :foo).returns(@terminus_class)
        @indirection.terminus(:foo).should equal(@terminus)
    end

    it "should use the configured terminus class if no terminus name is specified" do
        Puppet::Indirector::Terminus.stubs(:terminus_class).with(:test, :foo).returns(@terminus_class)
        @indirection.terminus_class = :foo
        @indirection.terminus().should equal(@terminus)
    end

    after do
        @indirection.delete if defined? @indirection
    end
end

describe Puppet::Indirector::Indirection, " when a select_terminus hook is available" do
    before do
        @indirection = Puppet::Indirector::Indirection.new(mock('model'), :test)

        # And provide a select_terminus hook
        @indirection.meta_def(:select_terminus) do |uri|
            :other
        end

        @terminus = mock 'terminus'
        @terminus_class = stub 'terminus class', :new => @terminus

        @other_terminus = mock 'other_terminus'
        @other_terminus_class = stub 'other_terminus_class', :new => @other_terminus

        @cache_terminus = mock 'cache_terminus'
        @cache_terminus_class = stub 'cache_terminus_class', :new => @cache_terminus

        Puppet::Indirector::Terminus.stubs(:terminus_class).with(:test, :foo).returns(@terminus_class)
        Puppet::Indirector::Terminus.stubs(:terminus_class).with(:test, :other).returns(@other_terminus_class)
        Puppet::Indirector::Terminus.stubs(:terminus_class).with(:test, :cache).returns(@cache_terminus_class)

        # Set it to a default type.
        @indirection.terminus_class = :foo

        @uri = "full://url/path"
        @result = stub 'result', :version => 1.0
    end

    it "should use the terminus name provided by passing the key to the :select_terminus hook when finding instances" do
        # Set up the expectation
        @other_terminus.expects(:find).with(@uri).returns(@result)

        @indirection.find(@uri)
    end

    it "should use the terminus name provided by passing the key to the :select_terminus hook when testing if a cached instance is up to date" do
        @indirection.cache_class = :cache

        @other_terminus.expects(:version).with(@uri).returns(2.0)

        @cache_terminus.expects(:has_most_recent?).with(@uri, 2.0).returns(true)
        @cache_terminus.expects(:find).returns(:whatever)

        @indirection.find(@uri).should == :whatever
    end

    it "should pass all arguments to the :select_terminus hook" do
        @indirection.expects(:select_terminus).with(@uri, :node => "johnny").returns(:other)
        @other_terminus.stubs(:find)

        @indirection.find(@uri, :node => "johnny")
    end

    it "should pass the original key to the terminus rather than a modified key" do
        # This is the same test as before
        @other_terminus.expects(:find).with(@uri).returns(@result)
        @indirection.find(@uri)
    end

    after do
        @indirection.delete if defined? @indirection
    end
end

describe Puppet::Indirector::Indirection, " when managing terminus instances" do
    before do
        @indirection = Puppet::Indirector::Indirection.new(mock('model'), :test)
        @terminus = mock 'terminus'
        @terminus_class = mock 'terminus class'
        Puppet::Indirector::Terminus.stubs(:terminus_class).with(:test, :foo).returns(@terminus_class)
    end

    it "should create an instance of the chosen terminus class" do
        @terminus_class.stubs(:new).returns(@terminus)
        @indirection.terminus(:foo).should equal(@terminus)
    end

    it "should allow the clearance of cached terminus instances" do
        terminus1 = mock 'terminus1'
        terminus2 = mock 'terminus2'
        @terminus_class.stubs(:new).returns(terminus1, terminus2, ArgumentError)
        @indirection.terminus(:foo).should equal(terminus1)
        @indirection.class.clear_cache
        @indirection.terminus(:foo).should equal(terminus2)
    end

    # Make sure it caches the terminus.
    it "should return the same terminus instance each time for a given name" do
        @terminus_class.stubs(:new).returns(@terminus)
        @indirection.terminus(:foo).should equal(@terminus)
        @indirection.terminus(:foo).should equal(@terminus)
    end

    it "should not create a terminus instance until one is actually needed" do
        Puppet::Indirector.expects(:terminus).never
        indirection = Puppet::Indirector::Indirection.new(mock('model'), :lazytest)
    end

    after do
        @indirection.delete
        Puppet::Indirector::Indirection.clear_cache
    end
end

describe Puppet::Indirector::Indirection, " when deciding whether to cache" do
    before do
        @indirection = Puppet::Indirector::Indirection.new(mock('model'), :test)
        @terminus = mock 'terminus'
        @terminus_class = mock 'terminus class'
        @terminus_class.stubs(:new).returns(@terminus)
        Puppet::Indirector::Terminus.stubs(:terminus_class).with(:test, :foo).returns(@terminus_class)
        @indirection.terminus_class = :foo
    end

    it "should provide a method for setting the cache terminus class" do
        @indirection.should respond_to(:cache_class=)
    end

    it "should fail to cache if no cache type has been specified" do
        proc { @indirection.cache }.should raise_error(Puppet::DevError)
    end

    it "should fail to set the cache class when the cache class name is an empty string" do
        proc { @indirection.cache_class = "" }.should raise_error(ArgumentError)
    end

    it "should fail to set the cache class when the cache class name is nil" do
        proc { @indirection.cache_class = nil }.should raise_error(ArgumentError)
    end

    it "should fail to set the cache class when the specified cache class cannot be found" do
        Puppet::Indirector::Terminus.expects(:terminus_class).with(:test, :foo).returns(nil)
        proc { @indirection.cache_class = :foo }.should raise_error(ArgumentError)
    end

    after do
        @indirection.delete
        Puppet::Indirector::Indirection.clear_cache
    end
end

describe Puppet::Indirector::Indirection do
    before :each do
        Puppet.settings.stubs(:value).with("test_terminus").returns("test_terminus")
        @terminus_class = mock 'terminus_class'
        @terminus = mock 'terminus'
        @terminus_class.stubs(:new).returns(@terminus)
        @cache = mock 'cache'
        @cache_class = mock 'cache_class'
        Puppet::Indirector::Terminus.stubs(:terminus_class).with(:test, :cache_terminus).returns(@cache_class)
        Puppet::Indirector::Terminus.stubs(:terminus_class).with(:test, :test_terminus).returns(@terminus_class)
        @indirection = Puppet::Indirector::Indirection.new(mock('model'), :test)
        @indirection.terminus_class = :test_terminus
    end

    describe Puppet::Indirector::Indirection, " when managing the cache terminus" do

        it "should not create a cache terminus at initialization" do
            # This is weird, because all of the code is in the setup.  If we got
            # new() called on the cache class, we'd get an exception here.
        end

        it "should reuse the cache terminus" do
            @cache_class.expects(:new).returns(@cache)
            Puppet.settings.stubs(:value).with("test_cache").returns("cache_terminus")
            @indirection.cache_class = :cache_terminus
            @indirection.cache.should equal(@cache)
            @indirection.cache.should equal(@cache)
        end

        it "should remove the cache terminus when all other terminus instances are cleared" do
            cache2 = mock 'cache2'
            @cache_class.stubs(:new).returns(@cache, cache2)
            @indirection.cache_class = :cache_terminus
            @indirection.cache.should equal(@cache)
            @indirection.clear_cache
            @indirection.cache.should equal(cache2)
        end
    end

    describe Puppet::Indirector::Indirection, " when saving and using a cache" do

        before do
            @indirection.cache_class = :cache_terminus
            @cache_class.expects(:new).returns(@cache)
            @name = "testing"
            @instance = stub 'instance', :version => 5, :name => @name
        end

        it "should not update the cache or terminus if the new object is not different" do
            @cache.expects(:has_most_recent?).with(@name, 5).returns(true)
            @indirection.save(@instance)
        end

        it "should update the original and the cache if the cached object is different" do
            @cache.expects(:has_most_recent?).with(@name, 5).returns(false)
            @terminus.expects(:save).with(@instance)
            @cache.expects(:save).with(@instance)
            @indirection.save(@instance)
        end
    end
    
    describe Puppet::Indirector::Indirection, " when finding and using a cache" do

        before do
            @indirection.cache_class = :cache_terminus
            @cache_class.expects(:new).returns(@cache)
        end

        it "should return the cached object if the cache is up to date" do
            cached = mock 'cached object'

            name = "myobject"

            @terminus.expects(:version).with(name).returns(1)
            @cache.expects(:has_most_recent?).with(name, 1).returns(true)

            @cache.expects(:find).with(name).returns(cached)

            @indirection.find(name).should equal(cached)
        end

        it "should return the original object if the cache is not up to date" do
            real = stub 'real object', :version => 1

            name = "myobject"

            @cache.stubs(:save)
            @cache.expects(:has_most_recent?).with(name, 1).returns(false)
            @terminus.expects(:version).with(name).returns(1)

            @terminus.expects(:find).with(name).returns(real)

            @indirection.find(name).should equal(real)
        end

        it "should cache any newly returned objects" do
            real = stub 'real object', :version => 1

            name = "myobject"

            @terminus.expects(:version).with(name).returns(1)
            @cache.expects(:has_most_recent?).with(name, 1).returns(false)

            @terminus.expects(:find).with(name).returns(real)
            @cache.expects(:save).with(real)

            @indirection.find(name).should equal(real)
        end
    end
    
    after :each do
        @indirection.delete
        Puppet::Indirector::Indirection.clear_cache
    end
end