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 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616
|
#!/usr/bin/env ruby
$:.unshift("../lib").unshift("../../lib") if __FILE__ =~ /\.rb$/
require 'puppet'
require 'fileutils'
require 'puppettest'
class TestFile < Test::Unit::TestCase
include PuppetTest::FileTesting
# hmmm
# this is complicated, because we store references to the created
# objects in a central store
def mkfile(hash)
file = nil
assert_nothing_raised {
file = Puppet.type(:file).create(hash)
}
return file
end
def mktestfile
# because luke's home directory is on nfs, it can't be used for testing
# as root
tmpfile = tempfile()
File.open(tmpfile, "w") { |f| f.puts rand(100) }
@@tmpfiles.push tmpfile
mkfile(:name => tmpfile)
end
def setup
super
begin
initstorage
rescue
system("rm -rf %s" % Puppet[:statefile])
end
end
def teardown
Puppet::Storage.clear
system("rm -rf %s" % Puppet[:statefile])
super
end
def initstorage
Puppet::Storage.init
Puppet::Storage.load
end
def clearstorage
Puppet::Storage.store
Puppet::Storage.clear
end
def test_owner
file = mktestfile()
users = {}
count = 0
# collect five users
Etc.passwd { |passwd|
if count > 5
break
else
count += 1
end
users[passwd.uid] = passwd.name
}
fake = {}
# find a fake user
while true
a = rand(1000)
begin
Etc.getpwuid(a)
rescue
fake[a] = "fakeuser"
break
end
end
uid, name = users.shift
us = {}
us[uid] = name
users.each { |uid, name|
assert_apply(file)
assert_nothing_raised() {
file[:owner] = name
}
assert_nothing_raised() {
file.retrieve
}
assert_apply(file)
}
end
def test_group
file = mktestfile()
[%x{groups}.chomp.split(/ /), Process.groups].flatten.each { |group|
assert_nothing_raised() {
file[:group] = group
}
assert(file.state(:group))
assert(file.state(:group).should)
}
end
if Puppet::SUIDManager.uid == 0
def test_createasuser
dir = tmpdir()
user = nonrootuser()
path = File.join(tmpdir, "createusertesting")
@@tmpfiles << path
file = nil
assert_nothing_raised {
file = Puppet.type(:file).create(
:path => path,
:owner => user.name,
:ensure => "file",
:mode => "755"
)
}
comp = newcomp("createusertest", file)
assert_events([:file_created], comp)
end
def test_nofollowlinks
basedir = tempfile()
Dir.mkdir(basedir)
file = File.join(basedir, "file")
link = File.join(basedir, "link")
File.open(file, "w", 0644) { |f| f.puts "yayness"; f.flush }
File.symlink(file, link)
# First test 'user'
user = nonrootuser()
inituser = File.lstat(link).uid
File.lchown(inituser, nil, link)
obj = nil
assert_nothing_raised {
obj = Puppet.type(:file).create(
:title => link,
:owner => user.name
)
}
obj.retrieve
# Make sure it defaults to managing the link
assert_events([:file_changed], obj)
assert_equal(user.uid, File.lstat(link).uid)
assert_equal(inituser, File.stat(file).uid)
File.chown(inituser, nil, file)
File.lchown(inituser, nil, link)
# Try following
obj[:links] = :follow
assert_events([:file_changed], obj)
assert_equal(user.uid, File.stat(file).uid)
assert_equal(inituser, File.lstat(link).uid)
# And then explicitly managing
File.chown(inituser, nil, file)
File.lchown(inituser, nil, link)
obj[:links] = :manage
assert_events([:file_changed], obj)
assert_equal(user.uid, File.lstat(link).uid)
assert_equal(inituser, File.stat(file).uid)
obj.delete(:owner)
obj[:links] = :ignore
# And then test 'group'
group = nonrootgroup
initgroup = File.stat(file).gid
obj[:group] = group.name
assert_events([:file_changed], obj)
assert_equal(initgroup, File.stat(file).gid)
assert_equal(group.gid, File.lstat(link).gid)
File.chown(nil, initgroup, file)
File.lchown(nil, initgroup, link)
obj[:links] = :follow
assert_events([:file_changed], obj)
assert_equal(group.gid, File.stat(file).gid)
File.chown(nil, initgroup, file)
File.lchown(nil, initgroup, link)
obj[:links] = :manage
assert_events([:file_changed], obj)
assert_equal(group.gid, File.lstat(link).gid)
assert_equal(initgroup, File.stat(file).gid)
end
def test_ownerasroot
file = mktestfile()
users = {}
count = 0
# collect five users
Etc.passwd { |passwd|
if count > 5
break
else
count += 1
end
next if passwd.uid < 0
users[passwd.uid] = passwd.name
}
fake = {}
# find a fake user
while true
a = rand(1000)
begin
Etc.getpwuid(a)
rescue
fake[a] = "fakeuser"
break
end
end
users.each { |uid, name|
assert_nothing_raised() {
file[:owner] = name
}
changes = []
assert_nothing_raised() {
changes << file.evaluate
}
assert(changes.length > 0)
assert_apply(file)
file.retrieve
assert(file.insync?())
assert_nothing_raised() {
file[:owner] = uid
}
assert_apply(file)
file.retrieve
# make sure changing to number doesn't cause a sync
assert(file.insync?())
}
# We no longer raise an error here, because we check at run time
#fake.each { |uid, name|
# assert_raise(Puppet::Error) {
# file[:owner] = name
# }
# assert_raise(Puppet::Error) {
# file[:owner] = uid
# }
#}
end
def test_groupasroot
file = mktestfile()
[%x{groups}.chomp.split(/ /), Process.groups].flatten.each { |group|
assert_nothing_raised() {
file[:group] = group
}
assert(file.state(:group))
assert(file.state(:group).should)
assert_apply(file)
file.retrieve
assert(file.insync?())
assert_nothing_raised() {
file.delete(:group)
}
}
end
if Facter.value(:operatingsystem) == "Darwin"
def test_sillyowner
file = tempfile()
File.open(file, "w") { |f| f.puts "" }
File.chown(-2, nil, file)
assert(File.stat(file).uid > 120000, "eh?")
user = nonrootuser
obj = Puppet::Type.newfile(
:path => file,
:owner => user.name
)
assert_apply(obj)
assert_equal(user.uid, File.stat(file).uid)
end
end
else
$stderr.puts "Run as root for complete owner and group testing"
end
def test_create
%w{a b c d}.collect { |name| tempfile() + name.to_s }.each { |path|
file =nil
assert_nothing_raised() {
file = Puppet.type(:file).create(
:name => path,
:ensure => "file"
)
}
assert_events([:file_created], file)
assert_events([], file)
assert(FileTest.file?(path), "File does not exist")
assert(file.insync?())
@@tmpfiles.push path
}
end
def test_create_dir
basedir = tempfile()
Dir.mkdir(basedir)
%w{a b c d}.collect { |name| "#{basedir}/%s" % name }.each { |path|
file = nil
assert_nothing_raised() {
file = Puppet.type(:file).create(
:name => path,
:ensure => "directory"
)
}
assert(! FileTest.directory?(path), "Directory %s already exists" %
[path])
assert_events([:directory_created], file)
assert_events([], file)
assert(file.insync?())
assert(FileTest.directory?(path))
@@tmpfiles.push path
}
end
def test_modes
file = mktestfile
# Set it to something else initially
File.chmod(0775, file.title)
[0644,0755,0777,0641].each { |mode|
assert_nothing_raised() {
file[:mode] = mode
}
assert_events([:file_changed], file)
assert_events([], file)
assert(file.insync?())
assert_nothing_raised() {
file.delete(:mode)
}
}
end
def test_checksums
types = %w{md5 md5lite timestamp time}
exists = "/tmp/sumtest-exists"
nonexists = "/tmp/sumtest-nonexists"
@@tmpfiles << exists
@@tmpfiles << nonexists
# try it both with files that exist and ones that don't
files = [exists, nonexists]
initstorage
File.open(exists,File::CREAT|File::TRUNC|File::WRONLY) { |of|
of.puts "initial text"
}
types.each { |type|
files.each { |path|
if Puppet[:debug]
Puppet.warning "Testing %s on %s" % [type,path]
end
file = nil
events = nil
# okay, we now know that we have a file...
assert_nothing_raised() {
file = Puppet.type(:file).create(
:name => path,
:ensure => "file",
:checksum => type
)
}
trans = nil
file.retrieve
if file.title !~ /nonexists/
sum = file.state(:checksum)
assert(sum.insync?, "file is not in sync")
end
events = assert_apply(file)
assert(! events.include?(:file_changed),
"File incorrectly changed")
assert_events([], file)
# We have to sleep because the time resolution of the time-based
# mechanisms is greater than one second
sleep 1 if type =~ /time/
assert_nothing_raised() {
File.open(path,File::CREAT|File::TRUNC|File::WRONLY) { |of|
of.puts "some more text, yo"
}
}
Puppet.type(:file).clear
# now recreate the file
assert_nothing_raised() {
file = Puppet.type(:file).create(
:name => path,
:checksum => type
)
}
trans = nil
assert_events([:file_changed], file)
# Run it a few times to make sure we aren't getting
# spurious changes.
assert_nothing_raised do
file.state(:checksum).retrieve
end
assert(file.state(:checksum).insync?,
"checksum is not in sync")
sleep 1.1 if type =~ /time/
assert_nothing_raised() {
File.unlink(path)
File.open(path,File::CREAT|File::TRUNC|File::WRONLY) { |of|
# We have to put a certain amount of text in here or
# the md5-lite test fails
2.times {
of.puts rand(100)
}
of.flush
}
}
assert_events([:file_changed], file)
# verify that we're actually getting notified when a file changes
assert_nothing_raised() {
Puppet.type(:file).clear
}
if path =~ /nonexists/
File.unlink(path)
end
}
}
end
def cyclefile(path)
# i had problems with using :name instead of :path
[:name,:path].each { |param|
file = nil
changes = nil
comp = nil
trans = nil
initstorage
assert_nothing_raised {
file = Puppet.type(:file).create(
param => path,
:recurse => true,
:checksum => "md5"
)
}
comp = Puppet.type(:component).create(
:name => "component"
)
comp.push file
assert_nothing_raised {
trans = comp.evaluate
}
assert_nothing_raised {
trans.evaluate
}
clearstorage
Puppet::Type.allclear
}
end
def test_recursion
basedir = tempfile()
subdir = File.join(basedir, "this", "is", "sub", "dir")
tmpfile = File.join(subdir,"testing")
FileUtils.mkdir_p(subdir)
dir = nil
[true, "true", "inf", 50].each do |value|
assert_nothing_raised {
dir = Puppet.type(:file).create(
:path => basedir,
:recurse => value,
:check => %w{owner mode group}
)
}
assert_nothing_raised {
dir.evaluate
}
subobj = nil
assert_nothing_raised {
subobj = Puppet.type(:file)[subdir]
}
assert(subobj, "Could not retrieve %s object" % subdir)
File.open(tmpfile, "w") { |f| f.puts "yayness" }
dir.evaluate
file = nil
assert_nothing_raised {
file = Puppet.type(:file)[tmpfile]
}
assert(file, "Could not retrieve %s object" % tmpfile)
#system("rm -rf %s" % basedir)
Puppet.type(:file).clear
end
end
=begin
def test_ignore
end
=end
# XXX disabled until i change how dependencies work
def disabled_test_recursionwithcreation
path = "/tmp/this/directory/structure/does/not/exist"
@@tmpfiles.push "/tmp/this"
file = nil
assert_nothing_raised {
file = mkfile(
:name => path,
:recurse => true,
:ensure => "file"
)
}
trans = nil
comp = newcomp("recursewithfiles", file)
assert_nothing_raised {
trans = comp.evaluate
}
events = nil
assert_nothing_raised {
events = trans.evaluate.collect { |e| e.event.to_s }
}
puts "events are %s" % events.join(", ")
end
def test_filetype_retrieval
file = nil
# Verify it retrieves files of type directory
assert_nothing_raised {
file = Puppet.type(:file).create(
:name => tmpdir(),
:check => :type
)
}
assert_nothing_raised {
file.evaluate
}
assert_equal("directory", file.state(:type).is)
# And then check files
assert_nothing_raised {
file = Puppet.type(:file).create(
:name => tempfile(),
:ensure => "file"
)
}
assert_apply(file)
file[:check] = "type"
assert_apply(file)
assert_equal("file", file.state(:type).is)
file[:type] = "directory"
assert_nothing_raised { file.retrieve }
# The 'retrieve' method sets @should to @is, so they're never
# out of sync. It's a read-only class.
assert(file.insync?)
end
def test_remove
basedir = tempfile()
subdir = File.join(basedir, "this")
FileUtils.mkdir_p(subdir)
dir = nil
assert_nothing_raised {
dir = Puppet.type(:file).create(
:path => basedir,
:recurse => true,
:check => %w{owner mode group}
)
}
assert_nothing_raised {
dir.retrieve
}
obj = nil
assert_nothing_raised {
obj = Puppet.type(:file)[subdir]
}
assert(obj, "Could not retrieve subdir object")
assert_nothing_raised {
obj.remove(true)
}
assert_nothing_raised {
obj = Puppet.type(:file)[subdir]
}
assert_nil(obj, "Retrieved removed object")
end
def test_path
dir = tempfile()
path = File.join(dir, "and", "a", "sub", "dir")
assert_nothing_raised("Could not make file") {
FileUtils.mkdir_p(File.dirname(path))
File.open(path, "w") { |f| f.puts "yayness" }
}
file = nil
dirobj = nil
assert_nothing_raised("Could not make file object") {
dirobj = Puppet.type(:file).create(
:path => dir,
:recurse => true,
:check => %w{mode owner group}
)
}
assert_nothing_raised {
dirobj.evaluate
}
assert_nothing_raised {
file = dirobj.class[path]
}
assert(file, "Could not retrieve file object")
assert_equal("file=%s" % file.title, file.path)
end
def test_autorequire
basedir = tempfile()
subfile = File.join(basedir, "subfile")
baseobj = Puppet.type(:file).create(
:name => basedir,
:ensure => "directory"
)
subobj = Puppet.type(:file).create(
:name => subfile,
:ensure => "file"
)
comp = newcomp(baseobj, subobj)
comp.finalize
assert(subobj.requires?(baseobj), "File did not require basedir")
assert(!subobj.requires?(subobj), "File required itself")
assert_events([:directory_created, :file_created], comp)
end
def test_content
file = tempfile()
str = "This is some content"
obj = nil
assert_nothing_raised {
obj = Puppet.type(:file).create(
:name => file,
:content => str
)
}
assert(!obj.insync?, "Object is incorrectly in sync")
assert_events([:file_created], obj)
obj.retrieve
assert(obj.insync?, "Object is not in sync")
text = File.read(file)
assert_equal(str, text, "Content did not copy correctly")
newstr = "Another string, yo"
obj[:content] = newstr
assert(!obj.insync?, "Object is incorrectly in sync")
assert_events([:file_changed], obj)
text = File.read(file)
assert_equal(newstr, text, "Content did not copy correctly")
obj.retrieve
assert(obj.insync?, "Object is not in sync")
end
# Unfortunately, I know this fails
def disabled_test_recursivemkdir
path = tempfile()
subpath = File.join(path, "this", "is", "a", "dir")
file = nil
assert_nothing_raised {
file = Puppet.type(:file).create(
:name => subpath,
:ensure => "directory",
:recurse => true
)
}
comp = newcomp("yay", file)
comp.finalize
assert_apply(comp)
#assert_events([:directory_created], comp)
assert(FileTest.directory?(subpath), "Did not create directory")
end
# Make sure that content updates the checksum on the same run
def test_checksumchange_for_content
dest = tempfile()
File.open(dest, "w") { |f| f.puts "yayness" }
file = nil
assert_nothing_raised {
file = Puppet.type(:file).create(
:name => dest,
:checksum => "md5",
:content => "This is some content"
)
}
file.retrieve
assert_events([:file_changed], file)
file.retrieve
assert_events([], file)
end
# Make sure that content updates the checksum on the same run
def test_checksumchange_for_ensure
dest = tempfile()
file = nil
assert_nothing_raised {
file = Puppet.type(:file).create(
:name => dest,
:checksum => "md5",
:ensure => "file"
)
}
file.retrieve
assert_events([:file_created], file)
file.retrieve
assert_events([], file)
end
# Make sure that content gets used before ensure
def test_contentbeatsensure
dest = tempfile()
file = nil
assert_nothing_raised {
file = Puppet.type(:file).create(
:name => dest,
:ensure => "file",
:content => "this is some content, yo"
)
}
file.retrieve
assert_events([:file_created], file)
file.retrieve
assert_events([], file)
assert_events([], file)
end
def test_nameandpath
path = tempfile()
file = nil
assert_nothing_raised {
file = Puppet.type(:file).create(
:title => "fileness",
:path => path,
:content => "this is some content"
)
}
assert_apply(file)
assert(FileTest.exists?(path))
end
# Make sure that a missing group isn't fatal at object instantiation time.
def test_missinggroup
file = nil
assert_nothing_raised {
file = Puppet.type(:file).create(
:path => tempfile(),
:group => "fakegroup"
)
}
assert(file.state(:group), "Group state failed")
end
def test_modecreation
path = tempfile()
file = Puppet.type(:file).create(
:path => path,
:ensure => "file",
:mode => "0777"
)
assert_apply(file)
assert_equal(0777, File.stat(path).mode & 007777)
File.unlink(path)
file[:ensure] = "directory"
assert_apply(file)
assert_equal(0777, File.stat(path).mode & 007777)
end
def test_followlinks
basedir = tempfile()
Dir.mkdir(basedir)
file = File.join(basedir, "file")
link = File.join(basedir, "link")
File.open(file, "w", 0644) { |f| f.puts "yayness"; f.flush }
File.symlink(file, link)
obj = nil
assert_nothing_raised {
obj = Puppet.type(:file).create(
:path => link,
:mode => "755"
)
}
obj.retrieve
assert_events([], obj)
# Assert that we default to not following links
assert_equal("%o" % 0644, "%o" % (File.stat(file).mode & 007777))
# Assert that we can manage the link directly, but modes still don't change
obj[:links] = :manage
assert_events([], obj)
assert_equal("%o" % 0644, "%o" % (File.stat(file).mode & 007777))
obj[:links] = :follow
assert_events([:file_changed], obj)
assert_equal("%o" % 0755, "%o" % (File.stat(file).mode & 007777))
# Now verify that content and checksum don't update, either
obj.delete(:mode)
obj[:checksum] = "md5"
obj[:links] = :ignore
assert_events([], obj)
File.open(file, "w") { |f| f.puts "more text" }
assert_events([], obj)
obj[:links] = :follow
assert_events([], obj)
File.open(file, "w") { |f| f.puts "even more text" }
assert_events([:file_changed], obj)
obj.delete(:checksum)
obj[:content] = "this is some content"
obj[:links] = :ignore
assert_events([], obj)
File.open(file, "w") { |f| f.puts "more text" }
assert_events([], obj)
obj[:links] = :follow
assert_events([:file_changed], obj)
end
# If both 'ensure' and 'content' are used, make sure that all of the other
# states are handled correctly.
def test_contentwithmode
path = tempfile()
file = nil
assert_nothing_raised {
file = Puppet.type(:file).create(
:path => path,
:ensure => "file",
:content => "some text\n",
:mode => 0755
)
}
assert_apply(file)
assert_equal("%o" % 0755, "%o" % (File.stat(path).mode & 007777))
end
# Make sure we can create symlinks
def test_symlinks
path = tempfile()
link = tempfile()
File.open(path, "w") { |f| f.puts "yay" }
file = nil
assert_nothing_raised {
file = Puppet.type(:file).create(
:title => "somethingelse",
:ensure => path,
:path => link
)
}
assert_events([:link_created], file)
assert(FileTest.symlink?(link), "Link was not created")
assert_equal(path, File.readlink(link), "Link was created incorrectly")
# Make sure running it again works
assert_events([], file)
assert_events([], file)
assert_events([], file)
end
def test_simplerecursivelinking
source = tempfile()
dest = tempfile()
subdir = File.join(source, "subdir")
file = File.join(subdir, "file")
system("mkdir -p %s" % subdir)
system("touch %s" % file)
link = nil
assert_nothing_raised {
link = Puppet.type(:file).create(
:ensure => source,
:path => dest,
:recurse => true
)
}
assert_apply(link)
subdest = File.join(dest, "subdir")
linkpath = File.join(subdest, "file")
assert(File.directory?(dest), "dest is not a dir")
assert(File.directory?(subdest), "subdest is not a dir")
assert(File.symlink?(linkpath), "path is not a link")
assert_equal(file, File.readlink(linkpath))
assert_events([], link)
end
def test_recursivelinking
source = tempfile()
dest = tempfile()
files = []
dirs = []
# Make a bunch of files and dirs
Dir.mkdir(source)
Dir.chdir(source) do
system("mkdir -p %s" % "some/path/of/dirs")
system("mkdir -p %s" % "other/path/of/dirs")
system("touch %s" % "file")
system("touch %s" % "other/file")
system("touch %s" % "some/path/of/file")
system("touch %s" % "some/path/of/dirs/file")
system("touch %s" % "other/path/of/file")
files = %x{find . -type f}.chomp.split(/\n/)
dirs = %x{find . -type d}.chomp.split(/\n/).reject{|d| d =~ /^\.+$/ }
end
link = nil
assert_nothing_raised {
link = Puppet.type(:file).create(
:ensure => source,
:path => dest,
:recurse => true
)
}
assert_apply(link)
files.each do |f|
f.sub!(/^\.#{File::SEPARATOR}/, '')
path = File.join(dest, f)
assert(FileTest.exists?(path), "Link %s was not created" % path)
assert(FileTest.symlink?(path), "%s is not a link" % f)
target = File.readlink(path)
assert_equal(File.join(source, f), target)
end
dirs.each do |d|
d.sub!(/^\.#{File::SEPARATOR}/, '')
path = File.join(dest, d)
assert(FileTest.exists?(path), "Dir %s was not created" % path)
assert(FileTest.directory?(path), "%s is not a directory" % d)
end
end
def test_localrelativelinks
dir = tempfile()
Dir.mkdir(dir)
source = File.join(dir, "source")
File.open(source, "w") { |f| f.puts "yay" }
dest = File.join(dir, "link")
link = nil
assert_nothing_raised {
link = Puppet.type(:file).create(
:path => dest,
:ensure => "source"
)
}
assert_events([:link_created], link)
assert(FileTest.symlink?(dest), "Did not create link")
assert_equal("source", File.readlink(dest))
assert_equal("yay\n", File.read(dest))
end
def test_recursivelinkingmissingtarget
source = tempfile()
dest = tempfile()
objects = []
objects << Puppet.type(:exec).create(
:command => "mkdir %s; touch %s/file" % [source, source],
:path => ENV["PATH"]
)
objects << Puppet.type(:file).create(
:ensure => source,
:path => dest,
:recurse => true
)
assert_apply(*objects)
link = File.join(dest, "file")
assert(FileTest.symlink?(link), "Did not make link")
assert_equal(File.join(source, "file"), File.readlink(link))
end
def test_backupmodes
file = tempfile()
newfile = tempfile()
File.open(file, "w", 0411) { |f| f.puts "yayness" }
obj = nil
assert_nothing_raised {
obj = Puppet::Type.type(:file).create(
:path => file, :content => "rahness\n"
)
}
# user = group = nil
# if Process.uid == 0
# user = nonrootuser
# group = nonrootgroup
# obj[:owner] = user.name
# obj[:group] = group.name
# File.chown(user.uid, group.gid, file)
# end
assert_apply(obj)
backupfile = file + obj[:backup]
@@tmpfiles << backupfile
assert(FileTest.exists?(backupfile),
"Backup file %s does not exist" % backupfile)
assert_equal(0411, filemode(backupfile),
"File mode is wrong for backupfile")
# if Process.uid == 0
# assert_equal(user.uid, File.stat(backupfile).uid)
# assert_equal(group.gid, File.stat(backupfile).gid)
# end
bucket = "bucket"
bpath = tempfile()
Dir.mkdir(bpath)
Puppet::Type.type(:filebucket).create(
:title => bucket, :path => bpath
)
obj[:backup] = bucket
obj[:content] = "New content"
assert_apply(obj)
bucketedpath = File.join(bpath, "18cc17fa3047fcc691fdf49c0a7f539a", "contents")
assert_equal(0440, filemode(bucketedpath))
end
def test_largefilechanges
source = tempfile()
dest = tempfile()
# Now make a large file
File.open(source, "w") { |f|
500.times { |i| f.puts "line %s" % i }
}
obj = Puppet::Type.type(:file).create(
:title => dest, :source => source
)
assert_events([:file_created], obj)
File.open(source, File::APPEND|File::WRONLY) { |f| f.puts "another line" }
assert_events([:file_changed], obj)
# Now modify the dest file
File.open(dest, File::APPEND|File::WRONLY) { |f| f.puts "one more line" }
assert_events([:file_changed, :file_changed], obj)
end
def test_replacefilewithlink
path = tempfile()
link = tempfile()
File.open(path, "w") { |f| f.puts "yay" }
File.open(link, "w") { |f| f.puts "a file" }
file = nil
assert_nothing_raised {
file = Puppet.type(:file).create(
:ensure => path,
:path => link
)
}
assert_events([:link_created], file)
assert(FileTest.symlink?(link), "Link was not created")
assert_equal(path, File.readlink(link), "Link was created incorrectly")
end
def test_replacedirwithlink
path = tempfile()
link = tempfile()
File.open(path, "w") { |f| f.puts "yay" }
Dir.mkdir(link)
File.open(File.join(link, "yay"), "w") do |f| f.puts "boo" end
file = nil
assert_nothing_raised {
file = Puppet.type(:file).create(
:ensure => path,
:path => link,
:backup => false
)
}
# First run through without :force
assert_events([], file)
assert(FileTest.directory?(link), "Link replaced dir without force")
assert_nothing_raised { file[:force] = true }
assert_events([:link_created], file)
assert(FileTest.symlink?(link), "Link was not created")
assert_equal(path, File.readlink(link), "Link was created incorrectly")
end
def test_replace_links_with_files
base = tempfile()
Dir.mkdir(base)
file = File.join(base, "file")
link = File.join(base, "link")
File.open(file, "w") { |f| f.puts "yayness" }
File.symlink(file, link)
obj = Puppet::Type.type(:file).create(
:path => link,
:ensure => "file"
)
assert_apply(obj)
assert_equal("yayness\n", File.read(file),
"Original file got changed")
assert_equal("file", File.lstat(link).ftype, "File is still a link")
end
def test_no_erase_linkedto_files
base = tempfile()
Dir.mkdir(base)
dirs = {}
%w{other source target}.each do |d|
dirs[d] = File.join(base, d)
Dir.mkdir(dirs[d])
end
file = File.join(dirs["other"], "file")
sourcefile = File.join(dirs["source"], "sourcefile")
link = File.join(dirs["target"], "link")
File.open(file, "w") { |f| f.puts "other" }
File.open(sourcefile, "w") { |f| f.puts "source" }
File.symlink(file, link)
obj = Puppet::Type.type(:file).create(
:path => dirs["target"],
:ensure => "file",
:source => dirs["source"],
:recurse => true
)
trans = assert_events([:file_created, :file_created], obj)
newfile = File.join(dirs["target"], "sourcefile")
assert(File.exists?(newfile), "File did not get copied")
assert_equal(File.read(sourcefile), File.read(newfile),
"File did not get copied correctly.")
assert_equal("other\n", File.read(file),
"Original file got changed")
assert_equal("file", File.lstat(link).ftype, "File is still a link")
end
def test_replace_links
dest = tempfile()
otherdest = tempfile()
link = tempfile()
File.open(dest, "w") { |f| f.puts "boo" }
File.open(otherdest, "w") { |f| f.puts "yay" }
obj = Puppet::Type.type(:file).create(
:path => link,
:ensure => otherdest
)
assert_apply(obj)
assert_equal(otherdest, File.readlink(link), "Link did not get created")
obj[:ensure] = dest
assert_apply(obj)
assert_equal(dest, File.readlink(link), "Link did not get changed")
end
def test_file_with_spaces
dir = tempfile()
Dir.mkdir(dir)
source = File.join(dir, "file spaces")
dest = File.join(dir, "another space")
File.open(source, "w") { |f| f.puts :yay }
obj = Puppet::Type.type(:file).create(
:path => dest,
:source => source
)
assert(obj, "Did not create file")
assert_apply(obj)
assert(FileTest.exists?(dest), "File did not get created")
end
def test_present_matches_anything
path = tempfile()
file = Puppet::Type.newfile(:path => path, :ensure => :present)
file.retrieve
assert(! file.insync?, "File incorrectly in sync")
# Now make a file
File.open(path, "w") { |f| f.puts "yay" }
file.retrieve
assert(file.insync?, "File not in sync")
# Now make a directory
File.unlink(path)
Dir.mkdir(path)
file.retrieve
assert(file.insync?, "Directory not considered 'present'")
Dir.rmdir(path)
# Now make a link
file[:links] = :manage
otherfile = tempfile()
File.symlink(otherfile, path)
file.retrieve
assert(file.insync?, "Symlink not considered 'present'")
File.unlink(path)
# Now set some content, and make sure it works
file[:content] = "yayness"
assert_apply(file)
assert_equal("yayness", File.read(path), "Content did not get set correctly")
end
# Make sure unmanaged files can be purged.
def test_purge
sourcedir = tempfile()
destdir = tempfile()
Dir.mkdir(sourcedir)
Dir.mkdir(destdir)
sourcefile = File.join(sourcedir, "sourcefile")
dsourcefile = File.join(destdir, "sourcefile")
localfile = File.join(destdir, "localfile")
randfile = File.join(destdir, "random")
File.open(sourcefile, "w") { |f| f.puts "funtest" }
# this file should get removed
File.open(randfile, "w") { |f| f.puts "footest" }
lfobj = Puppet::Type.newfile(:path => localfile, :content => "rahtest")
destobj = Puppet::Type.newfile(:path => destdir,
:source => sourcedir,
:recurse => true)
assert_apply(lfobj, destobj)
assert(FileTest.exists?(dsourcefile), "File did not get copied")
assert(FileTest.exists?(localfile), "File did not get created")
assert(FileTest.exists?(randfile), "File got prematurely purged")
assert_nothing_raised { destobj[:purge] = true }
assert_apply(lfobj, destobj)
assert(FileTest.exists?(dsourcefile), "File got purged")
assert(FileTest.exists?(localfile), "File got purged")
assert(! FileTest.exists?(randfile), "File did not get purged")
end
# Testing #274. Make sure target can be used without 'ensure'.
def test_target_without_ensure
source = tempfile()
dest = tempfile()
File.open(source, "w") { |f| f.puts "funtest" }
obj = nil
assert_nothing_raised {
obj = Puppet::Type.newfile(:path => dest, :target => source)
}
assert_apply(obj)
end
def test_autorequire_owner_and_group
file = tempfile()
comp = nil
user = nil
group =nil
home = nil
ogroup = nil
assert_nothing_raised {
user = Puppet.type(:user).create(
:name => "pptestu",
:home => file,
:gid => "pptestg"
)
home = Puppet.type(:file).create(
:path => file,
:owner => "pptestu",
:group => "pptestg",
:ensure => "directory"
)
group = Puppet.type(:group).create(
:name => "pptestg"
)
comp = newcomp(user, group, home)
}
comp.finalize
comp.retrieve
assert(home.requires?(user), "File did not require owner")
assert(home.requires?(group), "File did not require group")
end
# Testing #309 -- //my/file => /my/file
def test_slash_deduplication
["/my/////file/for//testing", "//my/file/for/testing///",
"/my/file/for/testing"].each do |path|
file = nil
assert_nothing_raised do
file = Puppet::Type.newfile(:path => path)
end
assert_equal("/my/file/for/testing", file.title)
assert_equal(file, Puppet::Type.type(:file)["/my/file/for/testing"])
Puppet::Type.type(:file).clear
end
end
# Testing #304
def test_links_to_directories
link = tempfile()
file = tempfile()
dir = tempfile()
Dir.mkdir(dir)
bucket = Puppet::Type.newfilebucket :name => "main"
File.symlink(dir, link)
File.open(file, "w") { |f| f.puts "" }
assert_equal(dir, File.readlink(link))
obj = Puppet::Type.newfile :path => link, :ensure => :link,
:target => file, :recurse => false, :backup => "main"
assert_apply(obj)
assert_equal(file, File.readlink(link))
end
# Testing #303
def test_nobackups_with_links
link = tempfile()
new = tempfile()
File.open(link, "w") { |f| f.puts "old" }
File.open(new, "w") { |f| f.puts "new" }
obj = Puppet::Type.newfile :path => link, :ensure => :link,
:target => new, :recurse => true, :backup => false
assert_nothing_raised do
obj.handlebackup
end
bfile = [link, "puppet-bak"].join(".")
assert(! FileTest.exists?(bfile), "Backed up when told not to")
assert_apply(obj)
assert(! FileTest.exists?(bfile), "Backed up when told not to")
end
# Make sure we consistently handle backups for all cases.
def test_ensure_with_backups
# We've got three file types, so make sure we can replace any type
# with the other type and that backups are done correctly.
types = [:file, :directory, :link]
dir = tempfile()
path = File.join(dir, "test")
linkdest = tempfile()
creators = {
:file => proc { File.open(path, "w") { |f| f.puts "initial" } },
:directory => proc { Dir.mkdir(path) },
:link => proc { File.symlink(linkdest, path) }
}
bucket = Puppet::Type.newfilebucket :name => "main", :path => tempfile()
obj = Puppet::Type.newfile :path => path, :force => true,
:links => :manage
Puppet[:trace] = true
["main", false].each do |backup|
obj[:backup] = backup
obj.finish
types.each do |should|
types.each do |is|
# It makes no sense to replace a directory with a directory
# next if should == :directory and is == :directory
Dir.mkdir(dir)
# Make the thing
creators[is].call
obj[:ensure] = should
if should == :link
obj[:target] = linkdest
else
if obj.state(:target)
obj.delete(:target)
end
end
# First try just removing the initial data
assert_nothing_raised do
obj.remove_existing(should)
end
unless is == should
# Make sure the original is gone
assert(! FileTest.exists?(obj[:path]),
"remove_existing did not work: " +
"did not remove %s with %s" % [is, should])
end
FileUtils.rmtree(obj[:path])
# Now make it again
creators[is].call
state = obj.state(:ensure)
state.retrieve
unless state.insync?
assert_nothing_raised do
state.sync
end
end
FileUtils.rmtree(dir)
end
end
end
end
def test_check_checksums
dir = tempfile()
Dir.mkdir(dir)
subdir = File.join(dir, "sub")
Dir.mkdir(subdir)
file = File.join(dir, "file")
File.open(file, "w") { |f| f.puts "yay" }
obj = Puppet::Type.type(:file).create(
:path => dir, :check => :checksum, :recurse => true
)
assert_apply(obj)
File.open(file, "w") { |f| f.puts "rah" }
sleep 1
system("touch %s" % subdir)
Puppet::Storage.store
Puppet::Storage.load
assert_apply(obj)
[file, subdir].each do |path|
sub = Puppet::Type.type(:file)[path]
assert(sub, "did not find obj for %s" % path)
sub.retrieve
assert_nothing_raised do
sub.state(:checksum).sync
end
end
end
end
# $Id: file.rb 1867 2006-11-13 05:21:28Z luke $
|