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 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710
|
require 'spec_helper'
describe Puppet::Type.type(:file) do
include PuppetSpec::Files
let(:path) { tmpfile('file_testing') }
let(:file) { described_class.new(:path => path, :catalog => catalog) }
let(:provider) { file.provider }
let(:catalog) { Puppet::Resource::Catalog.new }
before do
allow(Puppet.features).to receive("posix?").and_return(true)
end
describe "the path parameter" do
describe "on POSIX systems", :if => Puppet.features.posix? do
it "should remove trailing slashes" do
file[:path] = "/foo/bar/baz/"
expect(file[:path]).to eq("/foo/bar/baz")
end
it "should remove double slashes" do
file[:path] = "/foo/bar//baz"
expect(file[:path]).to eq("/foo/bar/baz")
end
it "should remove triple slashes" do
file[:path] = "/foo/bar///baz"
expect(file[:path]).to eq("/foo/bar/baz")
end
it "should remove trailing double slashes" do
file[:path] = "/foo/bar/baz//"
expect(file[:path]).to eq("/foo/bar/baz")
end
it "should leave a single slash alone" do
file[:path] = "/"
expect(file[:path]).to eq("/")
end
it "should accept and collapse a double-slash at the start of the path" do
file[:path] = "//tmp/xxx"
expect(file[:path]).to eq('/tmp/xxx')
end
it "should accept and collapse a triple-slash at the start of the path" do
file[:path] = "///tmp/xxx"
expect(file[:path]).to eq('/tmp/xxx')
end
end
describe "on Windows systems", :if => Puppet.features.microsoft_windows? do
it "should remove trailing slashes" do
file[:path] = "X:/foo/bar/baz/"
expect(file[:path]).to eq("X:/foo/bar/baz")
end
it "should remove double slashes" do
file[:path] = "X:/foo/bar//baz"
expect(file[:path]).to eq("X:/foo/bar/baz")
end
it "should remove trailing double slashes" do
file[:path] = "X:/foo/bar/baz//"
expect(file[:path]).to eq("X:/foo/bar/baz")
end
it "should leave a drive letter with a slash alone" do
file[:path] = "X:/"
expect(file[:path]).to eq("X:/")
end
it "should not accept a drive letter without a slash" do
expect { file[:path] = "X:" }.to raise_error(/File paths must be fully qualified/)
end
describe "when using UNC filenames", :if => Puppet.features.microsoft_windows? do
it "should remove trailing slashes" do
file[:path] = "//localhost/foo/bar/baz/"
expect(file[:path]).to eq("//localhost/foo/bar/baz")
end
it "should remove double slashes" do
file[:path] = "//localhost/foo/bar//baz"
expect(file[:path]).to eq("//localhost/foo/bar/baz")
end
it "should remove trailing double slashes" do
file[:path] = "//localhost/foo/bar/baz//"
expect(file[:path]).to eq("//localhost/foo/bar/baz")
end
it "should remove a trailing slash from a sharename" do
file[:path] = "//localhost/foo/"
expect(file[:path]).to eq("//localhost/foo")
end
it "should not modify a sharename" do
file[:path] = "//localhost/foo"
expect(file[:path]).to eq("//localhost/foo")
end
end
end
end
describe "the backup parameter" do
[false, 'false', :false].each do |value|
it "should disable backup if the value is #{value.inspect}" do
file[:backup] = value
expect(file[:backup]).to eq(false)
end
end
[true, 'true', '.puppet-bak'].each do |value|
it "should use .puppet-bak if the value is #{value.inspect}" do
file[:backup] = value
expect(file[:backup]).to eq('.puppet-bak')
end
end
it "should use the provided value if it's any other string" do
file[:backup] = "over there"
expect(file[:backup]).to eq("over there")
end
it "should fail if backup is set to anything else" do
expect do
file[:backup] = 97
end.to raise_error(Puppet::Error, /Invalid backup type 97/)
end
end
describe "the recurse parameter" do
it "should default to recursion being disabled" do
expect(file[:recurse]).to be_falsey
end
[true, "true", "remote"].each do |value|
it "should consider #{value} to enable recursion" do
file[:recurse] = value
expect(file[:recurse]).to be_truthy
end
end
it "should not allow numbers" do
expect { file[:recurse] = 10 }.to raise_error(
Puppet::Error, /Parameter recurse failed on File\[[^\]]+\]: Invalid recurse value 10/)
end
[false, "false"].each do |value|
it "should consider #{value} to disable recursion" do
file[:recurse] = value
expect(file[:recurse]).to be_falsey
end
end
end
describe "the recurselimit parameter" do
it "should accept integers" do
file[:recurselimit] = 12
expect(file[:recurselimit]).to eq(12)
end
it "should munge string numbers to number numbers" do
file[:recurselimit] = '12'
expect(file[:recurselimit]).to eq(12)
end
it "should fail if given a non-number" do
expect do
file[:recurselimit] = 'twelve'
end.to raise_error(Puppet::Error, /Invalid value "twelve"/)
end
end
describe "the replace parameter" do
[true, :true, :yes].each do |value|
it "should consider #{value} to be true" do
file[:replace] = value
expect(file[:replace]).to be_truthy
end
end
[false, :false, :no].each do |value|
it "should consider #{value} to be false" do
file[:replace] = value
expect(file[:replace]).to be_falsey
end
end
end
describe ".instances" do
it "should return an empty array" do
expect(described_class.instances).to eq([])
end
end
describe "#bucket" do
it "should return nil if backup is off" do
file[:backup] = false
expect(file.bucket).to eq(nil)
end
it "should not return a bucket if using a file extension for backup" do
file[:backup] = '.backup'
expect(file.bucket).to eq(nil)
end
it "should return the default filebucket if using the 'puppet' filebucket" do
file[:backup] = 'puppet'
bucket = double('bucket')
allow(file).to receive(:default_bucket).and_return(bucket)
expect(file.bucket).to eq(bucket)
end
it "should fail if using a remote filebucket and no catalog exists" do
file.catalog = nil
file[:backup] = 'my_bucket'
expect { file.bucket }.to raise_error(Puppet::Error, "Can not find filebucket for backups without a catalog")
end
it "should fail if the specified filebucket isn't in the catalog" do
file[:backup] = 'my_bucket'
expect { file.bucket }.to raise_error(Puppet::Error, "Could not find filebucket my_bucket specified in backup")
end
it "should use the specified filebucket if it is in the catalog" do
file[:backup] = 'my_bucket'
filebucket = Puppet::Type.type(:filebucket).new(:name => 'my_bucket')
catalog.add_resource(filebucket)
expect(file.bucket).to eq(filebucket.bucket)
end
end
describe "#asuser" do
before :each do
# Mocha won't let me just stub SUIDManager.asuser to yield and return,
# but it will do exactly that if we're not root.
allow(Puppet::Util::SUIDManager).to receive(:root?).and_return(false)
end
it "should return the desired owner if they can write to the parent directory" do
file[:owner] = 1001
allow(FileTest).to receive(:writable?).with(File.dirname file[:path]).and_return(true)
expect(file.asuser).to eq(1001)
end
it "should return nil if the desired owner can't write to the parent directory" do
file[:owner] = 1001
allow(FileTest).to receive(:writable?).with(File.dirname file[:path]).and_return(false)
expect(file.asuser).to eq(nil)
end
it "should return nil if not managing owner" do
expect(file.asuser).to eq(nil)
end
end
describe "#exist?" do
it "should be considered existent if it can be stat'ed" do
expect(file).to receive(:stat).and_return(double('stat'))
expect(file).to be_exist
end
it "should be considered nonexistent if it can not be stat'ed" do
expect(file).to receive(:stat).and_return(nil)
expect(file).to_not be_exist
end
end
describe "#eval_generate" do
before do
@graph = double('graph', :add_edge => nil)
allow(catalog).to receive(:relationship_graph).and_return(@graph)
end
it "should recurse if recursion is enabled" do
resource = double('resource', :[] => 'resource')
expect(file).to receive(:recurse).and_return([resource])
file[:recurse] = true
expect(file.eval_generate).to eq([resource])
end
it "should not recurse if recursion is disabled" do
expect(file).not_to receive(:recurse)
file[:recurse] = false
expect(file.eval_generate).to eq([])
end
end
describe "#ancestors" do
it "should return the ancestors of the file, in ascending order" do
file = described_class.new(:path => make_absolute("/tmp/foo/bar/baz/qux"))
pieces = %W[#{make_absolute('/')} tmp foo bar baz]
ancestors = file.ancestors
expect(ancestors).not_to be_empty
ancestors.reverse.each_with_index do |path,i|
expect(path).to eq(File.join(*pieces[0..i]))
end
end
end
describe "#flush" do
it "should flush all properties that respond to :flush" do
file[:source] = File.expand_path(__FILE__)
expect(file.parameter(:source)).to receive(:flush)
file.flush
end
it "should reset its stat reference" do
FileUtils.touch(path)
stat1 = file.stat
expect(file.stat).to equal(stat1)
file.flush
expect(file.stat).not_to equal(stat1)
end
end
describe "#initialize" do
it "should remove a trailing slash from the title to create the path" do
title = File.expand_path("/abc/\n\tdef/")
file = described_class.new(:title => title)
expect(file[:path]).to eq(title)
end
it "should allow a single slash for a title and create the path" do
title = File.expand_path("/")
file = described_class.new(:title => title)
expect(file[:path]).to eq(title)
end
it "should allow multiple slashes for a title and create the path" do
title = File.expand_path("/") + "//"
file = described_class.new(:title => title)
expect(file[:path]).to eq(File.expand_path("/"))
end
it "should set a desired 'ensure' value if none is set and 'content' is set" do
file = described_class.new(:path => path, :content => "/foo/bar")
expect(file[:ensure]).to eq(:file)
end
it "should set a desired 'ensure' value if none is set and 'target' is set", :if => described_class.defaultprovider.feature?(:manages_symlinks) do
file = described_class.new(:path => path, :target => File.expand_path(__FILE__))
expect(file[:ensure]).to eq(:link)
end
describe "marking parameters as sensitive" do
it "marks sensitive, content, and ensure as sensitive when source is sensitive" do
resource = Puppet::Resource.new(:file, make_absolute("/tmp/foo"), :parameters => {:source => make_absolute('/tmp/bar')}, :sensitive_parameters => [:source])
file = described_class.new(resource)
expect(file.parameter(:source).sensitive).to eq true
expect(file.property(:content).sensitive).to eq true
expect(file.property(:ensure).sensitive).to eq true
end
it "marks ensure as sensitive when content is sensitive" do
resource = Puppet::Resource.new(:file, make_absolute("/tmp/foo"), :parameters => {:content => 'hello world!'}, :sensitive_parameters => [:content])
file = described_class.new(resource)
expect(file.property(:ensure).sensitive).to eq true
end
end
end
describe "#mark_children_for_purging" do
it "should set each child's ensure to absent" do
paths = %w[foo bar baz]
children = {}
paths.each do |child|
children[child] = described_class.new(:path => File.join(path, child), :ensure => :present)
end
file.mark_children_for_purging(children)
expect(children.length).to eq(3)
children.values.each do |child|
expect(child[:ensure]).to eq(:absent)
end
end
it "should skip children which have a source" do
child = described_class.new(:path => path, :ensure => :present, :source => File.expand_path(__FILE__))
file.mark_children_for_purging('foo' => child)
expect(child[:ensure]).to eq(:present)
end
end
describe "#newchild" do
it "should create a new resource relative to the parent" do
child = file.newchild('bar')
expect(child).to be_a(described_class)
expect(child[:path]).to eq(File.join(file[:path], 'bar'))
end
{
:ensure => :present,
:recurse => true,
:recurselimit => 5,
:target => "some_target",
:source => File.expand_path("some_source"),
}.each do |param, value|
it "should omit the #{param} parameter", :if => described_class.defaultprovider.feature?(:manages_symlinks) do
# Make a new file, because we have to set the param at initialization
# or it wouldn't be copied regardless.
file = described_class.new(:path => path, param => value)
child = file.newchild('bar')
expect(child[param]).not_to eq(value)
end
end
it "should copy all of the parent resource's 'should' values that were set at initialization" do
parent = described_class.new(:path => path, :owner => 'root', :group => 'wheel')
child = parent.newchild("my/path")
expect(child[:owner]).to eq('root')
expect(child[:group]).to eq('wheel')
end
it "should not copy default values to the new child" do
child = file.newchild("my/path")
expect(child.original_parameters).not_to include(:backup)
end
it "should not copy values to the child which were set by the source" do
source = File.expand_path(__FILE__)
file[:source] = source
metadata = double('metadata', :owner => "root", :group => "root", :mode => '0755', :ftype => "file", :checksum => "{md5}whatever", :checksum_type => "md5", :source => source)
allow(file.parameter(:source)).to receive(:metadata).and_return(metadata)
file.parameter(:source).copy_source_values
expect(file.class).to receive(:new) do |arg|
expect(arg[:group]).to be_nil
end
file.newchild("my/path")
end
end
describe "#purge?" do
it "should return false if purge is not set" do
expect(file).to_not be_purge
end
it "should return true if purge is set to true" do
file[:purge] = true
expect(file).to be_purge
end
it "should return false if purge is set to false" do
file[:purge] = false
expect(file).to_not be_purge
end
end
describe "#recurse" do
let(:name) { 'bar' }
let(:child) { double('puppet_type_file') }
before do
file[:recurse] = true
@metadata = Puppet::FileServing::Metadata
end
describe "and a source is set" do
it "should pass the already-discovered resources to recurse_remote" do
file[:source] = File.expand_path(__FILE__)
allow(child).to receive(:[]).with(:path).and_return(name)
allow(file).to receive(:recurse_local).and_return(name => child)
expect(file).to receive(:recurse_remote).with(name => child).and_return([])
file.recurse
end
end
describe "and a target is set" do
it "should use recurse_link" do
file[:target] = File.expand_path(__FILE__)
allow(child).to receive(:[]).with(:path).and_return(name)
allow(file).to receive(:recurse_local).and_return(name => child)
expect(file).to receive(:recurse_link).with(name => child).and_return([])
file.recurse
end
end
it "should use recurse_local if recurse is not remote" do
expect(file).to receive(:recurse_local).and_return({})
file.recurse
end
it "should not use recurse_local if recurse is remote" do
file[:recurse] = :remote
expect(file).not_to receive(:recurse_local)
file.recurse
end
it "should return the generated resources as an array sorted by file path" do
one = double('one', :[] => "/one")
two = double('two', :[] => "/one/two")
three = double('three', :[] => "/three")
expect(file).to receive(:recurse_local).and_return(:one => one, :two => two, :three => three)
expect(file.recurse).to eq([one, two, three])
end
describe "and purging is enabled" do
before do
file[:purge] = true
end
it "should mark each file for removal" do
local = described_class.new(:path => path, :ensure => :present)
expect(file).to receive(:recurse_local).and_return("local" => local)
file.recurse
expect(local[:ensure]).to eq(:absent)
end
it "should not remove files that exist in the remote repository" do
pending("FIXME: This test has been broken since it was introduced in c189b46e3f1 because of = vs ==")
file[:source] = File.expand_path(__FILE__)
expect(file).to receive(:recurse_local).and_return({})
remote = described_class.new(:path => path, :source => File.expand_path(__FILE__), :ensure => :present)
expect(file).to receive(:recurse_remote).with(hash_including("remote" => remote))
file.recurse
expect(remote[:ensure]).not_to eq(:absent)
end
end
end
describe "#remove_less_specific_files" do
it "should remove any nested files that are already in the catalog" do
foo = described_class.new :path => File.join(file[:path], 'foo')
bar = described_class.new :path => File.join(file[:path], 'bar')
baz = described_class.new :path => File.join(file[:path], 'baz')
catalog.add_resource(foo)
catalog.add_resource(bar)
expect(file.remove_less_specific_files([foo, bar, baz])).to eq([baz])
end
end
describe "#recurse?" do
it "should be true if recurse is true" do
file[:recurse] = true
expect(file).to be_recurse
end
it "should be true if recurse is remote" do
file[:recurse] = :remote
expect(file).to be_recurse
end
it "should be false if recurse is false" do
file[:recurse] = false
expect(file).to_not be_recurse
end
end
describe "#recurse_link" do
before do
@first = double('first', :relative_path => "first", :full_path => "/my/first", :ftype => "directory")
@second = double('second', :relative_path => "second", :full_path => "/my/second", :ftype => "file")
@resource = double('file', :[]= => nil)
end
it "should pass its target to the :perform_recursion method" do
file[:target] = "mylinks"
expect(file).to receive(:perform_recursion).with("mylinks").and_return([@first])
allow(file).to receive(:newchild).and_return(@resource)
file.recurse_link({})
end
it "should ignore the recursively-found '.' file and configure the top-level file to create a directory" do
allow(@first).to receive(:relative_path).and_return(".")
file[:target] = "mylinks"
expect(file).to receive(:perform_recursion).with("mylinks").and_return([@first])
expect(file).not_to receive(:newchild)
expect(file).to receive(:[]=).with(:ensure, :directory)
file.recurse_link({})
end
it "should create a new child resource for each generated metadata instance's relative path that doesn't already exist in the children hash" do
expect(file).to receive(:perform_recursion).and_return([@first, @second])
expect(file).to receive(:newchild).with(@first.relative_path).and_return(@resource)
file.recurse_link("second" => @resource)
end
it "should not create a new child resource for paths that already exist in the children hash" do
expect(file).to receive(:perform_recursion).and_return([@first])
expect(file).not_to receive(:newchild)
file.recurse_link("first" => @resource)
end
it "should set the target to the full path of discovered file and set :ensure to :link if the file is not a directory", :if => described_class.defaultprovider.feature?(:manages_symlinks) do
allow(file).to receive(:perform_recursion).and_return([@first, @second])
file.recurse_link("first" => @resource, "second" => file)
expect(file[:ensure]).to eq(:link)
expect(file[:target]).to eq("/my/second")
end
it "should :ensure to :directory if the file is a directory" do
allow(file).to receive(:perform_recursion).and_return([@first, @second])
file.recurse_link("first" => file, "second" => @resource)
expect(file[:ensure]).to eq(:directory)
end
it "should return a hash with both created and existing resources with the relative paths as the hash keys" do
expect(file).to receive(:perform_recursion).and_return([@first, @second])
allow(file).to receive(:newchild).and_return(file)
expect(file.recurse_link("second" => @resource)).to eq({"second" => @resource, "first" => file})
end
end
describe "#recurse_local" do
before do
@metadata = double('metadata', :relative_path => "my/file")
end
it "should pass its path to the :perform_recursion method" do
expect(file).to receive(:perform_recursion).with(file[:path]).and_return([@metadata])
allow(file).to receive(:newchild)
file.recurse_local
end
it "should return an empty hash if the recursion returns nothing" do
expect(file).to receive(:perform_recursion).and_return(nil)
expect(file.recurse_local).to eq({})
end
it "should create a new child resource with each generated metadata instance's relative path" do
expect(file).to receive(:perform_recursion).and_return([@metadata])
expect(file).to receive(:newchild).with(@metadata.relative_path).and_return("fiebar")
file.recurse_local
end
it "should not create a new child resource for the '.' directory" do
allow(@metadata).to receive(:relative_path).and_return(".")
expect(file).to receive(:perform_recursion).and_return([@metadata])
expect(file).not_to receive(:newchild)
file.recurse_local
end
it "should return a hash of the created resources with the relative paths as the hash keys" do
expect(file).to receive(:perform_recursion).and_return([@metadata])
expect(file).to receive(:newchild).with("my/file").and_return("fiebar")
expect(file.recurse_local).to eq({"my/file" => "fiebar"})
end
it "should set checksum_type to none if this file checksum is none" do
file[:checksum] = :none
expect(Puppet::FileServing::Metadata.indirection).to receive(:search).with(anything, hash_including(checksum_type: :none)).and_return([@metadata])
expect(file).to receive(:newchild).with("my/file").and_return("fiebar")
file.recurse_local
end
end
describe "#recurse_remote" do
let(:my) { File.expand_path('/my') }
before do
file[:source] = "puppet://foo/bar"
@first = Puppet::FileServing::Metadata.new(my, :relative_path => "first")
@second = Puppet::FileServing::Metadata.new(my, :relative_path => "second")
allow(@first).to receive(:ftype).and_return("directory")
allow(@second).to receive(:ftype).and_return("directory")
@parameter = double('property', :metadata= => nil)
@resource = double('file', :[]= => nil, :parameter => @parameter)
end
it "should pass its source to the :perform_recursion method" do
data = Puppet::FileServing::Metadata.new(File.expand_path("/whatever"), :relative_path => "foobar")
expect(file).to receive(:perform_recursion).with("puppet://foo/bar").and_return([data])
allow(file).to receive(:newchild).and_return(@resource)
file.recurse_remote({})
end
it "should not recurse when the remote file is not a directory" do
data = Puppet::FileServing::Metadata.new(File.expand_path("/whatever"), :relative_path => ".")
allow(data).to receive(:ftype).and_return("file")
expect(file).to receive(:perform_recursion).with("puppet://foo/bar").and_return([data])
expect(file).not_to receive(:newchild)
file.recurse_remote({})
end
it "should set the source of each returned file to the searched-for URI plus the found relative path" do
expect(@first).to receive(:source=).with(File.join("puppet://foo/bar", @first.relative_path))
expect(file).to receive(:perform_recursion).and_return([@first])
allow(file).to receive(:newchild).and_return(@resource)
file.recurse_remote({})
end
it "should create a new resource for any relative file paths that do not already have a resource" do
allow(file).to receive(:perform_recursion).and_return([@first])
expect(file).to receive(:newchild).with("first").and_return(@resource)
expect(file.recurse_remote({})).to eq({"first" => @resource})
end
it "should not create a new resource for any relative file paths that do already have a resource" do
allow(file).to receive(:perform_recursion).and_return([@first])
expect(file).not_to receive(:newchild)
file.recurse_remote("first" => @resource)
end
it "should set the source of each resource to the source of the metadata" do
allow(file).to receive(:perform_recursion).and_return([@first])
allow(@resource).to receive(:[]=)
expect(@resource).to receive(:[]=).with(:source, File.join("puppet://foo/bar", @first.relative_path))
file.recurse_remote("first" => @resource)
end
it "should set the checksum parameter based on the metadata" do
allow(file).to receive(:perform_recursion).and_return([@first])
allow(@resource).to receive(:[]=)
expect(@resource).to receive(:[]=).with(:checksum, "md5")
file.recurse_remote("first" => @resource)
end
it "should store the metadata in the source property for each resource so the source does not have to requery the metadata" do
allow(file).to receive(:perform_recursion).and_return([@first])
expect(@resource).to receive(:parameter).with(:source).and_return(@parameter)
expect(@parameter).to receive(:metadata=).with(@first)
file.recurse_remote("first" => @resource)
end
it "should not create a new resource for the '.' file" do
allow(@first).to receive(:relative_path).and_return(".")
allow(file).to receive(:perform_recursion).and_return([@first])
expect(file).not_to receive(:newchild)
file.recurse_remote({})
end
it "should store the metadata in the main file's source property if the relative path is '.'" do
allow(@first).to receive(:relative_path).and_return(".")
allow(file).to receive(:perform_recursion).and_return([@first])
expect(file.parameter(:source)).to receive(:metadata=).with(@first)
file.recurse_remote("first" => @resource)
end
it "should update the main file's checksum parameter if the relative path is '.'" do
allow(@first).to receive(:relative_path).and_return(".")
allow(file).to receive(:perform_recursion).and_return([@first])
allow(file).to receive(:[]=)
expect(file). to receive(:[]=).with(:checksum, "md5")
file.recurse_remote("first" => @resource)
end
describe "and multiple sources are provided" do
let(:sources) do
h = {}
%w{/a /b /c /d}.each do |key|
h[key] = Puppet::Util.uri_unescape(Puppet::Util.path_to_uri(File.expand_path(key)).to_s)
end
h
end
describe "and :sourceselect is set to :first" do
it "should create file instances for the results for the first source to return any values" do
data = Puppet::FileServing::Metadata.new(File.expand_path("/whatever"), :relative_path => "foobar")
file[:source] = sources.keys.sort.map { |key| File.expand_path(key) }
expect(file).to receive(:perform_recursion).with(sources['/a']).and_return(nil)
expect(file).to receive(:perform_recursion).with(sources['/b']).and_return([])
expect(file).to receive(:perform_recursion).with(sources['/c']).and_return([data])
expect(file).not_to receive(:perform_recursion).with(sources['/d'])
expect(file).to receive(:newchild).with("foobar").and_return(@resource)
file.recurse_remote({})
end
end
describe "and :sourceselect is set to :all" do
before do
file[:sourceselect] = :all
end
it "should return every found file that is not in a previous source" do
klass = Puppet::FileServing::Metadata
file[:source] = abs_path = %w{/a /b /c /d}.map {|f| File.expand_path(f) }
allow(file).to receive(:newchild).and_return(@resource)
one = [klass.new(abs_path[0], :relative_path => "a")]
expect(file).to receive(:perform_recursion).with(sources['/a']).and_return(one)
expect(file).to receive(:newchild).with("a").and_return(@resource)
two = [klass.new(abs_path[1], :relative_path => "a"), klass.new(abs_path[1], :relative_path => "b")]
expect(file).to receive(:perform_recursion).with(sources['/b']).and_return(two)
expect(file).to receive(:newchild).with("b").and_return(@resource)
three = [klass.new(abs_path[2], :relative_path => "a"), klass.new(abs_path[2], :relative_path => "c")]
expect(file).to receive(:perform_recursion).with(sources['/c']).and_return(three)
expect(file).to receive(:newchild).with("c").and_return(@resource)
expect(file).to receive(:perform_recursion).with(sources['/d']).and_return([])
file.recurse_remote({})
end
end
end
end
describe "#perform_recursion", :uses_checksums => true do
it "should use Metadata to do its recursion" do
expect(Puppet::FileServing::Metadata.indirection).to receive(:search)
file.perform_recursion(file[:path])
end
it "should use the provided path as the key to the search" do
expect(Puppet::FileServing::Metadata.indirection).to receive(:search).with("/foo", anything)
file.perform_recursion("/foo")
end
it "should return the results of the metadata search" do
expect(Puppet::FileServing::Metadata.indirection).to receive(:search).and_return("foobar")
expect(file.perform_recursion(file[:path])).to eq("foobar")
end
it "should pass its recursion value to the search" do
file[:recurse] = true
expect(Puppet::FileServing::Metadata.indirection).to receive(:search).with(anything, hash_including(recurse: true))
file.perform_recursion(file[:path])
end
it "should pass true if recursion is remote" do
file[:recurse] = :remote
expect(Puppet::FileServing::Metadata.indirection).to receive(:search).with(anything, hash_including(recurse: true))
file.perform_recursion(file[:path])
end
it "should pass its recursion limit value to the search" do
file[:recurselimit] = 10
expect(Puppet::FileServing::Metadata.indirection).to receive(:search).with(anything, hash_including(recurselimit: 10))
file.perform_recursion(file[:path])
end
it "should configure the search to ignore or manage links" do
file[:links] = :manage
expect(Puppet::FileServing::Metadata.indirection).to receive(:search).with(anything, hash_including(links: :manage))
file.perform_recursion(file[:path])
end
it "should pass its 'ignore' setting to the search if it has one" do
file[:ignore] = %w{.svn CVS}
expect(Puppet::FileServing::Metadata.indirection).to receive(:search).with(anything, hash_including(ignore: %w{.svn CVS}))
file.perform_recursion(file[:path])
end
with_digest_algorithms do
it "it should pass its 'checksum' setting #{metadata[:digest_algorithm]} to the search" do
file[:source] = File.expand_path('/foo')
expect(Puppet::FileServing::Metadata.indirection).to receive(:search).with(anything, hash_including(checksum_type: digest_algorithm.intern))
file.perform_recursion(file[:path])
end
end
end
describe "#remove_existing" do
it "should do nothing if the file doesn't exist" do
expect(file.remove_existing(:file)).to eq(false)
end
it "should fail if it can't backup the file" do
# Default: file[:backup] = true
allow(file).to receive(:stat).and_return(double('stat', :ftype => 'file'))
allow(file).to receive(:perform_backup).and_return(false)
expect { file.remove_existing(:file) }.to raise_error(Puppet::Error, /Could not back up; will not remove/)
end
describe "backing up directories" do
it "should not backup directories if backup is true and force is false" do
# Default: file[:backup] = true
file[:force] = false
allow(file).to receive(:stat).and_return(double('stat', :ftype => 'directory'))
expect(file).not_to receive(:perform_backup)
expect(file).to receive(:warning).with("Could not back up file of type directory")
expect(file.remove_existing(:file)).to eq(false)
end
it "should backup directories if backup is true and force is true" do
# Default: file[:backup] = true
file[:force] = true
allow(file).to receive(:stat).and_return(double('stat', :ftype => 'directory'))
expect(FileUtils).to receive(:rmtree).with(file[:path])
expect(file).to receive(:perform_backup).and_return(true)
expect(file.remove_existing(:file)).to eq(true)
end
end
it "should not do anything if the file is already the right type and not a link" do
allow(file).to receive(:stat).and_return(double('stat', :ftype => 'file'))
expect(file.remove_existing(:file)).to eq(false)
end
it "should not remove directories and should not invalidate the stat unless force is true" do
file[:force] = false
# Actually call stat to set @needs_stat to nil
file.stat
allow(file).to receive(:stat).and_return(double('stat', :ftype => 'directory'))
expect(file.instance_variable_get(:@stat)).to eq(nil)
end
it "should remove a directory if backup is true and force is true" do
# Default: file[:backup] = true
file[:force] = true
allow(file).to receive(:stat).and_return(double('stat', :ftype => 'directory'))
expect(FileUtils).to receive(:rmtree).with(file[:path])
expect(file.remove_existing(:file)).to eq(true)
end
it "should remove an existing file" do
allow(file).to receive(:perform_backup).and_return(true)
FileUtils.touch(path)
expect(file.remove_existing(:directory)).to eq(true)
expect(Puppet::FileSystem.exist?(file[:path])).to eq(false)
end
it "should remove an existing link", :if => described_class.defaultprovider.feature?(:manages_symlinks) do
allow(file).to receive(:perform_backup).and_return(true)
target = tmpfile('link_target')
FileUtils.touch(target)
Puppet::FileSystem.symlink(target, path)
file[:target] = target
expect(file.remove_existing(:directory)).to eq(true)
expect(Puppet::FileSystem.exist?(file[:path])).to eq(false)
end
it "should fail if the file is not a directory, link, file, fifo, socket, or is unknown" do
allow(file).to receive(:stat).and_return(double('stat', :ftype => 'blockSpecial'))
expect(file).to receive(:warning).with("Could not back up file of type blockSpecial")
expect { file.remove_existing(:file) }.to raise_error(Puppet::Error, /Could not remove files of type blockSpecial/)
end
it "should invalidate the existing stat of the file" do
# Actually call stat to set @needs_stat to nil
file.stat
allow(file).to receive(:stat).and_return(double('stat', :ftype => 'file'))
allow(Puppet::FileSystem).to receive(:unlink)
expect(file.remove_existing(:directory)).to eq(true)
expect(file.instance_variable_get(:@stat)).to eq(:needs_stat)
end
end
describe "#retrieve" do
it "should copy the source values if the 'source' parameter is set" do
file[:source] = File.expand_path('/foo/bar')
expect(file.parameter(:source)).to receive(:copy_source_values)
file.retrieve
end
end
describe "#should_be_file?" do
it "should have a method for determining if the file should be a normal file" do
expect(file).to respond_to(:should_be_file?)
end
it "should be a file if :ensure is set to :file" do
file[:ensure] = :file
expect(file).to be_should_be_file
end
it "should be a file if :ensure is set to :present and the file exists as a normal file" do
allow(file).to receive(:stat).and_return(double('stat', :ftype => "file"))
file[:ensure] = :present
expect(file).to be_should_be_file
end
it "should not be a file if :ensure is set to something other than :file" do
file[:ensure] = :directory
expect(file).to_not be_should_be_file
end
it "should not be a file if :ensure is set to :present and the file exists but is not a normal file" do
allow(file).to receive(:stat).and_return(double('stat', :ftype => "directory"))
file[:ensure] = :present
expect(file).to_not be_should_be_file
end
it "should be a file if :ensure is not set and :content is" do
file[:content] = "foo"
expect(file).to be_should_be_file
end
it "should be a file if neither :ensure nor :content is set but the file exists as a normal file" do
allow(file).to receive(:stat).and_return(double("stat", :ftype => "file"))
expect(file).to be_should_be_file
end
it "should not be a file if neither :ensure nor :content is set but the file exists but not as a normal file" do
allow(file).to receive(:stat).and_return(double("stat", :ftype => "directory"))
expect(file).to_not be_should_be_file
end
end
describe "#stat", :if => described_class.defaultprovider.feature?(:manages_symlinks) do
before do
target = tmpfile('link_target')
FileUtils.touch(target)
Puppet::FileSystem.symlink(target, path)
file[:target] = target
file[:links] = :manage # so we always use :lstat
end
it "should stat the target if it is following links" do
file[:links] = :follow
expect(file.stat.ftype).to eq('file')
end
it "should stat the link if is it not following links" do
file[:links] = :manage
expect(file.stat.ftype).to eq('link')
end
it "should return nil if the file does not exist" do
file[:path] = make_absolute('/foo/bar/baz/non-existent')
expect(file.stat).to be_nil
end
it "should return nil if the file cannot be stat'ed" do
dir = tmpfile('link_test_dir')
child = File.join(dir, 'some_file')
Dir.mkdir(dir)
File.chmod(0, dir)
file[:path] = child
expect(file.stat).to be_nil
# chmod it back so we can clean it up
File.chmod(0777, dir)
end
it "should return nil if parts of path are no directories" do
regular_file = tmpfile('ENOTDIR_test')
FileUtils.touch(regular_file)
impossible_child = File.join(regular_file, 'some_file')
file[:path] = impossible_child
expect(file.stat).to be_nil
end
it "should return the stat instance" do
expect(file.stat).to be_a(File::Stat)
end
it "should cache the stat instance" do
expect(file.stat.object_id).to eql(file.stat.object_id)
end
end
describe "#write" do
describe "when validating the checksum" do
before { allow(file).to receive(:validate_checksum?).and_return(true) }
it "should fail if the checksum parameter and content checksums do not match" do
checksum = double('checksum_parameter', :sum => 'checksum_b', :sum_file => 'checksum_b')
allow(file).to receive(:parameter).with(:checksum).and_return(checksum)
allow(file).to receive(:parameter).with(:source).and_return(nil)
property = double('content_property', :actual_content => "something", :length => "something".length, :write => 'checksum_a')
allow(file).to receive(:property).with(:content).and_return(property)
expect { file.write property }.to raise_error(Puppet::Error) end
end
describe "when not validating the checksum" do
before do
allow(file).to receive(:validate_checksum?).and_return(false)
end
it "should not fail if the checksum property and content checksums do not match" do
checksum = double('checksum_parameter', :sum => 'checksum_b')
allow(file).to receive(:parameter).with(:checksum).and_return(checksum)
allow(file).to receive(:parameter).with(:source).and_return(nil)
property = double('content_property', :actual_content => "something", :length => "something".length, :write => 'checksum_a')
allow(file).to receive(:property).with(:content).and_return(property)
expect { file.write property }.to_not raise_error
end
end
describe "when resource mode is supplied" do
before do
allow(file).to receive(:property_fix)
end
context "and writing temporary files" do
before do
allow(file).to receive(:write_temporary_file?).and_return(true)
end
it "should convert symbolic mode to int" do
file[:mode] = 'oga=r'
expect(Puppet::Util).to receive(:replace_file).with(file[:path], 0444)
file.write
end
it "should support int modes" do
file[:mode] = '0444'
expect(Puppet::Util).to receive(:replace_file).with(file[:path], 0444)
file.write
end
end
context "and not writing temporary files" do
before do
allow(file).to receive(:write_temporary_file?).and_return(false)
end
it "should set a umask of 0" do
file[:mode] = 'oga=r'
expect(Puppet::Util).to receive(:withumask).with(0)
file.write
end
it "should convert symbolic mode to int" do
file[:mode] = 'oga=r'
expect(File).to receive(:open).with(file[:path], anything, 0444)
file.write
end
it "should support int modes" do
file[:mode] = '0444'
expect(File).to receive(:open).with(file[:path], anything, 0444)
file.write
end
end
end
describe "when resource mode is not supplied" do
context "and content is supplied" do
it "should default to 0644 mode" do
file = described_class.new(:path => path, :content => "file content")
file.write file.parameter(:content)
expect(File.stat(file[:path]).mode & 0777).to eq(0644)
end
end
context "and no content is supplied" do
it "should use puppet's default umask of 022" do
file = described_class.new(:path => path)
umask_from_the_user = 0777
Puppet::Util.withumask(umask_from_the_user) do
file.write
end
expect(File.stat(file[:path]).mode & 0777).to eq(0644)
end
end
end
end
describe "#fail_if_checksum_is_wrong" do
it "should fail if the checksum of the file doesn't match the expected one" do
expect do
allow(file.parameter(:checksum)).to receive(:sum_file).and_return('wrong!!')
file.instance_eval do
fail_if_checksum_is_wrong(self[:path], 'anything!')
end
end.to raise_error(Puppet::Error, /File written to disk did not match checksum/)
end
it "should not fail if the checksum is correct" do
expect do
allow(file.parameter(:checksum)).to receive(:sum_file).and_return('anything!')
file.instance_eval do
fail_if_checksum_is_wrong(self[:path], 'anything!')
end
end.not_to raise_error
end
it "should not fail if the checksum is absent" do
expect do
allow(file.parameter(:checksum)).to receive(:sum_file).and_return(nil)
file.instance_eval do
fail_if_checksum_is_wrong(self[:path], 'anything!')
end
end.not_to raise_error
end
end
describe "#write_temporary_file?" do
it "should be true if the file has specified content" do
file[:content] = 'some content'
expect(file.send(:write_temporary_file?)).to be_truthy
end
it "should be true if the file has specified source" do
file[:source] = File.expand_path('/tmp/foo')
expect(file.send(:write_temporary_file?)).to be_truthy
end
it "should be false if the file has neither content nor source" do
expect(file.send(:write_temporary_file?)).to be_falsey
end
end
describe "#property_fix" do
{
:mode => '0777',
:owner => 'joeuser',
:group => 'joeusers',
:seluser => 'seluser',
:selrole => 'selrole',
:seltype => 'seltype',
:selrange => 'selrange'
}.each do |name,value|
it "should sync the #{name} property if it's not in sync" do
file[name] = value
prop = file.property(name)
expect(prop).to receive(:retrieve)
expect(prop).to receive(:safe_insync?).and_return(false)
expect(prop).to receive(:sync)
file.send(:property_fix)
end
end
end
describe "when autorequiring" do
describe "target" do
it "should require file resource when specified with the target property", :if => described_class.defaultprovider.feature?(:manages_symlinks) do
file = described_class.new(:path => File.expand_path("/foo"), :ensure => :directory)
link = described_class.new(:path => File.expand_path("/bar"), :ensure => :link, :target => File.expand_path("/foo"))
catalog.add_resource file
catalog.add_resource link
reqs = link.autorequire
expect(reqs.size).to eq(1)
expect(reqs[0].source).to eq(file)
expect(reqs[0].target).to eq(link)
end
it "should require file resource when specified with the ensure property" do
file = described_class.new(:path => File.expand_path("/foo"), :ensure => :directory)
link = described_class.new(:path => File.expand_path("/bar"), :ensure => File.expand_path("/foo"))
catalog.add_resource file
catalog.add_resource link
reqs = link.autorequire
expect(reqs.size).to eq(1)
expect(reqs[0].source).to eq(file)
expect(reqs[0].target).to eq(link)
end
it "should not require target if target is not managed", :if => described_class.defaultprovider.feature?(:manages_symlinks) do
link = described_class.new(:path => File.expand_path('/foo'), :ensure => :link, :target => '/bar')
catalog.add_resource link
expect(link.autorequire.size).to eq(0)
end
end
describe "directories" do
it "should autorequire its parent directory" do
dir = described_class.new(:path => File.dirname(path))
catalog.add_resource file
catalog.add_resource dir
reqs = file.autorequire
expect(reqs[0].source).to eq(dir)
expect(reqs[0].target).to eq(file)
end
it "should autorequire its nearest ancestor directory" do
dir = described_class.new(:path => File.dirname(path))
grandparent = described_class.new(:path => File.dirname(File.dirname(path)))
catalog.add_resource file
catalog.add_resource dir
catalog.add_resource grandparent
reqs = file.autorequire
expect(reqs.length).to eq(1)
expect(reqs[0].source).to eq(dir)
expect(reqs[0].target).to eq(file)
end
it "should not autorequire anything when there is no nearest ancestor directory" do
catalog.add_resource file
expect(file.autorequire).to be_empty
end
it "should not autorequire its parent dir if its parent dir is itself" do
file[:path] = File.expand_path('/')
catalog.add_resource file
expect(file.autorequire).to be_empty
end
describe "on Windows systems", :if => Puppet.features.microsoft_windows? do
describe "when using UNC filenames" do
it "should autorequire its parent directory" do
file[:path] = '//localhost/foo/bar/baz'
dir = described_class.new(:path => "//localhost/foo/bar")
catalog.add_resource file
catalog.add_resource dir
reqs = file.autorequire
expect(reqs[0].source).to eq(dir)
expect(reqs[0].target).to eq(file)
end
it "should autorequire its nearest ancestor directory" do
file = described_class.new(:path => "//localhost/foo/bar/baz/qux")
dir = described_class.new(:path => "//localhost/foo/bar/baz")
grandparent = described_class.new(:path => "//localhost/foo/bar")
catalog.add_resource file
catalog.add_resource dir
catalog.add_resource grandparent
reqs = file.autorequire
expect(reqs.length).to eq(1)
expect(reqs[0].source).to eq(dir)
expect(reqs[0].target).to eq(file)
end
it "should not autorequire anything when there is no nearest ancestor directory" do
file = described_class.new(:path => "//localhost/foo/bar/baz/qux")
catalog.add_resource file
expect(file.autorequire).to be_empty
end
it "should not autorequire its parent dir if its parent dir is itself" do
file = described_class.new(:path => "//localhost/foo")
catalog.add_resource file
puts file.autorequire
expect(file.autorequire).to be_empty
end
end
end
end
end
describe "when managing links", :if => Puppet.features.manages_symlinks? do
require 'tempfile'
before :each do
Dir.mkdir(path)
@target = File.join(path, "target")
@link = File.join(path, "link")
target = described_class.new(
:ensure => :file, :path => @target,
:catalog => catalog, :content => 'yayness',
:mode => '0644')
catalog.add_resource target
@link_resource = described_class.new(
:ensure => :link, :path => @link,
:target => @target, :catalog => catalog,
:mode => '0755')
catalog.add_resource @link_resource
# to prevent the catalog from trying to write state.yaml
allow(Puppet::Util::Storage).to receive(:store)
end
it "should preserve the original file mode and ignore the one set by the link" do
@link_resource[:links] = :manage # default
catalog.apply
# I convert them to strings so they display correctly if there's an error.
expect((Puppet::FileSystem.stat(@target).mode & 007777).to_s(8)).to eq('644')
end
it "should manage the mode of the followed link" do
if Puppet.features.microsoft_windows?
skip "Windows cannot presently manage the mode when following symlinks"
else
@link_resource[:links] = :follow
catalog.apply
expect((Puppet::FileSystem.stat(@target).mode & 007777).to_s(8)).to eq('755')
end
end
end
describe 'when using source' do
# different UTF-8 widths
# 1-byte A
# 2-byte ۿ - http://www.fileformat.info/info/unicode/char/06ff/index.htm - 0xDB 0xBF / 219 191
# 3-byte ᚠ - http://www.fileformat.info/info/unicode/char/16A0/index.htm - 0xE1 0x9A 0xA0 / 225 154 160
# 4-byte <U+070E> - http://www.fileformat.info/info/unicode/char/2070E/index.htm - 0xF0 0xA0 0x9C 0x8E / 240 160 156 142
let (:mixed_utf8) { "A\u06FF\u16A0\u{2070E}" } # Aۿᚠ<U+070E>
it 'should allow UTF-8 characters and return a UTF-8 uri' do
filename = "/bar #{mixed_utf8}"
source = "puppet://foo#{filename}"
file[:source] = source
# intercept the indirector call to provide back mocked metadata for the given URI
metadata = double('metadata', :source => source)
expect(metadata).to receive(:source=)
expect(Puppet::FileServing::Metadata.indirection).to receive(:find).with(source, anything).and_return(metadata)
uri = file.parameters[:source].uri
expect(Puppet::Util.uri_unescape(uri.path)).to eq(filename)
expect(uri.path.encoding).to eq(Encoding::UTF_8)
end
matcher :request_key do |expected|
match do |actual|
values_match? expected, actual.key
end
end
it 'should allow UTF-8 characters inside the indirector / terminus code' do
filename = "/bar #{mixed_utf8}"
source = "puppet://foo#{filename}"
file[:source] = source
# for this test to properly trigger previously errant behavior, the code for
# Puppet::FileServing::Metadata.indirection.find must run and produce an
# instance of Puppet::Indirector::FileMetadata::Rest that can be amended
metadata = double('metadata', :source => source)
expect(metadata).to receive(:source=)
require 'puppet/indirector/file_metadata/rest'
expect_any_instance_of(Puppet::Indirector::FileMetadata::Rest).to receive(:find).with(request_key(filename[1..-1])).and_return(metadata)
uri = file.parameters[:source].uri
expect(Puppet::Util.uri_unescape(uri.path)).to eq(filename)
expect(uri.path.encoding).to eq(Encoding::UTF_8)
end
end
describe "when using source" do
before do
file[:source] = File.expand_path('/one')
# Contents of an empty file generate the below hash values
# in case you need to add support for additional algorithms in future
@checksum_values = {
:md5 => 'd41d8cd98f00b204e9800998ecf8427e',
:md5lite => 'd41d8cd98f00b204e9800998ecf8427e',
:sha256 => 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855',
:sha256lite => 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855',
:sha1 => 'da39a3ee5e6b4b0d3255bfef95601890afd80709',
:sha1lite => 'da39a3ee5e6b4b0d3255bfef95601890afd80709',
:sha224 => 'd14a028c2a3a2bc9476102bb288234c415a2b01f828ea62ac5b3e42f',
:sha384 => '38b060a751ac96384cd9327eb1b1e36a21fdb71114be07434c0cc7bf63f6e1da274edebfe76f65fbd51ad2f14898b95b',
:sha512 => 'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e',
:mtime => 'Jan 26 13:59:49 2016',
:ctime => 'Jan 26 13:59:49 2016'
}
end
Puppet::Type::File::ParameterChecksum.value_collection.values.reject {|v| v == :none}.each do |checksum_type|
describe "with checksum '#{checksum_type}'" do
before do
file[:checksum] = checksum_type
end
it 'should validate' do
expect { file.validate }.to_not raise_error
end
it 'should fail on an invalid checksum_value' do
file[:checksum_value] = ''
expect { file.validate }.to raise_error(Puppet::Error, "Checksum value '' is not a valid checksum type #{checksum_type}")
end
it 'should validate a valid checksum_value' do
file[:checksum_value] = @checksum_values[checksum_type]
expect { file.validate }.to_not raise_error
end
end
end
describe "on Windows when source_permissions is `use`" do
before :each do
allow(Puppet.features).to receive(:microsoft_windows?).and_return(true)
file[:source_permissions] = "use"
end
let(:err_message) { "Copying owner/mode/group from the" <<
" source file on Windows is not supported;" <<
" use source_permissions => ignore." }
it "should issue error when retrieving" do
expect { file.retrieve }.to raise_error(err_message)
end
it "should issue error when retrieving if only user is unspecified" do
file[:group] = 2
file[:mode] = "0003"
expect { file.retrieve }.to raise_error(err_message)
end
it "should issue error when retrieving if only group is unspecified" do
file[:owner] = 1
file[:mode] = "0003"
expect { file.retrieve }.to raise_error(err_message)
end
it "should issue error when retrieving if only mode is unspecified" do
file[:owner] = 1
file[:group] = 2
expect { file.retrieve }.to raise_error(err_message)
end
it "should issue warning when retrieve if group, owner, and mode are all specified" do
file[:owner] = 1
file[:group] = 2
file[:mode] = "0003"
expect(file.parameter(:source)).to receive(:copy_source_values)
expect(file).to receive(:warning).with(err_message)
expect { file.retrieve }.not_to raise_error
end
end
describe "with checksum 'none'" do
before do
file[:checksum] = :none
end
it 'should raise an exception when validating' do
expect { file.validate }.to raise_error(/You cannot specify source when using checksum 'none'/)
end
end
end
describe "when using content" do
before do
file[:content] = 'file contents'
@checksum_values = {
:md5 => 'd41d8cd98f00b204e9800998ecf8427e',
:md5lite => 'd41d8cd98f00b204e9800998ecf8427e',
:sha256 => 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855',
:sha256lite => 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855',
:sha1 => 'da39a3ee5e6b4b0d3255bfef95601890afd80709',
:sha1lite => 'da39a3ee5e6b4b0d3255bfef95601890afd80709',
:sha224 => 'd14a028c2a3a2bc9476102bb288234c415a2b01f828ea62ac5b3e42f',
:sha384 => '38b060a751ac96384cd9327eb1b1e36a21fdb71114be07434c0cc7bf63f6e1da274edebfe76f65fbd51ad2f14898b95b',
:sha512 => 'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e',
}
end
(Puppet::Type::File::ParameterChecksum.value_collection.values - SOURCE_ONLY_CHECKSUMS).each do |checksum_type|
describe "with checksum '#{checksum_type}'" do
before do
file[:checksum] = checksum_type
end
it 'should validate' do
expect { file.validate }.to_not raise_error
end
it 'should fail on an invalid checksum_value' do
file[:checksum_value] = ''
expect { file.validate }.to raise_error(Puppet::Error, "Checksum value '' is not a valid checksum type #{checksum_type}")
end
it 'should validate a valid checksum_value' do
file[:checksum_value] = @checksum_values[checksum_type]
expect { file.validate }.to_not raise_error
end
end
end
SOURCE_ONLY_CHECKSUMS.each do |checksum_type|
describe "with checksum '#{checksum_type}'" do
it 'should raise an exception when validating' do
file[:checksum] = checksum_type
expect { file.validate }.to raise_error(/You cannot specify content when using checksum '#{checksum_type}'/)
end
end
end
end
describe "when checksum is none" do
before do
file[:checksum] = :none
end
it 'should validate' do
expect { file.validate }.to_not raise_error
end
it 'should fail on an invalid checksum_value' do
file[:checksum_value] = 'boo'
expect { file.validate }.to raise_error(Puppet::Error, "Checksum value 'boo' is not a valid checksum type none")
end
it 'should validate a valid checksum_value' do
file[:checksum_value] = ''
expect { file.validate }.to_not raise_error
end
end
describe "when auditing" do
before :each do
# to prevent the catalog from trying to write state.yaml
allow(Puppet::Util::Storage).to receive(:store)
end
it "should not fail if creating a new file if group is not set" do
file = described_class.new(:path => path, :audit => 'all', :content => 'content')
catalog.add_resource(file)
report = catalog.apply.report
expect(report.resource_statuses["File[#{path}]"]).not_to be_failed
expect(File.read(path)).to eq('content')
end
it "should not log errors if creating a new file with ensure present and no content" do
file[:audit] = 'content'
file[:ensure] = 'present'
catalog.add_resource(file)
catalog.apply
expect(Puppet::FileSystem.exist?(path)).to be_truthy
expect(@logs).not_to be_any { |l|
# the audit metaparameter is deprecated and logs a warning
l.level != :notice
}
end
end
describe "when specifying both source and checksum" do
it 'should use the specified checksum when source is first' do
file[:source] = File.expand_path('/foo')
file[:checksum] = :md5lite
expect(file[:checksum]).to eq(:md5lite)
end
it 'should use the specified checksum when source is last' do
file[:checksum] = :md5lite
file[:source] = File.expand_path('/foo')
expect(file[:checksum]).to eq(:md5lite)
end
end
describe "when validating" do
[[:source, :target], [:source, :content], [:target, :content]].each do |prop1,prop2|
it "should fail if both #{prop1} and #{prop2} are specified" do
file[prop1] = prop1 == :source ? File.expand_path("prop1 value") : "prop1 value"
file[prop2] = "prop2 value"
expect do
file.validate
end.to raise_error(Puppet::Error, /You cannot specify more than one of/)
end
end
end
end
|