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
|
require 'spec_helper'
require 'puppet_spec/compiler'
describe Puppet::Type, :unless => Puppet.features.microsoft_windows? do
include PuppetSpec::Files
include PuppetSpec::Compiler
it "should be Comparable" do
a = Puppet::Type.type(:notify).new(:name => "a")
b = Puppet::Type.type(:notify).new(:name => "b")
c = Puppet::Type.type(:notify).new(:name => "c")
[[a, b, c], [a, c, b], [b, a, c], [b, c, a], [c, a, b], [c, b, a]].each do |this|
expect(this.sort).to eq([a, b, c])
end
expect(a).to be < b
expect(a).to be < c
expect(b).to be > a
expect(b).to be < c
expect(c).to be > a
expect(c).to be > b
[a, b, c].each {|x| expect(a).to be <= x }
[a, b, c].each {|x| expect(c).to be >= x }
expect(b).to be_between(a, c)
end
it "should consider a parameter to be valid if it is a valid parameter" do
expect(Puppet::Type.type(:mount)).to be_valid_parameter(:name)
end
it "should consider a parameter to be valid if it is a valid property" do
expect(Puppet::Type.type(:mount)).to be_valid_parameter(:fstype)
end
it "should consider a parameter to be valid if it is a valid metaparam" do
expect(Puppet::Type.type(:mount)).to be_valid_parameter(:noop)
end
it "should be able to retrieve a property by name" do
resource = Puppet::Type.type(:mount).new(:name => "foo", :fstype => "bar", :pass => 1, :ensure => :present)
expect(resource.property(:fstype)).to be_instance_of(Puppet::Type.type(:mount).attrclass(:fstype))
end
it "should be able to retrieve a parameter by name" do
resource = Puppet::Type.type(:mount).new(:name => "foo", :fstype => "bar", :pass => 1, :ensure => :present)
expect(resource.parameter(:name)).to be_instance_of(Puppet::Type.type(:mount).attrclass(:name))
end
it "should be able to retrieve a property by name using the :parameter method" do
resource = Puppet::Type.type(:mount).new(:name => "foo", :fstype => "bar", :pass => 1, :ensure => :present)
expect(resource.parameter(:fstype)).to be_instance_of(Puppet::Type.type(:mount).attrclass(:fstype))
end
it "should be able to retrieve all set properties" do
resource = Puppet::Type.type(:mount).new(:name => "foo", :fstype => "bar", :pass => 1, :ensure => :present)
props = resource.properties
expect(props).not_to be_include(nil)
[:fstype, :ensure, :pass].each do |name|
expect(props).to be_include(resource.parameter(name))
end
end
it "can retrieve all set parameters" do
resource = Puppet::Type.type(:mount).new(:name => "foo", :fstype => "bar", :pass => 1, :ensure => :present, :tag => 'foo')
params = resource.parameters_with_value
[:name, :provider, :ensure, :fstype, :pass, :dump, :target, :loglevel, :tag].each do |name|
expect(params).to be_include(resource.parameter(name))
end
end
it "can not return any `nil` values when retrieving all set parameters" do
resource = Puppet::Type.type(:mount).new(:name => "foo", :fstype => "bar", :pass => 1, :ensure => :present, :tag => 'foo')
params = resource.parameters_with_value
expect(params).not_to be_include(nil)
end
it "can return an iterator for all set parameters" do
resource = Puppet::Type.type(:notify).new(:name=>'foo',:message=>'bar',:tag=>'baz',:require=> "File['foo']")
params = [:name, :message, :withpath, :loglevel, :tag, :require]
resource.eachparameter { |param|
expect(params).to be_include(param.to_s.to_sym)
}
end
it "should have a method for setting default values for resources" do
expect(Puppet::Type.type(:mount).new(:name => "foo")).to respond_to(:set_default)
end
it "should do nothing for attributes that have no defaults and no specified value" do
expect(Puppet::Type.type(:mount).new(:name => "foo").parameter(:noop)).to be_nil
end
it "should have a method for adding tags" do
expect(Puppet::Type.type(:mount).new(:name => "foo")).to respond_to(:tags)
end
it "should use the tagging module" do
expect(Puppet::Type.type(:mount).ancestors).to be_include(Puppet::Util::Tagging)
end
it "should delegate to the tagging module when tags are added" do
resource = Puppet::Type.type(:mount).new(:name => "foo")
allow(resource).to receive(:tag).with(:mount)
expect(resource).to receive(:tag).with(:tag1, :tag2)
resource.tags = [:tag1,:tag2]
end
it "should add the current type as tag" do
resource = Puppet::Type.type(:mount).new(:name => "foo")
allow(resource).to receive(:tag)
expect(resource).to receive(:tag).with(:mount)
resource.tags = [:tag1,:tag2]
end
it "should have a method to know if the resource is exported" do
expect(Puppet::Type.type(:mount).new(:name => "foo")).to respond_to(:exported?)
end
it "should have a method to know if the resource is virtual" do
expect(Puppet::Type.type(:mount).new(:name => "foo")).to respond_to(:virtual?)
end
it "should consider its version to be zero if it has no catalog" do
expect(Puppet::Type.type(:mount).new(:name => "foo").version).to eq(0)
end
it "reports the correct path even after path is used during setup of the type" do
Puppet::Type.newtype(:testing) do
newparam(:name) do
isnamevar
validate do |value|
path # forces the computation of the path
end
end
end
ral = compile_to_ral(<<-MANIFEST)
class something {
testing { something: }
}
include something
MANIFEST
expect(ral.resource("Testing[something]").path).to eq("/Stage[main]/Something/Testing[something]")
end
context "alias metaparam" do
it "creates a new name that can be used for resource references" do
ral = compile_to_ral(<<-MANIFEST)
notify { a: alias => c }
MANIFEST
expect(ral.resource("Notify[a]")).to eq(ral.resource("Notify[c]"))
end
end
context "resource attributes" do
let(:resource) {
resource = Puppet::Type.type(:mount).new(:name => "foo")
catalog = Puppet::Resource::Catalog.new
catalog.version = 50
catalog.add_resource resource
resource
}
it "should consider its version to be its catalog version" do
expect(resource.version).to eq(50)
end
it "should have tags" do
expect(resource).to be_tagged("mount")
expect(resource).to be_tagged("foo")
end
it "should have a path" do
expect(resource.path).to eq("/Mount[foo]")
end
end
it "should consider its type to be the name of its class" do
expect(Puppet::Type.type(:mount).new(:name => "foo").type).to eq(:mount)
end
it "should use any provided noop value" do
expect(Puppet::Type.type(:mount).new(:name => "foo", :noop => true)).to be_noop
end
it "should use the global noop value if none is provided" do
Puppet[:noop] = true
expect(Puppet::Type.type(:mount).new(:name => "foo")).to be_noop
end
it "should not be noop if in a non-host_config catalog" do
resource = Puppet::Type.type(:mount).new(:name => "foo")
catalog = Puppet::Resource::Catalog.new
catalog.add_resource resource
expect(resource).not_to be_noop
end
describe "when creating an event" do
before do
@resource = Puppet::Type.type(:mount).new :name => "foo"
end
it "should have the resource's reference as the resource" do
expect(@resource.event.resource).to eq("Mount[foo]")
end
it "should have the resource's log level as the default log level" do
@resource[:loglevel] = :warning
expect(@resource.event.default_log_level).to eq(:warning)
end
{:file => "/my/file", :line => 50}.each do |attr, value|
it "should set the #{attr}" do
allow(@resource).to receive(attr).and_return(value)
expect(@resource.event.send(attr)).to eq(value)
end
end
it "should set the tags" do
@resource.tag("abc", "def")
expect(@resource.event).to be_tagged("abc")
expect(@resource.event).to be_tagged("def")
end
it "should allow specification of event attributes" do
expect(@resource.event(:status => "noop").status).to eq("noop")
end
end
describe "when creating a provider" do
before :each do
@type = Puppet::Type.newtype(:provider_test_type) do
newparam(:name) { isnamevar }
newparam(:foo)
newproperty(:bar)
end
end
after :each do
@type.provider_hash.clear
end
describe "when determining if instances of the type are managed" do
it "should not consider audit only resources to be managed" do
expect(@type.new(:name => "foo", :audit => 'all').managed?).to be_falsey
end
it "should not consider resources with only parameters to be managed" do
expect(@type.new(:name => "foo", :foo => 'did someone say food?').managed?).to be_falsey
end
it "should consider resources with any properties set to be managed" do
expect(@type.new(:name => "foo", :bar => 'Let us all go there').managed?).to be_truthy
end
end
it "should have documentation for the 'provider' parameter if there are providers" do
@type.provide(:test_provider)
expect(@type.paramdoc(:provider)).to match(/`provider_test_type`[\s]+resource/)
end
it "should not have documentation for the 'provider' parameter if there are no providers" do
expect { @type.paramdoc(:provider) }.to raise_error(NoMethodError)
end
it "should create a subclass of Puppet::Provider for the provider" do
provider = @type.provide(:test_provider)
expect(provider.ancestors).to include(Puppet::Provider)
end
it "should use a parent class if specified" do
parent_provider = @type.provide(:parent_provider)
child_provider = @type.provide(:child_provider, :parent => parent_provider)
expect(child_provider.ancestors).to include(parent_provider)
end
it "should use a parent class if specified by name" do
parent_provider = @type.provide(:parent_provider)
child_provider = @type.provide(:child_provider, :parent => :parent_provider)
expect(child_provider.ancestors).to include(parent_provider)
end
it "should raise an error when the parent class can't be found" do
expect {
@type.provide(:child_provider, :parent => :parent_provider)
}.to raise_error(Puppet::DevError, /Could not find parent provider.+parent_provider/)
end
it "should ensure its type has a 'provider' parameter" do
@type.provide(:test_provider)
expect(@type.parameters).to include(:provider)
end
it "should remove a previously registered provider with the same name" do
old_provider = @type.provide(:test_provider)
new_provider = @type.provide(:test_provider)
expect(old_provider).not_to equal(new_provider)
end
it "should register itself as a provider for the type" do
provider = @type.provide(:test_provider)
expect(provider).to eq(@type.provider(:test_provider))
end
it "should create a provider when a provider with the same name previously failed" do
@type.provide(:test_provider) do
raise "failed to create this provider"
end rescue nil
provider = @type.provide(:test_provider)
expect(provider.ancestors).to include(Puppet::Provider)
expect(provider).to eq(@type.provider(:test_provider))
end
describe "with a parent class from another type" do
before :each do
@parent_type = Puppet::Type.newtype(:provider_parent_type) do
newparam(:name) { isnamevar }
end
@parent_provider = @parent_type.provide(:parent_provider)
end
it "should be created successfully" do
child_provider = @type.provide(:child_provider, :parent => @parent_provider)
expect(child_provider.ancestors).to include(@parent_provider)
end
it "should be registered as a provider of the child type" do
@type.provide(:child_provider, :parent => @parent_provider)
expect(@type.providers).to include(:child_provider)
expect(@parent_type.providers).not_to include(:child_provider)
end
end
end
describe "when choosing a default provider" do
it "should choose the provider with the highest specificity" do
# Make a fake type
type = Puppet::Type.newtype(:defaultprovidertest) do
newparam(:name) do end
end
basic = type.provide(:basic) {}
greater = type.provide(:greater) {}
allow(basic).to receive(:specificity).and_return(1)
allow(greater).to receive(:specificity).and_return(2)
expect(type.defaultprovider).to equal(greater)
end
end
context "autorelations" do
before :each do
Puppet::Type.newtype(:autorelation_one) do
newparam(:name) { isnamevar }
end
end
describe "when building autorelations" do
it "should be able to autorequire resources" do
Puppet::Type.newtype(:autorelation_two) do
newparam(:name) { isnamevar }
autorequire(:autorelation_one) { ['foo'] }
end
relationship_graph = compile_to_relationship_graph(<<-MANIFEST)
autorelation_one { 'foo': }
autorelation_two { 'bar': }
MANIFEST
src = relationship_graph.vertices.select{ |x| x.ref.to_s == 'Autorelation_one[foo]' }.first
dst = relationship_graph.vertices.select{ |x| x.ref.to_s == 'Autorelation_two[bar]' }.first
expect(relationship_graph.edge?(src,dst)).to be_truthy
expect(relationship_graph.edges_between(src,dst).first.event).to eq(:NONE)
end
it 'should not fail autorequire contains undef entries' do
Puppet::Type.newtype(:autorelation_two) do
newparam(:name) { isnamevar }
autorequire(:autorelation_one) { [nil, 'foo'] }
end
relationship_graph = compile_to_relationship_graph(<<-MANIFEST)
autorelation_one { 'foo': }
autorelation_two { 'bar': }
MANIFEST
src = relationship_graph.vertices.select{ |x| x.ref.to_s == 'Autorelation_one[foo]' }.first
dst = relationship_graph.vertices.select{ |x| x.ref.to_s == 'Autorelation_two[bar]' }.first
expect(relationship_graph.edge?(src,dst)).to be_truthy
expect(relationship_graph.edges_between(src,dst).first.event).to eq(:NONE)
end
it "should be able to autosubscribe resources" do
Puppet::Type.newtype(:autorelation_two) do
newparam(:name) { isnamevar }
autosubscribe(:autorelation_one) { ['foo'] }
end
relationship_graph = compile_to_relationship_graph(<<-MANIFEST)
autorelation_one { 'foo': }
autorelation_two { 'bar': }
MANIFEST
src = relationship_graph.vertices.select{ |x| x.ref.to_s == 'Autorelation_one[foo]' }.first
dst = relationship_graph.vertices.select{ |x| x.ref.to_s == 'Autorelation_two[bar]' }.first
expect(relationship_graph.edge?(src,dst)).to be_truthy
expect(relationship_graph.edges_between(src,dst).first.event).to eq(:ALL_EVENTS)
end
it 'should not fail if autosubscribe contains undef entries' do
Puppet::Type.newtype(:autorelation_two) do
newparam(:name) { isnamevar }
autosubscribe(:autorelation_one) { [nil, 'foo'] }
end
relationship_graph = compile_to_relationship_graph(<<-MANIFEST)
autorelation_one { 'foo': }
autorelation_two { 'bar': }
MANIFEST
src = relationship_graph.vertices.select{ |x| x.ref.to_s == 'Autorelation_one[foo]' }.first
dst = relationship_graph.vertices.select{ |x| x.ref.to_s == 'Autorelation_two[bar]' }.first
expect(relationship_graph.edge?(src,dst)).to be_truthy
expect(relationship_graph.edges_between(src,dst).first.event).to eq(:ALL_EVENTS)
end
it "should be able to autobefore resources" do
Puppet::Type.newtype(:autorelation_two) do
newparam(:name) { isnamevar }
autobefore(:autorelation_one) { ['foo'] }
end
relationship_graph = compile_to_relationship_graph(<<-MANIFEST)
autorelation_one { 'foo': }
autorelation_two { 'bar': }
MANIFEST
src = relationship_graph.vertices.select{ |x| x.ref.to_s == 'Autorelation_two[bar]' }.first
dst = relationship_graph.vertices.select{ |x| x.ref.to_s == 'Autorelation_one[foo]' }.first
expect(relationship_graph.edge?(src,dst)).to be_truthy
expect(relationship_graph.edges_between(src,dst).first.event).to eq(:NONE)
end
it "should not fail when autobefore contains undef entries" do
Puppet::Type.newtype(:autorelation_two) do
newparam(:name) { isnamevar }
autobefore(:autorelation_one) { [nil, 'foo'] }
end
relationship_graph = compile_to_relationship_graph(<<-MANIFEST)
autorelation_one { 'foo': }
autorelation_two { 'bar': }
MANIFEST
src = relationship_graph.vertices.select{ |x| x.ref.to_s == 'Autorelation_two[bar]' }.first
dst = relationship_graph.vertices.select{ |x| x.ref.to_s == 'Autorelation_one[foo]' }.first
expect(relationship_graph.edge?(src,dst)).to be_truthy
expect(relationship_graph.edges_between(src,dst).first.event).to eq(:NONE)
end
it "should be able to autonotify resources" do
Puppet::Type.newtype(:autorelation_two) do
newparam(:name) { isnamevar }
autonotify(:autorelation_one) { ['foo'] }
end
relationship_graph = compile_to_relationship_graph(<<-MANIFEST)
autorelation_one { 'foo': }
autorelation_two { 'bar': }
MANIFEST
src = relationship_graph.vertices.select{ |x| x.ref.to_s == 'Autorelation_two[bar]' }.first
dst = relationship_graph.vertices.select{ |x| x.ref.to_s == 'Autorelation_one[foo]' }.first
expect(relationship_graph.edge?(src,dst)).to be_truthy
expect(relationship_graph.edges_between(src,dst).first.event).to eq(:ALL_EVENTS)
end
it 'should not fail if autonotify contains undef entries' do
Puppet::Type.newtype(:autorelation_two) do
newparam(:name) { isnamevar }
autonotify(:autorelation_one) { [nil, 'foo'] }
end
relationship_graph = compile_to_relationship_graph(<<-MANIFEST)
autorelation_one { 'foo': }
autorelation_two { 'bar': }
MANIFEST
src = relationship_graph.vertices.select{ |x| x.ref.to_s == 'Autorelation_two[bar]' }.first
dst = relationship_graph.vertices.select{ |x| x.ref.to_s == 'Autorelation_one[foo]' }.first
expect(relationship_graph.edge?(src,dst)).to be_truthy
expect(relationship_graph.edges_between(src,dst).first.event).to eq(:ALL_EVENTS)
end
end
end
describe "when initializing" do
describe "and passed a Puppet::Resource instance" do
it "should set its title to the title of the resource if the resource type is equal to the current type" do
resource = Puppet::Resource.new(:mount, "/foo", :parameters => {:name => "/other"})
expect(Puppet::Type.type(:mount).new(resource).title).to eq("/foo")
end
it "should set its title to the resource reference if the resource type is not equal to the current type" do
resource = Puppet::Resource.new(:user, "foo")
expect(Puppet::Type.type(:mount).new(resource).title).to eq("User[foo]")
end
[:line, :file, :catalog, :exported, :virtual].each do |param|
it "should copy '#{param}' from the resource if present" do
resource = Puppet::Resource.new(:mount, "/foo")
resource.send(param.to_s + "=", "foo")
resource.send(param.to_s + "=", "foo")
expect(Puppet::Type.type(:mount).new(resource).send(param)).to eq("foo")
end
end
it "should copy any tags from the resource" do
resource = Puppet::Resource.new(:mount, "/foo")
resource.tag "one", "two"
tags = Puppet::Type.type(:mount).new(resource).tags
expect(tags).to be_include("one")
expect(tags).to be_include("two")
end
it "should copy the resource's parameters as its own" do
resource = Puppet::Resource.new(:mount, "/foo", :parameters => {:atboot => :yes, :fstype => "boo"})
params = Puppet::Type.type(:mount).new(resource).to_hash
expect(params[:fstype]).to eq("boo")
expect(params[:atboot]).to eq(:yes)
end
it "copies sensitive parameters to the appropriate properties" do
resource = Puppet::Resource.new(:mount, "/foo",
:parameters => {:atboot => :yes, :fstype => "boo"},
:sensitive_parameters => [:fstype])
type = Puppet::Type.type(:mount).new(resource)
expect(type.property(:fstype).sensitive).to eq true
end
it "logs a warning when a parameter is marked as sensitive" do
resource = Puppet::Resource.new(:mount, "/foo",
:parameters => {:atboot => :yes, :fstype => "boo", :remounts => true},
:sensitive_parameters => [:remounts])
expect_any_instance_of(Puppet::Type.type(:mount)).to receive(:warning).with(/Unable to mark 'remounts' as sensitive: remounts is a parameter and not a property/)
Puppet::Type.type(:mount).new(resource)
end
it "logs a warning when a property is not set but is marked as sensitive" do
resource = Puppet::Resource.new(:mount, "/foo",
:parameters => {:atboot => :yes, :fstype => "boo"},
:sensitive_parameters => [:device])
expect_any_instance_of(Puppet::Type.type(:mount)).to receive(:warning).with("Unable to mark 'device' as sensitive: the property itself was not assigned a value.")
Puppet::Type.type(:mount).new(resource)
end
it "logs an error when a property is not defined on the type but is marked as sensitive" do
resource = Puppet::Resource.new(:mount, "/foo",
:parameters => {:atboot => :yes, :fstype => "boo"},
:sensitive_parameters => [:content])
expect_any_instance_of(Puppet::Type.type(:mount)).to receive(:err).with("Unable to mark 'content' as sensitive: the property itself is not defined on mount.")
Puppet::Type.type(:mount).new(resource)
end
end
describe "and passed a Hash" do
it "should extract the title from the hash" do
expect(Puppet::Type.type(:mount).new(:title => "/yay").title).to eq("/yay")
end
it "should work when hash keys are provided as strings" do
expect(Puppet::Type.type(:mount).new("title" => "/yay").title).to eq("/yay")
end
it "should work when hash keys are provided as symbols" do
expect(Puppet::Type.type(:mount).new(:title => "/yay").title).to eq("/yay")
end
it "should use the name from the hash as the title if no explicit title is provided" do
expect(Puppet::Type.type(:mount).new(:name => "/yay").title).to eq("/yay")
end
it "should use the Resource Type's namevar to determine how to find the name in the hash" do
yay = make_absolute('/yay')
expect(Puppet::Type.type(:file).new(:path => yay).title).to eq(yay)
end
[:catalog].each do |param|
it "should extract '#{param}' from the hash if present" do
expect(Puppet::Type.type(:mount).new(:name => "/yay", param => "foo").send(param)).to eq("foo")
end
end
it "should use any remaining hash keys as its parameters" do
resource = Puppet::Type.type(:mount).new(:title => "/foo", :catalog => "foo", :atboot => :yes, :fstype => "boo")
expect(resource[:fstype]).to eq("boo")
expect(resource[:atboot]).to eq(:yes)
end
end
it "should fail if any invalid attributes have been provided" do
expect { Puppet::Type.type(:mount).new(:title => "/foo", :nosuchattr => "whatever") }.to raise_error(Puppet::Error, /no parameter named 'nosuchattr'/)
end
context "when an attribute fails validation" do
it "should fail with Puppet::ResourceError when PuppetError raised" do
expect { Puppet::Type.type(:file).new(:title => "/foo", :source => "unknown:///") }.to raise_error(Puppet::ResourceError, /Parameter source failed on File\[.*foo\]/)
end
it "should fail with Puppet::ResourceError when ArgumentError raised" do
expect { Puppet::Type.type(:file).new(:title => "/foo", :mode => "abcdef") }.to raise_error(Puppet::ResourceError, /Parameter mode failed on File\[.*foo\]/)
end
it "should include the file/line in the error" do
allow_any_instance_of(Puppet::Type.type(:file)).to receive(:file).and_return("example.pp")
allow_any_instance_of(Puppet::Type.type(:file)).to receive(:line).and_return(42)
expect { Puppet::Type.type(:file).new(:title => "/foo", :source => "unknown:///") }.to raise_error(Puppet::ResourceError, /\(file: example\.pp, line: 42\)/)
end
end
it "should set its name to the resource's title if the resource does not have a :name or namevar parameter set" do
resource = Puppet::Resource.new(:mount, "/foo")
expect(Puppet::Type.type(:mount).new(resource).name).to eq("/foo")
end
it "should fail if no title, name, or namevar are provided" do
expect { Puppet::Type.type(:mount).new(:atboot => :yes) }.to raise_error(Puppet::Error)
end
it "should set the attributes in the order returned by the class's :allattrs method" do
allow(Puppet::Type.type(:mount)).to receive(:allattrs).and_return([:name, :atboot, :noop])
resource = Puppet::Resource.new(:mount, "/foo", :parameters => {:name => "myname", :atboot => :yes, :noop => "whatever"})
set = []
allow_any_instance_of(Puppet::Type.type(:mount)).to receive(:newattr) do |_, param, hash|
set << param
double("a property", :value= => nil, :default => nil, :name => nil)
end
Puppet::Type.type(:mount).new(resource)
expect(set[-1]).to eq(:noop)
expect(set[-2]).to eq(:atboot)
end
it "should always set the name and then default provider before anything else" do
allow(Puppet::Type.type(:mount)).to receive(:allattrs).and_return([:provider, :name, :atboot])
resource = Puppet::Resource.new(:mount, "/foo", :parameters => {:name => "myname", :atboot => :yes})
set = []
allow_any_instance_of(Puppet::Type.type(:mount)).to receive(:newattr) do |_, param, hash|
set << param
double("a property", :value= => nil, :default => nil, :name => nil)
end
Puppet::Type.type(:mount).new(resource)
expect(set[0]).to eq(:name)
expect(set[1]).to eq(:provider)
end
# This one is really hard to test :/
it "should set each default immediately if no value is provided" do
defaults = []
allow_any_instance_of(Puppet::Type.type(:service)).to receive(:set_default) { |_, value| defaults << value }
Puppet::Type.type(:service).new :name => "whatever"
expect(defaults[0]).to eq(:provider)
end
it "should retain a copy of the originally provided parameters" do
expect(Puppet::Type.type(:mount).new(:name => "foo", :atboot => :yes, :noop => false).original_parameters).to eq({:atboot => :yes, :noop => false})
end
it "should delete the name via the namevar from the originally provided parameters" do
expect(Puppet::Type.type(:file).new(:name => make_absolute('/foo')).original_parameters[:path]).to be_nil
end
context "when validating the resource" do
it "should call the type's validate method if present" do
expect_any_instance_of(Puppet::Type.type(:file)).to receive(:validate)
Puppet::Type.type(:file).new(:name => make_absolute('/foo'))
end
it "should raise Puppet::ResourceError with resource name when Puppet::Error raised" do
expect do
Puppet::Type.type(:file).new(
:name => make_absolute('/foo'),
:source => "puppet:///",
:content => "foo"
)
end.to raise_error(Puppet::ResourceError, /Validation of File\[.*foo.*\]/)
end
it "should raise Puppet::ResourceError with manifest file and line on failure" do
allow_any_instance_of(Puppet::Type.type(:file)).to receive(:file).and_return("example.pp")
allow_any_instance_of(Puppet::Type.type(:file)).to receive(:line).and_return(42)
expect do
Puppet::Type.type(:file).new(
:name => make_absolute('/foo'),
:source => "puppet:///",
:content => "foo"
)
end.to raise_error(Puppet::ResourceError, /Validation.*\(file: example\.pp, line: 42\)/)
end
end
end
describe "#set_sensitive_parameters" do
let(:sensitive_type) do
Puppet::Type.newtype(:sensitive_test) do
newparam(:name) { isnamevar }
newproperty(:secret) do
newvalues(/.*/)
sensitive true
end
newproperty(:transparency) do
newvalues(/.*/)
sensitive false
end
newproperty(:things) { newvalues(/.*/) }
end
end
it "should mark properties as sensitive" do
resource = sensitive_type.new(:name => 'foo', :secret => 'uber classified')
expect(resource.parameters[:secret].sensitive).to be true
end
it "should not have a sensitive flag when not set" do
resource = sensitive_type.new(:name => 'foo', :things => '1337')
expect(resource.parameters[:things].sensitive).to be_nil
end
it "should define things as not sensitive" do
resource = sensitive_type.new(:name => 'foo', :transparency => 'public knowledge')
expect(resource.parameters[:transparency].sensitive).to be false
end
it "should honor when sensitivity is set in a manifest" do
resource = sensitive_type.new(:name => 'foo',
:transparency => Puppet::Pops::Types::PSensitiveType::Sensitive.new('top secret'),
:sensitive_parameters => [:transparency]
)
expect(resource.parameters[:transparency].sensitive).to be true
end
end
describe "when #finish is called on a type" do
let(:post_hook_type) do
Puppet::Type.newtype(:finish_test) do
newparam(:name) { isnamevar }
newparam(:post) do
def post_compile
raise "post_compile hook ran"
end
end
end
end
let(:post_hook_resource) do
post_hook_type.new(:name => 'foo',:post => 'fake_value')
end
it "should call #post_compile on parameters that implement it" do
expect { post_hook_resource.finish }.to raise_error(RuntimeError, "post_compile hook ran")
end
end
it "should have a class method for converting a hash into a Puppet::Resource instance" do
expect(Puppet::Type.type(:mount)).to respond_to(:hash2resource)
end
describe "when converting a hash to a Puppet::Resource instance" do
before do
@type = Puppet::Type.type(:mount)
end
it "should treat a :title key as the title of the resource" do
expect(@type.hash2resource(:name => "/foo", :title => "foo").title).to eq("foo")
end
it "should use the name from the hash as the title if no explicit title is provided" do
expect(@type.hash2resource(:name => "foo").title).to eq("foo")
end
it "should use the Resource Type's namevar to determine how to find the name in the hash" do
allow(@type).to receive(:key_attributes).and_return([ :myname ])
expect(@type.hash2resource(:myname => "foo").title).to eq("foo")
end
[:catalog].each do |attr|
it "should use any provided #{attr}" do
expect(@type.hash2resource(:name => "foo", attr => "eh").send(attr)).to eq("eh")
end
end
it "should set all provided parameters on the resource" do
expect(@type.hash2resource(:name => "foo", :fstype => "boo", :boot => "fee").to_hash).to eq({:name => "foo", :fstype => "boo", :boot => "fee"})
end
it "should not set the title as a parameter on the resource" do
expect(@type.hash2resource(:name => "foo", :title => "eh")[:title]).to be_nil
end
it "should not set the catalog as a parameter on the resource" do
expect(@type.hash2resource(:name => "foo", :catalog => "eh")[:catalog]).to be_nil
end
it "should treat hash keys equivalently whether provided as strings or symbols" do
resource = @type.hash2resource("name" => "foo", "title" => "eh", "fstype" => "boo")
expect(resource.title).to eq("eh")
expect(resource[:name]).to eq("foo")
expect(resource[:fstype]).to eq("boo")
end
end
describe "when retrieving current property values" do
before do
@resource = Puppet::Type.type(:mount).new(:name => "foo", :fstype => "bar", :pass => 1, :ensure => :present)
allow(@resource.property(:ensure)).to receive(:retrieve).and_return(:absent)
end
it "should always retrieve the ensure value by default" do
@ensurable_resource = Puppet::Type.type(:file).new(:name => "/not/existent", :mode => "0644")
allow(Puppet::Type::File::Ensure).to receive(:ensure).and_return(:absent)
expect_any_instance_of(Puppet::Type::File::Ensure).to receive(:retrieve).once
@ensurable_resource.retrieve_resource
end
it "should not retrieve the ensure value if specified" do
@ensurable_resource = Puppet::Type.type(:service).new(:name => "DummyService", :enable => true)
@ensurable_resource.properties.each { |prop| allow(prop).to receive(:retrieve) }
expect_any_instance_of(Puppet::Type::Service::Ensure).not_to receive(:retrieve)
@ensurable_resource.retrieve_resource
end
it "should fail if its provider is unsuitable" do
@resource = Puppet::Type.type(:mount).new(:name => "foo", :fstype => "bar", :pass => 1, :ensure => :present)
expect(@resource.provider.class).to receive(:suitable?).and_return(false)
expect { @resource.retrieve_resource }.to raise_error(Puppet::Error)
end
it "should return a Puppet::Resource instance with its type and title set appropriately" do
result = @resource.retrieve_resource
expect(result).to be_instance_of(Puppet::Resource)
expect(result.type).to eq("Mount")
expect(result.title).to eq("foo")
end
it "should set the name of the returned resource if its own name and title differ" do
@resource[:name] = "myname"
@resource.title = "other name"
expect(@resource.retrieve_resource[:name]).to eq("myname")
end
it "should provide a value for all set properties" do
values = @resource.retrieve_resource
[:ensure, :fstype, :pass].each { |property| expect(values[property]).not_to be_nil }
end
it "should provide a value for 'ensure' even if no desired value is provided" do
@resource = Puppet::Type.type(:file).new(:path => make_absolute("/my/file/that/can't/exist"))
end
it "should not call retrieve on non-ensure properties if the resource is absent and should consider the property absent" do
expect(@resource.property(:ensure)).to receive(:retrieve).and_return(:absent)
expect(@resource.property(:fstype)).not_to receive(:retrieve)
expect(@resource.retrieve_resource[:fstype]).to eq(:absent)
end
it "should include the result of retrieving each property's current value if the resource is present" do
expect(@resource.property(:ensure)).to receive(:retrieve).and_return(:present)
expect(@resource.property(:fstype)).to receive(:retrieve).and_return(15)
@resource.retrieve_resource[:fstype] == 15
end
end
describe "#to_resource" do
it "should return a Puppet::Resource that includes properties, parameters and tags" do
type_resource = Puppet::Type.type(:mount).new(
:ensure => :present,
:name => "foo",
:fstype => "bar",
:remounts => true
)
type_resource.tags = %w{bar baz}
# If it's not a property it's a parameter
expect(type_resource.parameters[:remounts]).not_to be_a(Puppet::Property)
expect(type_resource.parameters[:fstype].is_a?(Puppet::Property)).to be_truthy
expect(type_resource.property(:ensure)).to receive(:retrieve).and_return(:present)
expect(type_resource.property(:fstype)).to receive(:retrieve).and_return(15)
resource = type_resource.to_resource
expect(resource).to be_a Puppet::Resource
expect(resource[:fstype]).to eq(15)
expect(resource[:remounts]).to eq(:true)
expect(resource.tags).to eq(Puppet::Util::TagSet.new(%w{foo bar baz mount}))
end
end
describe ".title_patterns" do
describe "when there's one namevar" do
before do
@type_class = Puppet::Type.type(:notify)
allow(@type_class).to receive(:key_attributes).and_return([:one])
end
it "should have a default pattern for when there's one namevar" do
patterns = @type_class.title_patterns
expect(patterns.length).to eq(1)
expect(patterns[0].length).to eq(2)
end
it "should have a regexp that captures the entire string" do
patterns = @type_class.title_patterns
string = "abc\n\tdef"
patterns[0][0] =~ string
expect($1).to eq("abc\n\tdef")
end
end
end
describe "when in a catalog" do
before do
@catalog = Puppet::Resource::Catalog.new
@container = Puppet::Type.type(:component).new(:name => "container")
@one = Puppet::Type.type(:file).new(:path => make_absolute("/file/one"))
@two = Puppet::Type.type(:file).new(:path => make_absolute("/file/two"))
@catalog.add_resource @container
@catalog.add_resource @one
@catalog.add_resource @two
@catalog.add_edge @container, @one
@catalog.add_edge @container, @two
end
it "should have no parent if there is no in edge" do
expect(@container.parent).to be_nil
end
it "should set its parent to its in edge" do
expect(@one.parent.ref).to eq(@container.ref)
end
after do
@catalog.clear(true)
end
end
it "should have a 'stage' metaparam" do
expect(Puppet::Type.metaparamclass(:stage)).to be_instance_of(Class)
end
describe "#suitable?" do
let(:type) { Puppet::Type.type(:file) }
let(:resource) { type.new :path => tmpfile('suitable') }
let(:provider) { resource.provider }
it "should be suitable if its type doesn't use providers" do
allow(type).to receive(:paramclass).with(:provider).and_return(nil)
expect(resource).to be_suitable
end
it "should be suitable if it has a provider which is suitable" do
expect(resource).to be_suitable
end
it "should not be suitable if it has a provider which is not suitable" do
allow(provider.class).to receive(:suitable?).and_return(false)
expect(resource).not_to be_suitable
end
it "should be suitable if it does not have a provider and there is a default provider" do
allow(resource).to receive(:provider).and_return(nil)
expect(resource).to be_suitable
end
it "should not be suitable if it doesn't have a provider and there is not default provider" do
allow(resource).to receive(:provider).and_return(nil)
allow(type).to receive(:defaultprovider).and_return(nil)
expect(resource).not_to be_suitable
end
end
describe "::instances" do
after :each do Puppet::Type.rmtype(:type_spec_fake_type) end
let :type do
Puppet::Type.newtype(:type_spec_fake_type) do
newparam(:name) do
isnamevar
end
newproperty(:prop1) {}
end
Puppet::Type.type(:type_spec_fake_type)
end
it "should not fail if no suitable providers are found" do
type.provide(:fake1) do
confine :exists => '/no/such/file'
mk_resource_methods
end
expect { expect(type.instances).to eq([]) }.to_not raise_error
end
context "with a default provider" do
before :each do
type.provide(:default) do
defaultfor :operatingsystem => Facter.value(:operatingsystem)
mk_resource_methods
class << self
attr_accessor :names
end
def self.instance(name)
new(:name => name, :ensure => :present)
end
def self.instances
@instances ||= names.collect { |name| instance(name.to_s) }
end
@names = [:one, :two]
end
end
it "should return only instances of the type" do
expect(type.instances).to be_all {|x| x.is_a? type }
end
it "should return instances from the default provider" do
expect(type.instances.map(&:name)).to eq(["one", "two"])
end
it "should return instances from all providers" do
type.provide(:fake1, :parent => :default) { @names = [:three, :four] }
expect(type.instances.map(&:name)).to eq(["one", "two", "three", "four"])
end
it "should not return instances from unsuitable providers" do
type.provide(:fake1, :parent => :default) do
@names = [:three, :four]
confine :exists => "/no/such/file"
end
expect(type.instances.map(&:name)).to eq(["one", "two"])
end
end
end
describe "::ensurable?" do
before :each do
class TestEnsurableType < Puppet::Type
def exists?; end
def create; end
def destroy; end
end
end
it "is true if the class has exists?, create, and destroy methods defined" do
expect(TestEnsurableType).to be_ensurable
end
it "is false if exists? is not defined" do
TestEnsurableType.class_eval { remove_method(:exists?) }
expect(TestEnsurableType).not_to be_ensurable
end
it "is false if create is not defined" do
TestEnsurableType.class_eval { remove_method(:create) }
expect(TestEnsurableType).not_to be_ensurable
end
it "is false if destroy is not defined" do
TestEnsurableType.class_eval { remove_method(:destroy) }
expect(TestEnsurableType).not_to be_ensurable
end
end
end
describe Puppet::Type::RelationshipMetaparam do
include PuppetSpec::Files
it "should be a subclass of Puppet::Parameter" do
expect(Puppet::Type::RelationshipMetaparam.superclass).to equal(Puppet::Parameter)
end
it "should be able to produce a list of subclasses" do
expect(Puppet::Type::RelationshipMetaparam).to respond_to(:subclasses)
end
describe "when munging relationships" do
before do
@path = File.expand_path('/foo')
@resource = Puppet::Type.type(:file).new :name => @path
@metaparam = Puppet::Type.metaparamclass(:require).new :resource => @resource
end
it "should accept Puppet::Resource instances" do
ref = Puppet::Resource.new(:file, @path)
expect(@metaparam.munge(ref)[0]).to equal(ref)
end
it "should turn any string into a Puppet::Resource" do
expect(@metaparam.munge("File[/ref]")[0]).to be_instance_of(Puppet::Resource)
end
end
it "should be able to validate relationships" do
expect(Puppet::Type.metaparamclass(:require).new(:resource => double("resource"))).to respond_to(:validate_relationship)
end
describe 'if any specified resource is not in the catalog' do
let(:catalog) { double('catalog') }
let(:resource) do
double(
'resource',
:catalog => catalog,
:ref => 'resource',
:line= => nil,
:line => nil,
:file= => nil,
:file => nil
)
end
let(:param) { Puppet::Type.metaparamclass(:require).new(:resource => resource, :value => %w{Foo[bar] Class[test]}) }
before do
expect(catalog).to receive(:resource).with("Foo[bar]").and_return("something")
expect(catalog).to receive(:resource).with("Class[Test]").and_return(nil)
end
describe "and the resource doesn't have a file or line number" do
it "raises an error" do
expect { param.validate_relationship }.to raise_error do |error|
expect(error).to be_a Puppet::ResourceError
expect(error.message).to match %r[Class\[Test\]]
end
end
end
describe "and the resource has a file or line number" do
before do
allow(resource).to receive(:line).and_return('42')
allow(resource).to receive(:file).and_return('/hitchhikers/guide/to/the/galaxy')
end
it "raises an error with context" do
expect { param.validate_relationship }.to raise_error do |error|
expect(error).to be_a Puppet::ResourceError
expect(error.message).to match %r[Class\[Test\]]
expect(error.message).to match %r[\(file: /hitchhikers/guide/to/the/galaxy, line: 42\)]
end
end
end
end
end
describe Puppet::Type.metaparamclass(:audit) do
include PuppetSpec::Files
before do
@resource = Puppet::Type.type(:file).new :path => make_absolute('/foo')
end
it "should default to being nil" do
expect(@resource[:audit]).to be_nil
end
it "should specify all possible properties when asked to audit all properties" do
@resource[:audit] = :all
list = @resource.class.properties.collect { |p| p.name }
expect(@resource[:audit]).to eq(list)
end
it "should accept the string 'all' to specify auditing all possible properties" do
@resource[:audit] = 'all'
list = @resource.class.properties.collect { |p| p.name }
expect(@resource[:audit]).to eq(list)
end
it "should fail if asked to audit an invalid property" do
expect { @resource[:audit] = :foobar }.to raise_error(Puppet::Error)
end
it "should create an attribute instance for each auditable property" do
@resource[:audit] = :mode
expect(@resource.parameter(:mode)).not_to be_nil
end
it "should accept properties specified as a string" do
@resource[:audit] = "mode"
expect(@resource.parameter(:mode)).not_to be_nil
end
it "should not create attribute instances for parameters, only properties" do
@resource[:audit] = :noop
expect(@resource.parameter(:noop)).to be_nil
end
describe "when generating the uniqueness key" do
it "should include all of the key_attributes in alphabetical order by attribute name" do
allow(Puppet::Type.type(:file)).to receive(:key_attributes).and_return([:path, :mode, :owner])
allow(Puppet::Type.type(:file)).to receive(:title_patterns).and_return(
[ [ /(.*)/, [ [:path, lambda{|x| x} ] ] ] ]
)
myfile = make_absolute('/my/file')
res = Puppet::Type.type(:file).new( :title => myfile, :path => myfile, :owner => 'root', :content => 'hello' )
expect(res.uniqueness_key).to eq([ nil, 'root', myfile])
end
end
context "type attribute bracket methods" do
after :each do Puppet::Type.rmtype(:attributes) end
let :type do
Puppet::Type.newtype(:attributes) do
newparam(:name) {}
end
end
it "should work with parameters" do
type.newparam(:param) {}
instance = type.new(:name => 'test')
expect { instance[:param] = true }.to_not raise_error
expect { instance["param"] = true }.to_not raise_error
expect(instance[:param]).to eq(true)
expect(instance["param"]).to eq(true)
end
it "should work with meta-parameters" do
instance = type.new(:name => 'test')
expect { instance[:noop] = true }.to_not raise_error
expect { instance["noop"] = true }.to_not raise_error
expect(instance[:noop]).to eq(true)
expect(instance["noop"]).to eq(true)
end
it "should work with properties" do
type.newproperty(:property) {}
instance = type.new(:name => 'test')
expect { instance[:property] = true }.to_not raise_error
expect { instance["property"] = true }.to_not raise_error
expect(instance.property(:property)).to be
expect(instance.should(:property)).to be_truthy
end
it "should handle proprieties correctly" do
# Order of assignment is significant in this test.
[:one, :two, :three].each {|prop| type.newproperty(prop) {} }
instance = type.new(:name => "test")
instance[:one] = "boo"
one = instance.property(:one)
expect(instance.properties).to eq [one]
instance[:three] = "rah"
three = instance.property(:three)
expect(instance.properties).to eq [one, three]
instance[:two] = "whee"
two = instance.property(:two)
expect(instance.properties).to eq [one, two, three]
end
it "newattr should handle required features correctly" do
Puppet::Util::Log.level = :debug
type.feature :feature1, "one"
type.feature :feature2, "two"
type.newproperty(:none) {}
type.newproperty(:one, :required_features => :feature1) {}
type.newproperty(:two, :required_features => [:feature1, :feature2]) {}
nope = type.provide(:nope) {}
maybe = type.provide(:maybe) { has_features :feature1 }
yep = type.provide(:yep) { has_features :feature1, :feature2 }
[nope, maybe, yep].each_with_index do |provider, i|
rsrc = type.new(:provider => provider.name, :name => "test#{i}",
:none => "a", :one => "b", :two => "c")
expect(rsrc.should(:none)).to be
if provider.declared_feature? :feature1
expect(rsrc.should(:one)).to be
else
expect(rsrc.should(:one)).to_not be
expect(@logs.find {|l| l.message =~ /not managing attribute one/ }).to be
end
if provider.declared_feature? :feature2
expect(rsrc.should(:two)).to be
else
expect(rsrc.should(:two)).to_not be
expect(@logs.find {|l| l.message =~ /not managing attribute two/ }).to be
end
end
end
end
end
|