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
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
|
#!/usr/bin/env ruby
$:.unshift("../lib").unshift("../../lib") if __FILE__ =~ /\.rb$/
require 'puppet'
require 'puppettest'
require 'puppettest/support/resources'
# $Id$
class TestTransactions < Test::Unit::TestCase
include PuppetTest::FileTesting
include PuppetTest::Support::Resources
def mkgenerator(&block)
# Create a bogus type that generates new instances with shorter
type = Puppet::Type.newtype(:generator) do
newparam(:name, :namevar => true)
end
if block
type.class_eval(&block)
end
cleanup do
Puppet::Type.rmtype(:generator)
end
return type
end
def test_reports
path1 = tempfile()
path2 = tempfile()
objects = []
objects << Puppet::Type.newfile(
:path => path1,
:content => "yayness"
)
objects << Puppet::Type.newfile(
:path => path2,
:content => "booness"
)
trans = assert_events([:file_created, :file_created], *objects)
report = nil
assert_nothing_raised {
report = trans.report
}
# First test the report logs
assert(report.logs.length > 0, "Did not get any report logs")
report.logs.each do |obj|
assert_instance_of(Puppet::Log, obj)
end
# Then test the metrics
metrics = report.metrics
assert(metrics, "Did not get any metrics")
assert(metrics.length > 0, "Did not get any metrics")
assert(metrics.has_key?("resources"), "Did not get object metrics")
assert(metrics.has_key?("changes"), "Did not get change metrics")
metrics.each do |name, metric|
assert_instance_of(Puppet::Metric, metric)
end
end
def test_prefetch
# Create a type just for testing prefetch
name = :prefetchtesting
$prefetched = false
type = Puppet::Type.newtype(name) do
newparam(:name) {}
end
cleanup do
Puppet::Type.rmtype(name)
end
# Now create a provider
type.provide(:prefetch) do
def self.prefetch
$prefetched = true
end
end
# Now create an instance
inst = type.create :name => "yay"
# Create a transaction
trans = Puppet::Transaction.new(newcomp(inst))
# Make sure prefetch works
assert_nothing_raised do
trans.prefetch
end
assert_equal(true, $prefetched, "type prefetch was not called")
# Now make sure it gets called from within evaluate()
$prefetched = false
assert_nothing_raised do
trans.evaluate
end
assert_equal(true, $prefetched, "evaluate did not call prefetch")
end
def test_refreshes_generate_events
path = tempfile()
firstpath = tempfile()
secondpath = tempfile()
file = Puppet::Type.newfile(:title => "file", :path => path, :content => "yayness")
first = Puppet::Type.newexec(:title => "first",
:command => "/bin/echo first > #{firstpath}",
:subscribe => [:file, path],
:refreshonly => true
)
second = Puppet::Type.newexec(:title => "second",
:command => "/bin/echo second > #{secondpath}",
:subscribe => [:exec, "first"],
:refreshonly => true
)
assert_apply(file, first, second)
assert(FileTest.exists?(secondpath), "Refresh did not generate an event")
end
unless %x{groups}.chomp.split(/ /).length > 1
$stderr.puts "You must be a member of more than one group to test transactions"
else
def ingroup(gid)
require 'etc'
begin
group = Etc.getgrgid(gid)
rescue => detail
puts "Could not retrieve info for group %s: %s" % [gid, detail]
return nil
end
return @groups.include?(group.name)
end
def setup
super
@groups = %x{groups}.chomp.split(/ /)
unless @groups.length > 1
p @groups
raise "You must be a member of more than one group to test this"
end
end
def newfile(hash = {})
tmpfile = tempfile()
File.open(tmpfile, "w") { |f| f.puts rand(100) }
# XXX now, because os x apparently somehow allows me to make a file
# owned by a group i'm not a member of, i have to verify that
# the file i just created is owned by one of my groups
# grrr
unless ingroup(File.stat(tmpfile).gid)
Puppet.info "Somehow created file in non-member group %s; fixing" %
File.stat(tmpfile).gid
require 'etc'
firstgr = @groups[0]
unless firstgr.is_a?(Integer)
str = Etc.getgrnam(firstgr)
firstgr = str.gid
end
File.chown(nil, firstgr, tmpfile)
end
hash[:name] = tmpfile
assert_nothing_raised() {
return Puppet.type(:file).create(hash)
}
end
def newservice
assert_nothing_raised() {
return Puppet.type(:service).create(
:name => "sleeper",
:type => "init",
:path => exampledir("root/etc/init.d"),
:hasstatus => true,
:check => [:ensure]
)
}
end
def newexec(file)
assert_nothing_raised() {
return Puppet.type(:exec).create(
:name => "touch %s" % file,
:path => "/bin:/usr/bin:/sbin:/usr/sbin",
:returns => 0
)
}
end
# modify a file and then roll the modifications back
def test_filerollback
transaction = nil
file = newfile()
states = {}
check = [:group,:mode]
file[:check] = check
assert_nothing_raised() {
file.retrieve
}
assert_nothing_raised() {
check.each { |state|
assert(file[state])
states[state] = file[state]
}
}
component = newcomp("file",file)
require 'etc'
groupname = Etc.getgrgid(File.stat(file.name).gid).name
assert_nothing_raised() {
# Find a group that it's not set to
group = @groups.find { |group| group != groupname }
unless group
raise "Could not find suitable group"
end
file[:group] = group
file[:mode] = "755"
}
trans = assert_events([:file_changed, :file_changed], component)
file.retrieve
assert_rollback_events(trans, [:file_changed, :file_changed], "file")
assert_nothing_raised() {
file.retrieve
}
states.each { |state,value|
assert_equal(
value,file.is(state), "File %s remained %s" % [state, file.is(state)]
)
}
end
# start a service, and then roll the modification back
# Disabled, because it wasn't really worth the effort.
def disabled_test_servicetrans
transaction = nil
service = newservice()
component = newcomp("service",service)
assert_nothing_raised() {
service[:ensure] = 1
}
service.retrieve
assert(service.insync?, "Service did not start")
system("ps -ef | grep ruby")
trans = assert_events([:service_started], component)
service.retrieve
assert_rollback_events(trans, [:service_stopped], "service")
end
# test that services are correctly restarted and that work is done
# in the right order
def test_refreshing
transaction = nil
file = newfile()
execfile = File.join(tmpdir(), "exectestingness")
exec = newexec(execfile)
states = {}
check = [:group,:mode]
file[:check] = check
file[:group] = @groups[0]
assert_apply(file)
@@tmpfiles << execfile
component = newcomp("both",file,exec)
# 'subscribe' expects an array of arrays
exec[:subscribe] = [[file.class.name,file.name]]
exec[:refreshonly] = true
assert_nothing_raised() {
file.retrieve
exec.retrieve
}
check.each { |state|
states[state] = file[state]
}
assert_nothing_raised() {
file[:mode] = "755"
}
trans = assert_events([:file_changed, :triggered], component)
assert(FileTest.exists?(execfile), "Execfile does not exist")
File.unlink(execfile)
assert_nothing_raised() {
file[:group] = @groups[1]
}
trans = assert_events([:file_changed, :triggered], component)
assert(FileTest.exists?(execfile), "Execfile does not exist")
end
# Verify that one component requiring another causes the contained
# resources in the requiring component to get refreshed.
def test_refresh_across_two_components
transaction = nil
file = newfile()
execfile = File.join(tmpdir(), "exectestingness2")
@@tmpfiles << execfile
exec = newexec(execfile)
states = {}
check = [:group,:mode]
file[:check] = check
file[:group] = @groups[0]
assert_apply(file)
fcomp = newcomp("file",file)
ecomp = newcomp("exec",exec)
component = newcomp("both",fcomp,ecomp)
# 'subscribe' expects an array of arrays
#component[:require] = [[file.class.name,file.name]]
ecomp[:subscribe] = fcomp
exec[:refreshonly] = true
trans = assert_events([], component)
assert_nothing_raised() {
file[:group] = @groups[1]
file[:mode] = "755"
}
trans = assert_events([:file_changed, :file_changed, :triggered], component)
end
# Make sure that multiple subscriptions get triggered.
def test_multisubs
path = tempfile()
file1 = tempfile()
file2 = tempfile()
file = Puppet.type(:file).create(
:path => path,
:ensure => "file"
)
exec1 = Puppet.type(:exec).create(
:path => ENV["PATH"],
:command => "touch %s" % file1,
:refreshonly => true,
:subscribe => [:file, path]
)
exec2 = Puppet.type(:exec).create(
:path => ENV["PATH"],
:command => "touch %s" % file2,
:refreshonly => true,
:subscribe => [:file, path]
)
assert_apply(file, exec1, exec2)
assert(FileTest.exists?(file1), "File 1 did not get created")
assert(FileTest.exists?(file2), "File 2 did not get created")
end
# Make sure that a failed trigger doesn't result in other events not
# getting triggered.
def test_failedrefreshes
path = tempfile()
newfile = tempfile()
file = Puppet.type(:file).create(
:path => path,
:ensure => "file"
)
svc = Puppet.type(:service).create(
:name => "thisservicedoesnotexist",
:subscribe => [:file, path]
)
exec = Puppet.type(:exec).create(
:path => ENV["PATH"],
:command => "touch %s" % newfile,
:logoutput => true,
:refreshonly => true,
:subscribe => [:file, path]
)
assert_apply(file, svc, exec)
assert(FileTest.exists?(path), "File did not get created")
assert(FileTest.exists?(newfile), "Refresh file did not get created")
end
# Make sure that unscheduled and untagged objects still respond to events
def test_unscheduled_and_untagged_response
Puppet::Type.type(:schedule).mkdefaultschedules
Puppet[:ignoreschedules] = false
file = Puppet.type(:file).create(
:name => tempfile(),
:ensure => "file"
)
fname = tempfile()
exec = Puppet.type(:exec).create(
:name => "touch %s" % fname,
:path => "/usr/bin:/bin",
:schedule => "monthly",
:subscribe => ["file", file.name]
)
comp = newcomp(file,exec)
comp.finalize
# Run it once
assert_apply(comp)
assert(FileTest.exists?(fname), "File did not get created")
assert(!exec.scheduled?, "Exec is somehow scheduled")
# Now remove it, so it can get created again
File.unlink(fname)
file[:content] = "some content"
assert_events([:file_changed, :triggered], comp)
assert(FileTest.exists?(fname), "File did not get recreated")
# Now remove it, so it can get created again
File.unlink(fname)
# And tag our exec
exec.tag("testrun")
# And our file, so it runs
file.tag("norun")
Puppet[:tags] = "norun"
file[:content] = "totally different content"
assert(! file.insync?, "Uh, file is in sync?")
assert_events([:file_changed, :triggered], comp)
assert(FileTest.exists?(fname), "File did not get recreated")
end
def test_failed_reqs_mean_no_run
exec = Puppet::Type.type(:exec).create(
:command => "/bin/mkdir /this/path/cannot/possibly/exit",
:title => "mkdir"
)
file1 = Puppet::Type.type(:file).create(
:title => "file1",
:path => tempfile(),
:require => exec,
:ensure => :file
)
file2 = Puppet::Type.type(:file).create(
:title => "file2",
:path => tempfile(),
:require => file1,
:ensure => :file
)
comp = newcomp(exec, file1, file2)
comp.finalize
assert_apply(comp)
assert(! FileTest.exists?(file1[:path]),
"File got created even tho its dependency failed")
assert(! FileTest.exists?(file2[:path]),
"File got created even tho its deep dependency failed")
end
end
def f(n)
Puppet::Type.type(:file)["/tmp/#{n.to_s}"]
end
def test_relationship_graph
one, two, middle, top = mktree
{one => two, "f" => "c", "h" => middle}.each do |source, target|
if source.is_a?(String)
source = f(source)
end
if target.is_a?(String)
target = f(target)
end
target[:require] = source
end
trans = Puppet::Transaction.new(top)
graph = nil
assert_nothing_raised do
graph = trans.relationship_graph
end
assert_instance_of(Puppet::PGraph, graph,
"Did not get relationship graph")
# Make sure all of the components are gone
comps = graph.vertices.find_all { |v| v.is_a?(Puppet::Type::Component)}
assert(comps.empty?, "Deps graph still contains components")
# It must be reversed because of how topsort works
sorted = graph.topsort.reverse
# Now make sure the appropriate edges are there and are in the right order
assert(graph.dependencies(f(:f)).include?(f(:c)),
"c not marked a dep of f")
assert(sorted.index(f(:c)) < sorted.index(f(:f)),
"c is not before f")
one.each do |o|
two.each do |t|
assert(graph.dependencies(o).include?(t),
"%s not marked a dep of %s" % [t.ref, o.ref])
assert(sorted.index(t) < sorted.index(o),
"%s is not before %s" % [t.ref, o.ref])
end
end
trans.resources.leaves(middle).each do |child|
assert(graph.dependencies(f(:h)).include?(child),
"%s not marked a dep of h" % [child.ref])
assert(sorted.index(child) < sorted.index(f(:h)),
"%s is not before h" % child.ref)
end
# Lastly, make sure our 'g' vertex made it into the relationship
# graph, since it's not involved in any relationships.
assert(graph.vertex?(f(:g)),
"Lost vertexes with no relations")
graph.to_jpg("normal_relations")
end
# Test pre-evaluation generation
def test_generate
mkgenerator() do
def generate
ret = []
if title.length > 1
ret << self.class.create(:title => title[0..-2])
else
return nil
end
ret
end
end
yay = Puppet::Type.newgenerator :title => "yay"
rah = Puppet::Type.newgenerator :title => "rah"
comp = newcomp(yay, rah)
trans = comp.evaluate
assert_nothing_raised do
trans.generate
end
%w{ya ra y r}.each do |name|
assert(trans.resources.vertex?(Puppet::Type.type(:generator)[name]),
"Generated %s was not a vertex" % name)
end
# Now make sure that cleanup gets rid of those generated types.
assert_nothing_raised do
trans.cleanup
end
%w{ya ra y r}.each do |name|
assert(!trans.resources.vertex?(Puppet::Type.type(:generator)[name]),
"Generated vertex %s was not removed from graph" % name)
assert_nil(Puppet::Type.type(:generator)[name],
"Generated vertex %s was not removed from class" % name)
end
end
# Test mid-evaluation generation.
def test_eval_generate
$evaluated = {}
type = mkgenerator() do
def eval_generate
ret = []
if title.length > 1
ret << self.class.create(:title => title[0..-2])
else
return nil
end
ret
end
def evaluate
$evaluated[self.title] = true
return []
end
end
yay = Puppet::Type.newgenerator :title => "yay"
rah = Puppet::Type.newgenerator :title => "rah", :subscribe => yay
comp = newcomp(yay, rah)
trans = comp.evaluate
trans.prepare
# Now apply the resources, and make sure they appropriately generate
# things.
assert_nothing_raised("failed to apply yay") do
trans.apply(yay)
end
ya = type["ya"]
assert(ya, "Did not generate ya")
assert(trans.relgraph.vertex?(ya),
"Did not add ya to rel_graph")
# Now make sure the appropriate relationships were added
assert(trans.relgraph.edge?(yay, ya),
"parent was not required by child")
assert(trans.relgraph.edge?(ya, rah),
"rah was not subscribed to ya")
# And make sure the relationship is a subscription with a callback,
# not just a require.
assert_equal({:callback => :refresh, :event => :ALL_EVENTS},
trans.relgraph[Puppet::Relationship.new(ya, rah)],
"The label was not retained")
# Now make sure it in turn eval_generates appropriately
assert_nothing_raised("failed to apply yay") do
trans.apply(type["ya"])
end
%w{y}.each do |name|
res = type[name]
assert(res, "Did not generate %s" % name)
assert(trans.relgraph.vertex?(res),
"Did not add %s to rel_graph" % name)
end
assert_nothing_raised("failed to eval_generate with nil response") do
trans.apply(type["y"])
end
assert_equal(%w{yay ya y rah}, trans.sorted_resources.collect { |r| r.title },
"Did not eval_generate correctly")
assert_nothing_raised("failed to apply rah") do
trans.apply(rah)
end
ra = type["ra"]
assert(ra, "Did not generate ra")
assert(trans.relgraph.vertex?(ra),
"Did not add ra to rel_graph" % name)
# Now make sure this generated resource has the same relationships as the generating
# resource
assert(trans.relgraph.edge?(yay, ra),
"yay is not required by ra")
assert(trans.relgraph.edge?(ya, ra),
"ra is not subscribed to ya")
# And make sure the relationship is a subscription with a callback,
# not just a require.
assert_equal({:callback => :refresh, :event => :ALL_EVENTS},
trans.relgraph[Puppet::Relationship.new(ya, ra)],
"The label was not retained")
# Now make sure that cleanup gets rid of those generated types.
assert_nothing_raised do
trans.cleanup
end
%w{ya ra y r}.each do |name|
assert(!trans.relgraph.vertex?(type[name]),
"Generated vertex %s was not removed from graph" % name)
assert_nil(type[name],
"Generated vertex %s was not removed from class" % name)
end
# Now, start over and make sure that everything gets evaluated.
trans = comp.evaluate
assert_nothing_raised do
trans.evaluate
end
assert_equal(%w{yay ya y rah ra r}.sort, $evaluated.keys.sort,
"Not all resources were evaluated")
end
def test_tags
res = Puppet::Type.newfile :path => tempfile()
comp = newcomp(res)
# Make sure they default to none
assert_equal([], comp.evaluate.tags)
# Make sure we get the main tags
Puppet[:tags] = %w{this is some tags}
assert_equal(%w{this is some tags}, comp.evaluate.tags)
# And make sure they get processed correctly
Puppet[:tags] = ["one", "two,three", "four"]
assert_equal(%w{one two three four}, comp.evaluate.tags)
# lastly, make sure we can override them
trans = comp.evaluate
trans.tags = ["one", "two,three", "four"]
assert_equal(%w{one two three four}, comp.evaluate.tags)
end
def test_tagged?
res = Puppet::Type.newfile :path => tempfile()
comp = newcomp(res)
trans = comp.evaluate
assert(trans.tagged?(res), "tagged? defaulted to false")
# Now set some tags
trans.tags = %w{some tags}
# And make sure it's false
assert(! trans.tagged?(res), "matched invalid tags")
# Set ignoretags and make sure it sticks
trans.ignoretags = true
assert(trans.tagged?(res), "tags were not ignored")
# Now make sure we actually correctly match tags
res[:tag] = "mytag"
trans.ignoretags = false
trans.tags = %w{notag}
assert(! trans.tagged?(res), "tags incorrectly matched")
trans.tags = %w{mytag yaytag}
assert(trans.tagged?(res), "tags should have matched")
end
# Make sure events propagate down the relationship graph appropriately.
def test_trigger
end
end
# $Id$
|