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
|
require 'spec_helper'
require 'puppet_spec/files'
require 'puppet_spec/compiler'
require 'puppet/pops'
require 'puppet/loaders'
describe 'loader helper classes' do
it 'NamedEntry holds values and is frozen' do
ne = Puppet::Pops::Loader::Loader::NamedEntry.new('name', 'value', 'origin')
expect(ne.frozen?).to be_truthy
expect(ne.typed_name).to eql('name')
expect(ne.origin).to eq('origin')
expect(ne.value).to eq('value')
end
it 'TypedName holds values and is frozen' do
tn = Puppet::Pops::Loader::TypedName.new(:function, '::foo::bar')
expect(tn.frozen?).to be_truthy
expect(tn.type).to eq(:function)
expect(tn.name_parts).to eq(['foo', 'bar'])
expect(tn.name).to eq('foo::bar')
expect(tn.qualified?).to be_truthy
end
it 'TypedName converts name to lower case' do
tn = Puppet::Pops::Loader::TypedName.new(:type, '::Foo::Bar')
expect(tn.name_parts).to eq(['foo', 'bar'])
expect(tn.name).to eq('foo::bar')
end
it 'TypedName is case insensitive' do
expect(Puppet::Pops::Loader::TypedName.new(:type, '::Foo::Bar')).to eq(Puppet::Pops::Loader::TypedName.new(:type, '::foo::bar'))
end
end
describe 'loaders' do
include PuppetSpec::Files
include PuppetSpec::Compiler
let(:module_without_metadata) { File.join(config_dir('wo_metadata_module'), 'modules') }
let(:module_without_lib) { File.join(config_dir('module_no_lib'), 'modules') }
let(:mix_4x_and_3x_functions) { config_dir('mix_4x_and_3x_functions') }
let(:module_with_metadata) { File.join(config_dir('single_module'), 'modules') }
let(:dependent_modules_with_metadata) { config_dir('dependent_modules_with_metadata') }
let(:no_modules) { config_dir('no_modules') }
let(:user_metadata_path) { File.join(dependent_modules_with_metadata, 'modules/user/metadata.json') }
let(:usee_metadata_path) { File.join(dependent_modules_with_metadata, 'modules/usee/metadata.json') }
let(:usee2_metadata_path) { File.join(dependent_modules_with_metadata, 'modules/usee2/metadata.json') }
let(:empty_test_env) { environment_for() }
# Loaders caches the puppet_system_loader, must reset between tests
before :each do
allow(File).to receive(:read).and_call_original
end
context 'when loading pp resource types using auto loading' do
let(:pp_resources) { config_dir('pp_resources') }
let(:environments) { Puppet::Environments::Directories.new(my_fixture_dir, []) }
let(:env) { Puppet::Node::Environment.create(:'pp_resources', [File.join(pp_resources, 'modules')]) }
let(:compiler) { Puppet::Parser::Compiler.new(Puppet::Node.new("test", :environment => env)) }
let(:loader) { Puppet::Pops::Loaders.loaders.find_loader(nil) }
before(:each) do
Puppet.push_context({ :environments => environments })
Puppet.push_context({ :loaders => compiler.loaders })
end
after(:each) do
Puppet.pop_context()
end
it 'finds a resource type that resides under <environment root>/.resource_types' do
rt = loader.load(:resource_type_pp, 'myresource')
expect(rt).to be_a(Puppet::Pops::Resource::ResourceTypeImpl)
end
it 'does not allow additional logic in the file' do
expect{loader.load(:resource_type_pp, 'addlogic')}.to raise_error(ArgumentError, /it has additional logic/)
end
it 'does not allow creation of classes other than Puppet::Resource::ResourceType3' do
expect{loader.load(:resource_type_pp, 'badcall')}.to raise_error(ArgumentError, /no call to Puppet::Resource::ResourceType3.new found/)
end
it 'does not allow creation of other types' do
expect{loader.load(:resource_type_pp, 'wrongname')}.to raise_error(ArgumentError, /produced resource type with the wrong name, expected 'wrongname', actual 'notwrongname'/)
end
it 'errors with message about empty file for files that contain no logic' do
expect{loader.load(:resource_type_pp, 'empty')}.to raise_error(ArgumentError, /it is empty/)
end
it 'creates a pcore resource type loader' do
pcore_loader = env.loaders.runtime3_type_loader.resource_3x_loader
expect(pcore_loader.loader_name).to eq('pcore_resource_types')
expect(pcore_loader).to be_a(Puppet::Pops::Loader::ModuleLoaders::FileBased)
end
it 'does not create a pcore resource type loader if requested not to' do
env.loaders = nil # clear cached loaders
loaders = Puppet::Pops::Loaders.new(env, false, false)
expect(loaders.runtime3_type_loader.resource_3x_loader).to be_nil
end
it 'does not create a pcore resource type loader for an empty environment' do
loaders = Puppet::Pops::Loaders.new(empty_test_env)
expect(loaders.runtime3_type_loader.resource_3x_loader).to be_nil
end
end
def expect_loader_hierarchy(loaders, expected_loaders)
actual_loaders = []
loader = loaders.private_environment_loader
while loader
actual_loaders << [loader.loader_name, loader]
loader = loader.parent
end
expect(actual_loaders).to contain_exactly(*expected_loaders)
end
it 'creates a puppet_system loader' do
loaders = Puppet::Pops::Loaders.new(empty_test_env)
expect(loaders.puppet_system_loader()).to be_a(Puppet::Pops::Loader::ModuleLoaders::FileBased)
end
it 'creates a cached_puppet loader when for_agent is set to true' do
loaders = Puppet::Pops::Loaders.new(empty_test_env, true)
expect(loaders.puppet_cache_loader()).to be_a(Puppet::Pops::Loader::ModuleLoaders::LibRootedFileBased)
end
it 'creates a cached_puppet loader that can load version 4 functions, version 3 functions, and data types, in that order' do
loaders = Puppet::Pops::Loaders.new(empty_test_env, true)
expect(loaders.puppet_cache_loader.loadables).to eq([:func_4x, :func_3x, :datatype])
end
it 'does not create a cached_puppet loader when for_agent is the default false value' do
loaders = Puppet::Pops::Loaders.new(empty_test_env)
expect(loaders.puppet_cache_loader()).to be(nil)
end
it 'creates an environment loader' do
loaders = Puppet::Pops::Loaders.new(empty_test_env)
expect(loaders.public_environment_loader()).to be_a(Puppet::Pops::Loader::SimpleEnvironmentLoader)
expect(loaders.public_environment_loader().to_s).to eql("(SimpleEnvironmentLoader 'environment')")
expect(loaders.private_environment_loader()).to be_a(Puppet::Pops::Loader::DependencyLoader)
expect(loaders.private_environment_loader().to_s).to eql("(DependencyLoader 'environment private' [])")
end
it 'creates a hierarchy of loaders' do
expect_loader_hierarchy(
Puppet::Pops::Loaders.new(empty_test_env),
[
[nil, Puppet::Pops::Loader::StaticLoader],
['puppet_system', Puppet::Pops::Loader::ModuleLoaders::LibRootedFileBased],
[empty_test_env.name, Puppet::Pops::Loader::Runtime3TypeLoader],
['environment', Puppet::Pops::Loader::SimpleEnvironmentLoader],
['environment private', Puppet::Pops::Loader::DependencyLoader],
]
)
end
it 'excludes the Runtime3TypeLoader when tasks are enabled' do
Puppet[:tasks] = true
expect_loader_hierarchy(
Puppet::Pops::Loaders.new(empty_test_env),
[
[nil, Puppet::Pops::Loader::StaticLoader],
['puppet_system', Puppet::Pops::Loader::ModuleLoaders::LibRootedFileBased],
['environment', Puppet::Pops::Loader::ModuleLoaders::EmptyLoader],
['environment private', Puppet::Pops::Loader::DependencyLoader],
]
)
end
it 'includes the agent cache loader when for_agent is true' do
expect_loader_hierarchy(
Puppet::Pops::Loaders.new(empty_test_env, true),
[
[nil, Puppet::Pops::Loader::StaticLoader],
['puppet_system', Puppet::Pops::Loader::ModuleLoaders::LibRootedFileBased],
['cached_puppet_lib', Puppet::Pops::Loader::ModuleLoaders::LibRootedFileBased],
[empty_test_env.name, Puppet::Pops::Loader::Runtime3TypeLoader],
['environment', Puppet::Pops::Loader::SimpleEnvironmentLoader],
['environment private', Puppet::Pops::Loader::DependencyLoader],
],
)
end
context 'when loading from a module' do
it 'loads a ruby function using a qualified or unqualified name' do
loaders = Puppet::Pops::Loaders.new(environment_for(module_with_metadata))
modulea_loader = loaders.public_loader_for_module('modulea')
unqualified_function = modulea_loader.load_typed(typed_name(:function, 'rb_func_a')).value
qualified_function = modulea_loader.load_typed(typed_name(:function, 'modulea::rb_func_a')).value
expect(unqualified_function).to be_a(Puppet::Functions::Function)
expect(qualified_function).to be_a(Puppet::Functions::Function)
expect(unqualified_function.class.name).to eq('rb_func_a')
expect(qualified_function.class.name).to eq('modulea::rb_func_a')
end
it 'loads a puppet function using a qualified name in module' do
loaders = Puppet::Pops::Loaders.new(environment_for(module_with_metadata))
modulea_loader = loaders.public_loader_for_module('modulea')
qualified_function = modulea_loader.load_typed(typed_name(:function, 'modulea::hello')).value
expect(qualified_function).to be_a(Puppet::Functions::Function)
expect(qualified_function.class.name).to eq('modulea::hello')
end
it 'loads a puppet function from a module without a lib directory' do
loaders = Puppet::Pops::Loaders.new(environment_for(module_without_lib))
modulea_loader = loaders.public_loader_for_module('modulea')
qualified_function = modulea_loader.load_typed(typed_name(:function, 'modulea::hello')).value
expect(qualified_function).to be_a(Puppet::Functions::Function)
expect(qualified_function.class.name).to eq('modulea::hello')
end
it 'loads a puppet function in a sub namespace of module' do
loaders = Puppet::Pops::Loaders.new(environment_for(module_with_metadata))
modulea_loader = loaders.public_loader_for_module('modulea')
qualified_function = modulea_loader.load_typed(typed_name(:function, 'modulea::subspace::hello')).value
expect(qualified_function).to be_a(Puppet::Functions::Function)
expect(qualified_function.class.name).to eq('modulea::subspace::hello')
end
it 'loader does not add namespace if not given' do
loaders = Puppet::Pops::Loaders.new(environment_for(module_without_metadata))
moduleb_loader = loaders.public_loader_for_module('moduleb')
expect(moduleb_loader.load_typed(typed_name(:function, 'rb_func_b'))).to be_nil
end
it 'loader allows loading a function more than once' do
allow(File).to receive(:read).with(user_metadata_path, {:encoding => 'utf-8'}).and_return('')
allow(File).to receive(:read).with(usee_metadata_path, {:encoding => 'utf-8'}).and_raise(Errno::ENOENT)
allow(File).to receive(:read).with(usee2_metadata_path, {:encoding => 'utf-8'}).and_raise(Errno::ENOENT)
env = environment_for(File.join(dependent_modules_with_metadata, 'modules'))
loaders = Puppet::Pops::Loaders.new(env)
moduleb_loader = loaders.private_loader_for_module('user')
function = moduleb_loader.load_typed(typed_name(:function, 'user::caller')).value
expect(function.call({})).to eql("usee::callee() was told 'passed value' + I am user::caller()")
function = moduleb_loader.load_typed(typed_name(:function, 'user::caller')).value
expect(function.call({})).to eql("usee::callee() was told 'passed value' + I am user::caller()")
end
end
context 'when loading from a module with metadata' do
let(:env) { environment_for(File.join(dependent_modules_with_metadata, 'modules')) }
let(:scope) { Puppet::Parser::Compiler.new(Puppet::Node.new("test", :environment => env)).newscope(nil) }
let(:environmentpath) { my_fixture_dir }
let(:node) { Puppet::Node.new('test', :facts => Puppet::Node::Facts.new('facts', {}), :environment => 'dependent_modules_with_metadata') }
let(:compiler) { Puppet::Parser::Compiler.new(node) }
let(:user_metadata) {
{
'name' => 'test-user',
'author' => 'test',
'description' => '',
'license' => '',
'source' => '',
'version' => '1.0.0',
'dependencies' => []
}
}
def compile_and_get_notifications(code)
Puppet[:code] = code
catalog = block_given? ? compiler.compile { |c| yield(compiler.topscope); c } : compiler.compile
catalog.resources.map(&:ref).select { |r| r.start_with?('Notify[') }.map { |r| r[7..-2] }
end
around(:each) do |example|
# Initialize settings to get a full compile as close as possible to a real
# environment load
Puppet.settings.initialize_global_settings
# Initialize loaders based on the environmentpath. It does not work to
# just set the setting environmentpath for some reason - this achieves the same:
# - first a loader is created, loading directory environments from the fixture (there is
# one environment, 'sample', which will be loaded since the node references this
# environment by name).
# - secondly, the created env loader is set as 'environments' in the puppet context.
#
environments = Puppet::Environments::Directories.new(environmentpath, [])
Puppet.override(:environments => environments) do
example.run
end
end
it 'all dependent modules are visible' do
allow(File).to receive(:read).with(user_metadata_path, {:encoding => 'utf-8'}).and_return(user_metadata.merge('dependencies' => [ { 'name' => 'test-usee'}, { 'name' => 'test-usee2'} ]).to_pson)
allow(File).to receive(:read).with(usee_metadata_path, {:encoding => 'utf-8'}).and_raise(Errno::ENOENT)
allow(File).to receive(:read).with(usee2_metadata_path, {:encoding => 'utf-8'}).and_raise(Errno::ENOENT)
loaders = Puppet::Pops::Loaders.new(env)
moduleb_loader = loaders.private_loader_for_module('user')
function = moduleb_loader.load_typed(typed_name(:function, 'user::caller')).value
expect(function.call({})).to eql("usee::callee() was told 'passed value' + I am user::caller()")
function = moduleb_loader.load_typed(typed_name(:function, 'user::caller2')).value
expect(function.call({})).to eql("usee2::callee() was told 'passed value' + I am user::caller2()")
end
it 'all other modules are visible when tasks are enabled' do
Puppet[:tasks] = true
env = environment_for(File.join(dependent_modules_with_metadata, 'modules'))
loaders = Puppet::Pops::Loaders.new(env)
moduleb_loader = loaders.private_loader_for_module('user')
function = moduleb_loader.load_typed(typed_name(:function, 'user::caller')).value
expect(function.call({})).to eql("usee::callee() was told 'passed value' + I am user::caller()")
end
[ 'outside a function', 'a puppet function declared under functions', 'a puppet function declared in init.pp', 'a ruby function'].each_with_index do |from, from_idx|
[ {:from => from, :called => 'a puppet function declared under functions', :expects => "I'm the function usee::usee_puppet()"},
{:from => from, :called => 'a puppet function declared in init.pp', :expects => "I'm the function usee::usee_puppet_init()"},
{:from => from, :called => 'a ruby function', :expects => "I'm the function usee::usee_ruby()"} ].each_with_index do |desc, called_idx|
case_number = from_idx * 3 + called_idx + 1
it "can call #{desc[:called]} from #{desc[:from]} when dependency is present in metadata.json" do
allow(File).to receive(:read).with(user_metadata_path, {:encoding => 'utf-8'}).and_return(user_metadata.merge('dependencies' => [ { 'name' => 'test-usee'} ]).to_pson)
allow(File).to receive(:read).with(usee_metadata_path, {:encoding => 'utf-8'}).and_raise(Errno::ENOENT)
allow(File).to receive(:read).with(usee2_metadata_path, {:encoding => 'utf-8'}).and_raise(Errno::ENOENT)
Puppet[:code] = "$case_number = #{case_number}\ninclude ::user"
catalog = compiler.compile
resource = catalog.resource('Notify', "case_#{case_number}")
expect(resource).not_to be_nil
expect(resource['message']).to eq(desc[:expects])
end
it "can call #{desc[:called]} from #{desc[:from]} when no metadata is present" do
times_has_metadata_called = 0
allow_any_instance_of(Puppet::Module).to receive('has_metadata?') { times_has_metadata_called += 1 }.and_return(false)
Puppet[:code] = "$case_number = #{case_number}\ninclude ::user"
catalog = compiler.compile
resource = catalog.resource('Notify', "case_#{case_number}")
expect(resource).not_to be_nil
expect(resource['message']).to eq(desc[:expects])
expect(times_has_metadata_called).to be >= 1
end
it "can not call #{desc[:called]} from #{desc[:from]} if dependency is missing in existing metadata.json" do
allow(File).to receive(:read).with(user_metadata_path, {:encoding => 'utf-8'}).and_return(user_metadata.merge('dependencies' => []).to_pson)
allow(File).to receive(:read).with(usee_metadata_path, {:encoding => 'utf-8'}).and_raise(Errno::ENOENT)
allow(File).to receive(:read).with(usee2_metadata_path, {:encoding => 'utf-8'}).and_raise(Errno::ENOENT)
Puppet[:code] = "$case_number = #{case_number}\ninclude ::user"
catalog = compiler.compile
resource = catalog.resource('Notify', "case_#{case_number}")
expect(resource).not_to be_nil
expect(resource['message']).to eq(desc[:expects])
end
end
end
it "a type can reference an autoloaded type alias from another module when dependency is present in metadata.json" do
allow(File).to receive(:read).with(user_metadata_path, {:encoding => 'utf-8'}).and_return(user_metadata.merge('dependencies' => [ { 'name' => 'test-usee'} ]).to_pson)
allow(File).to receive(:read).with(usee_metadata_path, {:encoding => 'utf-8'}).and_raise(Errno::ENOENT)
allow(File).to receive(:read).with(usee2_metadata_path, {:encoding => 'utf-8'}).and_raise(Errno::ENOENT)
expect(eval_and_collect_notices(<<-CODE, node)).to eq(['ok'])
assert_type(Usee::Zero, 0)
notice(ok)
CODE
end
it "a type can reference an autoloaded type alias from another module when no metadata is present" do
expect_any_instance_of(Puppet::Module).to receive('has_metadata?').at_least(:once).and_return(false)
expect(eval_and_collect_notices(<<-CODE, node)).to eq(['ok'])
assert_type(Usee::Zero, 0)
notice(ok)
CODE
end
it "a type can reference a type alias from another module when other module has it declared in init.pp" do
allow(File).to receive(:read).with(user_metadata_path, {:encoding => 'utf-8'}).and_return(user_metadata.merge('dependencies' => [ { 'name' => 'test-usee'} ]).to_pson)
allow(File).to receive(:read).with(usee_metadata_path, {:encoding => 'utf-8'}).and_raise(Errno::ENOENT)
allow(File).to receive(:read).with(usee2_metadata_path, {:encoding => 'utf-8'}).and_raise(Errno::ENOENT)
expect(eval_and_collect_notices(<<-CODE, node)).to eq(['ok'])
include 'usee'
assert_type(Usee::One, 1)
notice(ok)
CODE
end
it "an autoloaded type can reference an autoloaded type alias from another module when dependency is present in metadata.json" do
allow(File).to receive(:read).with(user_metadata_path, {:encoding => 'utf-8'}).and_return(user_metadata.merge('dependencies' => [ { 'name' => 'test-usee'} ]).to_pson)
allow(File).to receive(:read).with(usee_metadata_path, {:encoding => 'utf-8'}).and_raise(Errno::ENOENT)
allow(File).to receive(:read).with(usee2_metadata_path, {:encoding => 'utf-8'}).and_raise(Errno::ENOENT)
expect(eval_and_collect_notices(<<-CODE, node)).to eq(['ok'])
assert_type(User::WithUseeZero, [0])
notice(ok)
CODE
end
it "an autoloaded type can reference an autoloaded type alias from another module when other module has it declared in init.pp" do
allow(File).to receive(:read).with(user_metadata_path, {:encoding => 'utf-8'}).and_return(user_metadata.merge('dependencies' => [ { 'name' => 'test-usee'} ]).to_pson)
allow(File).to receive(:read).with(usee_metadata_path, {:encoding => 'utf-8'}).and_raise(Errno::ENOENT)
allow(File).to receive(:read).with(usee2_metadata_path, {:encoding => 'utf-8'}).and_raise(Errno::ENOENT)
expect(eval_and_collect_notices(<<-CODE, node)).to eq(['ok'])
include 'usee'
assert_type(User::WithUseeOne, [1])
notice(ok)
CODE
end
end
context 'when loading from a module without metadata' do
it 'loads a ruby function with a qualified name' do
loaders = Puppet::Pops::Loaders.new(environment_for(module_without_metadata))
moduleb_loader = loaders.public_loader_for_module('moduleb')
function = moduleb_loader.load_typed(typed_name(:function, 'moduleb::rb_func_b')).value
expect(function).to be_a(Puppet::Functions::Function)
expect(function.class.name).to eq('moduleb::rb_func_b')
end
it 'all other modules are visible' do
env = environment_for(module_with_metadata, module_without_metadata)
loaders = Puppet::Pops::Loaders.new(env)
moduleb_loader = loaders.private_loader_for_module('moduleb')
function = moduleb_loader.load_typed(typed_name(:function, 'moduleb::rb_func_b')).value
expect(function.call({})).to eql("I am modulea::rb_func_a() + I am moduleb::rb_func_b()")
end
end
context 'when loading from an environment without modules' do
let(:node) { Puppet::Node.new('test', :facts => Puppet::Node::Facts.new('facts', {}), :environment => 'no_modules') }
it 'can load the same function twice with two different compilations and produce different values' do
Puppet.settings.initialize_global_settings
environments = Puppet::Environments::Directories.new(my_fixture_dir, [])
Puppet.override(:environments => environments) do
compiler = Puppet::Parser::Compiler.new(node)
compiler.topscope['value_from_scope'] = 'first'
catalog = compiler.compile
expect(catalog.resource('Notify[first]')).to be_a(Puppet::Resource)
expect(Puppet::Pops::Loader::RubyFunctionInstantiator).not_to receive(:create)
compiler = Puppet::Parser::Compiler.new(node)
compiler.topscope['value_from_scope'] = 'second'
catalog = compiler.compile
expect(catalog.resource('Notify[first]')).to be_nil
expect(catalog.resource('Notify[second]')).to be_a(Puppet::Resource)
end
end
end
context 'when calling' do
let(:env) { environment_for(mix_4x_and_3x_functions) }
let(:compiler) { Puppet::Parser::Compiler.new(Puppet::Node.new("test", :environment => env)) }
let(:scope) { compiler.topscope }
let(:loader) { compiler.loaders.private_loader_for_module('user') }
before(:each) do
Puppet.push_context(:current_environment => scope.environment, :global_scope => scope, :loaders => compiler.loaders)
end
it 'a 3x function in dependent module can be called from a 4x function' do
function = loader.load_typed(typed_name(:function, 'user::caller')).value
expect(function.call(scope)).to eql("usee::callee() got 'first' - usee::callee() got 'second'")
end
it 'a 3x function in dependent module can be called from a puppet function' do
function = loader.load_typed(typed_name(:function, 'user::puppetcaller')).value
expect(function.call(scope)).to eql("usee::callee() got 'first' - usee::callee() got 'second'")
end
it 'a 4x function can be called from a puppet function' do
function = loader.load_typed(typed_name(:function, 'user::puppetcaller4')).value
expect(function.call(scope)).to eql("usee::callee() got 'first' - usee::callee() got 'second'")
end
it 'a puppet function can be called from a 4x function' do
function = loader.load_typed(typed_name(:function, 'user::callingpuppet')).value
expect(function.call(scope)).to eql("Did you call to say you love me?")
end
it 'a 3x function can be called with caller scope propagated from a 4x function' do
function = loader.load_typed(typed_name(:function, 'user::caller_ws')).value
expect(function.call(scope, 'passed in scope')).to eql("usee::callee_ws() got 'passed in scope'")
end
it 'calls can be made to a non core function via the call() function' do
call_function = loader.load_typed(typed_name(:function, 'call')).value
expect(call_function.call(scope, 'user::puppetcaller4')).to eql("usee::callee() got 'first' - usee::callee() got 'second'")
end
end
context 'when a 3x load takes place' do
let(:env) { environment_for(mix_4x_and_3x_functions) }
let(:compiler) { Puppet::Parser::Compiler.new(Puppet::Node.new("test", :environment => env)) }
let(:scope) { compiler.topscope }
let(:loader) { compiler.loaders.private_loader_for_module('user') }
before(:each) do
Puppet.push_context(:current_environment => scope.environment, :global_scope => scope, :loaders => compiler.loaders)
end
after(:each) do
Puppet.pop_context
end
it "a function with no illegal constructs can be loaded" do
function = loader.load_typed(typed_name(:function, 'good_func_load')).value
expect(function.call(scope)).to eql(Float("3.14"))
end
it "a function with syntax error has helpful error message" do
expect {
loader.load_typed(typed_name(:function, 'func_with_syntax_error'))
}.to raise_error(/syntax error, unexpected (keyword_|`)?end/)
end
end
context 'when a 3x load has illegal method added' do
let(:env) { environment_for(mix_4x_and_3x_functions) }
let(:compiler) { Puppet::Parser::Compiler.new(Puppet::Node.new("test", :environment => env)) }
let(:scope) { compiler.topscope }
let(:loader) { compiler.loaders.private_loader_for_module('user') }
before(:each) do
Puppet.push_context(:current_environment => scope.environment, :global_scope => scope, :loaders => compiler.loaders)
end
after(:each) do
Puppet.pop_context
end
it "outside function body is reported as an error" do
expect { loader.load_typed(typed_name(:function, 'bad_func_load')) }.to raise_error(/Illegal method definition/)
end
it "to self outside function body is reported as an error" do
expect { loader.load_typed(typed_name(:function, 'bad_func_load5')) }.to raise_error(/Illegal method definition.*'bad_func_load5_illegal_method'/)
end
it "outside body is reported as an error even if returning the right func_info" do
expect { loader.load_typed(typed_name(:function, 'bad_func_load2'))}.to raise_error(/Illegal method definition/)
end
it "inside function body is reported as an error" do
expect {
f = loader.load_typed(typed_name(:function, 'bad_func_load3')).value
f.call(scope)
}.to raise_error(/Illegal method definition.*'bad_func_load3_illegal_method'/)
end
it "to self inside function body is reported as an error" do
expect {
f = loader.load_typed(typed_name(:function, 'bad_func_load4')).value
f.call(scope)
}.to raise_error(/Illegal method definition.*'bad_func_load4_illegal_method'/)
end
end
context 'when causing a 3x load followed by a 4x load' do
let(:env) { environment_for(mix_4x_and_3x_functions) }
let(:compiler) { Puppet::Parser::Compiler.new(Puppet::Node.new("test", :environment => env)) }
let(:scope) { compiler.topscope }
let(:loader) { compiler.loaders.private_loader_for_module('user') }
before(:each) do
Puppet.push_context(:current_environment => scope.environment, :global_scope => scope, :loaders => compiler.loaders)
end
after(:each) do
Puppet.pop_context
end
it 'a 3x function is loaded once' do
# create a 3x function that when called will do a load of "callee_ws"
Puppet::Parser::Functions::newfunction(:callee, :type => :rvalue, :arity => 1) do |args|
function_callee_ws(['passed in scope'])
end
expect(Puppet).not_to receive(:warning)
scope['passed_in_scope'] = 'value'
function = loader.load_typed(typed_name(:function, 'callee')).value
expect(function.call(scope, 'passed in scope')).to eql("usee::callee_ws() got 'value'")
function = loader.load_typed(typed_name(:function, 'callee_ws')).value
expect(function.call(scope, 'passed in scope')).to eql("usee::callee_ws() got 'value'")
end
it "an illegal function is loaded" do
expect {
loader.load_typed(typed_name(:function, 'bad_func_load3')).value
}.to raise_error(SecurityError, /Illegal method definition of method 'bad_func_load3_illegal_method' in source .*bad_func_load3.rb on line 8 in legacy function/)
end
end
context 'loading' do
let(:env_name) { 'testenv' }
let(:environments_dir) { Puppet[:environmentpath] }
let(:env_dir) { File.join(environments_dir, env_name) }
let(:env) { Puppet::Node::Environment.create(env_name.to_sym, [File.join(populated_env_dir, 'modules')]) }
let(:node) { Puppet::Node.new("test", :environment => env) }
let(:env_dir_files) {}
let(:populated_env_dir) do
dir_contained_in(environments_dir, env_name => env_dir_files)
PuppetSpec::Files.record_tmp(env_dir)
env_dir
end
context 'non autoloaded types and functions' do
let(:env_dir_files) {
{
'modules' => {
'tstf' => {
'manifests' => {
'init.pp' => <<-PUPPET.unindent
class tstf {
notice(testfunc())
}
PUPPET
}
},
'tstt' => {
'manifests' => {
'init.pp' => <<-PUPPET.unindent
class tstt {
notice(assert_type(GlobalType, 23))
}
PUPPET
}
}
}
}
}
it 'finds the function from a module' do
expect(eval_and_collect_notices(<<-PUPPET.unindent, node)).to eq(['hello from testfunc'])
function testfunc() {
'hello from testfunc'
}
include 'tstf'
PUPPET
end
it 'finds the type from a module' do
expect(eval_and_collect_notices(<<-PUPPET.unindent, node)).to eq(['23'])
type GlobalType = Integer
include 'tstt'
PUPPET
end
end
context 'types' do
let(:env_name) { 'testenv' }
let(:environments_dir) { Puppet[:environmentpath] }
let(:env_dir) { File.join(environments_dir, env_name) }
let(:env) { Puppet::Node::Environment.create(env_name.to_sym, [File.join(populated_env_dir, 'modules')]) }
let(:metadata_json) {
<<-JSON
{
"name": "example/%1$s",
"version": "0.0.2",
"source": "git@github.com/example/example-%1$s.git",
"dependencies": [],
"author": "Bob the Builder",
"license": "Apache-2.0"%2$s
}
JSON
}
let(:env_dir_files) do
{
'types' => {
'c.pp' => 'type C = Integer'
},
'modules' => {
'a' => {
'manifests' => {
'init.pp' => 'class a { notice(A::A) }'
},
'types' => {
'a.pp' => 'type A::A = Variant[B::B, String]',
'n.pp' => 'type A::N = C::C'
},
'metadata.json' => sprintf(metadata_json, 'a', ', "dependencies": [{ "name": "example/b" }]')
},
'b' => {
'types' => {
'b.pp' => 'type B::B = Variant[C::C, Float]',
'x.pp' => 'type B::X = A::A'
},
'metadata.json' => sprintf(metadata_json, 'b', ', "dependencies": [{ "name": "example/c" }]')
},
'c' => {
'types' => {
'init_typeset.pp' => <<-PUPPET.unindent,
type C = TypeSet[{
pcore_version => '1.0.0',
types => {
C => Integer,
D => Float
}
}]
PUPPET
'd.pp' => <<-PUPPET.unindent,
type C::D = TypeSet[{
pcore_version => '1.0.0',
types => {
X => String,
Y => Float
}
}]
PUPPET
'd' => {
'y.pp' => 'type C::D::Y = Integer'
}
},
'metadata.json' => sprintf(metadata_json, 'c', '')
},
'd' => {
'types' => {
'init_typeset.pp' => <<-PUPPET.unindent,
type D = TypeSet[{
pcore_version => '1.0.0',
types => {
P => Object[{}],
O => Object[{ parent => P }]
}
}]
PUPPET
},
'metadata.json' => sprintf(metadata_json, 'd', '')
}
}
}
end
before(:each) do
Puppet.push_context(:loaders => Puppet::Pops::Loaders.new(env))
end
after(:each) do
Puppet.pop_context
end
it 'resolves types using the loader that loaded the type a -> b -> c' do
type = Puppet::Pops::Types::TypeParser.singleton.parse('A::A', Puppet::Pops::Loaders.find_loader('a'))
expect(type).to be_a(Puppet::Pops::Types::PTypeAliasType)
expect(type.name).to eql('A::A')
type = type.resolved_type
expect(type).to be_a(Puppet::Pops::Types::PVariantType)
type = type.types[0]
expect(type.name).to eql('B::B')
type = type.resolved_type
expect(type).to be_a(Puppet::Pops::Types::PVariantType)
type = type.types[0]
expect(type.name).to eql('C::C')
type = type.resolved_type
expect(type).to be_a(Puppet::Pops::Types::PIntegerType)
end
it 'will resolve implicit transitive dependencies, a -> c' do
type = Puppet::Pops::Types::TypeParser.singleton.parse('A::N', Puppet::Pops::Loaders.find_loader('a'))
expect(type).to be_a(Puppet::Pops::Types::PTypeAliasType)
expect(type.name).to eql('A::N')
type = type.resolved_type
expect(type).to be_a(Puppet::Pops::Types::PTypeAliasType)
expect(type.name).to eql('C::C')
end
it 'will resolve reverse dependencies, b -> a' do
type = Puppet::Pops::Types::TypeParser.singleton.parse('B::X', Puppet::Pops::Loaders.find_loader('b'))
expect(type).to be_a(Puppet::Pops::Types::PTypeAliasType)
expect(type.name).to eql('B::X')
type = type.resolved_type
expect(type).to be_a(Puppet::Pops::Types::PTypeAliasType)
expect(type.name).to eql('A::A')
end
it 'does not resolve init_typeset when more qualified type is found in typeset' do
type = Puppet::Pops::Types::TypeParser.singleton.parse('C::D::X', Puppet::Pops::Loaders.find_loader('c'))
expect(type).to be_a(Puppet::Pops::Types::PTypeAliasType)
expect(type.resolved_type).to be_a(Puppet::Pops::Types::PStringType)
end
it 'defined TypeSet type shadows type defined inside of TypeSet' do
type = Puppet::Pops::Types::TypeParser.singleton.parse('C::D', Puppet::Pops::Loaders.find_loader('c'))
expect(type).to be_a(Puppet::Pops::Types::PTypeSetType)
end
it 'parent name search does not traverse parent loaders' do
type = Puppet::Pops::Types::TypeParser.singleton.parse('C::C', Puppet::Pops::Loaders.find_loader('c'))
expect(type).to be_a(Puppet::Pops::Types::PTypeAliasType)
expect(type.resolved_type).to be_a(Puppet::Pops::Types::PIntegerType)
end
it 'global type defined in environment trumps modules init_typeset type' do
type = Puppet::Pops::Types::TypeParser.singleton.parse('C', Puppet::Pops::Loaders.find_loader('c'))
expect(type).to be_a(Puppet::Pops::Types::PTypeAliasType)
expect(type.resolved_type).to be_a(Puppet::Pops::Types::PIntegerType)
end
it 'hit on qualified name trumps hit on typeset using parent name + traversal' do
type = Puppet::Pops::Types::TypeParser.singleton.parse('C::D::Y', Puppet::Pops::Loaders.find_loader('c'))
expect(type).to be_a(Puppet::Pops::Types::PTypeAliasType)
expect(type.resolved_type).to be_a(Puppet::Pops::Types::PIntegerType)
end
it 'hit on qualified name and subsequent hit in typeset when searching for other name causes collision' do
l = Puppet::Pops::Loaders.find_loader('c')
p = Puppet::Pops::Types::TypeParser.singleton
p.parse('C::D::Y', l)
expect { p.parse('C::D::X', l) }.to raise_error(/Attempt to redefine entity 'http:\/\/puppet.com\/2016.1\/runtime\/type\/c::d::y'/)
end
it 'hit in typeset using parent name and subsequent search that would cause hit on fqn does not cause collision (fqn already loaded from typeset)' do
l = Puppet::Pops::Loaders.find_loader('c')
p = Puppet::Pops::Types::TypeParser.singleton
p.parse('C::D::X', l)
type = p.parse('C::D::Y', l)
expect(type).to be_a(Puppet::Pops::Types::PTypeAliasType)
expect(type.resolved_type).to be_a(Puppet::Pops::Types::PFloatType)
end
it 'loads an object type from a typeset that references another type defined in the same typeset' do
l = Puppet::Pops::Loaders.find_loader('d').private_loader
p = Puppet::Pops::Types::TypeParser.singleton
type = p.parse('D::O', l)
expect(type).to be_a(Puppet::Pops::Types::PObjectType)
expect(type.resolved_parent).to be_a(Puppet::Pops::Types::PObjectType)
end
end
end
def environment_for(*module_paths)
Puppet::Node::Environment.create(:'*test*', module_paths)
end
def typed_name(type, name)
Puppet::Pops::Loader::TypedName.new(type, name)
end
def config_dir(config_name)
my_fixture(config_name)
end
end
|