puppet 3.5.0.rc1-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- data/COMMITTERS.md +244 -0
- data/CONTRIBUTING.md +87 -0
- data/Gemfile +88 -0
- data/LICENSE +17 -0
- data/README.md +75 -0
- data/Rakefile +68 -0
- data/bin/extlookup2hiera +56 -0
- data/bin/puppet +4 -0
- data/conf/auth.conf +120 -0
- data/conf/fileserver.conf +41 -0
- data/conf/tagmail.conf +16 -0
- data/examples/hiera/README.md +91 -0
- data/examples/hiera/etc/hiera.yaml +15 -0
- data/examples/hiera/etc/hieradb/common.yaml +3 -0
- data/examples/hiera/etc/hieradb/dc1.yaml +6 -0
- data/examples/hiera/etc/hieradb/development.yaml +2 -0
- data/examples/hiera/etc/puppet.conf +3 -0
- data/examples/hiera/modules/data/manifests/common.pp +4 -0
- data/examples/hiera/modules/ntp/manifests/config.pp +6 -0
- data/examples/hiera/modules/ntp/manifests/data.pp +4 -0
- data/examples/hiera/modules/ntp/templates/ntp.conf.erb +3 -0
- data/examples/hiera/modules/users/manifests/common.pp +4 -0
- data/examples/hiera/modules/users/manifests/dc1.pp +4 -0
- data/examples/hiera/modules/users/manifests/development.pp +4 -0
- data/examples/hiera/site.pp +3 -0
- data/ext/autotest/Rakefile +8 -0
- data/ext/autotest/config +43 -0
- data/ext/autotest/readme.rst +16 -0
- data/ext/build_defaults.yaml +23 -0
- data/ext/cert_inspector +140 -0
- data/ext/dbfix.sql +132 -0
- data/ext/debian/README.Debian +8 -0
- data/ext/debian/README.source +2 -0
- data/ext/debian/TODO.Debian +1 -0
- data/ext/debian/changelog.erb +1122 -0
- data/ext/debian/compat +1 -0
- data/ext/debian/control +143 -0
- data/ext/debian/copyright +361 -0
- data/ext/debian/docs +1 -0
- data/ext/debian/fileserver.conf +41 -0
- data/ext/debian/puppet-common.dirs +8 -0
- data/ext/debian/puppet-common.install +4 -0
- data/ext/debian/puppet-common.lintian-overrides +5 -0
- data/ext/debian/puppet-common.manpages +35 -0
- data/ext/debian/puppet-common.postinst +35 -0
- data/ext/debian/puppet-common.postrm +32 -0
- data/ext/debian/puppet-el.dirs +1 -0
- data/ext/debian/puppet-el.emacsen-install +25 -0
- data/ext/debian/puppet-el.emacsen-remove +11 -0
- data/ext/debian/puppet-el.emacsen-startup +9 -0
- data/ext/debian/puppet-el.install +1 -0
- data/ext/debian/puppet-testsuite.install +2 -0
- data/ext/debian/puppet-testsuite.lintian-overrides +4 -0
- data/ext/debian/puppet.conf +14 -0
- data/ext/debian/puppet.default +9 -0
- data/ext/debian/puppet.init +117 -0
- data/ext/debian/puppet.lintian-overrides +3 -0
- data/ext/debian/puppet.logrotate +12 -0
- data/ext/debian/puppet.postinst +20 -0
- data/ext/debian/puppet.postrm +20 -0
- data/ext/debian/puppet.preinst +20 -0
- data/ext/debian/puppetmaster-common.install +2 -0
- data/ext/debian/puppetmaster-common.manpages +2 -0
- data/ext/debian/puppetmaster-common.puppetqd.default +27 -0
- data/ext/debian/puppetmaster-common.puppetqd.init +84 -0
- data/ext/debian/puppetmaster-passenger.dirs +4 -0
- data/ext/debian/puppetmaster-passenger.postinst +66 -0
- data/ext/debian/puppetmaster-passenger.postrm +33 -0
- data/ext/debian/puppetmaster.README.debian +15 -0
- data/ext/debian/puppetmaster.default +14 -0
- data/ext/debian/puppetmaster.init +137 -0
- data/ext/debian/puppetmaster.lintian-overrides +3 -0
- data/ext/debian/puppetmaster.postinst +20 -0
- data/ext/debian/puppetmaster.postrm +5 -0
- data/ext/debian/puppetmaster.preinst +22 -0
- data/ext/debian/rules +125 -0
- data/ext/debian/source/format +1 -0
- data/ext/debian/source/options +1 -0
- data/ext/debian/vim-puppet.README.Debian +13 -0
- data/ext/debian/vim-puppet.dirs +3 -0
- data/ext/debian/vim-puppet.yaml +5 -0
- data/ext/debian/watch +2 -0
- data/ext/emacs/puppet-mode-init.el +6 -0
- data/ext/emacs/puppet-mode.el +415 -0
- data/ext/envpuppet +139 -0
- data/ext/envpuppet.bat +14 -0
- data/ext/freebsd/puppetd +26 -0
- data/ext/freebsd/puppetmasterd +26 -0
- data/ext/gentoo/conf.d/puppet +5 -0
- data/ext/gentoo/conf.d/puppetmaster +12 -0
- data/ext/gentoo/init.d/puppet +38 -0
- data/ext/gentoo/init.d/puppetmaster +51 -0
- data/ext/gentoo/puppet/fileserver.conf +41 -0
- data/ext/gentoo/puppet/puppet.conf +25 -0
- data/ext/ips/puppet-agent +44 -0
- data/ext/ips/puppet-master +44 -0
- data/ext/ips/puppet.conf +29 -0
- data/ext/ips/puppet.p5m.erb +12 -0
- data/ext/ips/puppetagent.xml +42 -0
- data/ext/ips/puppetmaster.xml +42 -0
- data/ext/ips/rules +19 -0
- data/ext/ips/transforms +34 -0
- data/ext/ldap/puppet.schema +24 -0
- data/ext/logcheck/puppet +23 -0
- data/ext/nagios/check_puppet.rb +123 -0
- data/ext/nagios/naggen +309 -0
- data/ext/osx/file_mapping.yaml +33 -0
- data/ext/osx/postflight.erb +109 -0
- data/ext/osx/preflight.erb +52 -0
- data/ext/osx/prototype.plist.erb +38 -0
- data/ext/project_data.yaml +46 -0
- data/ext/puppet-load.rb +393 -0
- data/ext/puppet-nm-dispatcher +13 -0
- data/ext/puppet-test +566 -0
- data/ext/puppetlisten/puppetlisten.rb +75 -0
- data/ext/puppetlisten/puppetrun.rb +38 -0
- data/ext/pure_ruby_dsl/dsl_test.rb +7 -0
- data/ext/rack/config.ru +36 -0
- data/ext/rack/example-passenger-vhost.conf +52 -0
- data/ext/redhat/client.init +119 -0
- data/ext/redhat/client.sysconfig +11 -0
- data/ext/redhat/fileserver.conf +41 -0
- data/ext/redhat/logrotate +10 -0
- data/ext/redhat/puppet.conf +25 -0
- data/ext/redhat/puppet.spec.erb +848 -0
- data/ext/redhat/queue.init +105 -0
- data/ext/redhat/server.init +128 -0
- data/ext/redhat/server.sysconfig +13 -0
- data/ext/regexp_nodes/classes/databases +2 -0
- data/ext/regexp_nodes/classes/webservers +2 -0
- data/ext/regexp_nodes/environment/development +2 -0
- data/ext/regexp_nodes/parameters/service/prod +1 -0
- data/ext/regexp_nodes/parameters/service/qa +3 -0
- data/ext/regexp_nodes/parameters/service/sandbox +1 -0
- data/ext/regexp_nodes/regexp_nodes.rb +271 -0
- data/ext/solaris/pkginfo +6 -0
- data/ext/solaris/smf/puppetd.xml +77 -0
- data/ext/solaris/smf/puppetmasterd.xml +77 -0
- data/ext/solaris/smf/svc-puppetd +64 -0
- data/ext/solaris/smf/svc-puppetmasterd +60 -0
- data/ext/suse/client.init +144 -0
- data/ext/suse/puppet.spec +310 -0
- data/ext/suse/server.init +173 -0
- data/ext/systemd/puppet.service +13 -0
- data/ext/systemd/puppetmaster.service +13 -0
- data/ext/upload_facts.rb +119 -0
- data/ext/vim/README +3 -0
- data/ext/vim/ftdetect/puppet.vim +2 -0
- data/ext/vim/ftplugin/puppet.vim +94 -0
- data/ext/vim/indent/puppet.vim +76 -0
- data/ext/vim/syntax/puppet.vim +115 -0
- data/ext/windows/eventlog/Rakefile +32 -0
- data/ext/windows/eventlog/puppetres.dll +0 -0
- data/ext/windows/eventlog/puppetres.mc +18 -0
- data/ext/windows/service/daemon.bat +6 -0
- data/ext/windows/service/daemon.rb +169 -0
- data/ext/yaml_nodes.rb +105 -0
- data/install.rb +429 -0
- data/lib/hiera/backend/puppet_backend.rb +103 -0
- data/lib/hiera/scope.rb +60 -0
- data/lib/hiera_puppet.rb +87 -0
- data/lib/puppet.rb +247 -0
- data/lib/puppet/agent.rb +122 -0
- data/lib/puppet/agent/disabler.rb +53 -0
- data/lib/puppet/agent/locker.rb +43 -0
- data/lib/puppet/application.rb +485 -0
- data/lib/puppet/application/agent.rb +479 -0
- data/lib/puppet/application/apply.rb +290 -0
- data/lib/puppet/application/ca.rb +5 -0
- data/lib/puppet/application/catalog.rb +4 -0
- data/lib/puppet/application/cert.rb +277 -0
- data/lib/puppet/application/certificate.rb +15 -0
- data/lib/puppet/application/certificate_request.rb +7 -0
- data/lib/puppet/application/certificate_revocation_list.rb +7 -0
- data/lib/puppet/application/config.rb +4 -0
- data/lib/puppet/application/describe.rb +254 -0
- data/lib/puppet/application/device.rb +238 -0
- data/lib/puppet/application/doc.rb +280 -0
- data/lib/puppet/application/face_base.rb +250 -0
- data/lib/puppet/application/facts.rb +4 -0
- data/lib/puppet/application/file.rb +4 -0
- data/lib/puppet/application/filebucket.rb +184 -0
- data/lib/puppet/application/help.rb +4 -0
- data/lib/puppet/application/indirection_base.rb +4 -0
- data/lib/puppet/application/inspect.rb +179 -0
- data/lib/puppet/application/instrumentation_data.rb +7 -0
- data/lib/puppet/application/instrumentation_listener.rb +7 -0
- data/lib/puppet/application/instrumentation_probe.rb +7 -0
- data/lib/puppet/application/key.rb +4 -0
- data/lib/puppet/application/kick.rb +351 -0
- data/lib/puppet/application/man.rb +4 -0
- data/lib/puppet/application/master.rb +302 -0
- data/lib/puppet/application/module.rb +4 -0
- data/lib/puppet/application/node.rb +4 -0
- data/lib/puppet/application/parser.rb +5 -0
- data/lib/puppet/application/plugin.rb +3 -0
- data/lib/puppet/application/queue.rb +161 -0
- data/lib/puppet/application/report.rb +4 -0
- data/lib/puppet/application/resource.rb +229 -0
- data/lib/puppet/application/resource_type.rb +7 -0
- data/lib/puppet/application/secret_agent.rb +9 -0
- data/lib/puppet/application/status.rb +4 -0
- data/lib/puppet/bindings.rb +147 -0
- data/lib/puppet/coercion.rb +40 -0
- data/lib/puppet/configurer.rb +268 -0
- data/lib/puppet/configurer/downloader.rb +70 -0
- data/lib/puppet/configurer/fact_handler.rb +37 -0
- data/lib/puppet/configurer/plugin_handler.rb +28 -0
- data/lib/puppet/confine.rb +80 -0
- data/lib/puppet/confine/any.rb +26 -0
- data/lib/puppet/confine/exists.rb +19 -0
- data/lib/puppet/confine/false.rb +19 -0
- data/lib/puppet/confine/feature.rb +17 -0
- data/lib/puppet/confine/true.rb +20 -0
- data/lib/puppet/confine/variable.rb +59 -0
- data/lib/puppet/confine_collection.rb +50 -0
- data/lib/puppet/confiner.rb +46 -0
- data/lib/puppet/context.rb +55 -0
- data/lib/puppet/context/trusted_information.rb +56 -0
- data/lib/puppet/daemon.rb +182 -0
- data/lib/puppet/data_binding.rb +12 -0
- data/lib/puppet/defaults.rb +1875 -0
- data/lib/puppet/dsl.rb +7 -0
- data/lib/puppet/dsl/resource_api.rb +120 -0
- data/lib/puppet/dsl/resource_type_api.rb +34 -0
- data/lib/puppet/environments.rb +187 -0
- data/lib/puppet/error.rb +62 -0
- data/lib/puppet/external/dot.rb +326 -0
- data/lib/puppet/external/nagios.rb +46 -0
- data/lib/puppet/external/nagios/base.rb +472 -0
- data/lib/puppet/external/nagios/grammar.ry +246 -0
- data/lib/puppet/external/nagios/makefile +9 -0
- data/lib/puppet/external/nagios/parser.rb +391 -0
- data/lib/puppet/external/pson/common.rb +385 -0
- data/lib/puppet/external/pson/pure.rb +15 -0
- data/lib/puppet/external/pson/pure/generator.rb +401 -0
- data/lib/puppet/external/pson/pure/parser.rb +318 -0
- data/lib/puppet/external/pson/version.rb +8 -0
- data/lib/puppet/face.rb +12 -0
- data/lib/puppet/face/ca.rb +247 -0
- data/lib/puppet/face/catalog.rb +130 -0
- data/lib/puppet/face/catalog/select.rb +49 -0
- data/lib/puppet/face/certificate.rb +160 -0
- data/lib/puppet/face/certificate_request.rb +53 -0
- data/lib/puppet/face/certificate_revocation_list.rb +58 -0
- data/lib/puppet/face/config.rb +106 -0
- data/lib/puppet/face/facts.rb +81 -0
- data/lib/puppet/face/file.rb +47 -0
- data/lib/puppet/face/file/download.rb +54 -0
- data/lib/puppet/face/file/store.rb +21 -0
- data/lib/puppet/face/help.rb +194 -0
- data/lib/puppet/face/help/action.erb +86 -0
- data/lib/puppet/face/help/face.erb +111 -0
- data/lib/puppet/face/help/global.erb +16 -0
- data/lib/puppet/face/help/man.erb +152 -0
- data/lib/puppet/face/instrumentation_data.rb +29 -0
- data/lib/puppet/face/instrumentation_listener.rb +97 -0
- data/lib/puppet/face/instrumentation_probe.rb +78 -0
- data/lib/puppet/face/key.rb +15 -0
- data/lib/puppet/face/man.rb +99 -0
- data/lib/puppet/face/module.rb +19 -0
- data/lib/puppet/face/module/build.rb +63 -0
- data/lib/puppet/face/module/changes.rb +41 -0
- data/lib/puppet/face/module/generate.rb +41 -0
- data/lib/puppet/face/module/install.rb +143 -0
- data/lib/puppet/face/module/list.rb +274 -0
- data/lib/puppet/face/module/search.rb +94 -0
- data/lib/puppet/face/module/uninstall.rb +71 -0
- data/lib/puppet/face/module/upgrade.rb +77 -0
- data/lib/puppet/face/node.rb +43 -0
- data/lib/puppet/face/node/clean.rb +159 -0
- data/lib/puppet/face/parser.rb +67 -0
- data/lib/puppet/face/plugin.rb +61 -0
- data/lib/puppet/face/report.rb +54 -0
- data/lib/puppet/face/resource.rb +53 -0
- data/lib/puppet/face/resource_type.rb +81 -0
- data/lib/puppet/face/secret_agent.rb +54 -0
- data/lib/puppet/face/status.rb +53 -0
- data/lib/puppet/feature/base.rb +88 -0
- data/lib/puppet/feature/eventlog.rb +5 -0
- data/lib/puppet/feature/external_facts.rb +5 -0
- data/lib/puppet/feature/libuser.rb +8 -0
- data/lib/puppet/feature/msgpack.rb +3 -0
- data/lib/puppet/feature/pson.rb +4 -0
- data/lib/puppet/feature/rack.rb +19 -0
- data/lib/puppet/feature/rails.rb +47 -0
- data/lib/puppet/feature/rdoc1.rb +16 -0
- data/lib/puppet/feature/rubygems.rb +7 -0
- data/lib/puppet/feature/selinux.rb +3 -0
- data/lib/puppet/feature/ssh.rb +3 -0
- data/lib/puppet/feature/stomp.rb +5 -0
- data/lib/puppet/feature/zlib.rb +5 -0
- data/lib/puppet/file_bucket.rb +4 -0
- data/lib/puppet/file_bucket/dipper.rb +109 -0
- data/lib/puppet/file_bucket/file.rb +92 -0
- data/lib/puppet/file_collection.rb +19 -0
- data/lib/puppet/file_collection/lookup.rb +10 -0
- data/lib/puppet/file_serving.rb +3 -0
- data/lib/puppet/file_serving/base.rb +95 -0
- data/lib/puppet/file_serving/configuration.rb +109 -0
- data/lib/puppet/file_serving/configuration/parser.rb +121 -0
- data/lib/puppet/file_serving/content.rb +45 -0
- data/lib/puppet/file_serving/fileset.rb +172 -0
- data/lib/puppet/file_serving/metadata.rb +199 -0
- data/lib/puppet/file_serving/mount.rb +39 -0
- data/lib/puppet/file_serving/mount/file.rb +121 -0
- data/lib/puppet/file_serving/mount/modules.rb +24 -0
- data/lib/puppet/file_serving/mount/pluginfacts.rb +35 -0
- data/lib/puppet/file_serving/mount/plugins.rb +35 -0
- data/lib/puppet/file_serving/terminus_helper.rb +21 -0
- data/lib/puppet/file_serving/terminus_selector.rb +30 -0
- data/lib/puppet/file_system.rb +366 -0
- data/lib/puppet/file_system/file18.rb +5 -0
- data/lib/puppet/file_system/file19.rb +5 -0
- data/lib/puppet/file_system/file19windows.rb +108 -0
- data/lib/puppet/file_system/file_impl.rb +145 -0
- data/lib/puppet/file_system/memory_file.rb +45 -0
- data/lib/puppet/file_system/memory_impl.rb +64 -0
- data/lib/puppet/file_system/path_pattern.rb +97 -0
- data/lib/puppet/file_system/tempfile.rb +20 -0
- data/lib/puppet/forge.rb +106 -0
- data/lib/puppet/forge/cache.rb +55 -0
- data/lib/puppet/forge/errors.rb +103 -0
- data/lib/puppet/forge/repository.rb +135 -0
- data/lib/puppet/graph.rb +11 -0
- data/lib/puppet/graph/key.rb +26 -0
- data/lib/puppet/graph/prioritizer.rb +29 -0
- data/lib/puppet/graph/random_prioritizer.rb +16 -0
- data/lib/puppet/graph/rb_tree_map.rb +388 -0
- data/lib/puppet/graph/relationship_graph.rb +246 -0
- data/lib/puppet/graph/sequential_prioritizer.rb +31 -0
- data/lib/puppet/graph/simple_graph.rb +566 -0
- data/lib/puppet/graph/title_hash_prioritizer.rb +16 -0
- data/lib/puppet/indirector.rb +61 -0
- data/lib/puppet/indirector/active_record.rb +29 -0
- data/lib/puppet/indirector/catalog/active_record.rb +39 -0
- data/lib/puppet/indirector/catalog/compiler.rb +175 -0
- data/lib/puppet/indirector/catalog/json.rb +6 -0
- data/lib/puppet/indirector/catalog/msgpack.rb +6 -0
- data/lib/puppet/indirector/catalog/queue.rb +9 -0
- data/lib/puppet/indirector/catalog/rest.rb +6 -0
- data/lib/puppet/indirector/catalog/static_compiler.rb +214 -0
- data/lib/puppet/indirector/catalog/store_configs.rb +8 -0
- data/lib/puppet/indirector/catalog/yaml.rb +22 -0
- data/lib/puppet/indirector/certificate/ca.rb +9 -0
- data/lib/puppet/indirector/certificate/disabled_ca.rb +22 -0
- data/lib/puppet/indirector/certificate/file.rb +9 -0
- data/lib/puppet/indirector/certificate/rest.rb +16 -0
- data/lib/puppet/indirector/certificate_request/ca.rb +22 -0
- data/lib/puppet/indirector/certificate_request/disabled_ca.rb +22 -0
- data/lib/puppet/indirector/certificate_request/file.rb +8 -0
- data/lib/puppet/indirector/certificate_request/memory.rb +6 -0
- data/lib/puppet/indirector/certificate_request/rest.rb +10 -0
- data/lib/puppet/indirector/certificate_revocation_list/ca.rb +8 -0
- data/lib/puppet/indirector/certificate_revocation_list/disabled_ca.rb +22 -0
- data/lib/puppet/indirector/certificate_revocation_list/file.rb +8 -0
- data/lib/puppet/indirector/certificate_revocation_list/rest.rb +10 -0
- data/lib/puppet/indirector/certificate_status.rb +4 -0
- data/lib/puppet/indirector/certificate_status/file.rb +91 -0
- data/lib/puppet/indirector/certificate_status/rest.rb +11 -0
- data/lib/puppet/indirector/code.rb +6 -0
- data/lib/puppet/indirector/couch.rb +78 -0
- data/lib/puppet/indirector/data_binding/hiera.rb +50 -0
- data/lib/puppet/indirector/data_binding/none.rb +5 -0
- data/lib/puppet/indirector/direct_file_server.rb +19 -0
- data/lib/puppet/indirector/envelope.rb +11 -0
- data/lib/puppet/indirector/errors.rb +5 -0
- data/lib/puppet/indirector/exec.rb +38 -0
- data/lib/puppet/indirector/face.rb +139 -0
- data/lib/puppet/indirector/facts/active_record.rb +44 -0
- data/lib/puppet/indirector/facts/couch.rb +34 -0
- data/lib/puppet/indirector/facts/facter.rb +91 -0
- data/lib/puppet/indirector/facts/inventory_active_record.rb +110 -0
- data/lib/puppet/indirector/facts/inventory_service.rb +20 -0
- data/lib/puppet/indirector/facts/memory.rb +9 -0
- data/lib/puppet/indirector/facts/network_device.rb +24 -0
- data/lib/puppet/indirector/facts/rest.rb +8 -0
- data/lib/puppet/indirector/facts/store_configs.rb +8 -0
- data/lib/puppet/indirector/facts/yaml.rb +82 -0
- data/lib/puppet/indirector/file_bucket_file/file.rb +138 -0
- data/lib/puppet/indirector/file_bucket_file/rest.rb +8 -0
- data/lib/puppet/indirector/file_bucket_file/selector.rb +53 -0
- data/lib/puppet/indirector/file_content.rb +5 -0
- data/lib/puppet/indirector/file_content/file.rb +7 -0
- data/lib/puppet/indirector/file_content/file_server.rb +7 -0
- data/lib/puppet/indirector/file_content/rest.rb +9 -0
- data/lib/puppet/indirector/file_content/selector.rb +30 -0
- data/lib/puppet/indirector/file_metadata.rb +5 -0
- data/lib/puppet/indirector/file_metadata/file.rb +22 -0
- data/lib/puppet/indirector/file_metadata/file_server.rb +7 -0
- data/lib/puppet/indirector/file_metadata/rest.rb +9 -0
- data/lib/puppet/indirector/file_metadata/selector.rb +30 -0
- data/lib/puppet/indirector/file_server.rb +65 -0
- data/lib/puppet/indirector/indirection.rb +336 -0
- data/lib/puppet/indirector/instrumentation_data.rb +3 -0
- data/lib/puppet/indirector/instrumentation_data/local.rb +22 -0
- data/lib/puppet/indirector/instrumentation_data/rest.rb +8 -0
- data/lib/puppet/indirector/instrumentation_listener.rb +3 -0
- data/lib/puppet/indirector/instrumentation_listener/local.rb +26 -0
- data/lib/puppet/indirector/instrumentation_listener/rest.rb +8 -0
- data/lib/puppet/indirector/instrumentation_probe.rb +3 -0
- data/lib/puppet/indirector/instrumentation_probe/local.rb +27 -0
- data/lib/puppet/indirector/instrumentation_probe/rest.rb +8 -0
- data/lib/puppet/indirector/json.rb +76 -0
- data/lib/puppet/indirector/key/ca.rb +16 -0
- data/lib/puppet/indirector/key/disabled_ca.rb +22 -0
- data/lib/puppet/indirector/key/file.rb +49 -0
- data/lib/puppet/indirector/key/memory.rb +6 -0
- data/lib/puppet/indirector/ldap.rb +79 -0
- data/lib/puppet/indirector/memory.rb +34 -0
- data/lib/puppet/indirector/msgpack.rb +82 -0
- data/lib/puppet/indirector/node/active_record.rb +22 -0
- data/lib/puppet/indirector/node/exec.rb +69 -0
- data/lib/puppet/indirector/node/ldap.rb +257 -0
- data/lib/puppet/indirector/node/memory.rb +10 -0
- data/lib/puppet/indirector/node/msgpack.rb +7 -0
- data/lib/puppet/indirector/node/plain.rb +20 -0
- data/lib/puppet/indirector/node/rest.rb +7 -0
- data/lib/puppet/indirector/node/store_configs.rb +8 -0
- data/lib/puppet/indirector/node/write_only_yaml.rb +32 -0
- data/lib/puppet/indirector/node/yaml.rb +22 -0
- data/lib/puppet/indirector/none.rb +9 -0
- data/lib/puppet/indirector/plain.rb +9 -0
- data/lib/puppet/indirector/queue.rb +80 -0
- data/lib/puppet/indirector/report/msgpack.rb +11 -0
- data/lib/puppet/indirector/report/processor.rb +59 -0
- data/lib/puppet/indirector/report/rest.rb +15 -0
- data/lib/puppet/indirector/report/yaml.rb +11 -0
- data/lib/puppet/indirector/request.rb +312 -0
- data/lib/puppet/indirector/resource/active_record.rb +104 -0
- data/lib/puppet/indirector/resource/ral.rb +64 -0
- data/lib/puppet/indirector/resource/rest.rb +17 -0
- data/lib/puppet/indirector/resource/store_configs.rb +13 -0
- data/lib/puppet/indirector/resource/validator.rb +8 -0
- data/lib/puppet/indirector/resource_type.rb +5 -0
- data/lib/puppet/indirector/resource_type/parser.rb +101 -0
- data/lib/puppet/indirector/resource_type/rest.rb +7 -0
- data/lib/puppet/indirector/rest.rb +246 -0
- data/lib/puppet/indirector/run/local.rb +15 -0
- data/lib/puppet/indirector/run/rest.rb +12 -0
- data/lib/puppet/indirector/ssl_file.rb +180 -0
- data/lib/puppet/indirector/status.rb +3 -0
- data/lib/puppet/indirector/status/local.rb +12 -0
- data/lib/puppet/indirector/status/rest.rb +9 -0
- data/lib/puppet/indirector/store_configs.rb +30 -0
- data/lib/puppet/indirector/terminus.rb +169 -0
- data/lib/puppet/indirector/yaml.rb +63 -0
- data/lib/puppet/interface.rb +235 -0
- data/lib/puppet/interface/action.rb +374 -0
- data/lib/puppet/interface/action_builder.rb +149 -0
- data/lib/puppet/interface/action_manager.rb +101 -0
- data/lib/puppet/interface/documentation.rb +342 -0
- data/lib/puppet/interface/face_collection.rb +125 -0
- data/lib/puppet/interface/option.rb +150 -0
- data/lib/puppet/interface/option_builder.rb +93 -0
- data/lib/puppet/interface/option_manager.rb +99 -0
- data/lib/puppet/metatype/manager.rb +184 -0
- data/lib/puppet/module.rb +338 -0
- data/lib/puppet/module_tool.rb +143 -0
- data/lib/puppet/module_tool/applications.rb +15 -0
- data/lib/puppet/module_tool/applications/application.rb +89 -0
- data/lib/puppet/module_tool/applications/builder.rb +79 -0
- data/lib/puppet/module_tool/applications/checksummer.rb +56 -0
- data/lib/puppet/module_tool/applications/generator.rb +142 -0
- data/lib/puppet/module_tool/applications/installer.rb +192 -0
- data/lib/puppet/module_tool/applications/searcher.rb +28 -0
- data/lib/puppet/module_tool/applications/uninstaller.rb +110 -0
- data/lib/puppet/module_tool/applications/unpacker.rb +60 -0
- data/lib/puppet/module_tool/applications/upgrader.rb +113 -0
- data/lib/puppet/module_tool/checksums.rb +52 -0
- data/lib/puppet/module_tool/contents_description.rb +84 -0
- data/lib/puppet/module_tool/dependency.rb +29 -0
- data/lib/puppet/module_tool/errors.rb +11 -0
- data/lib/puppet/module_tool/errors/base.rb +15 -0
- data/lib/puppet/module_tool/errors/installer.rb +127 -0
- data/lib/puppet/module_tool/errors/shared.rb +115 -0
- data/lib/puppet/module_tool/errors/uninstaller.rb +45 -0
- data/lib/puppet/module_tool/errors/upgrader.rb +72 -0
- data/lib/puppet/module_tool/install_directory.rb +44 -0
- data/lib/puppet/module_tool/metadata.rb +155 -0
- data/lib/puppet/module_tool/modulefile.rb +78 -0
- data/lib/puppet/module_tool/shared_behaviors.rb +168 -0
- data/lib/puppet/module_tool/skeleton.rb +37 -0
- data/lib/puppet/module_tool/skeleton/templates/generator/Modulefile.erb +11 -0
- data/lib/puppet/module_tool/skeleton/templates/generator/README.erb +16 -0
- data/lib/puppet/module_tool/skeleton/templates/generator/manifests/init.pp.erb +41 -0
- data/lib/puppet/module_tool/skeleton/templates/generator/spec/spec_helper.rb +17 -0
- data/lib/puppet/module_tool/skeleton/templates/generator/tests/init.pp.erb +12 -0
- data/lib/puppet/module_tool/tar.rb +21 -0
- data/lib/puppet/module_tool/tar/gnu.rb +16 -0
- data/lib/puppet/module_tool/tar/mini.rb +41 -0
- data/lib/puppet/module_tool/tar/solaris.rb +5 -0
- data/lib/puppet/network.rb +3 -0
- data/lib/puppet/network/auth_config_parser.rb +84 -0
- data/lib/puppet/network/authconfig.rb +76 -0
- data/lib/puppet/network/authentication.rb +35 -0
- data/lib/puppet/network/authorization.rb +34 -0
- data/lib/puppet/network/authstore.rb +282 -0
- data/lib/puppet/network/client_request.rb +29 -0
- data/lib/puppet/network/format.rb +110 -0
- data/lib/puppet/network/format_handler.rb +105 -0
- data/lib/puppet/network/format_support.rb +124 -0
- data/lib/puppet/network/formats.rb +216 -0
- data/lib/puppet/network/http.rb +15 -0
- data/lib/puppet/network/http/api.rb +2 -0
- data/lib/puppet/network/http/api/v1.rb +218 -0
- data/lib/puppet/network/http/api/v2.rb +32 -0
- data/lib/puppet/network/http/api/v2/authorization.rb +13 -0
- data/lib/puppet/network/http/api/v2/environments.rb +21 -0
- data/lib/puppet/network/http/compression.rb +114 -0
- data/lib/puppet/network/http/connection.rb +254 -0
- data/lib/puppet/network/http/error.rb +69 -0
- data/lib/puppet/network/http/handler.rb +180 -0
- data/lib/puppet/network/http/issues.rb +9 -0
- data/lib/puppet/network/http/memory_response.rb +13 -0
- data/lib/puppet/network/http/rack.rb +33 -0
- data/lib/puppet/network/http/rack/rest.rb +136 -0
- data/lib/puppet/network/http/request.rb +56 -0
- data/lib/puppet/network/http/response.rb +11 -0
- data/lib/puppet/network/http/route.rb +91 -0
- data/lib/puppet/network/http/webrick.rb +119 -0
- data/lib/puppet/network/http/webrick/rest.rb +95 -0
- data/lib/puppet/network/http_pool.rb +53 -0
- data/lib/puppet/network/resolver.rb +86 -0
- data/lib/puppet/network/rest_controller.rb +2 -0
- data/lib/puppet/network/rights.rb +219 -0
- data/lib/puppet/network/server.rb +39 -0
- data/lib/puppet/node.rb +171 -0
- data/lib/puppet/node/environment.rb +492 -0
- data/lib/puppet/node/facts.rb +155 -0
- data/lib/puppet/parameter.rb +585 -0
- data/lib/puppet/parameter/boolean.rb +15 -0
- data/lib/puppet/parameter/package_options.rb +31 -0
- data/lib/puppet/parameter/path.rb +57 -0
- data/lib/puppet/parameter/value.rb +93 -0
- data/lib/puppet/parameter/value_collection.rb +211 -0
- data/lib/puppet/parser.rb +7 -0
- data/lib/puppet/parser/ast.rb +130 -0
- data/lib/puppet/parser/ast/arithmetic_operator.rb +91 -0
- data/lib/puppet/parser/ast/astarray.rb +50 -0
- data/lib/puppet/parser/ast/asthash.rb +37 -0
- data/lib/puppet/parser/ast/block_expression.rb +40 -0
- data/lib/puppet/parser/ast/boolean_operator.rb +46 -0
- data/lib/puppet/parser/ast/branch.rb +22 -0
- data/lib/puppet/parser/ast/caseopt.rb +52 -0
- data/lib/puppet/parser/ast/casestatement.rb +41 -0
- data/lib/puppet/parser/ast/collection.rb +49 -0
- data/lib/puppet/parser/ast/collexpr.rb +109 -0
- data/lib/puppet/parser/ast/comparison_operator.rb +38 -0
- data/lib/puppet/parser/ast/definition.rb +17 -0
- data/lib/puppet/parser/ast/else.rb +22 -0
- data/lib/puppet/parser/ast/function.rb +59 -0
- data/lib/puppet/parser/ast/hostclass.rb +29 -0
- data/lib/puppet/parser/ast/ifstatement.rb +34 -0
- data/lib/puppet/parser/ast/in_operator.rb +24 -0
- data/lib/puppet/parser/ast/lambda.rb +135 -0
- data/lib/puppet/parser/ast/leaf.rb +232 -0
- data/lib/puppet/parser/ast/match_operator.rb +28 -0
- data/lib/puppet/parser/ast/method_call.rb +77 -0
- data/lib/puppet/parser/ast/minus.rb +23 -0
- data/lib/puppet/parser/ast/node.rb +20 -0
- data/lib/puppet/parser/ast/nop.rb +11 -0
- data/lib/puppet/parser/ast/not.rb +19 -0
- data/lib/puppet/parser/ast/pops_bridge.rb +168 -0
- data/lib/puppet/parser/ast/relationship.rb +47 -0
- data/lib/puppet/parser/ast/resource.rb +67 -0
- data/lib/puppet/parser/ast/resource_defaults.rb +24 -0
- data/lib/puppet/parser/ast/resource_instance.rb +9 -0
- data/lib/puppet/parser/ast/resource_override.rb +62 -0
- data/lib/puppet/parser/ast/resource_reference.rb +28 -0
- data/lib/puppet/parser/ast/resourceparam.rb +27 -0
- data/lib/puppet/parser/ast/selector.rb +50 -0
- data/lib/puppet/parser/ast/tag.rb +24 -0
- data/lib/puppet/parser/ast/top_level_construct.rb +4 -0
- data/lib/puppet/parser/ast/vardef.rb +38 -0
- data/lib/puppet/parser/code_merger.rb +13 -0
- data/lib/puppet/parser/collector.rb +177 -0
- data/lib/puppet/parser/compiler.rb +555 -0
- data/lib/puppet/parser/e4_parser_adapter.rb +81 -0
- data/lib/puppet/parser/e_parser_adapter.rb +119 -0
- data/lib/puppet/parser/files.rb +94 -0
- data/lib/puppet/parser/functions.rb +249 -0
- data/lib/puppet/parser/functions/collect.rb +15 -0
- data/lib/puppet/parser/functions/contain.rb +26 -0
- data/lib/puppet/parser/functions/create_resources.rb +78 -0
- data/lib/puppet/parser/functions/defined.rb +73 -0
- data/lib/puppet/parser/functions/each.rb +109 -0
- data/lib/puppet/parser/functions/epp.rb +41 -0
- data/lib/puppet/parser/functions/extlookup.rb +153 -0
- data/lib/puppet/parser/functions/fail.rb +4 -0
- data/lib/puppet/parser/functions/file.rb +23 -0
- data/lib/puppet/parser/functions/filter.rb +100 -0
- data/lib/puppet/parser/functions/fqdn_rand.rb +21 -0
- data/lib/puppet/parser/functions/generate.rb +37 -0
- data/lib/puppet/parser/functions/hiera.rb +26 -0
- data/lib/puppet/parser/functions/hiera_array.rb +27 -0
- data/lib/puppet/parser/functions/hiera_hash.rb +29 -0
- data/lib/puppet/parser/functions/hiera_include.rb +44 -0
- data/lib/puppet/parser/functions/include.rb +47 -0
- data/lib/puppet/parser/functions/inline_epp.rb +79 -0
- data/lib/puppet/parser/functions/inline_template.rb +21 -0
- data/lib/puppet/parser/functions/lookup.rb +144 -0
- data/lib/puppet/parser/functions/map.rb +96 -0
- data/lib/puppet/parser/functions/md5.rb +5 -0
- data/lib/puppet/parser/functions/realize.rb +14 -0
- data/lib/puppet/parser/functions/reduce.rb +100 -0
- data/lib/puppet/parser/functions/regsubst.rb +116 -0
- data/lib/puppet/parser/functions/require.rb +53 -0
- data/lib/puppet/parser/functions/search.rb +7 -0
- data/lib/puppet/parser/functions/select.rb +15 -0
- data/lib/puppet/parser/functions/sha1.rb +5 -0
- data/lib/puppet/parser/functions/shellquote.rb +61 -0
- data/lib/puppet/parser/functions/slice.rb +116 -0
- data/lib/puppet/parser/functions/split.rb +28 -0
- data/lib/puppet/parser/functions/sprintf.rb +36 -0
- data/lib/puppet/parser/functions/tag.rb +6 -0
- data/lib/puppet/parser/functions/tagged.rb +18 -0
- data/lib/puppet/parser/functions/template.rb +23 -0
- data/lib/puppet/parser/functions/versioncmp.rb +30 -0
- data/lib/puppet/parser/grammar.ra +806 -0
- data/lib/puppet/parser/lexer.rb +608 -0
- data/lib/puppet/parser/makefile +8 -0
- data/lib/puppet/parser/methods.rb +69 -0
- data/lib/puppet/parser/parser.rb +2559 -0
- data/lib/puppet/parser/parser_factory.rb +88 -0
- data/lib/puppet/parser/parser_support.rb +195 -0
- data/lib/puppet/parser/relationship.rb +62 -0
- data/lib/puppet/parser/resource.rb +267 -0
- data/lib/puppet/parser/resource/param.rb +25 -0
- data/lib/puppet/parser/scope.rb +833 -0
- data/lib/puppet/parser/templatewrapper.rb +127 -0
- data/lib/puppet/parser/type_loader.rb +152 -0
- data/lib/puppet/parser/yaml_trimmer.rb +7 -0
- data/lib/puppet/pops.rb +99 -0
- data/lib/puppet/pops/adaptable.rb +190 -0
- data/lib/puppet/pops/adapters.rb +101 -0
- data/lib/puppet/pops/binder/binder.rb +393 -0
- data/lib/puppet/pops/binder/binder_issues.rb +122 -0
- data/lib/puppet/pops/binder/bindings_checker.rb +197 -0
- data/lib/puppet/pops/binder/bindings_composer.rb +175 -0
- data/lib/puppet/pops/binder/bindings_factory.rb +805 -0
- data/lib/puppet/pops/binder/bindings_label_provider.rb +43 -0
- data/lib/puppet/pops/binder/bindings_loader.rb +88 -0
- data/lib/puppet/pops/binder/bindings_model.rb +201 -0
- data/lib/puppet/pops/binder/bindings_model_dumper.rb +187 -0
- data/lib/puppet/pops/binder/bindings_validator_factory.rb +28 -0
- data/lib/puppet/pops/binder/config/binder_config.rb +107 -0
- data/lib/puppet/pops/binder/config/binder_config_checker.rb +142 -0
- data/lib/puppet/pops/binder/config/diagnostic_producer.rb +32 -0
- data/lib/puppet/pops/binder/config/issues.rb +86 -0
- data/lib/puppet/pops/binder/injector.rb +767 -0
- data/lib/puppet/pops/binder/injector_entry.rb +57 -0
- data/lib/puppet/pops/binder/key_factory.rb +67 -0
- data/lib/puppet/pops/binder/lookup.rb +191 -0
- data/lib/puppet/pops/binder/producers.rb +829 -0
- data/lib/puppet/pops/binder/scheme_handler/confdir_scheme.rb +34 -0
- data/lib/puppet/pops/binder/scheme_handler/module_scheme.rb +84 -0
- data/lib/puppet/pops/binder/scheme_handler/symbolic_scheme.rb +53 -0
- data/lib/puppet/pops/binder/system_bindings.rb +60 -0
- data/lib/puppet/pops/containment.rb +104 -0
- data/lib/puppet/pops/evaluator/access_operator.rb +548 -0
- data/lib/puppet/pops/evaluator/closure.rb +57 -0
- data/lib/puppet/pops/evaluator/compare_operator.rb +168 -0
- data/lib/puppet/pops/evaluator/epp_evaluator.rb +87 -0
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +1069 -0
- data/lib/puppet/pops/evaluator/external_syntax_support.rb +49 -0
- data/lib/puppet/pops/evaluator/relationship_operator.rb +156 -0
- data/lib/puppet/pops/evaluator/runtime3_support.rb +489 -0
- data/lib/puppet/pops/issue_reporter.rb +79 -0
- data/lib/puppet/pops/issues.rb +461 -0
- data/lib/puppet/pops/label_provider.rb +76 -0
- data/lib/puppet/pops/model/ast_transformer.rb +663 -0
- data/lib/puppet/pops/model/ast_tree_dumper.rb +386 -0
- data/lib/puppet/pops/model/factory.rb +970 -0
- data/lib/puppet/pops/model/model.rb +606 -0
- data/lib/puppet/pops/model/model_label_provider.rb +104 -0
- data/lib/puppet/pops/model/model_tree_dumper.rb +377 -0
- data/lib/puppet/pops/model/tree_dumper.rb +59 -0
- data/lib/puppet/pops/parser/code_merger.rb +17 -0
- data/lib/puppet/pops/parser/egrammar.ra +752 -0
- data/lib/puppet/pops/parser/eparser.rb +2579 -0
- data/lib/puppet/pops/parser/epp_parser.rb +51 -0
- data/lib/puppet/pops/parser/epp_support.rb +247 -0
- data/lib/puppet/pops/parser/evaluating_parser.rb +200 -0
- data/lib/puppet/pops/parser/heredoc_support.rb +139 -0
- data/lib/puppet/pops/parser/interpolation_support.rb +227 -0
- data/lib/puppet/pops/parser/lexer.rb +753 -0
- data/lib/puppet/pops/parser/lexer2.rb +684 -0
- data/lib/puppet/pops/parser/lexer_support.rb +107 -0
- data/lib/puppet/pops/parser/locatable.rb +23 -0
- data/lib/puppet/pops/parser/locator.rb +291 -0
- data/lib/puppet/pops/parser/makefile +6 -0
- data/lib/puppet/pops/parser/parser_support.rb +231 -0
- data/lib/puppet/pops/parser/slurp_support.rb +95 -0
- data/lib/puppet/pops/patterns.rb +44 -0
- data/lib/puppet/pops/types/class_loader.rb +118 -0
- data/lib/puppet/pops/types/enumeration.rb +34 -0
- data/lib/puppet/pops/types/type_calculator.rb +1482 -0
- data/lib/puppet/pops/types/type_factory.rb +335 -0
- data/lib/puppet/pops/types/type_parser.rb +460 -0
- data/lib/puppet/pops/types/types.rb +422 -0
- data/lib/puppet/pops/utils.rb +120 -0
- data/lib/puppet/pops/validation.rb +432 -0
- data/lib/puppet/pops/validation/checker3_1.rb +558 -0
- data/lib/puppet/pops/validation/checker4_0.rb +514 -0
- data/lib/puppet/pops/validation/validator_factory_3_1.rb +31 -0
- data/lib/puppet/pops/validation/validator_factory_4_0.rb +31 -0
- data/lib/puppet/pops/visitable.rb +6 -0
- data/lib/puppet/pops/visitor.rb +192 -0
- data/lib/puppet/property.rb +617 -0
- data/lib/puppet/property/boolean.rb +7 -0
- data/lib/puppet/property/ensure.rb +105 -0
- data/lib/puppet/property/keyvalue.rb +95 -0
- data/lib/puppet/property/list.rb +78 -0
- data/lib/puppet/property/ordered_list.rb +29 -0
- data/lib/puppet/provider.rb +651 -0
- data/lib/puppet/provider/aixobject.rb +392 -0
- data/lib/puppet/provider/augeas/augeas.rb +509 -0
- data/lib/puppet/provider/cisco.rb +9 -0
- data/lib/puppet/provider/command.rb +25 -0
- data/lib/puppet/provider/computer/computer.rb +20 -0
- data/lib/puppet/provider/confine.rb +6 -0
- data/lib/puppet/provider/cron/crontab.rb +249 -0
- data/lib/puppet/provider/exec.rb +91 -0
- data/lib/puppet/provider/exec/posix.rb +48 -0
- data/lib/puppet/provider/exec/shell.rb +25 -0
- data/lib/puppet/provider/exec/windows.rb +55 -0
- data/lib/puppet/provider/file/posix.rb +136 -0
- data/lib/puppet/provider/file/windows.rb +105 -0
- data/lib/puppet/provider/group/aix.rb +141 -0
- data/lib/puppet/provider/group/directoryservice.rb +12 -0
- data/lib/puppet/provider/group/groupadd.rb +85 -0
- data/lib/puppet/provider/group/ldap.rb +45 -0
- data/lib/puppet/provider/group/pw.rb +48 -0
- data/lib/puppet/provider/group/windows_adsi.rb +86 -0
- data/lib/puppet/provider/host/parsed.rb +44 -0
- data/lib/puppet/provider/interface/cisco.rb +27 -0
- data/lib/puppet/provider/ldap.rb +137 -0
- data/lib/puppet/provider/macauthorization/macauthorization.rb +309 -0
- data/lib/puppet/provider/mailalias/aliases.rb +39 -0
- data/lib/puppet/provider/maillist/mailman.rb +108 -0
- data/lib/puppet/provider/mcx/mcxcontent.rb +172 -0
- data/lib/puppet/provider/mount.rb +58 -0
- data/lib/puppet/provider/mount/parsed.rb +123 -0
- data/lib/puppet/provider/naginator.rb +63 -0
- data/lib/puppet/provider/nameservice.rb +292 -0
- data/lib/puppet/provider/nameservice/directoryservice.rb +589 -0
- data/lib/puppet/provider/nameservice/objectadd.rb +33 -0
- data/lib/puppet/provider/nameservice/pw.rb +21 -0
- data/lib/puppet/provider/network_device.rb +68 -0
- data/lib/puppet/provider/package.rb +28 -0
- data/lib/puppet/provider/package/aix.rb +152 -0
- data/lib/puppet/provider/package/appdmg.rb +106 -0
- data/lib/puppet/provider/package/apple.rb +47 -0
- data/lib/puppet/provider/package/apt.rb +107 -0
- data/lib/puppet/provider/package/aptitude.rb +29 -0
- data/lib/puppet/provider/package/aptrpm.rb +83 -0
- data/lib/puppet/provider/package/blastwave.rb +111 -0
- data/lib/puppet/provider/package/dpkg.rb +165 -0
- data/lib/puppet/provider/package/fink.rb +79 -0
- data/lib/puppet/provider/package/freebsd.rb +47 -0
- data/lib/puppet/provider/package/gem.rb +125 -0
- data/lib/puppet/provider/package/hpux.rb +44 -0
- data/lib/puppet/provider/package/macports.rb +107 -0
- data/lib/puppet/provider/package/msi.rb +140 -0
- data/lib/puppet/provider/package/nim.rb +280 -0
- data/lib/puppet/provider/package/openbsd.rb +175 -0
- data/lib/puppet/provider/package/opkg.rb +76 -0
- data/lib/puppet/provider/package/pacman.rb +209 -0
- data/lib/puppet/provider/package/pip.rb +119 -0
- data/lib/puppet/provider/package/pkg.rb +190 -0
- data/lib/puppet/provider/package/pkgdmg.rb +149 -0
- data/lib/puppet/provider/package/pkgin.rb +87 -0
- data/lib/puppet/provider/package/pkgutil.rb +186 -0
- data/lib/puppet/provider/package/portage.rb +149 -0
- data/lib/puppet/provider/package/ports.rb +94 -0
- data/lib/puppet/provider/package/portupgrade.rb +241 -0
- data/lib/puppet/provider/package/rpm.rb +205 -0
- data/lib/puppet/provider/package/rug.rb +52 -0
- data/lib/puppet/provider/package/sun.rb +128 -0
- data/lib/puppet/provider/package/sunfreeware.rb +9 -0
- data/lib/puppet/provider/package/up2date.rb +40 -0
- data/lib/puppet/provider/package/urpmi.rb +55 -0
- data/lib/puppet/provider/package/windows.rb +123 -0
- data/lib/puppet/provider/package/windows/exe_package.rb +70 -0
- data/lib/puppet/provider/package/windows/msi_package.rb +62 -0
- data/lib/puppet/provider/package/windows/package.rb +80 -0
- data/lib/puppet/provider/package/yum.rb +110 -0
- data/lib/puppet/provider/package/yumhelper.py +129 -0
- data/lib/puppet/provider/package/zypper.rb +103 -0
- data/lib/puppet/provider/parsedfile.rb +443 -0
- data/lib/puppet/provider/scheduled_task/win32_taskscheduler.rb +565 -0
- data/lib/puppet/provider/selboolean/getsetsebool.rb +47 -0
- data/lib/puppet/provider/selmodule/semodule.rb +134 -0
- data/lib/puppet/provider/service/base.rb +106 -0
- data/lib/puppet/provider/service/bsd.rb +51 -0
- data/lib/puppet/provider/service/daemontools.rb +194 -0
- data/lib/puppet/provider/service/debian.rb +64 -0
- data/lib/puppet/provider/service/freebsd.rb +143 -0
- data/lib/puppet/provider/service/gentoo.rb +45 -0
- data/lib/puppet/provider/service/init.rb +161 -0
- data/lib/puppet/provider/service/launchd.rb +356 -0
- data/lib/puppet/provider/service/openbsd.rb +23 -0
- data/lib/puppet/provider/service/openrc.rb +71 -0
- data/lib/puppet/provider/service/openwrt.rb +36 -0
- data/lib/puppet/provider/service/redhat.rb +64 -0
- data/lib/puppet/provider/service/runit.rb +111 -0
- data/lib/puppet/provider/service/service.rb +42 -0
- data/lib/puppet/provider/service/smf.rb +116 -0
- data/lib/puppet/provider/service/src.rb +120 -0
- data/lib/puppet/provider/service/systemd.rb +65 -0
- data/lib/puppet/provider/service/upstart.rb +355 -0
- data/lib/puppet/provider/service/windows.rb +106 -0
- data/lib/puppet/provider/ssh_authorized_key/parsed.rb +89 -0
- data/lib/puppet/provider/sshkey/parsed.rb +35 -0
- data/lib/puppet/provider/user/aix.rb +369 -0
- data/lib/puppet/provider/user/directoryservice.rb +671 -0
- data/lib/puppet/provider/user/hpux.rb +66 -0
- data/lib/puppet/provider/user/ldap.rb +128 -0
- data/lib/puppet/provider/user/pw.rb +97 -0
- data/lib/puppet/provider/user/user_role_add.rb +209 -0
- data/lib/puppet/provider/user/useradd.rb +231 -0
- data/lib/puppet/provider/user/windows_adsi.rb +99 -0
- data/lib/puppet/provider/vlan/cisco.rb +28 -0
- data/lib/puppet/provider/yumrepo/inifile.rb +187 -0
- data/lib/puppet/provider/zfs/zfs.rb +83 -0
- data/lib/puppet/provider/zone/solaris.rb +361 -0
- data/lib/puppet/provider/zpool/zpool.rb +120 -0
- data/lib/puppet/rails.rb +139 -0
- data/lib/puppet/rails/benchmark.rb +63 -0
- data/lib/puppet/rails/database/001_add_created_at_to_all_tables.rb +13 -0
- data/lib/puppet/rails/database/002_remove_duplicated_index_on_all_tables.rb +13 -0
- data/lib/puppet/rails/database/003_add_environment_to_host.rb +9 -0
- data/lib/puppet/rails/database/004_add_inventory_service_tables.rb +36 -0
- data/lib/puppet/rails/database/schema.rb +136 -0
- data/lib/puppet/rails/fact_name.rb +7 -0
- data/lib/puppet/rails/fact_value.rb +10 -0
- data/lib/puppet/rails/host.rb +258 -0
- data/lib/puppet/rails/inventory_fact.rb +5 -0
- data/lib/puppet/rails/inventory_node.rb +43 -0
- data/lib/puppet/rails/param_name.rb +25 -0
- data/lib/puppet/rails/param_value.rb +74 -0
- data/lib/puppet/rails/puppet_tag.rb +10 -0
- data/lib/puppet/rails/resource.rb +235 -0
- data/lib/puppet/rails/resource_tag.rb +26 -0
- data/lib/puppet/rails/source_file.rb +8 -0
- data/lib/puppet/reference/configuration.rb +73 -0
- data/lib/puppet/reference/function.rb +17 -0
- data/lib/puppet/reference/indirection.rb +71 -0
- data/lib/puppet/reference/metaparameter.rb +42 -0
- data/lib/puppet/reference/providers.rb +119 -0
- data/lib/puppet/reference/report.rb +23 -0
- data/lib/puppet/reference/type.rb +116 -0
- data/lib/puppet/relationship.rb +103 -0
- data/lib/puppet/reports.rb +89 -0
- data/lib/puppet/reports/http.rb +31 -0
- data/lib/puppet/reports/log.rb +14 -0
- data/lib/puppet/reports/rrdgraph.rb +128 -0
- data/lib/puppet/reports/store.rb +73 -0
- data/lib/puppet/reports/tagmail.rb +179 -0
- data/lib/puppet/resource.rb +542 -0
- data/lib/puppet/resource/catalog.rb +543 -0
- data/lib/puppet/resource/status.rb +155 -0
- data/lib/puppet/resource/type.rb +386 -0
- data/lib/puppet/resource/type_collection.rb +230 -0
- data/lib/puppet/resource/type_collection_helper.rb +7 -0
- data/lib/puppet/run.rb +109 -0
- data/lib/puppet/scheduler.rb +16 -0
- data/lib/puppet/scheduler/job.rb +53 -0
- data/lib/puppet/scheduler/scheduler.rb +44 -0
- data/lib/puppet/scheduler/splay_job.rb +32 -0
- data/lib/puppet/scheduler/timer.rb +13 -0
- data/lib/puppet/settings.rb +1312 -0
- data/lib/puppet/settings/autosign_setting.rb +22 -0
- data/lib/puppet/settings/base_setting.rb +168 -0
- data/lib/puppet/settings/boolean_setting.rb +32 -0
- data/lib/puppet/settings/config_file.rb +134 -0
- data/lib/puppet/settings/directory_setting.rb +12 -0
- data/lib/puppet/settings/duration_setting.rb +32 -0
- data/lib/puppet/settings/enum_setting.rb +16 -0
- data/lib/puppet/settings/errors.rb +11 -0
- data/lib/puppet/settings/file_setting.rb +226 -0
- data/lib/puppet/settings/ini_file.rb +171 -0
- data/lib/puppet/settings/path_setting.rb +8 -0
- data/lib/puppet/settings/priority_setting.rb +42 -0
- data/lib/puppet/settings/string_setting.rb +9 -0
- data/lib/puppet/settings/terminus_setting.rb +14 -0
- data/lib/puppet/settings/value_translator.rb +15 -0
- data/lib/puppet/ssl.rb +12 -0
- data/lib/puppet/ssl/base.rb +140 -0
- data/lib/puppet/ssl/certificate.rb +65 -0
- data/lib/puppet/ssl/certificate_authority.rb +509 -0
- data/lib/puppet/ssl/certificate_authority/autosign_command.rb +44 -0
- data/lib/puppet/ssl/certificate_authority/interface.rb +178 -0
- data/lib/puppet/ssl/certificate_factory.rb +219 -0
- data/lib/puppet/ssl/certificate_request.rb +299 -0
- data/lib/puppet/ssl/certificate_request_attributes.rb +37 -0
- data/lib/puppet/ssl/certificate_revocation_list.rb +110 -0
- data/lib/puppet/ssl/certificate_signer.rb +22 -0
- data/lib/puppet/ssl/configuration.rb +64 -0
- data/lib/puppet/ssl/digest.rb +20 -0
- data/lib/puppet/ssl/host.rb +371 -0
- data/lib/puppet/ssl/inventory.rb +50 -0
- data/lib/puppet/ssl/key.rb +59 -0
- data/lib/puppet/ssl/oids.rb +78 -0
- data/lib/puppet/ssl/validator.rb +60 -0
- data/lib/puppet/ssl/validator/default_validator.rb +153 -0
- data/lib/puppet/ssl/validator/no_validator.rb +17 -0
- data/lib/puppet/status.rb +45 -0
- data/lib/puppet/test/test_helper.rb +216 -0
- data/lib/puppet/transaction.rb +340 -0
- data/lib/puppet/transaction/additional_resource_generator.rb +126 -0
- data/lib/puppet/transaction/event.rb +107 -0
- data/lib/puppet/transaction/event_manager.rb +122 -0
- data/lib/puppet/transaction/report.rb +383 -0
- data/lib/puppet/transaction/resource_harness.rb +238 -0
- data/lib/puppet/type.rb +2430 -0
- data/lib/puppet/type/augeas.rb +189 -0
- data/lib/puppet/type/component.rb +77 -0
- data/lib/puppet/type/computer.rb +66 -0
- data/lib/puppet/type/cron.rb +474 -0
- data/lib/puppet/type/exec.rb +564 -0
- data/lib/puppet/type/file.rb +891 -0
- data/lib/puppet/type/file/checksum.rb +33 -0
- data/lib/puppet/type/file/content.rb +239 -0
- data/lib/puppet/type/file/ctime.rb +20 -0
- data/lib/puppet/type/file/ensure.rb +189 -0
- data/lib/puppet/type/file/group.rb +41 -0
- data/lib/puppet/type/file/mode.rb +159 -0
- data/lib/puppet/type/file/mtime.rb +18 -0
- data/lib/puppet/type/file/owner.rb +44 -0
- data/lib/puppet/type/file/selcontext.rb +124 -0
- data/lib/puppet/type/file/source.rb +256 -0
- data/lib/puppet/type/file/target.rb +87 -0
- data/lib/puppet/type/file/type.rb +19 -0
- data/lib/puppet/type/filebucket.rb +122 -0
- data/lib/puppet/type/group.rb +188 -0
- data/lib/puppet/type/host.rb +86 -0
- data/lib/puppet/type/interface.rb +116 -0
- data/lib/puppet/type/k5login.rb +88 -0
- data/lib/puppet/type/macauthorization.rb +167 -0
- data/lib/puppet/type/mailalias.rb +48 -0
- data/lib/puppet/type/maillist.rb +62 -0
- data/lib/puppet/type/mcx.rb +98 -0
- data/lib/puppet/type/mount.rb +288 -0
- data/lib/puppet/type/nagios_command.rb +3 -0
- data/lib/puppet/type/nagios_contact.rb +3 -0
- data/lib/puppet/type/nagios_contactgroup.rb +3 -0
- data/lib/puppet/type/nagios_host.rb +3 -0
- data/lib/puppet/type/nagios_hostdependency.rb +3 -0
- data/lib/puppet/type/nagios_hostescalation.rb +3 -0
- data/lib/puppet/type/nagios_hostextinfo.rb +3 -0
- data/lib/puppet/type/nagios_hostgroup.rb +3 -0
- data/lib/puppet/type/nagios_service.rb +3 -0
- data/lib/puppet/type/nagios_servicedependency.rb +3 -0
- data/lib/puppet/type/nagios_serviceescalation.rb +3 -0
- data/lib/puppet/type/nagios_serviceextinfo.rb +3 -0
- data/lib/puppet/type/nagios_servicegroup.rb +3 -0
- data/lib/puppet/type/nagios_timeperiod.rb +3 -0
- data/lib/puppet/type/notify.rb +44 -0
- data/lib/puppet/type/package.rb +460 -0
- data/lib/puppet/type/resources.rb +161 -0
- data/lib/puppet/type/router.rb +17 -0
- data/lib/puppet/type/schedule.rb +469 -0
- data/lib/puppet/type/scheduled_task.rb +170 -0
- data/lib/puppet/type/selboolean.rb +26 -0
- data/lib/puppet/type/selmodule.rb +59 -0
- data/lib/puppet/type/service.rb +224 -0
- data/lib/puppet/type/ssh_authorized_key.rb +115 -0
- data/lib/puppet/type/sshkey.rb +73 -0
- data/lib/puppet/type/stage.rb +27 -0
- data/lib/puppet/type/tidy.rb +324 -0
- data/lib/puppet/type/user.rb +572 -0
- data/lib/puppet/type/vlan.rb +26 -0
- data/lib/puppet/type/whit.rb +34 -0
- data/lib/puppet/type/yumrepo.rb +270 -0
- data/lib/puppet/type/zfs.rb +150 -0
- data/lib/puppet/type/zone.rb +385 -0
- data/lib/puppet/type/zpool.rb +91 -0
- data/lib/puppet/util.rb +545 -0
- data/lib/puppet/util/adsi.rb +368 -0
- data/lib/puppet/util/autoload.rb +227 -0
- data/lib/puppet/util/backups.rb +86 -0
- data/lib/puppet/util/cacher.rb +74 -0
- data/lib/puppet/util/checksums.rb +143 -0
- data/lib/puppet/util/classgen.rb +236 -0
- data/lib/puppet/util/colors.rb +175 -0
- data/lib/puppet/util/command_line.rb +182 -0
- data/lib/puppet/util/command_line/puppet_option_parser.rb +87 -0
- data/lib/puppet/util/command_line/trollop.rb +824 -0
- data/lib/puppet/util/constant_inflector.rb +24 -0
- data/lib/puppet/util/diff.rb +77 -0
- data/lib/puppet/util/docs.rb +128 -0
- data/lib/puppet/util/errors.rb +106 -0
- data/lib/puppet/util/execution.rb +313 -0
- data/lib/puppet/util/execution_stub.rb +26 -0
- data/lib/puppet/util/feature.rb +83 -0
- data/lib/puppet/util/file_watcher.rb +28 -0
- data/lib/puppet/util/fileparsing.rb +376 -0
- data/lib/puppet/util/filetype.rb +299 -0
- data/lib/puppet/util/http_proxy.rb +38 -0
- data/lib/puppet/util/inifile.rb +218 -0
- data/lib/puppet/util/inline_docs.rb +26 -0
- data/lib/puppet/util/instance_loader.rb +81 -0
- data/lib/puppet/util/instrumentation.rb +152 -0
- data/lib/puppet/util/instrumentation/data.rb +46 -0
- data/lib/puppet/util/instrumentation/indirection_probe.rb +41 -0
- data/lib/puppet/util/instrumentation/instrumentable.rb +136 -0
- data/lib/puppet/util/instrumentation/listener.rb +72 -0
- data/lib/puppet/util/instrumentation/listeners/log.rb +23 -0
- data/lib/puppet/util/instrumentation/listeners/performance.rb +24 -0
- data/lib/puppet/util/json_lockfile.rb +44 -0
- data/lib/puppet/util/ldap.rb +2 -0
- data/lib/puppet/util/ldap/connection.rb +71 -0
- data/lib/puppet/util/ldap/generator.rb +42 -0
- data/lib/puppet/util/ldap/manager.rb +278 -0
- data/lib/puppet/util/libuser.conf +15 -0
- data/lib/puppet/util/libuser.rb +12 -0
- data/lib/puppet/util/limits.rb +12 -0
- data/lib/puppet/util/lockfile.rb +66 -0
- data/lib/puppet/util/log.rb +343 -0
- data/lib/puppet/util/log/destination.rb +49 -0
- data/lib/puppet/util/log/destinations.rb +228 -0
- data/lib/puppet/util/log/rate_limited_logger.rb +40 -0
- data/lib/puppet/util/logging.rb +143 -0
- data/lib/puppet/util/metaid.rb +21 -0
- data/lib/puppet/util/methodhelper.rb +32 -0
- data/lib/puppet/util/metric.rb +210 -0
- data/lib/puppet/util/monkey_patches.rb +225 -0
- data/lib/puppet/util/monkey_patches/lines.rb +13 -0
- data/lib/puppet/util/nagios_maker.rb +85 -0
- data/lib/puppet/util/network_device.rb +17 -0
- data/lib/puppet/util/network_device/base.rb +27 -0
- data/lib/puppet/util/network_device/cisco.rb +4 -0
- data/lib/puppet/util/network_device/cisco/device.rb +267 -0
- data/lib/puppet/util/network_device/cisco/facts.rb +72 -0
- data/lib/puppet/util/network_device/cisco/interface.rb +82 -0
- data/lib/puppet/util/network_device/config.rb +93 -0
- data/lib/puppet/util/network_device/ipcalc.rb +68 -0
- data/lib/puppet/util/network_device/transport.rb +5 -0
- data/lib/puppet/util/network_device/transport/base.rb +26 -0
- data/lib/puppet/util/network_device/transport/ssh.rb +122 -0
- data/lib/puppet/util/network_device/transport/telnet.rb +44 -0
- data/lib/puppet/util/package.rb +31 -0
- data/lib/puppet/util/pidlock.rb +56 -0
- data/lib/puppet/util/platform.rb +22 -0
- data/lib/puppet/util/plugins.rb +82 -0
- data/lib/puppet/util/posix.rb +147 -0
- data/lib/puppet/util/profiler.rb +45 -0
- data/lib/puppet/util/profiler/logging.rb +47 -0
- data/lib/puppet/util/profiler/none.rb +8 -0
- data/lib/puppet/util/profiler/object_counts.rb +17 -0
- data/lib/puppet/util/profiler/wall_clock.rb +34 -0
- data/lib/puppet/util/provider_features.rb +184 -0
- data/lib/puppet/util/pson.rb +13 -0
- data/lib/puppet/util/queue.rb +96 -0
- data/lib/puppet/util/queue/stomp.rb +60 -0
- data/lib/puppet/util/rails/cache_accumulator.rb +65 -0
- data/lib/puppet/util/rails/collection_merger.rb +17 -0
- data/lib/puppet/util/rails/reference_serializer.rb +32 -0
- data/lib/puppet/util/rdoc.rb +89 -0
- data/lib/puppet/util/rdoc/code_objects.rb +334 -0
- data/lib/puppet/util/rdoc/generators/puppet_generator.rb +910 -0
- data/lib/puppet/util/rdoc/generators/template/puppet/puppet.rb +1085 -0
- data/lib/puppet/util/rdoc/parser.rb +22 -0
- data/lib/puppet/util/rdoc/parser/puppet_parser_core.rb +477 -0
- data/lib/puppet/util/rdoc/parser/puppet_parser_rdoc1.rb +19 -0
- data/lib/puppet/util/rdoc/parser/puppet_parser_rdoc2.rb +14 -0
- data/lib/puppet/util/reference.rb +124 -0
- data/lib/puppet/util/resource_template.rb +61 -0
- data/lib/puppet/util/retryaction.rb +47 -0
- data/lib/puppet/util/rubygems.rb +65 -0
- data/lib/puppet/util/run_mode.rb +82 -0
- data/lib/puppet/util/selinux.rb +222 -0
- data/lib/puppet/util/ssl.rb +53 -0
- data/lib/puppet/util/storage.rb +89 -0
- data/lib/puppet/util/suidmanager.rb +198 -0
- data/lib/puppet/util/symbolic_file_mode.rb +144 -0
- data/lib/puppet/util/tag_set.rb +41 -0
- data/lib/puppet/util/tagging.rb +55 -0
- data/lib/puppet/util/terminal.rb +16 -0
- data/lib/puppet/util/user_attr.rb +21 -0
- data/lib/puppet/util/warnings.rb +32 -0
- data/lib/puppet/util/watched_file.rb +37 -0
- data/lib/puppet/util/watcher.rb +17 -0
- data/lib/puppet/util/watcher/change_watcher.rb +33 -0
- data/lib/puppet/util/watcher/periodic_watcher.rb +37 -0
- data/lib/puppet/util/watcher/timer.rb +19 -0
- data/lib/puppet/util/windows.rb +17 -0
- data/lib/puppet/util/windows/access_control_entry.rb +84 -0
- data/lib/puppet/util/windows/access_control_list.rb +113 -0
- data/lib/puppet/util/windows/error.rb +16 -0
- data/lib/puppet/util/windows/file.rb +279 -0
- data/lib/puppet/util/windows/process.rb +238 -0
- data/lib/puppet/util/windows/registry.rb +70 -0
- data/lib/puppet/util/windows/root_certs.rb +101 -0
- data/lib/puppet/util/windows/security.rb +649 -0
- data/lib/puppet/util/windows/security_descriptor.rb +62 -0
- data/lib/puppet/util/windows/sid.rb +118 -0
- data/lib/puppet/util/windows/string.rb +14 -0
- data/lib/puppet/util/windows/user.rb +108 -0
- data/lib/puppet/util/yaml.rb +24 -0
- data/lib/puppet/util/zaml.rb +419 -0
- data/lib/puppet/vendor.rb +55 -0
- data/lib/puppet/vendor/load_safe_yaml.rb +1 -0
- data/lib/puppet/vendor/require_vendored.rb +5 -0
- data/lib/puppet/vendor/safe_yaml/CHANGES.md +104 -0
- data/lib/puppet/vendor/safe_yaml/Gemfile +11 -0
- data/lib/puppet/vendor/safe_yaml/LICENSE.txt +22 -0
- data/lib/puppet/vendor/safe_yaml/README.md +179 -0
- data/lib/puppet/vendor/safe_yaml/Rakefile +6 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml.rb +253 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/deep.rb +34 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/date.rb +27 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/hexadecimal.rb +12 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/sexagesimal.rb +26 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/psych_handler.rb +92 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/psych_resolver.rb +52 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/resolver.rb +94 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/safe_to_ruby_visitor.rb +17 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_hack.rb +36 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_node_monkeypatch.rb +43 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_resolver.rb +38 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform.rb +41 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_boolean.rb +21 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_date.rb +11 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_float.rb +33 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_integer.rb +25 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_nil.rb +18 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_symbol.rb +13 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/transformation_map.rb +47 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/version.rb +3 -0
- data/lib/puppet/vendor/safe_yaml/run_specs_all_ruby_versions.sh +21 -0
- data/lib/puppet/vendor/safe_yaml/safe_yaml.gemspec +18 -0
- data/lib/puppet/vendor/safe_yaml/spec/exploit.1.9.2.yaml +2 -0
- data/lib/puppet/vendor/safe_yaml/spec/exploit.1.9.3.yaml +2 -0
- data/lib/puppet/vendor/safe_yaml/spec/psych_resolver_spec.rb +10 -0
- data/lib/puppet/vendor/safe_yaml/spec/resolver_specs.rb +250 -0
- data/lib/puppet/vendor/safe_yaml/spec/safe_yaml_spec.rb +702 -0
- data/lib/puppet/vendor/safe_yaml/spec/spec_helper.rb +18 -0
- data/lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb +29 -0
- data/lib/puppet/vendor/safe_yaml/spec/syck_resolver_spec.rb +10 -0
- data/lib/puppet/vendor/safe_yaml/spec/transform/base64_spec.rb +11 -0
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_date_spec.rb +34 -0
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_float_spec.rb +42 -0
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_integer_spec.rb +59 -0
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_symbol_spec.rb +49 -0
- data/lib/puppet/vendor/safe_yaml_patches.rb +9 -0
- data/lib/puppet/version.rb +89 -0
- data/lib/puppetx.rb +89 -0
- data/lib/puppetx/puppet/bindings_scheme_handler.rb +130 -0
- data/lib/puppetx/puppet/syntax_checker.rb +91 -0
- data/lib/puppetx/puppetlabs/syntax_checkers/json.rb +37 -0
- data/lib/semver.rb +124 -0
- data/man/man5/puppet.conf.5 +1581 -0
- data/man/man8/extlookup2hiera.8 +23 -0
- data/man/man8/puppet-agent.8 +157 -0
- data/man/man8/puppet-apply.8 +80 -0
- data/man/man8/puppet-ca.8 +170 -0
- data/man/man8/puppet-catalog.8 +292 -0
- data/man/man8/puppet-cert.8 +97 -0
- data/man/man8/puppet-certificate.8 +238 -0
- data/man/man8/puppet-certificate_request.8 +168 -0
- data/man/man8/puppet-certificate_revocation_list.8 +165 -0
- data/man/man8/puppet-config.8 +76 -0
- data/man/man8/puppet-describe.8 +51 -0
- data/man/man8/puppet-device.8 +86 -0
- data/man/man8/puppet-doc.8 +119 -0
- data/man/man8/puppet-facts.8 +223 -0
- data/man/man8/puppet-file.8 +215 -0
- data/man/man8/puppet-filebucket.8 +81 -0
- data/man/man8/puppet-help.8 +64 -0
- data/man/man8/puppet-inspect.8 +36 -0
- data/man/man8/puppet-instrumentation_data.8 +141 -0
- data/man/man8/puppet-instrumentation_listener.8 +218 -0
- data/man/man8/puppet-instrumentation_probe.8 +203 -0
- data/man/man8/puppet-key.8 +129 -0
- data/man/man8/puppet-kick.8 +131 -0
- data/man/man8/puppet-man.8 +70 -0
- data/man/man8/puppet-master.8 +78 -0
- data/man/man8/puppet-module.8 +422 -0
- data/man/man8/puppet-node.8 +211 -0
- data/man/man8/puppet-parser.8 +73 -0
- data/man/man8/puppet-plugin.8 +73 -0
- data/man/man8/puppet-queue.8 +55 -0
- data/man/man8/puppet-report.8 +186 -0
- data/man/man8/puppet-resource.8 +84 -0
- data/man/man8/puppet-resource_type.8 +214 -0
- data/man/man8/puppet-secret_agent.8 +70 -0
- data/man/man8/puppet-status.8 +150 -0
- data/man/man8/puppet.8 +10 -0
- data/spec/fixtures/faulty_face/puppet/face/syntax.rb +8 -0
- data/spec/fixtures/hiera.yaml +9 -0
- data/spec/fixtures/integration/node/environment/sitedir/00_a.pp +2 -0
- data/spec/fixtures/integration/node/environment/sitedir/01_b.pp +6 -0
- data/spec/fixtures/integration/node/environment/sitedir/03_empty.pp +0 -0
- data/spec/fixtures/integration/node/environment/sitedir/04_include.pp +2 -0
- data/spec/fixtures/integration/provider/cron/crontab/create_normal_entry +19 -0
- data/spec/fixtures/integration/provider/cron/crontab/create_special_entry +18 -0
- data/spec/fixtures/integration/provider/cron/crontab/crontab_user1 +15 -0
- data/spec/fixtures/integration/provider/cron/crontab/crontab_user2 +4 -0
- data/spec/fixtures/integration/provider/cron/crontab/modify_entry +13 -0
- data/spec/fixtures/integration/provider/cron/crontab/moved_cronjob_input1 +15 -0
- data/spec/fixtures/integration/provider/cron/crontab/moved_cronjob_input2 +6 -0
- data/spec/fixtures/integration/provider/cron/crontab/purged +8 -0
- data/spec/fixtures/integration/provider/cron/crontab/remove_named_resource +12 -0
- data/spec/fixtures/integration/provider/cron/crontab/remove_unnamed_resource +14 -0
- data/spec/fixtures/integration/provider/cron/crontab/unspecialized +15 -0
- data/spec/fixtures/integration/provider/mailalias/aliases/test1 +28 -0
- data/spec/fixtures/manifests/site.pp +0 -0
- data/spec/fixtures/releases/jamtur01-apache/Modulefile +2 -0
- data/spec/fixtures/releases/jamtur01-apache/files/httpd +24 -0
- data/spec/fixtures/releases/jamtur01-apache/files/test.vhost +18 -0
- data/spec/fixtures/releases/jamtur01-apache/lib/puppet/provider/a2mod/debian.rb +21 -0
- data/spec/fixtures/releases/jamtur01-apache/lib/puppet/type/a2mod.rb +12 -0
- data/spec/fixtures/releases/jamtur01-apache/manifests/dev.pp +5 -0
- data/spec/fixtures/releases/jamtur01-apache/manifests/init.pp +34 -0
- data/spec/fixtures/releases/jamtur01-apache/manifests/params.pp +17 -0
- data/spec/fixtures/releases/jamtur01-apache/manifests/php.pp +5 -0
- data/spec/fixtures/releases/jamtur01-apache/manifests/ssl.pp +15 -0
- data/spec/fixtures/releases/jamtur01-apache/manifests/vhost.pp +15 -0
- data/spec/fixtures/releases/jamtur01-apache/metadata.json +1 -0
- data/spec/fixtures/releases/jamtur01-apache/templates/vhost-default.conf.erb +20 -0
- data/spec/fixtures/releases/jamtur01-apache/tests/apache.pp +1 -0
- data/spec/fixtures/releases/jamtur01-apache/tests/dev.pp +1 -0
- data/spec/fixtures/releases/jamtur01-apache/tests/init.pp +1 -0
- data/spec/fixtures/releases/jamtur01-apache/tests/php.pp +1 -0
- data/spec/fixtures/releases/jamtur01-apache/tests/ssl.pp +1 -0
- data/spec/fixtures/releases/jamtur01-apache/tests/vhost.pp +2 -0
- data/spec/fixtures/unit/indirector/data_binding/hiera/global.yaml +10 -0
- data/spec/fixtures/unit/indirector/data_binding/hiera/invalid.yaml +1 -0
- data/spec/fixtures/unit/module/trailing-comma.json +24 -0
- data/spec/fixtures/unit/parser/lexer/aliastest.pp +16 -0
- data/spec/fixtures/unit/parser/lexer/append.pp +11 -0
- data/spec/fixtures/unit/parser/lexer/argumentdefaults.pp +14 -0
- data/spec/fixtures/unit/parser/lexer/arithmetic_expression.pp +8 -0
- data/spec/fixtures/unit/parser/lexer/arraytrailingcomma.pp +3 -0
- data/spec/fixtures/unit/parser/lexer/casestatement.pp +65 -0
- data/spec/fixtures/unit/parser/lexer/classheirarchy.pp +15 -0
- data/spec/fixtures/unit/parser/lexer/classincludes.pp +17 -0
- data/spec/fixtures/unit/parser/lexer/classpathtest.pp +11 -0
- data/spec/fixtures/unit/parser/lexer/collection.pp +10 -0
- data/spec/fixtures/unit/parser/lexer/collection_override.pp +8 -0
- data/spec/fixtures/unit/parser/lexer/collection_within_virtual_definitions.pp +20 -0
- data/spec/fixtures/unit/parser/lexer/componentmetaparams.pp +11 -0
- data/spec/fixtures/unit/parser/lexer/componentrequire.pp +8 -0
- data/spec/fixtures/unit/parser/lexer/deepclassheirarchy.pp +23 -0
- data/spec/fixtures/unit/parser/lexer/defineoverrides.pp +17 -0
- data/spec/fixtures/unit/parser/lexer/emptyclass.pp +9 -0
- data/spec/fixtures/unit/parser/lexer/emptyexec.pp +3 -0
- data/spec/fixtures/unit/parser/lexer/emptyifelse.pp +9 -0
- data/spec/fixtures/unit/parser/lexer/falsevalues.pp +3 -0
- data/spec/fixtures/unit/parser/lexer/filecreate.pp +11 -0
- data/spec/fixtures/unit/parser/lexer/fqdefinition.pp +5 -0
- data/spec/fixtures/unit/parser/lexer/fqparents.pp +11 -0
- data/spec/fixtures/unit/parser/lexer/funccomma.pp +5 -0
- data/spec/fixtures/unit/parser/lexer/hash.pp +33 -0
- data/spec/fixtures/unit/parser/lexer/ifexpression.pp +12 -0
- data/spec/fixtures/unit/parser/lexer/implicititeration.pp +15 -0
- data/spec/fixtures/unit/parser/lexer/multilinecomments.pp +10 -0
- data/spec/fixtures/unit/parser/lexer/multipleclass.pp +9 -0
- data/spec/fixtures/unit/parser/lexer/multipleinstances.pp +7 -0
- data/spec/fixtures/unit/parser/lexer/multisubs.pp +13 -0
- data/spec/fixtures/unit/parser/lexer/namevartest.pp +9 -0
- data/spec/fixtures/unit/parser/lexer/scopetest.pp +13 -0
- data/spec/fixtures/unit/parser/lexer/selectorvalues.pp +49 -0
- data/spec/fixtures/unit/parser/lexer/simpledefaults.pp +5 -0
- data/spec/fixtures/unit/parser/lexer/simpleselector.pp +38 -0
- data/spec/fixtures/unit/parser/lexer/singleary.pp +19 -0
- data/spec/fixtures/unit/parser/lexer/singlequote.pp +11 -0
- data/spec/fixtures/unit/parser/lexer/singleselector.pp +22 -0
- data/spec/fixtures/unit/parser/lexer/subclass_name_duplication.pp +11 -0
- data/spec/fixtures/unit/parser/lexer/tag.pp +9 -0
- data/spec/fixtures/unit/parser/lexer/tagged.pp +35 -0
- data/spec/fixtures/unit/parser/lexer/virtualresources.pp +14 -0
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/binder_config.yaml +10 -0
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/lib/puppet/bindings/confdirtest.rb +10 -0
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/awesome2/lib/puppet/bindings/awesome2/default.rb +20 -0
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/awesome2/lib/puppetx/awesome2/echo_scheme_handler.rb +18 -0
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/bad/lib/puppet/bindings/bad/default.rb +5 -0
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/good/lib/puppet/bindings/good/default.rb +6 -0
- data/spec/fixtures/unit/pops/binder/config/binder_config/ok/binder_config.yaml +9 -0
- data/spec/fixtures/unit/pops/parser/lexer/aliastest.pp +16 -0
- data/spec/fixtures/unit/pops/parser/lexer/append.pp +11 -0
- data/spec/fixtures/unit/pops/parser/lexer/argumentdefaults.pp +14 -0
- data/spec/fixtures/unit/pops/parser/lexer/arithmetic_expression.pp +8 -0
- data/spec/fixtures/unit/pops/parser/lexer/arraytrailingcomma.pp +3 -0
- data/spec/fixtures/unit/pops/parser/lexer/casestatement.pp +65 -0
- data/spec/fixtures/unit/pops/parser/lexer/classheirarchy.pp +15 -0
- data/spec/fixtures/unit/pops/parser/lexer/classincludes.pp +17 -0
- data/spec/fixtures/unit/pops/parser/lexer/classpathtest.pp +11 -0
- data/spec/fixtures/unit/pops/parser/lexer/collection.pp +10 -0
- data/spec/fixtures/unit/pops/parser/lexer/collection_override.pp +8 -0
- data/spec/fixtures/unit/pops/parser/lexer/collection_within_virtual_definitions.pp +20 -0
- data/spec/fixtures/unit/pops/parser/lexer/componentmetaparams.pp +11 -0
- data/spec/fixtures/unit/pops/parser/lexer/componentrequire.pp +8 -0
- data/spec/fixtures/unit/pops/parser/lexer/deepclassheirarchy.pp +23 -0
- data/spec/fixtures/unit/pops/parser/lexer/defineoverrides.pp +17 -0
- data/spec/fixtures/unit/pops/parser/lexer/emptyclass.pp +9 -0
- data/spec/fixtures/unit/pops/parser/lexer/emptyexec.pp +3 -0
- data/spec/fixtures/unit/pops/parser/lexer/emptyifelse.pp +9 -0
- data/spec/fixtures/unit/pops/parser/lexer/falsevalues.pp +3 -0
- data/spec/fixtures/unit/pops/parser/lexer/filecreate.pp +11 -0
- data/spec/fixtures/unit/pops/parser/lexer/fqdefinition.pp +5 -0
- data/spec/fixtures/unit/pops/parser/lexer/fqparents.pp +11 -0
- data/spec/fixtures/unit/pops/parser/lexer/funccomma.pp +5 -0
- data/spec/fixtures/unit/pops/parser/lexer/hash.pp +33 -0
- data/spec/fixtures/unit/pops/parser/lexer/ifexpression.pp +12 -0
- data/spec/fixtures/unit/pops/parser/lexer/implicititeration.pp +15 -0
- data/spec/fixtures/unit/pops/parser/lexer/multilinecomments.pp +10 -0
- data/spec/fixtures/unit/pops/parser/lexer/multipleclass.pp +9 -0
- data/spec/fixtures/unit/pops/parser/lexer/multipleinstances.pp +7 -0
- data/spec/fixtures/unit/pops/parser/lexer/multisubs.pp +13 -0
- data/spec/fixtures/unit/pops/parser/lexer/namevartest.pp +9 -0
- data/spec/fixtures/unit/pops/parser/lexer/scopetest.pp +13 -0
- data/spec/fixtures/unit/pops/parser/lexer/selectorvalues.pp +49 -0
- data/spec/fixtures/unit/pops/parser/lexer/simpledefaults.pp +5 -0
- data/spec/fixtures/unit/pops/parser/lexer/simpleselector.pp +38 -0
- data/spec/fixtures/unit/pops/parser/lexer/singleary.pp +19 -0
- data/spec/fixtures/unit/pops/parser/lexer/singlequote.pp +11 -0
- data/spec/fixtures/unit/pops/parser/lexer/singleselector.pp +22 -0
- data/spec/fixtures/unit/pops/parser/lexer/subclass_name_duplication.pp +11 -0
- data/spec/fixtures/unit/pops/parser/lexer/tag.pp +9 -0
- data/spec/fixtures/unit/pops/parser/lexer/tagged.pp +35 -0
- data/spec/fixtures/unit/pops/parser/lexer/virtualresources.pp +14 -0
- data/spec/fixtures/unit/provider/augeas/augeas/augeas/lenses/test.aug +13 -0
- data/spec/fixtures/unit/provider/augeas/augeas/etc/fstab +10 -0
- data/spec/fixtures/unit/provider/augeas/augeas/etc/hosts +6 -0
- data/spec/fixtures/unit/provider/augeas/augeas/etc/test +3 -0
- data/spec/fixtures/unit/provider/augeas/augeas/test.aug +13 -0
- data/spec/fixtures/unit/provider/cron/crontab/single_line.yaml +272 -0
- data/spec/fixtures/unit/provider/cron/crontab/vixie_header.txt +3 -0
- data/spec/fixtures/unit/provider/cron/parsed/managed +6 -0
- data/spec/fixtures/unit/provider/cron/parsed/simple +9 -0
- data/spec/fixtures/unit/provider/host/parsed/valid_hosts +19 -0
- data/spec/fixtures/unit/provider/mount/mount-output.aix.txt +7 -0
- data/spec/fixtures/unit/provider/mount/parsed/aix.filesystems +144 -0
- data/spec/fixtures/unit/provider/mount/parsed/aix.mount +7 -0
- data/spec/fixtures/unit/provider/mount/parsed/darwin.mount +6 -0
- data/spec/fixtures/unit/provider/mount/parsed/freebsd.fstab +8 -0
- data/spec/fixtures/unit/provider/mount/parsed/freebsd.mount +3 -0
- data/spec/fixtures/unit/provider/mount/parsed/hpux.mount +17 -0
- data/spec/fixtures/unit/provider/mount/parsed/linux.fstab +11 -0
- data/spec/fixtures/unit/provider/mount/parsed/linux.mount +5 -0
- data/spec/fixtures/unit/provider/mount/parsed/netbsd.fstab +9 -0
- data/spec/fixtures/unit/provider/mount/parsed/netbsd.mount +8 -0
- data/spec/fixtures/unit/provider/mount/parsed/openbsd.fstab +4 -0
- data/spec/fixtures/unit/provider/mount/parsed/openbsd.mount +4 -0
- data/spec/fixtures/unit/provider/mount/parsed/solaris.fstab +11 -0
- data/spec/fixtures/unit/provider/mount/parsed/solaris.mount +6 -0
- data/spec/fixtures/unit/provider/package/gem/line-with-1.8.5-warning +14 -0
- data/spec/fixtures/unit/provider/package/openbsd/pkginfo.detail +19 -0
- data/spec/fixtures/unit/provider/package/openbsd/pkginfo.list +10 -0
- data/spec/fixtures/unit/provider/package/openbsd/pkginfo.query +1 -0
- data/spec/fixtures/unit/provider/package/openbsd/pkginfo_flavors.list +2 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris10 +1 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.ifo.installed +1 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.ifo.known +1 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.installed +1 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.known +1 -0
- data/spec/fixtures/unit/provider/package/pkg/incomplete +1 -0
- data/spec/fixtures/unit/provider/package/pkg/publisher +2 -0
- data/spec/fixtures/unit/provider/package/pkg/simple +2 -0
- data/spec/fixtures/unit/provider/package/pkg/solaris11 +2 -0
- data/spec/fixtures/unit/provider/package/pkg/unknown_status +12 -0
- data/spec/fixtures/unit/provider/package/sun/dummy.server +12 -0
- data/spec/fixtures/unit/provider/package/sun/simple +24 -0
- data/spec/fixtures/unit/provider/package/zypper/zypper-list-updates-SLES11sp1.out +369 -0
- data/spec/fixtures/unit/provider/parsedfile/simple.txt +4 -0
- data/spec/fixtures/unit/provider/service/gentoo/rc_update_show +30 -0
- data/spec/fixtures/unit/provider/service/openrc/rcservice_list +8 -0
- data/spec/fixtures/unit/provider/service/openrc/rcstatus +43 -0
- data/spec/fixtures/unit/provider/service/smf/svcs.out +3 -0
- data/spec/fixtures/unit/provider/service/systemd/list_units_services +17 -0
- data/spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys +7 -0
- data/spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys1 +3 -0
- data/spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys2 +1 -0
- data/spec/fixtures/unit/provider/sshkey/parsed/sample +21 -0
- data/spec/fixtures/unit/provider/zfs/zfs/zfs-list.out +2 -0
- data/spec/fixtures/unit/provider/zpool/zpool/zpool-list.out +2 -0
- data/spec/fixtures/unit/reports/tagmail/tagmail_email.conf +2 -0
- data/spec/fixtures/unit/reports/tagmail/tagmail_failers.conf +3 -0
- data/spec/fixtures/unit/reports/tagmail/tagmail_passers.conf +30 -0
- data/spec/fixtures/unit/util/filetype/aixtab_output +44 -0
- data/spec/fixtures/unit/util/filetype/suntab_output +9 -0
- data/spec/fixtures/unit/util/monkey_patches/x509.pem +32 -0
- data/spec/fixtures/unit/util/rdoc/basic.pp +16 -0
- data/spec/fixtures/yaml/report0.25.x.yaml +64 -0
- data/spec/fixtures/yaml/report2.6.x.yaml +190 -0
- data/spec/fixtures/yaml/test.local.yaml +16 -0
- data/spec/integration/agent/logging_spec.rb +178 -0
- data/spec/integration/application/apply_spec.rb +108 -0
- data/spec/integration/application/doc_spec.rb +56 -0
- data/spec/integration/configurer_spec.rb +81 -0
- data/spec/integration/data_binding.rb +100 -0
- data/spec/integration/defaults_spec.rb +315 -0
- data/spec/integration/directory_environments_spec.rb +50 -0
- data/spec/integration/faces/ca_spec.rb +354 -0
- data/spec/integration/faces/documentation_spec.rb +62 -0
- data/spec/integration/file_bucket/file_spec.rb +44 -0
- data/spec/integration/file_serving/content_spec.rb +8 -0
- data/spec/integration/file_serving/fileset_spec.rb +13 -0
- data/spec/integration/file_serving/metadata_spec.rb +9 -0
- data/spec/integration/file_serving/terminus_helper_spec.rb +21 -0
- data/spec/integration/indirector/catalog/compiler_spec.rb +67 -0
- data/spec/integration/indirector/catalog/queue_spec.rb +57 -0
- data/spec/integration/indirector/direct_file_server_spec.rb +67 -0
- data/spec/integration/indirector/facts/facter_spec.rb +22 -0
- data/spec/integration/indirector/file_content/file_server_spec.rb +89 -0
- data/spec/integration/indirector/file_metadata/file_server_spec.rb +14 -0
- data/spec/integration/indirector/node/ldap_spec.rb +14 -0
- data/spec/integration/network/authconfig_spec.rb +257 -0
- data/spec/integration/network/formats_spec.rb +91 -0
- data/spec/integration/node/environment_spec.rb +109 -0
- data/spec/integration/node/facts_spec.rb +41 -0
- data/spec/integration/node_spec.rb +82 -0
- data/spec/integration/parser/catalog_spec.rb +125 -0
- data/spec/integration/parser/collector_spec.rb +117 -0
- data/spec/integration/parser/compiler_spec.rb +513 -0
- data/spec/integration/parser/functions/require_spec.rb +43 -0
- data/spec/integration/parser/future_compiler_spec.rb +416 -0
- data/spec/integration/parser/parser_spec.rb +207 -0
- data/spec/integration/parser/ruby_manifest_spec.rb +128 -0
- data/spec/integration/parser/scope_spec.rb +757 -0
- data/spec/integration/parser/undef_param_spec.rb +87 -0
- data/spec/integration/provider/cron/crontab_spec.rb +217 -0
- data/spec/integration/provider/mailalias/aliases_spec.rb +10 -0
- data/spec/integration/provider/mount_spec.rb +169 -0
- data/spec/integration/provider/package_spec.rb +44 -0
- data/spec/integration/provider/service/init_spec.rb +46 -0
- data/spec/integration/provider/service/systemd_spec.rb +20 -0
- data/spec/integration/provider/ssh_authorized_key_spec.rb +219 -0
- data/spec/integration/reference/providers_spec.rb +16 -0
- data/spec/integration/reports_spec.rb +14 -0
- data/spec/integration/resource/catalog_spec.rb +54 -0
- data/spec/integration/resource/type_collection_spec.rb +94 -0
- data/spec/integration/ssl/autosign_spec.rb +130 -0
- data/spec/integration/ssl/certificate_authority_spec.rb +137 -0
- data/spec/integration/ssl/certificate_request_spec.rb +54 -0
- data/spec/integration/ssl/certificate_revocation_list_spec.rb +37 -0
- data/spec/integration/ssl/host_spec.rb +84 -0
- data/spec/integration/transaction/report_spec.rb +24 -0
- data/spec/integration/transaction_spec.rb +346 -0
- data/spec/integration/type/exec_spec.rb +77 -0
- data/spec/integration/type/file_spec.rb +1375 -0
- data/spec/integration/type/nagios_spec.rb +80 -0
- data/spec/integration/type/package_spec.rb +28 -0
- data/spec/integration/type/tidy_spec.rb +31 -0
- data/spec/integration/type_spec.rb +32 -0
- data/spec/integration/util/autoload_spec.rb +107 -0
- data/spec/integration/util/execution_spec.rb +17 -0
- data/spec/integration/util/feature_spec.rb +53 -0
- data/spec/integration/util/rdoc/parser_spec.rb +261 -0
- data/spec/integration/util/settings_spec.rb +89 -0
- data/spec/integration/util/windows/process_spec.rb +22 -0
- data/spec/integration/util/windows/security_spec.rb +846 -0
- data/spec/integration/util/windows/user_spec.rb +59 -0
- data/spec/integration/util_spec.rb +111 -0
- data/spec/lib/matchers/containment_matchers.rb +52 -0
- data/spec/lib/matchers/include.rb +27 -0
- data/spec/lib/matchers/include_in_order.rb +21 -0
- data/spec/lib/matchers/include_in_order_spec.rb +30 -0
- data/spec/lib/matchers/include_spec.rb +32 -0
- data/spec/lib/matchers/json.rb +167 -0
- data/spec/lib/matchers/match_tokens2.rb +74 -0
- data/spec/lib/matchers/relationship_graph_matchers.rb +48 -0
- data/spec/lib/matchers/resource.rb +35 -0
- data/spec/lib/puppet/face/1.0.0/huzzah.rb +8 -0
- data/spec/lib/puppet/face/basetest.rb +51 -0
- data/spec/lib/puppet/face/huzzah.rb +8 -0
- data/spec/lib/puppet/face/huzzah/obsolete.rb +6 -0
- data/spec/lib/puppet/face/version_matching.rb +12 -0
- data/spec/lib/puppet/indirector/indirector_testing/json.rb +6 -0
- data/spec/lib/puppet/indirector/indirector_testing/memory.rb +7 -0
- data/spec/lib/puppet/indirector/indirector_testing/msgpack.rb +6 -0
- data/spec/lib/puppet/indirector_testing.rb +37 -0
- data/spec/lib/puppet_spec/compiler.rb +36 -0
- data/spec/lib/puppet_spec/database.rb +29 -0
- data/spec/lib/puppet_spec/files.rb +60 -0
- data/spec/lib/puppet_spec/fixtures.rb +28 -0
- data/spec/lib/puppet_spec/matchers.rb +120 -0
- data/spec/lib/puppet_spec/modules.rb +26 -0
- data/spec/lib/puppet_spec/pops.rb +16 -0
- data/spec/lib/puppet_spec/scope.rb +14 -0
- data/spec/lib/puppet_spec/settings.rb +15 -0
- data/spec/lib/puppet_spec/verbose.rb +9 -0
- data/spec/monkey_patches/alias_should_to_must.rb +21 -0
- data/spec/shared_behaviours/all_parsedfile_providers.rb +21 -0
- data/spec/shared_behaviours/an_indirector_face.rb +6 -0
- data/spec/shared_behaviours/documentation_on_faces.rb +263 -0
- data/spec/shared_behaviours/file_server_terminus.rb +41 -0
- data/spec/shared_behaviours/file_serving.rb +75 -0
- data/spec/shared_behaviours/file_serving_model.rb +72 -0
- data/spec/shared_behaviours/memory_terminus.rb +28 -0
- data/spec/shared_behaviours/path_parameters.rb +160 -0
- data/spec/shared_behaviours/store_configs_terminus.rb +21 -0
- data/spec/shared_behaviours/things_that_declare_options.rb +262 -0
- data/spec/shared_contexts/platform.rb +52 -0
- data/spec/spec_helper.rb +193 -0
- data/spec/unit/agent/disabler_spec.rb +64 -0
- data/spec/unit/agent/locker_spec.rb +100 -0
- data/spec/unit/agent_spec.rb +327 -0
- data/spec/unit/application/agent_spec.rb +656 -0
- data/spec/unit/application/apply_spec.rb +455 -0
- data/spec/unit/application/cert_spec.rb +220 -0
- data/spec/unit/application/certificate_spec.rb +22 -0
- data/spec/unit/application/config_spec.rb +9 -0
- data/spec/unit/application/describe_spec.rb +79 -0
- data/spec/unit/application/device_spec.rb +415 -0
- data/spec/unit/application/doc_spec.rb +333 -0
- data/spec/unit/application/face_base_spec.rb +408 -0
- data/spec/unit/application/facts_spec.rb +32 -0
- data/spec/unit/application/filebucket_spec.rb +207 -0
- data/spec/unit/application/indirection_base_spec.rb +44 -0
- data/spec/unit/application/inspect_spec.rb +285 -0
- data/spec/unit/application/kick_spec.rb +296 -0
- data/spec/unit/application/master_spec.rb +355 -0
- data/spec/unit/application/queue_spec.rb +168 -0
- data/spec/unit/application/resource_spec.rb +214 -0
- data/spec/unit/application/secret_agent_spec.rb +34 -0
- data/spec/unit/application_spec.rb +645 -0
- data/spec/unit/configurer/downloader_spec.rb +210 -0
- data/spec/unit/configurer/fact_handler_spec.rb +89 -0
- data/spec/unit/configurer/plugin_handler_spec.rb +42 -0
- data/spec/unit/configurer_spec.rb +655 -0
- data/spec/unit/confine/exists_spec.rb +80 -0
- data/spec/unit/confine/false_spec.rb +52 -0
- data/spec/unit/confine/feature_spec.rb +57 -0
- data/spec/unit/confine/true_spec.rb +52 -0
- data/spec/unit/confine/variable_spec.rb +106 -0
- data/spec/unit/confine_collection_spec.rb +133 -0
- data/spec/unit/confine_spec.rb +77 -0
- data/spec/unit/confiner_spec.rb +62 -0
- data/spec/unit/context/trusted_information_spec.rb +124 -0
- data/spec/unit/context_spec.rb +74 -0
- data/spec/unit/daemon_spec.rb +255 -0
- data/spec/unit/data_binding_spec.rb +11 -0
- data/spec/unit/defaults_spec.rb +44 -0
- data/spec/unit/dsl/resource_api_spec.rb +180 -0
- data/spec/unit/dsl/resource_type_api_spec.rb +53 -0
- data/spec/unit/environments_spec.rb +126 -0
- data/spec/unit/face/catalog_spec.rb +7 -0
- data/spec/unit/face/certificate_request_spec.rb +7 -0
- data/spec/unit/face/certificate_revocation_list_spec.rb +7 -0
- data/spec/unit/face/certificate_spec.rb +223 -0
- data/spec/unit/face/config_spec.rb +46 -0
- data/spec/unit/face/facts_spec.rb +23 -0
- data/spec/unit/face/file_spec.rb +12 -0
- data/spec/unit/face/help_spec.rb +144 -0
- data/spec/unit/face/instrumentation_data_spec.rb +7 -0
- data/spec/unit/face/instrumentation_listener_spec.rb +38 -0
- data/spec/unit/face/instrumentation_probe_spec.rb +21 -0
- data/spec/unit/face/key_spec.rb +7 -0
- data/spec/unit/face/module/build_spec.rb +69 -0
- data/spec/unit/face/module/install_spec.rb +113 -0
- data/spec/unit/face/module/list_spec.rb +195 -0
- data/spec/unit/face/module/search_spec.rb +201 -0
- data/spec/unit/face/module/uninstall_spec.rb +70 -0
- data/spec/unit/face/module/upgrade_spec.rb +26 -0
- data/spec/unit/face/module_spec.rb +3 -0
- data/spec/unit/face/node_spec.rb +272 -0
- data/spec/unit/face/parser_spec.rb +70 -0
- data/spec/unit/face/plugin_spec.rb +10 -0
- data/spec/unit/face/report_spec.rb +7 -0
- data/spec/unit/face/resource_spec.rb +7 -0
- data/spec/unit/face/resource_type_spec.rb +7 -0
- data/spec/unit/face/secret_agent_spec.rb +27 -0
- data/spec/unit/face_spec.rb +1 -0
- data/spec/unit/file_bucket/dipper_spec.rb +170 -0
- data/spec/unit/file_bucket/file_spec.rb +128 -0
- data/spec/unit/file_serving/base_spec.rb +168 -0
- data/spec/unit/file_serving/configuration/parser_spec.rb +186 -0
- data/spec/unit/file_serving/configuration_spec.rb +231 -0
- data/spec/unit/file_serving/content_spec.rb +112 -0
- data/spec/unit/file_serving/fileset_spec.rb +354 -0
- data/spec/unit/file_serving/metadata_spec.rb +432 -0
- data/spec/unit/file_serving/mount/file_spec.rb +189 -0
- data/spec/unit/file_serving/mount/modules_spec.rb +70 -0
- data/spec/unit/file_serving/mount/pluginfacts_spec.rb +73 -0
- data/spec/unit/file_serving/mount/plugins_spec.rb +73 -0
- data/spec/unit/file_serving/mount_spec.rb +31 -0
- data/spec/unit/file_serving/terminus_helper_spec.rb +94 -0
- data/spec/unit/file_serving/terminus_selector_spec.rb +58 -0
- data/spec/unit/file_system/path_pattern_spec.rb +138 -0
- data/spec/unit/file_system/tempfile_spec.rb +48 -0
- data/spec/unit/file_system_spec.rb +508 -0
- data/spec/unit/forge/errors_spec.rb +82 -0
- data/spec/unit/forge/repository_spec.rb +121 -0
- data/spec/unit/forge_spec.rb +60 -0
- data/spec/unit/graph/key_spec.rb +41 -0
- data/spec/unit/graph/rb_tree_map_spec.rb +572 -0
- data/spec/unit/graph/relationship_graph_spec.rb +387 -0
- data/spec/unit/graph/sequential_prioritizer_spec.rb +32 -0
- data/spec/unit/graph/simple_graph.rb +721 -0
- data/spec/unit/graph/title_hash_prioritizer_spec.rb +49 -0
- data/spec/unit/hiera/backend/puppet_backend_spec.rb +148 -0
- data/spec/unit/hiera/scope_spec.rb +89 -0
- data/spec/unit/hiera_puppet_spec.rb +118 -0
- data/spec/unit/indirector/active_record_spec.rb +75 -0
- data/spec/unit/indirector/catalog/active_record_spec.rb +107 -0
- data/spec/unit/indirector/catalog/compiler_spec.rb +253 -0
- data/spec/unit/indirector/catalog/json_spec.rb +12 -0
- data/spec/unit/indirector/catalog/msgpack_spec.rb +12 -0
- data/spec/unit/indirector/catalog/queue_spec.rb +19 -0
- data/spec/unit/indirector/catalog/rest_spec.rb +10 -0
- data/spec/unit/indirector/catalog/static_compiler_spec.rb +225 -0
- data/spec/unit/indirector/catalog/store_configs_spec.rb +17 -0
- data/spec/unit/indirector/catalog/yaml_spec.rb +24 -0
- data/spec/unit/indirector/certificate/ca_spec.rb +23 -0
- data/spec/unit/indirector/certificate/disabled_ca_spec.rb +33 -0
- data/spec/unit/indirector/certificate/file_spec.rb +23 -0
- data/spec/unit/indirector/certificate/rest_spec.rb +63 -0
- data/spec/unit/indirector/certificate_request/ca_spec.rb +57 -0
- data/spec/unit/indirector/certificate_request/disabled_ca_spec.rb +33 -0
- data/spec/unit/indirector/certificate_request/file_spec.rb +15 -0
- data/spec/unit/indirector/certificate_request/rest_spec.rb +26 -0
- data/spec/unit/indirector/certificate_revocation_list/ca_spec.rb +16 -0
- data/spec/unit/indirector/certificate_revocation_list/disabled_ca_spec.rb +33 -0
- data/spec/unit/indirector/certificate_revocation_list/file_spec.rb +17 -0
- data/spec/unit/indirector/certificate_revocation_list/rest_spec.rb +26 -0
- data/spec/unit/indirector/certificate_status/file_spec.rb +191 -0
- data/spec/unit/indirector/certificate_status/rest_spec.rb +18 -0
- data/spec/unit/indirector/code_spec.rb +31 -0
- data/spec/unit/indirector/data_binding/hiera_spec.rb +114 -0
- data/spec/unit/indirector/data_binding/none_spec.rb +28 -0
- data/spec/unit/indirector/direct_file_server_spec.rb +80 -0
- data/spec/unit/indirector/envelope_spec.rb +33 -0
- data/spec/unit/indirector/exec_spec.rb +58 -0
- data/spec/unit/indirector/face_spec.rb +70 -0
- data/spec/unit/indirector/facts/active_record_spec.rb +113 -0
- data/spec/unit/indirector/facts/couch_spec.rb +102 -0
- data/spec/unit/indirector/facts/facter_spec.rb +197 -0
- data/spec/unit/indirector/facts/inventory_active_record_spec.rb +175 -0
- data/spec/unit/indirector/facts/inventory_service_spec.rb +21 -0
- data/spec/unit/indirector/facts/network_device_spec.rb +88 -0
- data/spec/unit/indirector/facts/rest_spec.rb +10 -0
- data/spec/unit/indirector/facts/store_configs_spec.rb +17 -0
- data/spec/unit/indirector/facts/yaml_spec.rb +239 -0
- data/spec/unit/indirector/file_bucket_file/file_spec.rb +285 -0
- data/spec/unit/indirector/file_bucket_file/rest_spec.rb +10 -0
- data/spec/unit/indirector/file_bucket_file/selector_spec.rb +29 -0
- data/spec/unit/indirector/file_content/file_server_spec.rb +14 -0
- data/spec/unit/indirector/file_content/file_spec.rb +14 -0
- data/spec/unit/indirector/file_content/rest_spec.rb +14 -0
- data/spec/unit/indirector/file_content/selector_spec.rb +10 -0
- data/spec/unit/indirector/file_metadata/file_server_spec.rb +14 -0
- data/spec/unit/indirector/file_metadata/file_spec.rb +50 -0
- data/spec/unit/indirector/file_metadata/rest_spec.rb +13 -0
- data/spec/unit/indirector/file_metadata/selector_spec.rb +11 -0
- data/spec/unit/indirector/file_server_spec.rb +263 -0
- data/spec/unit/indirector/indirection_spec.rb +875 -0
- data/spec/unit/indirector/instrumentation_data/local_spec.rb +52 -0
- data/spec/unit/indirector/instrumentation_data/rest_spec.rb +11 -0
- data/spec/unit/indirector/instrumentation_listener/local_spec.rb +65 -0
- data/spec/unit/indirector/instrumentation_listener/rest_spec.rb +11 -0
- data/spec/unit/indirector/instrumentation_probe/local_spec.rb +65 -0
- data/spec/unit/indirector/instrumentation_probe/rest_spec.rb +11 -0
- data/spec/unit/indirector/json_spec.rb +193 -0
- data/spec/unit/indirector/key/ca_spec.rb +23 -0
- data/spec/unit/indirector/key/disabled_ca_spec.rb +33 -0
- data/spec/unit/indirector/key/file_spec.rb +97 -0
- data/spec/unit/indirector/ldap_spec.rb +137 -0
- data/spec/unit/indirector/memory_spec.rb +27 -0
- data/spec/unit/indirector/msgpack_spec.rb +191 -0
- data/spec/unit/indirector/node/active_record_spec.rb +48 -0
- data/spec/unit/indirector/node/exec_spec.rb +76 -0
- data/spec/unit/indirector/node/ldap_spec.rb +441 -0
- data/spec/unit/indirector/node/memory_spec.rb +18 -0
- data/spec/unit/indirector/node/msgpack_spec.rb +24 -0
- data/spec/unit/indirector/node/plain_spec.rb +26 -0
- data/spec/unit/indirector/node/rest_spec.rb +12 -0
- data/spec/unit/indirector/node/store_configs_spec.rb +17 -0
- data/spec/unit/indirector/node/yaml_spec.rb +24 -0
- data/spec/unit/indirector/none_spec.rb +33 -0
- data/spec/unit/indirector/plain_spec.rb +27 -0
- data/spec/unit/indirector/queue_spec.rb +115 -0
- data/spec/unit/indirector/report/msgpack_spec.rb +28 -0
- data/spec/unit/indirector/report/processor_spec.rb +100 -0
- data/spec/unit/indirector/report/rest_spec.rb +67 -0
- data/spec/unit/indirector/report/yaml_spec.rb +28 -0
- data/spec/unit/indirector/request_spec.rb +605 -0
- data/spec/unit/indirector/resource/active_record_spec.rb +166 -0
- data/spec/unit/indirector/resource/ral_spec.rb +142 -0
- data/spec/unit/indirector/resource/rest_spec.rb +10 -0
- data/spec/unit/indirector/resource/store_configs_spec.rb +23 -0
- data/spec/unit/indirector/resource_type/parser_spec.rb +249 -0
- data/spec/unit/indirector/resource_type/rest_spec.rb +14 -0
- data/spec/unit/indirector/rest_spec.rb +537 -0
- data/spec/unit/indirector/run/local_spec.rb +21 -0
- data/spec/unit/indirector/run/rest_spec.rb +10 -0
- data/spec/unit/indirector/ssl_file_spec.rb +328 -0
- data/spec/unit/indirector/status/local_spec.rb +11 -0
- data/spec/unit/indirector/status/rest_spec.rb +10 -0
- data/spec/unit/indirector/store_configs_spec.rb +8 -0
- data/spec/unit/indirector/terminus_spec.rb +264 -0
- data/spec/unit/indirector/yaml_spec.rb +166 -0
- data/spec/unit/indirector_spec.rb +150 -0
- data/spec/unit/interface/action_builder_spec.rb +217 -0
- data/spec/unit/interface/action_manager_spec.rb +280 -0
- data/spec/unit/interface/action_spec.rb +650 -0
- data/spec/unit/interface/documentation_spec.rb +33 -0
- data/spec/unit/interface/face_collection_spec.rb +200 -0
- data/spec/unit/interface/option_builder_spec.rb +86 -0
- data/spec/unit/interface/option_spec.rb +156 -0
- data/spec/unit/interface_spec.rb +271 -0
- data/spec/unit/man_spec.rb +32 -0
- data/spec/unit/module_spec.rb +710 -0
- data/spec/unit/module_tool/application_spec.rb +25 -0
- data/spec/unit/module_tool/applications/builder_spec.rb +38 -0
- data/spec/unit/module_tool/applications/checksummer_spec.rb +134 -0
- data/spec/unit/module_tool/applications/installer_spec.rb +331 -0
- data/spec/unit/module_tool/applications/searcher_spec.rb +38 -0
- data/spec/unit/module_tool/applications/uninstaller_spec.rb +207 -0
- data/spec/unit/module_tool/applications/unpacker_spec.rb +34 -0
- data/spec/unit/module_tool/applications/upgrader_spec.rb +34 -0
- data/spec/unit/module_tool/install_directory_spec.rb +70 -0
- data/spec/unit/module_tool/metadata_spec.rb +24 -0
- data/spec/unit/module_tool/tar/gnu_spec.rb +22 -0
- data/spec/unit/module_tool/tar/mini_spec.rb +59 -0
- data/spec/unit/module_tool/tar/solaris_spec.rb +22 -0
- data/spec/unit/module_tool/tar_spec.rb +45 -0
- data/spec/unit/module_tool_spec.rb +204 -0
- data/spec/unit/network/auth_config_parser_spec.rb +101 -0
- data/spec/unit/network/authconfig_spec.rb +109 -0
- data/spec/unit/network/authentication_spec.rb +100 -0
- data/spec/unit/network/authorization_spec.rb +34 -0
- data/spec/unit/network/authstore_spec.rb +424 -0
- data/spec/unit/network/format_handler_spec.rb +94 -0
- data/spec/unit/network/format_spec.rb +197 -0
- data/spec/unit/network/format_support_spec.rb +199 -0
- data/spec/unit/network/formats_spec.rb +422 -0
- data/spec/unit/network/http/api/v1_spec.rb +519 -0
- data/spec/unit/network/http/api/v2/authorization_spec.rb +57 -0
- data/spec/unit/network/http/api/v2/environments_spec.rb +42 -0
- data/spec/unit/network/http/api/v2_spec.rb +14 -0
- data/spec/unit/network/http/compression_spec.rb +196 -0
- data/spec/unit/network/http/connection_spec.rb +271 -0
- data/spec/unit/network/http/error_spec.rb +30 -0
- data/spec/unit/network/http/handler_spec.rb +222 -0
- data/spec/unit/network/http/rack/rest_spec.rb +316 -0
- data/spec/unit/network/http/rack_spec.rb +43 -0
- data/spec/unit/network/http/route_spec.rb +75 -0
- data/spec/unit/network/http/webrick/rest_spec.rb +231 -0
- data/spec/unit/network/http/webrick_spec.rb +271 -0
- data/spec/unit/network/http_pool_spec.rb +74 -0
- data/spec/unit/network/resolver_spec.rb +207 -0
- data/spec/unit/network/rights_spec.rb +438 -0
- data/spec/unit/network/server_spec.rb +95 -0
- data/spec/unit/node/environment_spec.rb +466 -0
- data/spec/unit/node/facts_spec.rb +175 -0
- data/spec/unit/node_spec.rb +323 -0
- data/spec/unit/other/selinux_spec.rb +99 -0
- data/spec/unit/parameter/boolean_spec.rb +35 -0
- data/spec/unit/parameter/package_options_spec.rb +44 -0
- data/spec/unit/parameter/path_spec.rb +24 -0
- data/spec/unit/parameter/value_collection_spec.rb +166 -0
- data/spec/unit/parameter/value_spec.rb +87 -0
- data/spec/unit/parameter_spec.rb +193 -0
- data/spec/unit/parser/ast/arithmetic_operator_spec.rb +160 -0
- data/spec/unit/parser/ast/astarray_spec.rb +56 -0
- data/spec/unit/parser/ast/asthash_spec.rb +98 -0
- data/spec/unit/parser/ast/block_expression_spec.rb +67 -0
- data/spec/unit/parser/ast/boolean_operator_spec.rb +54 -0
- data/spec/unit/parser/ast/casestatement_spec.rb +168 -0
- data/spec/unit/parser/ast/collection_spec.rb +70 -0
- data/spec/unit/parser/ast/collexpr_spec.rb +120 -0
- data/spec/unit/parser/ast/comparison_operator_spec.rb +118 -0
- data/spec/unit/parser/ast/definition_spec.rb +21 -0
- data/spec/unit/parser/ast/function_spec.rb +92 -0
- data/spec/unit/parser/ast/hostclass_spec.rb +72 -0
- data/spec/unit/parser/ast/ifstatement_spec.rb +77 -0
- data/spec/unit/parser/ast/in_operator_spec.rb +61 -0
- data/spec/unit/parser/ast/leaf_spec.rb +511 -0
- data/spec/unit/parser/ast/match_operator_spec.rb +51 -0
- data/spec/unit/parser/ast/minus_spec.rb +37 -0
- data/spec/unit/parser/ast/node_spec.rb +30 -0
- data/spec/unit/parser/ast/nop_spec.rb +19 -0
- data/spec/unit/parser/ast/not_spec.rb +31 -0
- data/spec/unit/parser/ast/relationship_spec.rb +87 -0
- data/spec/unit/parser/ast/resource_defaults_spec.rb +21 -0
- data/spec/unit/parser/ast/resource_override_spec.rb +50 -0
- data/spec/unit/parser/ast/resource_reference_spec.rb +56 -0
- data/spec/unit/parser/ast/resource_spec.rb +183 -0
- data/spec/unit/parser/ast/resourceparam_spec.rb +51 -0
- data/spec/unit/parser/ast/selector_spec.rb +88 -0
- data/spec/unit/parser/ast/vardef_spec.rb +68 -0
- data/spec/unit/parser/ast_spec.rb +76 -0
- data/spec/unit/parser/collector_spec.rb +438 -0
- data/spec/unit/parser/compiler_spec.rb +903 -0
- data/spec/unit/parser/eparser_adapter_spec.rb +407 -0
- data/spec/unit/parser/files_spec.rb +149 -0
- data/spec/unit/parser/functions/contain_spec.rb +185 -0
- data/spec/unit/parser/functions/create_resources_spec.rb +206 -0
- data/spec/unit/parser/functions/defined_spec.rb +114 -0
- data/spec/unit/parser/functions/epp_spec.rb +88 -0
- data/spec/unit/parser/functions/extlookup_spec.rb +102 -0
- data/spec/unit/parser/functions/fail_spec.rb +28 -0
- data/spec/unit/parser/functions/file_spec.rb +55 -0
- data/spec/unit/parser/functions/fqdn_rand_spec.rb +46 -0
- data/spec/unit/parser/functions/generate_spec.rb +132 -0
- data/spec/unit/parser/functions/hiera_array_spec.rb +26 -0
- data/spec/unit/parser/functions/hiera_hash_spec.rb +22 -0
- data/spec/unit/parser/functions/hiera_include_spec.rb +39 -0
- data/spec/unit/parser/functions/hiera_spec.rb +22 -0
- data/spec/unit/parser/functions/include_spec.rb +51 -0
- data/spec/unit/parser/functions/inline_epp_spec.rb +82 -0
- data/spec/unit/parser/functions/inline_template_spec.rb +34 -0
- data/spec/unit/parser/functions/lookup_spec.rb +146 -0
- data/spec/unit/parser/functions/realize_spec.rb +53 -0
- data/spec/unit/parser/functions/regsubst_spec.rb +196 -0
- data/spec/unit/parser/functions/require_spec.rb +61 -0
- data/spec/unit/parser/functions/search_spec.rb +23 -0
- data/spec/unit/parser/functions/shellquote_spec.rb +67 -0
- data/spec/unit/parser/functions/split_spec.rb +53 -0
- data/spec/unit/parser/functions/sprintf_spec.rb +51 -0
- data/spec/unit/parser/functions/tag_spec.rb +28 -0
- data/spec/unit/parser/functions/template_spec.rb +89 -0
- data/spec/unit/parser/functions/versioncmp_spec.rb +33 -0
- data/spec/unit/parser/functions_spec.rb +135 -0
- data/spec/unit/parser/lexer_spec.rb +868 -0
- data/spec/unit/parser/methods/each_spec.rb +91 -0
- data/spec/unit/parser/methods/filter_spec.rb +135 -0
- data/spec/unit/parser/methods/map_spec.rb +184 -0
- data/spec/unit/parser/methods/reduce_spec.rb +78 -0
- data/spec/unit/parser/methods/shared.rb +45 -0
- data/spec/unit/parser/methods/slice_spec.rb +135 -0
- data/spec/unit/parser/parser_spec.rb +535 -0
- data/spec/unit/parser/relationship_spec.rb +93 -0
- data/spec/unit/parser/resource/param_spec.rb +44 -0
- data/spec/unit/parser/resource_spec.rb +586 -0
- data/spec/unit/parser/scope_spec.rb +661 -0
- data/spec/unit/parser/templatewrapper_spec.rb +118 -0
- data/spec/unit/parser/type_loader_spec.rb +225 -0
- data/spec/unit/pops/adaptable_spec.rb +141 -0
- data/spec/unit/pops/benchmark_spec.rb +142 -0
- data/spec/unit/pops/binder/binder_spec.rb +43 -0
- data/spec/unit/pops/binder/bindings_checker_spec.rb +155 -0
- data/spec/unit/pops/binder/bindings_composer_spec.rb +64 -0
- data/spec/unit/pops/binder/bindings_validator_factory_spec.rb +18 -0
- data/spec/unit/pops/binder/config/binder_config_spec.rb +35 -0
- data/spec/unit/pops/binder/injector_spec.rb +784 -0
- data/spec/unit/pops/containment_spec.rb +26 -0
- data/spec/unit/pops/evaluator/access_ops_spec.rb +376 -0
- data/spec/unit/pops/evaluator/arithmetic_ops_spec.rb +77 -0
- data/spec/unit/pops/evaluator/basic_expressions_spec.rb +103 -0
- data/spec/unit/pops/evaluator/collections_ops_spec.rb +111 -0
- data/spec/unit/pops/evaluator/comparison_ops_spec.rb +256 -0
- data/spec/unit/pops/evaluator/conditionals_spec.rb +190 -0
- data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +1045 -0
- data/spec/unit/pops/evaluator/evaluator_rspec_helper.rb +75 -0
- data/spec/unit/pops/evaluator/logical_ops_spec.rb +90 -0
- data/spec/unit/pops/evaluator/string_interpolation_spec.rb +44 -0
- data/spec/unit/pops/evaluator/variables_spec.rb +194 -0
- data/spec/unit/pops/factory_rspec_helper.rb +77 -0
- data/spec/unit/pops/factory_spec.rb +306 -0
- data/spec/unit/pops/issues_spec.rb +26 -0
- data/spec/unit/pops/label_provider_spec.rb +42 -0
- data/spec/unit/pops/model/ast_transformer_spec.rb +76 -0
- data/spec/unit/pops/model/model_spec.rb +37 -0
- data/spec/unit/pops/parser/epp_parser_spec.rb +86 -0
- data/spec/unit/pops/parser/evaluating_parser_spec.rb +90 -0
- data/spec/unit/pops/parser/lexer2_spec.rb +428 -0
- data/spec/unit/pops/parser/lexer_spec.rb +840 -0
- data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +273 -0
- data/spec/unit/pops/parser/parse_calls_spec.rb +101 -0
- data/spec/unit/pops/parser/parse_conditionals_spec.rb +150 -0
- data/spec/unit/pops/parser/parse_containers_spec.rb +206 -0
- data/spec/unit/pops/parser/parse_heredoc_spec.rb +73 -0
- data/spec/unit/pops/parser/parse_resource_spec.rb +242 -0
- data/spec/unit/pops/parser/parser_rspec_helper.rb +11 -0
- data/spec/unit/pops/parser/parser_spec.rb +17 -0
- data/spec/unit/pops/parser/rgen_sanitycheck_spec.rb +23 -0
- data/spec/unit/pops/transformer/transform_basic_expressions_spec.rb +243 -0
- data/spec/unit/pops/transformer/transform_calls_spec.rb +115 -0
- data/spec/unit/pops/transformer/transform_conditionals_spec.rb +123 -0
- data/spec/unit/pops/transformer/transform_containers_spec.rb +190 -0
- data/spec/unit/pops/transformer/transform_resource_spec.rb +185 -0
- data/spec/unit/pops/transformer/transformer_rspec_helper.rb +27 -0
- data/spec/unit/pops/types/enumeration_spec.rb +50 -0
- data/spec/unit/pops/types/type_calculator_spec.rb +1459 -0
- data/spec/unit/pops/types/type_factory_spec.rb +169 -0
- data/spec/unit/pops/types/type_parser_spec.rb +197 -0
- data/spec/unit/pops/validator/validator_spec.rb +68 -0
- data/spec/unit/pops/visitor_spec.rb +94 -0
- data/spec/unit/property/boolean_spec.rb +24 -0
- data/spec/unit/property/ensure_spec.rb +12 -0
- data/spec/unit/property/keyvalue_spec.rb +170 -0
- data/spec/unit/property/list_spec.rb +165 -0
- data/spec/unit/property/ordered_list_spec.rb +63 -0
- data/spec/unit/property_spec.rb +541 -0
- data/spec/unit/provider/README.markdown +4 -0
- data/spec/unit/provider/aixobject_spec.rb +101 -0
- data/spec/unit/provider/augeas/augeas_spec.rb +897 -0
- data/spec/unit/provider/cisco_spec.rb +15 -0
- data/spec/unit/provider/command_spec.rb +62 -0
- data/spec/unit/provider/cron/crontab_spec.rb +206 -0
- data/spec/unit/provider/cron/parsed_spec.rb +321 -0
- data/spec/unit/provider/exec/posix_spec.rb +211 -0
- data/spec/unit/provider/exec/shell_spec.rb +53 -0
- data/spec/unit/provider/exec/windows_spec.rb +107 -0
- data/spec/unit/provider/exec_spec.rb +35 -0
- data/spec/unit/provider/file/posix_spec.rb +232 -0
- data/spec/unit/provider/file/windows_spec.rb +154 -0
- data/spec/unit/provider/group/groupadd_spec.rb +76 -0
- data/spec/unit/provider/group/ldap_spec.rb +101 -0
- data/spec/unit/provider/group/pw_spec.rb +81 -0
- data/spec/unit/provider/group/windows_adsi_spec.rb +168 -0
- data/spec/unit/provider/host/parsed_spec.rb +197 -0
- data/spec/unit/provider/interface/cisco_spec.rb +57 -0
- data/spec/unit/provider/ldap_spec.rb +244 -0
- data/spec/unit/provider/macauthorization_spec.rb +152 -0
- data/spec/unit/provider/mcx/mcxcontent_spec.rb +192 -0
- data/spec/unit/provider/mount/parsed_spec.rb +283 -0
- data/spec/unit/provider/mount_spec.rb +165 -0
- data/spec/unit/provider/naginator_spec.rb +65 -0
- data/spec/unit/provider/nameservice/directoryservice_spec.rb +189 -0
- data/spec/unit/provider/nameservice_spec.rb +304 -0
- data/spec/unit/provider/network_device_spec.rb +152 -0
- data/spec/unit/provider/package/aix_spec.rb +107 -0
- data/spec/unit/provider/package/appdmg_spec.rb +42 -0
- data/spec/unit/provider/package/apt_spec.rb +146 -0
- data/spec/unit/provider/package/aptitude_spec.rb +45 -0
- data/spec/unit/provider/package/aptrpm_spec.rb +45 -0
- data/spec/unit/provider/package/dpkg_spec.rb +281 -0
- data/spec/unit/provider/package/freebsd_spec.rb +54 -0
- data/spec/unit/provider/package/gem_spec.rb +162 -0
- data/spec/unit/provider/package/hpux_spec.rb +51 -0
- data/spec/unit/provider/package/macports_spec.rb +140 -0
- data/spec/unit/provider/package/msi_spec.rb +229 -0
- data/spec/unit/provider/package/nim_spec.rb +250 -0
- data/spec/unit/provider/package/openbsd_spec.rb +312 -0
- data/spec/unit/provider/package/opkg_spec.rb +180 -0
- data/spec/unit/provider/package/pacman_spec.rb +295 -0
- data/spec/unit/provider/package/pip_spec.rb +247 -0
- data/spec/unit/provider/package/pkg_spec.rb +255 -0
- data/spec/unit/provider/package/pkgdmg_spec.rb +144 -0
- data/spec/unit/provider/package/pkgin_spec.rb +178 -0
- data/spec/unit/provider/package/pkgutil_spec.rb +235 -0
- data/spec/unit/provider/package/portage_spec.rb +65 -0
- data/spec/unit/provider/package/rpm_spec.rb +367 -0
- data/spec/unit/provider/package/sun_spec.rb +114 -0
- data/spec/unit/provider/package/up2date_spec.rb +24 -0
- data/spec/unit/provider/package/urpmi.rb +80 -0
- data/spec/unit/provider/package/windows/exe_package_spec.rb +99 -0
- data/spec/unit/provider/package/windows/msi_package_spec.rb +115 -0
- data/spec/unit/provider/package/windows/package_spec.rb +126 -0
- data/spec/unit/provider/package/windows_spec.rb +251 -0
- data/spec/unit/provider/package/yum_spec.rb +195 -0
- data/spec/unit/provider/package/zypper_spec.rb +141 -0
- data/spec/unit/provider/parsedfile_spec.rb +228 -0
- data/spec/unit/provider/scheduled_task/win32_taskscheduler_spec.rb +1574 -0
- data/spec/unit/provider/selboolean_spec.rb +36 -0
- data/spec/unit/provider/selmodule-example.pp +0 -0
- data/spec/unit/provider/selmodule_spec.rb +73 -0
- data/spec/unit/provider/service/base_spec.rb +77 -0
- data/spec/unit/provider/service/daemontools_spec.rb +171 -0
- data/spec/unit/provider/service/debian_spec.rb +116 -0
- data/spec/unit/provider/service/freebsd_spec.rb +75 -0
- data/spec/unit/provider/service/gentoo_spec.rb +241 -0
- data/spec/unit/provider/service/init_spec.rb +212 -0
- data/spec/unit/provider/service/launchd_spec.rb +290 -0
- data/spec/unit/provider/service/openbsd_spec.rb +125 -0
- data/spec/unit/provider/service/openrc_spec.rb +225 -0
- data/spec/unit/provider/service/openwrt_spec.rb +109 -0
- data/spec/unit/provider/service/redhat_spec.rb +148 -0
- data/spec/unit/provider/service/runit_spec.rb +145 -0
- data/spec/unit/provider/service/smf_spec.rb +153 -0
- data/spec/unit/provider/service/src_spec.rb +173 -0
- data/spec/unit/provider/service/systemd_spec.rb +162 -0
- data/spec/unit/provider/service/upstart_spec.rb +522 -0
- data/spec/unit/provider/service/windows_spec.rb +183 -0
- data/spec/unit/provider/ssh_authorized_key/parsed_spec.rb +255 -0
- data/spec/unit/provider/sshkey/parsed_spec.rb +71 -0
- data/spec/unit/provider/user/aix_spec.rb +162 -0
- data/spec/unit/provider/user/directoryservice_spec.rb +1063 -0
- data/spec/unit/provider/user/hpux_spec.rb +52 -0
- data/spec/unit/provider/user/ldap_spec.rb +289 -0
- data/spec/unit/provider/user/pw_spec.rb +214 -0
- data/spec/unit/provider/user/user_role_add_spec.rb +335 -0
- data/spec/unit/provider/user/useradd_spec.rb +430 -0
- data/spec/unit/provider/user/windows_adsi_spec.rb +173 -0
- data/spec/unit/provider/vlan/cisco_spec.rb +55 -0
- data/spec/unit/provider/yumrepo/inifile_spec.rb +105 -0
- data/spec/unit/provider/zfs/zfs_spec.rb +106 -0
- data/spec/unit/provider/zone/solaris_spec.rb +195 -0
- data/spec/unit/provider/zpool/zpool_spec.rb +214 -0
- data/spec/unit/provider_spec.rb +714 -0
- data/spec/unit/puppet_spec.rb +41 -0
- data/spec/unit/rails/host_spec.rb +162 -0
- data/spec/unit/rails/param_value_spec.rb +46 -0
- data/spec/unit/rails/resource_spec.rb +115 -0
- data/spec/unit/rails_spec.rb +244 -0
- data/spec/unit/relationship_spec.rb +228 -0
- data/spec/unit/reports/http_spec.rb +100 -0
- data/spec/unit/reports/rrdgraph_spec.rb +29 -0
- data/spec/unit/reports/store_spec.rb +76 -0
- data/spec/unit/reports/tagmail_spec.rb +218 -0
- data/spec/unit/reports_spec.rb +60 -0
- data/spec/unit/resource/catalog_spec.rb +973 -0
- data/spec/unit/resource/status_spec.rb +220 -0
- data/spec/unit/resource/type_collection_helper_spec.rb +24 -0
- data/spec/unit/resource/type_collection_spec.rb +417 -0
- data/spec/unit/resource/type_spec.rb +777 -0
- data/spec/unit/resource_spec.rb +979 -0
- data/spec/unit/run_spec.rb +175 -0
- data/spec/unit/scheduler/job_spec.rb +79 -0
- data/spec/unit/scheduler/scheduler_spec.rb +116 -0
- data/spec/unit/scheduler/splay_job_spec.rb +35 -0
- data/spec/unit/semver_spec.rb +303 -0
- data/spec/unit/settings/autosign_setting_spec.rb +103 -0
- data/spec/unit/settings/config_file_spec.rb +153 -0
- data/spec/unit/settings/directory_setting_spec.rb +32 -0
- data/spec/unit/settings/duration_setting_spec.rb +45 -0
- data/spec/unit/settings/enum_setting_spec.rb +27 -0
- data/spec/unit/settings/file_setting_spec.rb +297 -0
- data/spec/unit/settings/ini_file_spec.rb +184 -0
- data/spec/unit/settings/path_setting_spec.rb +30 -0
- data/spec/unit/settings/priority_setting_spec.rb +66 -0
- data/spec/unit/settings/string_setting_spec.rb +75 -0
- data/spec/unit/settings/terminus_setting_spec.rb +28 -0
- data/spec/unit/settings/value_translator_spec.rb +77 -0
- data/spec/unit/settings_spec.rb +1735 -0
- data/spec/unit/ssl/base_spec.rb +85 -0
- data/spec/unit/ssl/certificate_authority/autosign_command_spec.rb +30 -0
- data/spec/unit/ssl/certificate_authority/interface_spec.rb +366 -0
- data/spec/unit/ssl/certificate_authority_spec.rb +1105 -0
- data/spec/unit/ssl/certificate_factory_spec.rb +168 -0
- data/spec/unit/ssl/certificate_request_attributes_spec.rb +61 -0
- data/spec/unit/ssl/certificate_request_spec.rb +369 -0
- data/spec/unit/ssl/certificate_revocation_list_spec.rb +196 -0
- data/spec/unit/ssl/certificate_spec.rb +193 -0
- data/spec/unit/ssl/configuration_spec.rb +134 -0
- data/spec/unit/ssl/digest_spec.rb +35 -0
- data/spec/unit/ssl/host_spec.rb +940 -0
- data/spec/unit/ssl/inventory_spec.rb +137 -0
- data/spec/unit/ssl/key_spec.rb +191 -0
- data/spec/unit/ssl/oids_spec.rb +48 -0
- data/spec/unit/ssl/validator_spec.rb +354 -0
- data/spec/unit/status_spec.rb +51 -0
- data/spec/unit/transaction/additional_resource_generator_spec.rb +411 -0
- data/spec/unit/transaction/event_manager_spec.rb +310 -0
- data/spec/unit/transaction/event_spec.rb +192 -0
- data/spec/unit/transaction/report_spec.rb +497 -0
- data/spec/unit/transaction/resource_harness_spec.rb +478 -0
- data/spec/unit/transaction_spec.rb +671 -0
- data/spec/unit/type/README.markdown +4 -0
- data/spec/unit/type/augeas_spec.rb +119 -0
- data/spec/unit/type/component_spec.rb +53 -0
- data/spec/unit/type/computer_spec.rb +80 -0
- data/spec/unit/type/cron_spec.rb +544 -0
- data/spec/unit/type/exec_spec.rb +763 -0
- data/spec/unit/type/file/checksum_spec.rb +73 -0
- data/spec/unit/type/file/content_spec.rb +463 -0
- data/spec/unit/type/file/ctime_spec.rb +34 -0
- data/spec/unit/type/file/ensure_spec.rb +123 -0
- data/spec/unit/type/file/group_spec.rb +60 -0
- data/spec/unit/type/file/mode_spec.rb +195 -0
- data/spec/unit/type/file/mtime_spec.rb +34 -0
- data/spec/unit/type/file/owner_spec.rb +58 -0
- data/spec/unit/type/file/selinux_spec.rb +89 -0
- data/spec/unit/type/file/source_spec.rb +555 -0
- data/spec/unit/type/file/type_spec.rb +19 -0
- data/spec/unit/type/file_spec.rb +1502 -0
- data/spec/unit/type/filebucket_spec.rb +103 -0
- data/spec/unit/type/group_spec.rb +84 -0
- data/spec/unit/type/host_spec.rb +665 -0
- data/spec/unit/type/interface_spec.rb +97 -0
- data/spec/unit/type/k5login_spec.rb +115 -0
- data/spec/unit/type/macauthorization_spec.rb +110 -0
- data/spec/unit/type/mailalias_spec.rb +21 -0
- data/spec/unit/type/maillist_spec.rb +41 -0
- data/spec/unit/type/mcx_spec.rb +79 -0
- data/spec/unit/type/mount_spec.rb +592 -0
- data/spec/unit/type/nagios_spec.rb +284 -0
- data/spec/unit/type/noop_metaparam_spec.rb +38 -0
- data/spec/unit/type/package/package_settings_spec.rb +135 -0
- data/spec/unit/type/package_spec.rb +304 -0
- data/spec/unit/type/resources_spec.rb +284 -0
- data/spec/unit/type/schedule_spec.rb +607 -0
- data/spec/unit/type/scheduled_task_spec.rb +103 -0
- data/spec/unit/type/selboolean_spec.rb +44 -0
- data/spec/unit/type/selmodule_spec.rb +17 -0
- data/spec/unit/type/service_spec.rb +261 -0
- data/spec/unit/type/ssh_authorized_key_spec.rb +258 -0
- data/spec/unit/type/sshkey_spec.rb +77 -0
- data/spec/unit/type/stage_spec.rb +8 -0
- data/spec/unit/type/tidy_spec.rb +433 -0
- data/spec/unit/type/user_spec.rb +419 -0
- data/spec/unit/type/vlan_spec.rb +44 -0
- data/spec/unit/type/whit_spec.rb +10 -0
- data/spec/unit/type/yumrepo_spec.rb +78 -0
- data/spec/unit/type/zfs_spec.rb +46 -0
- data/spec/unit/type/zone_spec.rb +129 -0
- data/spec/unit/type/zpool_spec.rb +109 -0
- data/spec/unit/type_spec.rb +1094 -0
- data/spec/unit/util/adsi_spec.rb +437 -0
- data/spec/unit/util/autoload_spec.rb +256 -0
- data/spec/unit/util/backups_spec.rb +134 -0
- data/spec/unit/util/cache_accumulator_spec.rb +74 -0
- data/spec/unit/util/cacher_spec.rb +107 -0
- data/spec/unit/util/checksums_spec.rb +173 -0
- data/spec/unit/util/colors_spec.rb +83 -0
- data/spec/unit/util/command_line_spec.rb +188 -0
- data/spec/unit/util/command_line_utils/puppet_option_parser_spec.rb +129 -0
- data/spec/unit/util/constant_inflector_spec.rb +56 -0
- data/spec/unit/util/diff_spec.rb +31 -0
- data/spec/unit/util/docs_spec.rb +100 -0
- data/spec/unit/util/errors_spec.rb +37 -0
- data/spec/unit/util/execution_spec.rb +637 -0
- data/spec/unit/util/execution_stub_spec.rb +39 -0
- data/spec/unit/util/feature_spec.rb +92 -0
- data/spec/unit/util/filetype_spec.rb +211 -0
- data/spec/unit/util/http_proxy_spec.rb +83 -0
- data/spec/unit/util/inline_docs_spec.rb +31 -0
- data/spec/unit/util/instrumentation/data_spec.rb +46 -0
- data/spec/unit/util/instrumentation/indirection_probe_spec.rb +21 -0
- data/spec/unit/util/instrumentation/instrumentable_spec.rb +186 -0
- data/spec/unit/util/instrumentation/listener_spec.rb +101 -0
- data/spec/unit/util/instrumentation/listeners/log_spec.rb +34 -0
- data/spec/unit/util/instrumentation/listeners/performance_spec.rb +36 -0
- data/spec/unit/util/instrumentation_spec.rb +181 -0
- data/spec/unit/util/json_lockfile_spec.rb +50 -0
- data/spec/unit/util/ldap/connection_spec.rb +161 -0
- data/spec/unit/util/ldap/generator_spec.rb +50 -0
- data/spec/unit/util/ldap/manager_spec.rb +641 -0
- data/spec/unit/util/lockfile_spec.rb +118 -0
- data/spec/unit/util/log/destinations_spec.rb +183 -0
- data/spec/unit/util/log/rate_limited_logger_spec.rb +51 -0
- data/spec/unit/util/log_spec.rb +378 -0
- data/spec/unit/util/logging_spec.rb +151 -0
- data/spec/unit/util/metric_spec.rb +98 -0
- data/spec/unit/util/monkey_patches/lines_spec.rb +83 -0
- data/spec/unit/util/monkey_patches_spec.rb +328 -0
- data/spec/unit/util/nagios_maker_spec.rb +122 -0
- data/spec/unit/util/network_device/cisco/device_spec.rb +445 -0
- data/spec/unit/util/network_device/cisco/facts_spec.rb +64 -0
- data/spec/unit/util/network_device/cisco/interface_spec.rb +88 -0
- data/spec/unit/util/network_device/config_spec.rb +86 -0
- data/spec/unit/util/network_device/ipcalc_spec.rb +62 -0
- data/spec/unit/util/network_device/transport/base_spec.rb +41 -0
- data/spec/unit/util/network_device/transport/ssh_spec.rb +218 -0
- data/spec/unit/util/network_device/transport/telnet_spec.rb +84 -0
- data/spec/unit/util/network_device_spec.rb +50 -0
- data/spec/unit/util/package_spec.rb +20 -0
- data/spec/unit/util/pidlock_spec.rb +182 -0
- data/spec/unit/util/posix_spec.rb +251 -0
- data/spec/unit/util/profiler/logging_spec.rb +81 -0
- data/spec/unit/util/profiler/none_spec.rb +12 -0
- data/spec/unit/util/profiler/object_counts_spec.rb +14 -0
- data/spec/unit/util/profiler/wall_clock_spec.rb +13 -0
- data/spec/unit/util/pson_spec.rb +71 -0
- data/spec/unit/util/queue/stomp_spec.rb +137 -0
- data/spec/unit/util/queue_spec.rb +95 -0
- data/spec/unit/util/rdoc/parser_spec.rb +599 -0
- data/spec/unit/util/rdoc_spec.rb +141 -0
- data/spec/unit/util/reference_serializer_spec.rb +51 -0
- data/spec/unit/util/reference_spec.rb +39 -0
- data/spec/unit/util/resource_template_spec.rb +57 -0
- data/spec/unit/util/retryaction_spec.rb +62 -0
- data/spec/unit/util/rubygems_spec.rb +68 -0
- data/spec/unit/util/run_mode_spec.rb +145 -0
- data/spec/unit/util/selinux_spec.rb +289 -0
- data/spec/unit/util/ssl_spec.rb +92 -0
- data/spec/unit/util/storage_spec.rb +210 -0
- data/spec/unit/util/suidmanager_spec.rb +297 -0
- data/spec/unit/util/symbolic_file_mode_spec.rb +182 -0
- data/spec/unit/util/tag_set_spec.rb +46 -0
- data/spec/unit/util/tagging_spec.rb +131 -0
- data/spec/unit/util/terminal_spec.rb +42 -0
- data/spec/unit/util/user_attr_spec.rb +46 -0
- data/spec/unit/util/warnings_spec.rb +38 -0
- data/spec/unit/util/watched_file_spec.rb +52 -0
- data/spec/unit/util/watcher/periodic_watcher_spec.rb +52 -0
- data/spec/unit/util/watcher_spec.rb +56 -0
- data/spec/unit/util/windows/access_control_entry_spec.rb +67 -0
- data/spec/unit/util/windows/access_control_list_spec.rb +133 -0
- data/spec/unit/util/windows/registry_spec.rb +140 -0
- data/spec/unit/util/windows/root_certs_spec.rb +17 -0
- data/spec/unit/util/windows/security_descriptor_spec.rb +117 -0
- data/spec/unit/util/windows/sid_spec.rb +169 -0
- data/spec/unit/util/windows/string_spec.rb +54 -0
- data/spec/unit/util/yaml_spec.rb +55 -0
- data/spec/unit/util/zaml_spec.rb +304 -0
- data/spec/unit/util_spec.rb +577 -0
- data/spec/unit/version_spec.rb +42 -0
- data/spec/watchr.rb +142 -0
- data/tasks/benchmark.rake +109 -0
- data/tasks/ci.rake +29 -0
- data/tasks/manpages.rake +84 -0
- data/tasks/parallel.rake +408 -0
- data/tasks/parser.rake +5 -0
- data/tasks/yard.rake +59 -0
- metadata +3515 -0
@@ -0,0 +1,1459 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'puppet/pops'
|
3
|
+
|
4
|
+
describe 'The type calculator' do
|
5
|
+
let(:calculator) { Puppet::Pops::Types::TypeCalculator.new() }
|
6
|
+
|
7
|
+
def range_t(from, to)
|
8
|
+
t = Puppet::Pops::Types::PIntegerType.new
|
9
|
+
t.from = from
|
10
|
+
t.to = to
|
11
|
+
t
|
12
|
+
end
|
13
|
+
|
14
|
+
def pattern_t(*patterns)
|
15
|
+
Puppet::Pops::Types::TypeFactory.pattern(*patterns)
|
16
|
+
end
|
17
|
+
|
18
|
+
def regexp_t(pattern)
|
19
|
+
Puppet::Pops::Types::TypeFactory.regexp(pattern)
|
20
|
+
end
|
21
|
+
|
22
|
+
def string_t(*strings)
|
23
|
+
Puppet::Pops::Types::TypeFactory.string(*strings)
|
24
|
+
end
|
25
|
+
|
26
|
+
def enum_t(*strings)
|
27
|
+
Puppet::Pops::Types::TypeFactory.enum(*strings)
|
28
|
+
end
|
29
|
+
|
30
|
+
def variant_t(*types)
|
31
|
+
Puppet::Pops::Types::TypeFactory.variant(*types)
|
32
|
+
end
|
33
|
+
|
34
|
+
def integer_t()
|
35
|
+
Puppet::Pops::Types::TypeFactory.integer()
|
36
|
+
end
|
37
|
+
|
38
|
+
def array_t(t)
|
39
|
+
Puppet::Pops::Types::TypeFactory.array_of(t)
|
40
|
+
end
|
41
|
+
|
42
|
+
def hash_t(k,v)
|
43
|
+
Puppet::Pops::Types::TypeFactory.hash_of(v, k)
|
44
|
+
end
|
45
|
+
|
46
|
+
def data_t()
|
47
|
+
Puppet::Pops::Types::TypeFactory.data()
|
48
|
+
end
|
49
|
+
|
50
|
+
def factory()
|
51
|
+
Puppet::Pops::Types::TypeFactory
|
52
|
+
end
|
53
|
+
|
54
|
+
def collection_t()
|
55
|
+
Puppet::Pops::Types::TypeFactory.collection()
|
56
|
+
end
|
57
|
+
|
58
|
+
def tuple_t(*types)
|
59
|
+
Puppet::Pops::Types::TypeFactory.tuple(*types)
|
60
|
+
end
|
61
|
+
|
62
|
+
def struct_t(type_hash)
|
63
|
+
Puppet::Pops::Types::TypeFactory.struct(type_hash)
|
64
|
+
end
|
65
|
+
|
66
|
+
def types
|
67
|
+
Puppet::Pops::Types
|
68
|
+
end
|
69
|
+
|
70
|
+
shared_context "types_setup" do
|
71
|
+
|
72
|
+
def all_types
|
73
|
+
[ Puppet::Pops::Types::PObjectType,
|
74
|
+
Puppet::Pops::Types::PNilType,
|
75
|
+
Puppet::Pops::Types::PDataType,
|
76
|
+
Puppet::Pops::Types::PScalarType,
|
77
|
+
Puppet::Pops::Types::PStringType,
|
78
|
+
Puppet::Pops::Types::PNumericType,
|
79
|
+
Puppet::Pops::Types::PIntegerType,
|
80
|
+
Puppet::Pops::Types::PFloatType,
|
81
|
+
Puppet::Pops::Types::PRegexpType,
|
82
|
+
Puppet::Pops::Types::PBooleanType,
|
83
|
+
Puppet::Pops::Types::PCollectionType,
|
84
|
+
Puppet::Pops::Types::PArrayType,
|
85
|
+
Puppet::Pops::Types::PHashType,
|
86
|
+
Puppet::Pops::Types::PRubyType,
|
87
|
+
Puppet::Pops::Types::PHostClassType,
|
88
|
+
Puppet::Pops::Types::PResourceType,
|
89
|
+
Puppet::Pops::Types::PPatternType,
|
90
|
+
Puppet::Pops::Types::PEnumType,
|
91
|
+
Puppet::Pops::Types::PVariantType,
|
92
|
+
Puppet::Pops::Types::PStructType,
|
93
|
+
Puppet::Pops::Types::PTupleType,
|
94
|
+
]
|
95
|
+
end
|
96
|
+
|
97
|
+
def scalar_types
|
98
|
+
# PVariantType is also scalar, if its types are all Scalar
|
99
|
+
[
|
100
|
+
Puppet::Pops::Types::PScalarType,
|
101
|
+
Puppet::Pops::Types::PStringType,
|
102
|
+
Puppet::Pops::Types::PNumericType,
|
103
|
+
Puppet::Pops::Types::PIntegerType,
|
104
|
+
Puppet::Pops::Types::PFloatType,
|
105
|
+
Puppet::Pops::Types::PRegexpType,
|
106
|
+
Puppet::Pops::Types::PBooleanType,
|
107
|
+
Puppet::Pops::Types::PPatternType,
|
108
|
+
Puppet::Pops::Types::PEnumType,
|
109
|
+
]
|
110
|
+
end
|
111
|
+
|
112
|
+
def numeric_types
|
113
|
+
# PVariantType is also numeric, if its types are all numeric
|
114
|
+
[
|
115
|
+
Puppet::Pops::Types::PNumericType,
|
116
|
+
Puppet::Pops::Types::PIntegerType,
|
117
|
+
Puppet::Pops::Types::PFloatType,
|
118
|
+
]
|
119
|
+
end
|
120
|
+
|
121
|
+
def string_types
|
122
|
+
# PVariantType is also string type, if its types are all compatible
|
123
|
+
[
|
124
|
+
Puppet::Pops::Types::PStringType,
|
125
|
+
Puppet::Pops::Types::PPatternType,
|
126
|
+
Puppet::Pops::Types::PEnumType,
|
127
|
+
]
|
128
|
+
end
|
129
|
+
|
130
|
+
def collection_types
|
131
|
+
# PVariantType is also string type, if its types are all compatible
|
132
|
+
[
|
133
|
+
Puppet::Pops::Types::PCollectionType,
|
134
|
+
Puppet::Pops::Types::PHashType,
|
135
|
+
Puppet::Pops::Types::PArrayType,
|
136
|
+
Puppet::Pops::Types::PStructType,
|
137
|
+
Puppet::Pops::Types::PTupleType,
|
138
|
+
]
|
139
|
+
end
|
140
|
+
|
141
|
+
def data_compatible_types
|
142
|
+
result = scalar_types
|
143
|
+
result << Puppet::Pops::Types::PDataType
|
144
|
+
result << array_t(types::PDataType.new)
|
145
|
+
result << types::TypeFactory.hash_of_data
|
146
|
+
result << Puppet::Pops::Types::PNilType
|
147
|
+
tmp = tuple_t(types::PDataType.new)
|
148
|
+
result << (tmp)
|
149
|
+
tmp.size_type = range_t(0, nil)
|
150
|
+
result
|
151
|
+
end
|
152
|
+
|
153
|
+
def type_from_class(c)
|
154
|
+
c.is_a?(Class) ? c.new : c
|
155
|
+
end
|
156
|
+
end
|
157
|
+
|
158
|
+
context 'when inferring ruby' do
|
159
|
+
|
160
|
+
it 'fixnum translates to PIntegerType' do
|
161
|
+
calculator.infer(1).class.should == Puppet::Pops::Types::PIntegerType
|
162
|
+
end
|
163
|
+
|
164
|
+
it 'large fixnum (or bignum depending on architecture) translates to PIntegerType' do
|
165
|
+
calculator.infer(2**33).class.should == Puppet::Pops::Types::PIntegerType
|
166
|
+
end
|
167
|
+
|
168
|
+
it 'float translates to PFloatType' do
|
169
|
+
calculator.infer(1.3).class.should == Puppet::Pops::Types::PFloatType
|
170
|
+
end
|
171
|
+
|
172
|
+
it 'string translates to PStringType' do
|
173
|
+
calculator.infer('foo').class.should == Puppet::Pops::Types::PStringType
|
174
|
+
end
|
175
|
+
|
176
|
+
it 'inferred string type knows the string value' do
|
177
|
+
t = calculator.infer('foo')
|
178
|
+
t.class.should == Puppet::Pops::Types::PStringType
|
179
|
+
t.values.should == ['foo']
|
180
|
+
end
|
181
|
+
|
182
|
+
it 'boolean true translates to PBooleanType' do
|
183
|
+
calculator.infer(true).class.should == Puppet::Pops::Types::PBooleanType
|
184
|
+
end
|
185
|
+
|
186
|
+
it 'boolean false translates to PBooleanType' do
|
187
|
+
calculator.infer(false).class.should == Puppet::Pops::Types::PBooleanType
|
188
|
+
end
|
189
|
+
|
190
|
+
it 'regexp translates to PRegexpType' do
|
191
|
+
calculator.infer(/^a regular expression$/).class.should == Puppet::Pops::Types::PRegexpType
|
192
|
+
end
|
193
|
+
|
194
|
+
it 'nil translates to PNilType' do
|
195
|
+
calculator.infer(nil).class.should == Puppet::Pops::Types::PNilType
|
196
|
+
end
|
197
|
+
|
198
|
+
it ':undef translates to PNilType' do
|
199
|
+
calculator.infer(:undef).class.should == Puppet::Pops::Types::PNilType
|
200
|
+
end
|
201
|
+
|
202
|
+
it 'an instance of class Foo translates to PRubyType[Foo]' do
|
203
|
+
class Foo
|
204
|
+
end
|
205
|
+
|
206
|
+
t = calculator.infer(Foo.new)
|
207
|
+
t.class.should == Puppet::Pops::Types::PRubyType
|
208
|
+
t.ruby_class.should == 'Foo'
|
209
|
+
end
|
210
|
+
|
211
|
+
context 'array' do
|
212
|
+
it 'translates to PArrayType' do
|
213
|
+
calculator.infer([1,2]).class.should == Puppet::Pops::Types::PArrayType
|
214
|
+
end
|
215
|
+
|
216
|
+
it 'with fixnum values translates to PArrayType[PIntegerType]' do
|
217
|
+
calculator.infer([1,2]).element_type.class.should == Puppet::Pops::Types::PIntegerType
|
218
|
+
end
|
219
|
+
|
220
|
+
it 'with 32 and 64 bit integer values translates to PArrayType[PIntegerType]' do
|
221
|
+
calculator.infer([1,2**33]).element_type.class.should == Puppet::Pops::Types::PIntegerType
|
222
|
+
end
|
223
|
+
|
224
|
+
it 'Range of integer values are computed' do
|
225
|
+
t = calculator.infer([-3,0,42]).element_type
|
226
|
+
t.class.should == Puppet::Pops::Types::PIntegerType
|
227
|
+
t.from.should == -3
|
228
|
+
t.to.should == 42
|
229
|
+
end
|
230
|
+
|
231
|
+
it "Compound string values are computed" do
|
232
|
+
t = calculator.infer(['a','b', 'c']).element_type
|
233
|
+
t.class.should == Puppet::Pops::Types::PStringType
|
234
|
+
t.values.should == ['a', 'b', 'c']
|
235
|
+
end
|
236
|
+
|
237
|
+
it 'with fixnum and float values translates to PArrayType[PNumericType]' do
|
238
|
+
calculator.infer([1,2.0]).element_type.class.should == Puppet::Pops::Types::PNumericType
|
239
|
+
end
|
240
|
+
|
241
|
+
it 'with fixnum and string values translates to PArrayType[PScalarType]' do
|
242
|
+
calculator.infer([1,'two']).element_type.class.should == Puppet::Pops::Types::PScalarType
|
243
|
+
end
|
244
|
+
|
245
|
+
it 'with float and string values translates to PArrayType[PScalarType]' do
|
246
|
+
calculator.infer([1.0,'two']).element_type.class.should == Puppet::Pops::Types::PScalarType
|
247
|
+
end
|
248
|
+
|
249
|
+
it 'with fixnum, float, and string values translates to PArrayType[PScalarType]' do
|
250
|
+
calculator.infer([1, 2.0,'two']).element_type.class.should == Puppet::Pops::Types::PScalarType
|
251
|
+
end
|
252
|
+
|
253
|
+
it 'with fixnum and regexp values translates to PArrayType[PScalarType]' do
|
254
|
+
calculator.infer([1, /two/]).element_type.class.should == Puppet::Pops::Types::PScalarType
|
255
|
+
end
|
256
|
+
|
257
|
+
it 'with string and regexp values translates to PArrayType[PScalarType]' do
|
258
|
+
calculator.infer(['one', /two/]).element_type.class.should == Puppet::Pops::Types::PScalarType
|
259
|
+
end
|
260
|
+
|
261
|
+
it 'with string and symbol values translates to PArrayType[PObjectType]' do
|
262
|
+
calculator.infer(['one', :two]).element_type.class.should == Puppet::Pops::Types::PObjectType
|
263
|
+
end
|
264
|
+
|
265
|
+
it 'with fixnum and nil values translates to PArrayType[PIntegerType]' do
|
266
|
+
calculator.infer([1, nil]).element_type.class.should == Puppet::Pops::Types::PIntegerType
|
267
|
+
end
|
268
|
+
|
269
|
+
it 'with arrays of string values translates to PArrayType[PArrayType[PStringType]]' do
|
270
|
+
et = calculator.infer([['first' 'array'], ['second','array']])
|
271
|
+
et.class.should == Puppet::Pops::Types::PArrayType
|
272
|
+
et = et.element_type
|
273
|
+
et.class.should == Puppet::Pops::Types::PArrayType
|
274
|
+
et = et.element_type
|
275
|
+
et.class.should == Puppet::Pops::Types::PStringType
|
276
|
+
end
|
277
|
+
|
278
|
+
it 'with array of string values and array of fixnums translates to PArrayType[PArrayType[PScalarType]]' do
|
279
|
+
et = calculator.infer([['first' 'array'], [1,2]])
|
280
|
+
et.class.should == Puppet::Pops::Types::PArrayType
|
281
|
+
et = et.element_type
|
282
|
+
et.class.should == Puppet::Pops::Types::PArrayType
|
283
|
+
et = et.element_type
|
284
|
+
et.class.should == Puppet::Pops::Types::PScalarType
|
285
|
+
end
|
286
|
+
|
287
|
+
it 'with hashes of string values translates to PArrayType[PHashType[PStringType]]' do
|
288
|
+
et = calculator.infer([{:first => 'first', :second => 'second' }, {:first => 'first', :second => 'second' }])
|
289
|
+
et.class.should == Puppet::Pops::Types::PArrayType
|
290
|
+
et = et.element_type
|
291
|
+
et.class.should == Puppet::Pops::Types::PHashType
|
292
|
+
et = et.element_type
|
293
|
+
et.class.should == Puppet::Pops::Types::PStringType
|
294
|
+
end
|
295
|
+
|
296
|
+
it 'with hash of string values and hash of fixnums translates to PArrayType[PHashType[PScalarType]]' do
|
297
|
+
et = calculator.infer([{:first => 'first', :second => 'second' }, {:first => 1, :second => 2 }])
|
298
|
+
et.class.should == Puppet::Pops::Types::PArrayType
|
299
|
+
et = et.element_type
|
300
|
+
et.class.should == Puppet::Pops::Types::PHashType
|
301
|
+
et = et.element_type
|
302
|
+
et.class.should == Puppet::Pops::Types::PScalarType
|
303
|
+
end
|
304
|
+
end
|
305
|
+
|
306
|
+
context 'hash' do
|
307
|
+
it 'translates to PHashType' do
|
308
|
+
calculator.infer({:first => 1, :second => 2}).class.should == Puppet::Pops::Types::PHashType
|
309
|
+
end
|
310
|
+
|
311
|
+
it 'with symbolic keys translates to PHashType[PRubyType[Symbol],value]' do
|
312
|
+
k = calculator.infer({:first => 1, :second => 2}).key_type
|
313
|
+
k.class.should == Puppet::Pops::Types::PRubyType
|
314
|
+
k.ruby_class.should == 'Symbol'
|
315
|
+
end
|
316
|
+
|
317
|
+
it 'with string keys translates to PHashType[PStringType,value]' do
|
318
|
+
calculator.infer({'first' => 1, 'second' => 2}).key_type.class.should == Puppet::Pops::Types::PStringType
|
319
|
+
end
|
320
|
+
|
321
|
+
it 'with fixnum values translates to PHashType[key,PIntegerType]' do
|
322
|
+
calculator.infer({:first => 1, :second => 2}).element_type.class.should == Puppet::Pops::Types::PIntegerType
|
323
|
+
end
|
324
|
+
end
|
325
|
+
|
326
|
+
end
|
327
|
+
|
328
|
+
context 'patterns' do
|
329
|
+
it "constructs a PPatternType" do
|
330
|
+
t = pattern_t('a(b)c')
|
331
|
+
t.class.should == Puppet::Pops::Types::PPatternType
|
332
|
+
t.patterns.size.should == 1
|
333
|
+
t.patterns[0].class.should == Puppet::Pops::Types::PRegexpType
|
334
|
+
t.patterns[0].pattern.should == 'a(b)c'
|
335
|
+
t.patterns[0].regexp.match('abc')[1].should == 'b'
|
336
|
+
end
|
337
|
+
|
338
|
+
it "constructs a PStringType with multiple strings" do
|
339
|
+
t = string_t('a', 'b', 'c', 'abc')
|
340
|
+
t.values.should == ['a', 'b', 'c', 'abc']
|
341
|
+
end
|
342
|
+
end
|
343
|
+
|
344
|
+
# Deal with cases not covered by computing common type
|
345
|
+
context 'when computing common type' do
|
346
|
+
it 'computes given resource type commonality' do
|
347
|
+
r1 = Puppet::Pops::Types::PResourceType.new()
|
348
|
+
r1.type_name = 'File'
|
349
|
+
r2 = Puppet::Pops::Types::PResourceType.new()
|
350
|
+
r2.type_name = 'File'
|
351
|
+
calculator.string(calculator.common_type(r1, r2)).should == "File"
|
352
|
+
|
353
|
+
r2 = Puppet::Pops::Types::PResourceType.new()
|
354
|
+
r2.type_name = 'File'
|
355
|
+
r2.title = '/tmp/foo'
|
356
|
+
calculator.string(calculator.common_type(r1, r2)).should == "File"
|
357
|
+
|
358
|
+
r1 = Puppet::Pops::Types::PResourceType.new()
|
359
|
+
r1.type_name = 'File'
|
360
|
+
r1.title = '/tmp/foo'
|
361
|
+
calculator.string(calculator.common_type(r1, r2)).should == "File['/tmp/foo']"
|
362
|
+
|
363
|
+
r1 = Puppet::Pops::Types::PResourceType.new()
|
364
|
+
r1.type_name = 'File'
|
365
|
+
r1.title = '/tmp/bar'
|
366
|
+
calculator.string(calculator.common_type(r1, r2)).should == "File"
|
367
|
+
|
368
|
+
r2 = Puppet::Pops::Types::PResourceType.new()
|
369
|
+
r2.type_name = 'Package'
|
370
|
+
r2.title = 'apache'
|
371
|
+
calculator.string(calculator.common_type(r1, r2)).should == "Resource"
|
372
|
+
end
|
373
|
+
|
374
|
+
it 'computes given hostclass type commonality' do
|
375
|
+
r1 = Puppet::Pops::Types::PHostClassType.new()
|
376
|
+
r1.class_name = 'foo'
|
377
|
+
r2 = Puppet::Pops::Types::PHostClassType.new()
|
378
|
+
r2.class_name = 'foo'
|
379
|
+
calculator.string(calculator.common_type(r1, r2)).should == "Class[foo]"
|
380
|
+
|
381
|
+
r2 = Puppet::Pops::Types::PHostClassType.new()
|
382
|
+
r2.class_name = 'bar'
|
383
|
+
calculator.string(calculator.common_type(r1, r2)).should == "Class"
|
384
|
+
|
385
|
+
r2 = Puppet::Pops::Types::PHostClassType.new()
|
386
|
+
calculator.string(calculator.common_type(r1, r2)).should == "Class"
|
387
|
+
|
388
|
+
r1 = Puppet::Pops::Types::PHostClassType.new()
|
389
|
+
calculator.string(calculator.common_type(r1, r2)).should == "Class"
|
390
|
+
end
|
391
|
+
|
392
|
+
it 'computes pattern commonality' do
|
393
|
+
t1 = pattern_t('abc')
|
394
|
+
t2 = pattern_t('xyz')
|
395
|
+
common_t = calculator.common_type(t1,t2)
|
396
|
+
common_t.class.should == Puppet::Pops::Types::PPatternType
|
397
|
+
common_t.patterns.map { |pr| pr.pattern }.should == ['abc', 'xyz']
|
398
|
+
calculator.string(common_t).should == "Pattern[/abc/, /xyz/]"
|
399
|
+
end
|
400
|
+
|
401
|
+
it 'computes enum commonality to value set sum' do
|
402
|
+
t1 = enum_t('a', 'b', 'c')
|
403
|
+
t2 = enum_t('x', 'y', 'z')
|
404
|
+
common_t = calculator.common_type(t1, t2)
|
405
|
+
common_t.should == enum_t('a', 'b', 'c', 'x', 'y', 'z')
|
406
|
+
end
|
407
|
+
|
408
|
+
it 'computed variant commonality to type union where added types are not sub-types' do
|
409
|
+
a_t1 = integer_t()
|
410
|
+
a_t2 = enum_t('b')
|
411
|
+
v_a = variant_t(a_t1, a_t2)
|
412
|
+
b_t1 = enum_t('a')
|
413
|
+
v_b = variant_t(b_t1)
|
414
|
+
common_t = calculator.common_type(v_a, v_b)
|
415
|
+
common_t.class.should == Puppet::Pops::Types::PVariantType
|
416
|
+
Set.new(common_t.types).should == Set.new([a_t1, a_t2, b_t1])
|
417
|
+
end
|
418
|
+
|
419
|
+
it 'computed variant commonality to type union where added types are sub-types' do
|
420
|
+
a_t1 = integer_t()
|
421
|
+
a_t2 = string_t()
|
422
|
+
v_a = variant_t(a_t1, a_t2)
|
423
|
+
b_t1 = enum_t('a')
|
424
|
+
v_b = variant_t(b_t1)
|
425
|
+
common_t = calculator.common_type(v_a, v_b)
|
426
|
+
common_t.class.should == Puppet::Pops::Types::PVariantType
|
427
|
+
Set.new(common_t.types).should == Set.new([a_t1, a_t2])
|
428
|
+
end
|
429
|
+
end
|
430
|
+
|
431
|
+
context 'computes assignability' do
|
432
|
+
include_context "types_setup"
|
433
|
+
|
434
|
+
context "for Object, such that" do
|
435
|
+
it 'all types are assignable to Object' do
|
436
|
+
t = Puppet::Pops::Types::PObjectType.new()
|
437
|
+
all_types.each { |t2| t2.new.should be_assignable_to(t) }
|
438
|
+
end
|
439
|
+
|
440
|
+
it 'Object is not assignable to anything but Object' do
|
441
|
+
tested_types = all_types() - [Puppet::Pops::Types::PObjectType]
|
442
|
+
t = Puppet::Pops::Types::PObjectType.new()
|
443
|
+
tested_types.each { |t2| t.should_not be_assignable_to(t2.new) }
|
444
|
+
end
|
445
|
+
end
|
446
|
+
|
447
|
+
context "for Data, such that" do
|
448
|
+
it 'all scalars + array and hash are assignable to Data' do
|
449
|
+
t = Puppet::Pops::Types::PDataType.new()
|
450
|
+
data_compatible_types.each { |t2|
|
451
|
+
type_from_class(t2).should be_assignable_to(t)
|
452
|
+
}
|
453
|
+
end
|
454
|
+
|
455
|
+
it 'a Variant of scalar, hash, or array is assignable to Data' do
|
456
|
+
t = Puppet::Pops::Types::PDataType.new()
|
457
|
+
data_compatible_types.each { |t2| variant_t(type_from_class(t2)).should be_assignable_to(t) }
|
458
|
+
end
|
459
|
+
|
460
|
+
it 'Data is not assignable to any of its subtypes' do
|
461
|
+
t = Puppet::Pops::Types::PDataType.new()
|
462
|
+
types_to_test = data_compatible_types- [Puppet::Pops::Types::PDataType]
|
463
|
+
types_to_test.each {|t2| t.should_not be_assignable_to(type_from_class(t2)) }
|
464
|
+
end
|
465
|
+
|
466
|
+
it 'Data is not assignable to a Variant of Data subtype' do
|
467
|
+
t = Puppet::Pops::Types::PDataType.new()
|
468
|
+
types_to_test = data_compatible_types- [Puppet::Pops::Types::PDataType]
|
469
|
+
types_to_test.each { |t2| t.should_not be_assignable_to(variant_t(type_from_class(t2))) }
|
470
|
+
end
|
471
|
+
|
472
|
+
it 'Data is not assignable to any disjunct type' do
|
473
|
+
tested_types = all_types - [Puppet::Pops::Types::PObjectType, Puppet::Pops::Types::PDataType] - scalar_types
|
474
|
+
t = Puppet::Pops::Types::PDataType.new()
|
475
|
+
tested_types.each {|t2| t.should_not be_assignable_to(t2.new) }
|
476
|
+
end
|
477
|
+
end
|
478
|
+
|
479
|
+
context "for Scalar, such that" do
|
480
|
+
it "all scalars are assignable to Scalar" do
|
481
|
+
t = Puppet::Pops::Types::PScalarType.new()
|
482
|
+
scalar_types.each {|t2| t2.new.should be_assignable_to(t) }
|
483
|
+
end
|
484
|
+
|
485
|
+
it 'Scalar is not assignable to any of its subtypes' do
|
486
|
+
t = Puppet::Pops::Types::PScalarType.new()
|
487
|
+
types_to_test = scalar_types - [Puppet::Pops::Types::PScalarType]
|
488
|
+
types_to_test.each {|t2| t.should_not be_assignable_to(t2.new) }
|
489
|
+
end
|
490
|
+
|
491
|
+
it 'Scalar is not assignable to any disjunct type' do
|
492
|
+
tested_types = all_types - [Puppet::Pops::Types::PObjectType, Puppet::Pops::Types::PDataType] - scalar_types
|
493
|
+
t = Puppet::Pops::Types::PScalarType.new()
|
494
|
+
tested_types.each {|t2| t.should_not be_assignable_to(t2.new) }
|
495
|
+
end
|
496
|
+
end
|
497
|
+
|
498
|
+
context "for Numeric, such that" do
|
499
|
+
it "all numerics are assignable to Numeric" do
|
500
|
+
t = Puppet::Pops::Types::PNumericType.new()
|
501
|
+
numeric_types.each {|t2| t2.new.should be_assignable_to(t) }
|
502
|
+
end
|
503
|
+
|
504
|
+
it 'Numeric is not assignable to any of its subtypes' do
|
505
|
+
t = Puppet::Pops::Types::PNumericType.new()
|
506
|
+
types_to_test = numeric_types - [Puppet::Pops::Types::PNumericType]
|
507
|
+
types_to_test.each {|t2| t.should_not be_assignable_to(t2.new) }
|
508
|
+
end
|
509
|
+
|
510
|
+
it 'Numeric is not assignable to any disjunct type' do
|
511
|
+
tested_types = all_types - [
|
512
|
+
Puppet::Pops::Types::PObjectType,
|
513
|
+
Puppet::Pops::Types::PDataType,
|
514
|
+
Puppet::Pops::Types::PScalarType,
|
515
|
+
] - numeric_types
|
516
|
+
t = Puppet::Pops::Types::PNumericType.new()
|
517
|
+
tested_types.each {|t2| t.should_not be_assignable_to(t2.new) }
|
518
|
+
end
|
519
|
+
end
|
520
|
+
|
521
|
+
context "for Collection, such that" do
|
522
|
+
it "all collections are assignable to Collection" do
|
523
|
+
t = Puppet::Pops::Types::PCollectionType.new()
|
524
|
+
collection_types.each {|t2| t2.new.should be_assignable_to(t) }
|
525
|
+
end
|
526
|
+
|
527
|
+
it 'Collection is not assignable to any of its subtypes' do
|
528
|
+
t = Puppet::Pops::Types::PCollectionType.new()
|
529
|
+
types_to_test = collection_types - [Puppet::Pops::Types::PCollectionType]
|
530
|
+
types_to_test.each {|t2| t.should_not be_assignable_to(t2.new) }
|
531
|
+
end
|
532
|
+
|
533
|
+
it 'Collection is not assignable to any disjunct type' do
|
534
|
+
tested_types = all_types - [Puppet::Pops::Types::PObjectType] - collection_types
|
535
|
+
t = Puppet::Pops::Types::PCollectionType.new()
|
536
|
+
tested_types.each {|t2| t.should_not be_assignable_to(t2.new) }
|
537
|
+
end
|
538
|
+
end
|
539
|
+
|
540
|
+
context "for Array, such that" do
|
541
|
+
it "Array is not assignable to non Array based Collection type" do
|
542
|
+
t = Puppet::Pops::Types::PArrayType.new()
|
543
|
+
tested_types = collection_types - [
|
544
|
+
Puppet::Pops::Types::PCollectionType,
|
545
|
+
Puppet::Pops::Types::PArrayType,
|
546
|
+
Puppet::Pops::Types::PTupleType]
|
547
|
+
tested_types.each {|t2| t.should_not be_assignable_to(t2.new) }
|
548
|
+
end
|
549
|
+
|
550
|
+
it 'Array is not assignable to any disjunct type' do
|
551
|
+
tested_types = all_types - [
|
552
|
+
Puppet::Pops::Types::PObjectType,
|
553
|
+
Puppet::Pops::Types::PDataType] - collection_types
|
554
|
+
t = Puppet::Pops::Types::PArrayType.new()
|
555
|
+
tested_types.each {|t2| t.should_not be_assignable_to(t2.new) }
|
556
|
+
end
|
557
|
+
end
|
558
|
+
|
559
|
+
context "for Hash, such that" do
|
560
|
+
it "Hash is not assignable to any other Collection type" do
|
561
|
+
t = Puppet::Pops::Types::PHashType.new()
|
562
|
+
tested_types = collection_types - [
|
563
|
+
Puppet::Pops::Types::PCollectionType,
|
564
|
+
Puppet::Pops::Types::PStructType,
|
565
|
+
Puppet::Pops::Types::PHashType]
|
566
|
+
tested_types.each {|t2| t.should_not be_assignable_to(t2.new) }
|
567
|
+
end
|
568
|
+
|
569
|
+
it 'Hash is not assignable to any disjunct type' do
|
570
|
+
tested_types = all_types - [
|
571
|
+
Puppet::Pops::Types::PObjectType,
|
572
|
+
Puppet::Pops::Types::PDataType] - collection_types
|
573
|
+
t = Puppet::Pops::Types::PHashType.new()
|
574
|
+
tested_types.each {|t2| t.should_not be_assignable_to(t2.new) }
|
575
|
+
end
|
576
|
+
end
|
577
|
+
|
578
|
+
context "for Tuple, such that" do
|
579
|
+
it "Tuple is not assignable to any other non Array based Collection type" do
|
580
|
+
t = Puppet::Pops::Types::PTupleType.new()
|
581
|
+
tested_types = collection_types - [
|
582
|
+
Puppet::Pops::Types::PCollectionType,
|
583
|
+
Puppet::Pops::Types::PTupleType,
|
584
|
+
Puppet::Pops::Types::PArrayType]
|
585
|
+
tested_types.each {|t2| t.should_not be_assignable_to(t2.new) }
|
586
|
+
end
|
587
|
+
|
588
|
+
it 'Tuple is not assignable to any disjunct type' do
|
589
|
+
tested_types = all_types - [
|
590
|
+
Puppet::Pops::Types::PObjectType,
|
591
|
+
Puppet::Pops::Types::PDataType] - collection_types
|
592
|
+
t = Puppet::Pops::Types::PTupleType.new()
|
593
|
+
tested_types.each {|t2| t.should_not be_assignable_to(t2.new) }
|
594
|
+
end
|
595
|
+
end
|
596
|
+
|
597
|
+
context "for Struct, such that" do
|
598
|
+
it "Struct is not assignable to any other non Hashed based Collection type" do
|
599
|
+
t = Puppet::Pops::Types::PStructType.new()
|
600
|
+
tested_types = collection_types - [
|
601
|
+
Puppet::Pops::Types::PCollectionType,
|
602
|
+
Puppet::Pops::Types::PStructType,
|
603
|
+
Puppet::Pops::Types::PHashType]
|
604
|
+
tested_types.each {|t2| t.should_not be_assignable_to(t2.new) }
|
605
|
+
end
|
606
|
+
|
607
|
+
it 'Struct is not assignable to any disjunct type' do
|
608
|
+
tested_types = all_types - [
|
609
|
+
Puppet::Pops::Types::PObjectType,
|
610
|
+
Puppet::Pops::Types::PDataType] - collection_types
|
611
|
+
t = Puppet::Pops::Types::PStructType.new()
|
612
|
+
tested_types.each {|t2| t.should_not be_assignable_to(t2.new) }
|
613
|
+
end
|
614
|
+
end
|
615
|
+
|
616
|
+
it 'should recognize mapped ruby types' do
|
617
|
+
{ Integer => Puppet::Pops::Types::PIntegerType.new,
|
618
|
+
Fixnum => Puppet::Pops::Types::PIntegerType.new,
|
619
|
+
Bignum => Puppet::Pops::Types::PIntegerType.new,
|
620
|
+
Float => Puppet::Pops::Types::PFloatType.new,
|
621
|
+
Numeric => Puppet::Pops::Types::PNumericType.new,
|
622
|
+
NilClass => Puppet::Pops::Types::PNilType.new,
|
623
|
+
TrueClass => Puppet::Pops::Types::PBooleanType.new,
|
624
|
+
FalseClass => Puppet::Pops::Types::PBooleanType.new,
|
625
|
+
String => Puppet::Pops::Types::PStringType.new,
|
626
|
+
Regexp => Puppet::Pops::Types::PRegexpType.new,
|
627
|
+
Regexp => Puppet::Pops::Types::PRegexpType.new,
|
628
|
+
Array => Puppet::Pops::Types::TypeFactory.array_of_data(),
|
629
|
+
Hash => Puppet::Pops::Types::TypeFactory.hash_of_data()
|
630
|
+
}.each do |ruby_type, puppet_type |
|
631
|
+
ruby_type.should be_assignable_to(puppet_type)
|
632
|
+
end
|
633
|
+
end
|
634
|
+
|
635
|
+
context 'when dealing with integer ranges' do
|
636
|
+
it 'should accept an equal range' do
|
637
|
+
calculator.assignable?(range_t(2,5), range_t(2,5)).should == true
|
638
|
+
end
|
639
|
+
|
640
|
+
it 'should accept an equal reverse range' do
|
641
|
+
calculator.assignable?(range_t(2,5), range_t(5,2)).should == true
|
642
|
+
end
|
643
|
+
|
644
|
+
it 'should accept a narrower range' do
|
645
|
+
calculator.assignable?(range_t(2,10), range_t(3,5)).should == true
|
646
|
+
end
|
647
|
+
|
648
|
+
it 'should accept a narrower reverse range' do
|
649
|
+
calculator.assignable?(range_t(2,10), range_t(5,3)).should == true
|
650
|
+
end
|
651
|
+
|
652
|
+
it 'should reject a wider range' do
|
653
|
+
calculator.assignable?(range_t(3,5), range_t(2,10)).should == false
|
654
|
+
end
|
655
|
+
|
656
|
+
it 'should reject a wider reverse range' do
|
657
|
+
calculator.assignable?(range_t(3,5), range_t(10,2)).should == false
|
658
|
+
end
|
659
|
+
|
660
|
+
it 'should reject a partially overlapping range' do
|
661
|
+
calculator.assignable?(range_t(3,5), range_t(2,4)).should == false
|
662
|
+
calculator.assignable?(range_t(3,5), range_t(4,6)).should == false
|
663
|
+
end
|
664
|
+
|
665
|
+
it 'should reject a partially overlapping reverse range' do
|
666
|
+
calculator.assignable?(range_t(3,5), range_t(4,2)).should == false
|
667
|
+
calculator.assignable?(range_t(3,5), range_t(6,4)).should == false
|
668
|
+
end
|
669
|
+
end
|
670
|
+
|
671
|
+
context 'when dealing with patterns' do
|
672
|
+
it 'should accept a string matching a pattern' do
|
673
|
+
p_t = pattern_t('abc')
|
674
|
+
p_s = string_t('XabcY')
|
675
|
+
calculator.assignable?(p_t, p_s).should == true
|
676
|
+
end
|
677
|
+
|
678
|
+
it 'should accept a regexp matching a pattern' do
|
679
|
+
p_t = pattern_t(/abc/)
|
680
|
+
p_s = string_t('XabcY')
|
681
|
+
calculator.assignable?(p_t, p_s).should == true
|
682
|
+
end
|
683
|
+
|
684
|
+
it 'should accept a pattern matching a pattern' do
|
685
|
+
p_t = pattern_t(pattern_t('abc'))
|
686
|
+
p_s = string_t('XabcY')
|
687
|
+
calculator.assignable?(p_t, p_s).should == true
|
688
|
+
end
|
689
|
+
|
690
|
+
it 'should accept a regexp matching a pattern' do
|
691
|
+
p_t = pattern_t(regexp_t('abc'))
|
692
|
+
p_s = string_t('XabcY')
|
693
|
+
calculator.assignable?(p_t, p_s).should == true
|
694
|
+
end
|
695
|
+
|
696
|
+
it 'should accept a string matching all patterns' do
|
697
|
+
p_t = pattern_t('abc', 'ab', 'c')
|
698
|
+
p_s = string_t('XabcY')
|
699
|
+
calculator.assignable?(p_t, p_s).should == true
|
700
|
+
end
|
701
|
+
|
702
|
+
it 'should accept multiple strings if they all match any patterns' do
|
703
|
+
p_t = pattern_t('X', 'Y', 'abc')
|
704
|
+
p_s = string_t('Xa', 'aY', 'abc')
|
705
|
+
calculator.assignable?(p_t, p_s).should == true
|
706
|
+
end
|
707
|
+
|
708
|
+
it 'should reject a string not matching any patterns' do
|
709
|
+
p_t = pattern_t('abc', 'ab', 'c')
|
710
|
+
p_s = string_t('XqqqY')
|
711
|
+
calculator.assignable?(p_t, p_s).should == false
|
712
|
+
end
|
713
|
+
|
714
|
+
it 'should reject multiple strings if not all match any patterns' do
|
715
|
+
p_t = pattern_t('abc', 'ab', 'c', 'q')
|
716
|
+
p_s = string_t('X', 'Y', 'Z')
|
717
|
+
calculator.assignable?(p_t, p_s).should == false
|
718
|
+
end
|
719
|
+
|
720
|
+
it 'should accept enum matching patterns as instanceof' do
|
721
|
+
enum = enum_t('XS', 'S', 'M', 'L' 'XL', 'XXL')
|
722
|
+
pattern = pattern_t('S', 'M', 'L')
|
723
|
+
calculator.assignable?(pattern, enum).should == true
|
724
|
+
end
|
725
|
+
|
726
|
+
end
|
727
|
+
|
728
|
+
context 'when dealing with tuples' do
|
729
|
+
it 'should accept matching tuples' do
|
730
|
+
tuple1 = tuple_t(1,2)
|
731
|
+
tuple2 = tuple_t(Integer,Integer)
|
732
|
+
calculator.assignable?(tuple1, tuple2).should == true
|
733
|
+
calculator.assignable?(tuple2, tuple1).should == true
|
734
|
+
end
|
735
|
+
|
736
|
+
it 'should accept matching tuples where one is more general than the other' do
|
737
|
+
tuple1 = tuple_t(1,2)
|
738
|
+
tuple2 = tuple_t(Numeric,Numeric)
|
739
|
+
calculator.assignable?(tuple1, tuple2).should == false
|
740
|
+
calculator.assignable?(tuple2, tuple1).should == true
|
741
|
+
end
|
742
|
+
|
743
|
+
it 'should accept ranged tuples' do
|
744
|
+
tuple1 = tuple_t(1)
|
745
|
+
factory.constrain_size(tuple1, 5, 5)
|
746
|
+
tuple2 = tuple_t(Integer,Integer, Integer, Integer, Integer)
|
747
|
+
calculator.assignable?(tuple1, tuple2).should == true
|
748
|
+
calculator.assignable?(tuple2, tuple1).should == true
|
749
|
+
end
|
750
|
+
|
751
|
+
it 'should reject ranged tuples when ranges does not match' do
|
752
|
+
tuple1 = tuple_t(1)
|
753
|
+
factory.constrain_size(tuple1, 4, 5)
|
754
|
+
tuple2 = tuple_t(Integer,Integer, Integer, Integer, Integer)
|
755
|
+
calculator.assignable?(tuple1, tuple2).should == true
|
756
|
+
calculator.assignable?(tuple2, tuple1).should == false
|
757
|
+
end
|
758
|
+
|
759
|
+
it 'should reject ranged tuples when ranges does not match (using infinite upper bound)' do
|
760
|
+
tuple1 = tuple_t(1)
|
761
|
+
factory.constrain_size(tuple1, 4, :default)
|
762
|
+
tuple2 = tuple_t(Integer,Integer, Integer, Integer, Integer)
|
763
|
+
calculator.assignable?(tuple1, tuple2).should == true
|
764
|
+
calculator.assignable?(tuple2, tuple1).should == false
|
765
|
+
end
|
766
|
+
|
767
|
+
it 'should accept matching tuples with optional entries' do
|
768
|
+
tuple1 = tuple_t(1,2)
|
769
|
+
factory.constrain_size(tuple1, 0, :default)
|
770
|
+
tuple2 = tuple_t(Numeric,Numeric)
|
771
|
+
factory.constrain_size(tuple2, 0, :default)
|
772
|
+
calculator.assignable?(tuple1, tuple2).should == false
|
773
|
+
calculator.assignable?(tuple2, tuple1).should == true
|
774
|
+
end
|
775
|
+
|
776
|
+
it 'should accept matching array' do
|
777
|
+
tuple1 = tuple_t(1,2)
|
778
|
+
array = array_t(Integer)
|
779
|
+
factory.constrain_size(array, 2, 2)
|
780
|
+
calculator.assignable?(tuple1, array).should == true
|
781
|
+
calculator.assignable?(array, tuple1).should == true
|
782
|
+
end
|
783
|
+
end
|
784
|
+
|
785
|
+
context 'when dealing with structs' do
|
786
|
+
it 'should accept matching structs' do
|
787
|
+
struct1 = struct_t({'a'=>Integer, 'b'=>Integer})
|
788
|
+
struct2 = struct_t({'a'=>Integer, 'b'=>Integer})
|
789
|
+
calculator.assignable?(struct1, struct2).should == true
|
790
|
+
calculator.assignable?(struct2, struct1).should == true
|
791
|
+
end
|
792
|
+
|
793
|
+
it 'should accept matching structs where one is more general than the other' do
|
794
|
+
struct1 = struct_t({'a'=>Integer, 'b'=>Integer})
|
795
|
+
struct2 = struct_t({'a'=>Numeric, 'b'=>Numeric})
|
796
|
+
calculator.assignable?(struct1, struct2).should == false
|
797
|
+
calculator.assignable?(struct2, struct1).should == true
|
798
|
+
end
|
799
|
+
|
800
|
+
it 'should accept matching hash' do
|
801
|
+
struct1 = struct_t({'a'=>Integer, 'b'=>Integer})
|
802
|
+
non_empty_string = string_t()
|
803
|
+
non_empty_string.size_type = range_t(1, nil)
|
804
|
+
hsh = hash_t(non_empty_string, Integer)
|
805
|
+
factory.constrain_size(hsh, 2, 2)
|
806
|
+
calculator.assignable?(struct1, hsh).should == true
|
807
|
+
calculator.assignable?(hsh, struct1).should == true
|
808
|
+
end
|
809
|
+
end
|
810
|
+
|
811
|
+
it 'should recognize ruby type inheritance' do
|
812
|
+
class Foo
|
813
|
+
end
|
814
|
+
|
815
|
+
class Bar < Foo
|
816
|
+
end
|
817
|
+
|
818
|
+
fooType = calculator.infer(Foo.new)
|
819
|
+
barType = calculator.infer(Bar.new)
|
820
|
+
|
821
|
+
calculator.assignable?(fooType, fooType).should == true
|
822
|
+
calculator.assignable?(Foo, fooType).should == true
|
823
|
+
|
824
|
+
calculator.assignable?(fooType, barType).should == true
|
825
|
+
calculator.assignable?(Foo, barType).should == true
|
826
|
+
|
827
|
+
calculator.assignable?(barType, fooType).should == false
|
828
|
+
calculator.assignable?(Bar, fooType).should == false
|
829
|
+
end
|
830
|
+
|
831
|
+
it "should allow host class with same name" do
|
832
|
+
hc1 = Puppet::Pops::Types::TypeFactory.host_class('the_name')
|
833
|
+
hc2 = Puppet::Pops::Types::TypeFactory.host_class('the_name')
|
834
|
+
calculator.assignable?(hc1, hc2).should == true
|
835
|
+
end
|
836
|
+
|
837
|
+
it "should allow host class with name assigned to hostclass without name" do
|
838
|
+
hc1 = Puppet::Pops::Types::TypeFactory.host_class()
|
839
|
+
hc2 = Puppet::Pops::Types::TypeFactory.host_class('the_name')
|
840
|
+
calculator.assignable?(hc1, hc2).should == true
|
841
|
+
end
|
842
|
+
|
843
|
+
it "should reject host classes with different names" do
|
844
|
+
hc1 = Puppet::Pops::Types::TypeFactory.host_class('the_name')
|
845
|
+
hc2 = Puppet::Pops::Types::TypeFactory.host_class('another_name')
|
846
|
+
calculator.assignable?(hc1, hc2).should == false
|
847
|
+
end
|
848
|
+
|
849
|
+
it "should reject host classes without name assigned to host class with name" do
|
850
|
+
hc1 = Puppet::Pops::Types::TypeFactory.host_class('the_name')
|
851
|
+
hc2 = Puppet::Pops::Types::TypeFactory.host_class()
|
852
|
+
calculator.assignable?(hc1, hc2).should == false
|
853
|
+
end
|
854
|
+
|
855
|
+
it "should allow resource with same type_name and title" do
|
856
|
+
r1 = Puppet::Pops::Types::TypeFactory.resource('file', 'foo')
|
857
|
+
r2 = Puppet::Pops::Types::TypeFactory.resource('file', 'foo')
|
858
|
+
calculator.assignable?(r1, r2).should == true
|
859
|
+
end
|
860
|
+
|
861
|
+
it "should allow more specific resource assignment" do
|
862
|
+
r1 = Puppet::Pops::Types::TypeFactory.resource()
|
863
|
+
r2 = Puppet::Pops::Types::TypeFactory.resource('file')
|
864
|
+
calculator.assignable?(r1, r2).should == true
|
865
|
+
r2 = Puppet::Pops::Types::TypeFactory.resource('file', '/tmp/foo')
|
866
|
+
calculator.assignable?(r1, r2).should == true
|
867
|
+
r1 = Puppet::Pops::Types::TypeFactory.resource('file')
|
868
|
+
calculator.assignable?(r1, r2).should == true
|
869
|
+
end
|
870
|
+
|
871
|
+
it "should reject less specific resource assignment" do
|
872
|
+
r1 = Puppet::Pops::Types::TypeFactory.resource('file', '/tmp/foo')
|
873
|
+
r2 = Puppet::Pops::Types::TypeFactory.resource('file')
|
874
|
+
calculator.assignable?(r1, r2).should == false
|
875
|
+
r2 = Puppet::Pops::Types::TypeFactory.resource()
|
876
|
+
calculator.assignable?(r1, r2).should == false
|
877
|
+
end
|
878
|
+
|
879
|
+
end
|
880
|
+
|
881
|
+
context 'when testing if x is instance of type t' do
|
882
|
+
include_context "types_setup"
|
883
|
+
|
884
|
+
it 'should consider undef to be instance of Object and NilType' do
|
885
|
+
calculator.instance?(Puppet::Pops::Types::PNilType.new(), nil).should == true
|
886
|
+
calculator.instance?(Puppet::Pops::Types::PObjectType.new(), nil).should == true
|
887
|
+
end
|
888
|
+
|
889
|
+
it 'should not consider undef to be an instance of any other type than Object and NilType and Data' do
|
890
|
+
types_to_test = all_types - [
|
891
|
+
Puppet::Pops::Types::PObjectType,
|
892
|
+
Puppet::Pops::Types::PNilType,
|
893
|
+
Puppet::Pops::Types::PDataType]
|
894
|
+
|
895
|
+
types_to_test.each {|t| calculator.instance?(t.new, nil).should == false }
|
896
|
+
types_to_test.each {|t| calculator.instance?(t.new, :undef).should == false }
|
897
|
+
end
|
898
|
+
|
899
|
+
it 'should consider fixnum instanceof PIntegerType' do
|
900
|
+
calculator.instance?(Puppet::Pops::Types::PIntegerType.new(), 1).should == true
|
901
|
+
end
|
902
|
+
|
903
|
+
it 'should consider fixnum instanceof Fixnum' do
|
904
|
+
calculator.instance?(Fixnum, 1).should == true
|
905
|
+
end
|
906
|
+
|
907
|
+
it 'should consider integer in range' do
|
908
|
+
range = range_t(0,10)
|
909
|
+
calculator.instance?(range, 1).should == true
|
910
|
+
calculator.instance?(range, 10).should == true
|
911
|
+
calculator.instance?(range, -1).should == false
|
912
|
+
calculator.instance?(range, 11).should == false
|
913
|
+
end
|
914
|
+
|
915
|
+
it 'should consider string in length range' do
|
916
|
+
range = factory.constrain_size(string_t, 1,3)
|
917
|
+
calculator.instance?(range, 'a').should == true
|
918
|
+
calculator.instance?(range, 'abc').should == true
|
919
|
+
calculator.instance?(range, '').should == false
|
920
|
+
calculator.instance?(range, 'abcd').should == false
|
921
|
+
end
|
922
|
+
|
923
|
+
it 'should consider array in length range' do
|
924
|
+
range = factory.constrain_size(array_t(integer_t), 1,3)
|
925
|
+
calculator.instance?(range, [1]).should == true
|
926
|
+
calculator.instance?(range, [1,2,3]).should == true
|
927
|
+
calculator.instance?(range, []).should == false
|
928
|
+
calculator.instance?(range, [1,2,3,4]).should == false
|
929
|
+
end
|
930
|
+
|
931
|
+
it 'should consider hash in length range' do
|
932
|
+
range = factory.constrain_size(hash_t(integer_t, integer_t), 1,2)
|
933
|
+
calculator.instance?(range, {1=>1}).should == true
|
934
|
+
calculator.instance?(range, {1=>1, 2=>2}).should == true
|
935
|
+
calculator.instance?(range, {}).should == false
|
936
|
+
calculator.instance?(range, {1=>1, 2=>2, 3=>3}).should == false
|
937
|
+
end
|
938
|
+
|
939
|
+
it 'should consider collection in length range for array ' do
|
940
|
+
range = factory.constrain_size(collection_t, 1,3)
|
941
|
+
calculator.instance?(range, [1]).should == true
|
942
|
+
calculator.instance?(range, [1,2,3]).should == true
|
943
|
+
calculator.instance?(range, []).should == false
|
944
|
+
calculator.instance?(range, [1,2,3,4]).should == false
|
945
|
+
end
|
946
|
+
|
947
|
+
it 'should consider collection in length range for hash' do
|
948
|
+
range = factory.constrain_size(collection_t, 1,2)
|
949
|
+
calculator.instance?(range, {1=>1}).should == true
|
950
|
+
calculator.instance?(range, {1=>1, 2=>2}).should == true
|
951
|
+
calculator.instance?(range, {}).should == false
|
952
|
+
calculator.instance?(range, {1=>1, 2=>2, 3=>3}).should == false
|
953
|
+
end
|
954
|
+
|
955
|
+
it 'should consider string matching enum as instanceof' do
|
956
|
+
enum = enum_t('XS', 'S', 'M', 'L', 'XL', '0')
|
957
|
+
calculator.instance?(enum, 'XS').should == true
|
958
|
+
calculator.instance?(enum, 'S').should == true
|
959
|
+
calculator.instance?(enum, 'XXL').should == false
|
960
|
+
calculator.instance?(enum, '').should == false
|
961
|
+
calculator.instance?(enum, '0').should == true
|
962
|
+
calculator.instance?(enum, 0).should == false
|
963
|
+
end
|
964
|
+
|
965
|
+
it 'should consider array[string] as instance of Array[Enum] when strings are instance of Enum' do
|
966
|
+
enum = enum_t('XS', 'S', 'M', 'L', 'XL', '0')
|
967
|
+
array = array_t(enum)
|
968
|
+
calculator.instance?(array, ['XS', 'S', 'XL']).should == true
|
969
|
+
calculator.instance?(array, ['XS', 'S', 'XXL']).should == false
|
970
|
+
end
|
971
|
+
|
972
|
+
it 'should consider array[mixed] as instance of Variant[mixed] when mixed types are listed in Variant' do
|
973
|
+
enum = enum_t('XS', 'S', 'M', 'L', 'XL')
|
974
|
+
sizes = range_t(30, 50)
|
975
|
+
array = array_t(variant_t(enum, sizes))
|
976
|
+
calculator.instance?(array, ['XS', 'S', 30, 50]).should == true
|
977
|
+
calculator.instance?(array, ['XS', 'S', 'XXL']).should == false
|
978
|
+
calculator.instance?(array, ['XS', 'S', 29]).should == false
|
979
|
+
end
|
980
|
+
|
981
|
+
it 'should consider array[seq] as instance of Tuple[seq] when elements of seq are instance of' do
|
982
|
+
tuple = tuple_t(Integer, String, Float)
|
983
|
+
calculator.instance?(tuple, [1, 'a', 3.14]).should == true
|
984
|
+
calculator.instance?(tuple, [1.2, 'a', 3.14]).should == false
|
985
|
+
calculator.instance?(tuple, [1, 1, 3.14]).should == false
|
986
|
+
calculator.instance?(tuple, [1, 'a', 1]).should == false
|
987
|
+
end
|
988
|
+
|
989
|
+
it 'should consider hash[cont] as instance of Struct[cont-t]' do
|
990
|
+
struct = struct_t({'a'=>Integer, 'b'=>String, 'c'=>Float})
|
991
|
+
calculator.instance?(struct, {'a'=>1, 'b'=>'a', 'c'=>3.14}).should == true
|
992
|
+
calculator.instance?(struct, {'a'=>1.2, 'b'=>'a', 'c'=>3.14}).should == false
|
993
|
+
calculator.instance?(struct, {'a'=>1, 'b'=>1, 'c'=>3.14}).should == false
|
994
|
+
calculator.instance?(struct, {'a'=>1, 'b'=>'a', 'c'=>1}).should == false
|
995
|
+
end
|
996
|
+
|
997
|
+
context 'and t is Data' do
|
998
|
+
it 'undef should be considered instance of Data' do
|
999
|
+
calculator.instance?(data_t, :undef).should == true
|
1000
|
+
end
|
1001
|
+
|
1002
|
+
it 'other symbols should not be considered instance of Data' do
|
1003
|
+
calculator.instance?(data_t, :love).should == false
|
1004
|
+
end
|
1005
|
+
|
1006
|
+
it 'an empty array should be considered instance of Data' do
|
1007
|
+
calculator.instance?(data_t, []).should == true
|
1008
|
+
end
|
1009
|
+
|
1010
|
+
it 'an empty hash should be considered instance of Data' do
|
1011
|
+
calculator.instance?(data_t, {}).should == true
|
1012
|
+
end
|
1013
|
+
|
1014
|
+
it 'a hash with nil/undef data should be considered instance of Data' do
|
1015
|
+
calculator.instance?(data_t, {'a' => nil}).should == true
|
1016
|
+
calculator.instance?(data_t, {'a' => :undef}).should == true
|
1017
|
+
end
|
1018
|
+
|
1019
|
+
it 'a hash with nil/undef key should not considered instance of Data' do
|
1020
|
+
calculator.instance?(data_t, {nil => 10}).should == false
|
1021
|
+
calculator.instance?(data_t, {:undef => 10}).should == false
|
1022
|
+
end
|
1023
|
+
|
1024
|
+
it 'an array with undef entries should be considered instance of Data' do
|
1025
|
+
calculator.instance?(data_t, [:undef]).should == true
|
1026
|
+
calculator.instance?(data_t, [nil]).should == true
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
it 'an array with undef / data entries should be considered instance of Data' do
|
1030
|
+
calculator.instance?(data_t, [1, :undef, 'a']).should == true
|
1031
|
+
calculator.instance?(data_t, [1, nil, 'a']).should == true
|
1032
|
+
end
|
1033
|
+
end
|
1034
|
+
end
|
1035
|
+
|
1036
|
+
context 'when converting a ruby class' do
|
1037
|
+
it 'should yield \'PIntegerType\' for Integer, Fixnum, and Bignum' do
|
1038
|
+
[Integer,Fixnum,Bignum].each do |c|
|
1039
|
+
calculator.type(c).class.should == Puppet::Pops::Types::PIntegerType
|
1040
|
+
end
|
1041
|
+
end
|
1042
|
+
|
1043
|
+
it 'should yield \'PFloatType\' for Float' do
|
1044
|
+
calculator.type(Float).class.should == Puppet::Pops::Types::PFloatType
|
1045
|
+
end
|
1046
|
+
|
1047
|
+
it 'should yield \'PBooleanType\' for FalseClass and TrueClass' do
|
1048
|
+
[FalseClass,TrueClass].each do |c|
|
1049
|
+
calculator.type(c).class.should == Puppet::Pops::Types::PBooleanType
|
1050
|
+
end
|
1051
|
+
end
|
1052
|
+
|
1053
|
+
it 'should yield \'PNilType\' for NilClass' do
|
1054
|
+
calculator.type(NilClass).class.should == Puppet::Pops::Types::PNilType
|
1055
|
+
end
|
1056
|
+
|
1057
|
+
it 'should yield \'PStringType\' for String' do
|
1058
|
+
calculator.type(String).class.should == Puppet::Pops::Types::PStringType
|
1059
|
+
end
|
1060
|
+
|
1061
|
+
it 'should yield \'PRegexpType\' for Regexp' do
|
1062
|
+
calculator.type(Regexp).class.should == Puppet::Pops::Types::PRegexpType
|
1063
|
+
end
|
1064
|
+
|
1065
|
+
it 'should yield \'PArrayType[PDataType]\' for Array' do
|
1066
|
+
t = calculator.type(Array)
|
1067
|
+
t.class.should == Puppet::Pops::Types::PArrayType
|
1068
|
+
t.element_type.class.should == Puppet::Pops::Types::PDataType
|
1069
|
+
end
|
1070
|
+
|
1071
|
+
it 'should yield \'PHashType[PScalarType,PDataType]\' for Hash' do
|
1072
|
+
t = calculator.type(Hash)
|
1073
|
+
t.class.should == Puppet::Pops::Types::PHashType
|
1074
|
+
t.key_type.class.should == Puppet::Pops::Types::PScalarType
|
1075
|
+
t.element_type.class.should == Puppet::Pops::Types::PDataType
|
1076
|
+
end
|
1077
|
+
end
|
1078
|
+
|
1079
|
+
context 'when representing the type as string' do
|
1080
|
+
it 'should yield \'Type\' for PType' do
|
1081
|
+
calculator.string(Puppet::Pops::Types::PType.new()).should == 'Type'
|
1082
|
+
end
|
1083
|
+
|
1084
|
+
it 'should yield \'Object\' for PObjectType' do
|
1085
|
+
calculator.string(Puppet::Pops::Types::PObjectType.new()).should == 'Object'
|
1086
|
+
end
|
1087
|
+
|
1088
|
+
it 'should yield \'Scalar\' for PScalarType' do
|
1089
|
+
calculator.string(Puppet::Pops::Types::PScalarType.new()).should == 'Scalar'
|
1090
|
+
end
|
1091
|
+
|
1092
|
+
it 'should yield \'Boolean\' for PBooleanType' do
|
1093
|
+
calculator.string(Puppet::Pops::Types::PBooleanType.new()).should == 'Boolean'
|
1094
|
+
end
|
1095
|
+
|
1096
|
+
it 'should yield \'Data\' for PDataType' do
|
1097
|
+
calculator.string(Puppet::Pops::Types::PDataType.new()).should == 'Data'
|
1098
|
+
end
|
1099
|
+
|
1100
|
+
it 'should yield \'Numeric\' for PNumericType' do
|
1101
|
+
calculator.string(Puppet::Pops::Types::PNumericType.new()).should == 'Numeric'
|
1102
|
+
end
|
1103
|
+
|
1104
|
+
it 'should yield \'Integer\' and from/to for PIntegerType' do
|
1105
|
+
int_T = Puppet::Pops::Types::PIntegerType
|
1106
|
+
calculator.string(int_T.new()).should == 'Integer'
|
1107
|
+
int = int_T.new()
|
1108
|
+
int.from = 1
|
1109
|
+
int.to = 1
|
1110
|
+
calculator.string(int).should == 'Integer[1, 1]'
|
1111
|
+
int = int_T.new()
|
1112
|
+
int.from = 1
|
1113
|
+
int.to = 2
|
1114
|
+
calculator.string(int).should == 'Integer[1, 2]'
|
1115
|
+
int = int_T.new()
|
1116
|
+
int.from = nil
|
1117
|
+
int.to = 2
|
1118
|
+
calculator.string(int).should == 'Integer[default, 2]'
|
1119
|
+
int = int_T.new()
|
1120
|
+
int.from = 2
|
1121
|
+
int.to = nil
|
1122
|
+
calculator.string(int).should == 'Integer[2, default]'
|
1123
|
+
end
|
1124
|
+
|
1125
|
+
it 'should yield \'Float\' for PFloatType' do
|
1126
|
+
calculator.string(Puppet::Pops::Types::PFloatType.new()).should == 'Float'
|
1127
|
+
end
|
1128
|
+
|
1129
|
+
it 'should yield \'Regexp\' for PRegexpType' do
|
1130
|
+
calculator.string(Puppet::Pops::Types::PRegexpType.new()).should == 'Regexp'
|
1131
|
+
end
|
1132
|
+
|
1133
|
+
it 'should yield \'Regexp[/pat/]\' for parameterized PRegexpType' do
|
1134
|
+
t = Puppet::Pops::Types::PRegexpType.new()
|
1135
|
+
t.pattern = ('a/b')
|
1136
|
+
calculator.string(Puppet::Pops::Types::PRegexpType.new()).should == 'Regexp'
|
1137
|
+
end
|
1138
|
+
|
1139
|
+
it 'should yield \'String\' for PStringType' do
|
1140
|
+
calculator.string(Puppet::Pops::Types::PStringType.new()).should == 'String'
|
1141
|
+
end
|
1142
|
+
|
1143
|
+
it 'should yield \'String\' for PStringType with multiple values' do
|
1144
|
+
calculator.string(string_t('a', 'b', 'c')).should == 'String'
|
1145
|
+
end
|
1146
|
+
|
1147
|
+
it 'should yield \'String\' and from/to for PStringType' do
|
1148
|
+
string_T = Puppet::Pops::Types::PStringType
|
1149
|
+
calculator.string(factory.constrain_size(string_T.new(), 1,1)).should == 'String[1, 1]'
|
1150
|
+
calculator.string(factory.constrain_size(string_T.new(), 1,2)).should == 'String[1, 2]'
|
1151
|
+
calculator.string(factory.constrain_size(string_T.new(), :default, 2)).should == 'String[default, 2]'
|
1152
|
+
calculator.string(factory.constrain_size(string_T.new(), 2, :default)).should == 'String[2, default]'
|
1153
|
+
end
|
1154
|
+
|
1155
|
+
it 'should yield \'Array[Integer]\' for PArrayType[PIntegerType]' do
|
1156
|
+
t = Puppet::Pops::Types::PArrayType.new()
|
1157
|
+
t.element_type = Puppet::Pops::Types::PIntegerType.new()
|
1158
|
+
calculator.string(t).should == 'Array[Integer]'
|
1159
|
+
end
|
1160
|
+
|
1161
|
+
it 'should yield \'Collection\' and from/to for PCollectionType' do
|
1162
|
+
col = collection_t()
|
1163
|
+
calculator.string(factory.constrain_size(col.copy, 1,1)).should == 'Collection[1, 1]'
|
1164
|
+
calculator.string(factory.constrain_size(col.copy, 1,2)).should == 'Collection[1, 2]'
|
1165
|
+
calculator.string(factory.constrain_size(col.copy, :default, 2)).should == 'Collection[default, 2]'
|
1166
|
+
calculator.string(factory.constrain_size(col.copy, 2, :default)).should == 'Collection[2, default]'
|
1167
|
+
end
|
1168
|
+
|
1169
|
+
it 'should yield \'Array\' and from/to for PArrayType' do
|
1170
|
+
arr = array_t(string_t)
|
1171
|
+
calculator.string(factory.constrain_size(arr.copy, 1,1)).should == 'Array[String, 1, 1]'
|
1172
|
+
calculator.string(factory.constrain_size(arr.copy, 1,2)).should == 'Array[String, 1, 2]'
|
1173
|
+
calculator.string(factory.constrain_size(arr.copy, :default, 2)).should == 'Array[String, default, 2]'
|
1174
|
+
calculator.string(factory.constrain_size(arr.copy, 2, :default)).should == 'Array[String, 2, default]'
|
1175
|
+
end
|
1176
|
+
|
1177
|
+
it 'should yield \'Tuple[Integer]\' for PTupleType[PIntegerType]' do
|
1178
|
+
t = Puppet::Pops::Types::PTupleType.new()
|
1179
|
+
t.addTypes(Puppet::Pops::Types::PIntegerType.new())
|
1180
|
+
calculator.string(t).should == 'Tuple[Integer]'
|
1181
|
+
end
|
1182
|
+
|
1183
|
+
it 'should yield \'Tuple[T, T,..]\' for PTupleType[T, T, ...]' do
|
1184
|
+
t = Puppet::Pops::Types::PTupleType.new()
|
1185
|
+
t.addTypes(Puppet::Pops::Types::PIntegerType.new())
|
1186
|
+
t.addTypes(Puppet::Pops::Types::PIntegerType.new())
|
1187
|
+
t.addTypes(Puppet::Pops::Types::PStringType.new())
|
1188
|
+
calculator.string(t).should == 'Tuple[Integer, Integer, String]'
|
1189
|
+
end
|
1190
|
+
|
1191
|
+
it 'should yield \'Tuple\' and from/to for PTupleType' do
|
1192
|
+
tuple_t = tuple_t(string_t)
|
1193
|
+
calculator.string(factory.constrain_size(tuple_t.copy, 1,1)).should == 'Tuple[String, 1, 1]'
|
1194
|
+
calculator.string(factory.constrain_size(tuple_t.copy, 1,2)).should == 'Tuple[String, 1, 2]'
|
1195
|
+
calculator.string(factory.constrain_size(tuple_t.copy, :default, 2)).should == 'Tuple[String, default, 2]'
|
1196
|
+
calculator.string(factory.constrain_size(tuple_t.copy, 2, :default)).should == 'Tuple[String, 2, default]'
|
1197
|
+
end
|
1198
|
+
|
1199
|
+
it 'should yield \'Struct\' and details for PStructType' do
|
1200
|
+
struct_t = struct_t({'a'=>Integer, 'b'=>String})
|
1201
|
+
s = calculator.string(struct_t)
|
1202
|
+
# Ruby 1.8.7 - noone likes you...
|
1203
|
+
(s == "Struct[{'a'=>Integer, 'b'=>String}]" || s == "Struct[{'b'=>String, 'a'=>Integer}]").should == true
|
1204
|
+
struct_t = struct_t({})
|
1205
|
+
calculator.string(struct_t).should == "Struct"
|
1206
|
+
end
|
1207
|
+
|
1208
|
+
it 'should yield \'Hash[String, Integer]\' for PHashType[PStringType, PIntegerType]' do
|
1209
|
+
t = Puppet::Pops::Types::PHashType.new()
|
1210
|
+
t.key_type = Puppet::Pops::Types::PStringType.new()
|
1211
|
+
t.element_type = Puppet::Pops::Types::PIntegerType.new()
|
1212
|
+
calculator.string(t).should == 'Hash[String, Integer]'
|
1213
|
+
end
|
1214
|
+
|
1215
|
+
it 'should yield \'Hash\' and from/to for PHashType' do
|
1216
|
+
hsh = hash_t(string_t, string_t)
|
1217
|
+
calculator.string(factory.constrain_size(hsh.copy, 1,1)).should == 'Hash[String, String, 1, 1]'
|
1218
|
+
calculator.string(factory.constrain_size(hsh.copy, 1,2)).should == 'Hash[String, String, 1, 2]'
|
1219
|
+
calculator.string(factory.constrain_size(hsh.copy, :default, 2)).should == 'Hash[String, String, default, 2]'
|
1220
|
+
calculator.string(factory.constrain_size(hsh.copy, 2, :default)).should == 'Hash[String, String, 2, default]'
|
1221
|
+
end
|
1222
|
+
|
1223
|
+
it "should yield 'Class' for a PHostClassType" do
|
1224
|
+
t = Puppet::Pops::Types::PHostClassType.new()
|
1225
|
+
calculator.string(t).should == 'Class'
|
1226
|
+
end
|
1227
|
+
|
1228
|
+
it "should yield 'Class[x]' for a PHostClassType[x]" do
|
1229
|
+
t = Puppet::Pops::Types::PHostClassType.new()
|
1230
|
+
t.class_name = 'x'
|
1231
|
+
calculator.string(t).should == 'Class[x]'
|
1232
|
+
end
|
1233
|
+
|
1234
|
+
it "should yield 'Resource' for a PResourceType" do
|
1235
|
+
t = Puppet::Pops::Types::PResourceType.new()
|
1236
|
+
calculator.string(t).should == 'Resource'
|
1237
|
+
end
|
1238
|
+
|
1239
|
+
it 'should yield \'File\' for a PResourceType[\'File\']' do
|
1240
|
+
t = Puppet::Pops::Types::PResourceType.new()
|
1241
|
+
t.type_name = 'File'
|
1242
|
+
calculator.string(t).should == 'File'
|
1243
|
+
end
|
1244
|
+
|
1245
|
+
it "should yield 'File['/tmp/foo']' for a PResourceType['File', '/tmp/foo']" do
|
1246
|
+
t = Puppet::Pops::Types::PResourceType.new()
|
1247
|
+
t.type_name = 'File'
|
1248
|
+
t.title = '/tmp/foo'
|
1249
|
+
calculator.string(t).should == "File['/tmp/foo']"
|
1250
|
+
end
|
1251
|
+
|
1252
|
+
it "should yield 'Enum[s,...]' for a PEnumType[s,...]" do
|
1253
|
+
t = enum_t('a', 'b', 'c')
|
1254
|
+
calculator.string(t).should == "Enum['a', 'b', 'c']"
|
1255
|
+
end
|
1256
|
+
|
1257
|
+
it "should yield 'Pattern[/pat/,...]' for a PPatternType['pat',...]" do
|
1258
|
+
t = pattern_t('a')
|
1259
|
+
t2 = pattern_t('a', 'b', 'c')
|
1260
|
+
calculator.string(t).should == "Pattern[/a/]"
|
1261
|
+
calculator.string(t2).should == "Pattern[/a/, /b/, /c/]"
|
1262
|
+
end
|
1263
|
+
|
1264
|
+
it "should escape special characters in the string for a PPatternType['pat',...]" do
|
1265
|
+
t = pattern_t('a/b')
|
1266
|
+
calculator.string(t).should == "Pattern[/a\\/b/]"
|
1267
|
+
end
|
1268
|
+
|
1269
|
+
it "should yield 'Variant[t1,t2,...]' for a PVariantType[t1, t2,...]" do
|
1270
|
+
t1 = string_t()
|
1271
|
+
t2 = integer_t()
|
1272
|
+
t3 = pattern_t('a')
|
1273
|
+
t = variant_t(t1, t2, t3)
|
1274
|
+
calculator.string(t).should == "Variant[String, Integer, Pattern[/a/]]"
|
1275
|
+
end
|
1276
|
+
end
|
1277
|
+
|
1278
|
+
context 'when processing meta type' do
|
1279
|
+
it 'should infer PType as the type of all other types' do
|
1280
|
+
ptype = Puppet::Pops::Types::PType
|
1281
|
+
calculator.infer(Puppet::Pops::Types::PNilType.new() ).is_a?(ptype).should() == true
|
1282
|
+
calculator.infer(Puppet::Pops::Types::PDataType.new() ).is_a?(ptype).should() == true
|
1283
|
+
calculator.infer(Puppet::Pops::Types::PScalarType.new() ).is_a?(ptype).should() == true
|
1284
|
+
calculator.infer(Puppet::Pops::Types::PStringType.new() ).is_a?(ptype).should() == true
|
1285
|
+
calculator.infer(Puppet::Pops::Types::PNumericType.new() ).is_a?(ptype).should() == true
|
1286
|
+
calculator.infer(Puppet::Pops::Types::PIntegerType.new() ).is_a?(ptype).should() == true
|
1287
|
+
calculator.infer(Puppet::Pops::Types::PFloatType.new() ).is_a?(ptype).should() == true
|
1288
|
+
calculator.infer(Puppet::Pops::Types::PRegexpType.new() ).is_a?(ptype).should() == true
|
1289
|
+
calculator.infer(Puppet::Pops::Types::PBooleanType.new() ).is_a?(ptype).should() == true
|
1290
|
+
calculator.infer(Puppet::Pops::Types::PCollectionType.new()).is_a?(ptype).should() == true
|
1291
|
+
calculator.infer(Puppet::Pops::Types::PArrayType.new() ).is_a?(ptype).should() == true
|
1292
|
+
calculator.infer(Puppet::Pops::Types::PHashType.new() ).is_a?(ptype).should() == true
|
1293
|
+
calculator.infer(Puppet::Pops::Types::PRubyType.new() ).is_a?(ptype).should() == true
|
1294
|
+
calculator.infer(Puppet::Pops::Types::PHostClassType.new() ).is_a?(ptype).should() == true
|
1295
|
+
calculator.infer(Puppet::Pops::Types::PResourceType.new() ).is_a?(ptype).should() == true
|
1296
|
+
calculator.infer(Puppet::Pops::Types::PEnumType.new() ).is_a?(ptype).should() == true
|
1297
|
+
calculator.infer(Puppet::Pops::Types::PPatternType.new() ).is_a?(ptype).should() == true
|
1298
|
+
calculator.infer(Puppet::Pops::Types::PVariantType.new() ).is_a?(ptype).should() == true
|
1299
|
+
calculator.infer(Puppet::Pops::Types::PTupleType.new() ).is_a?(ptype).should() == true
|
1300
|
+
end
|
1301
|
+
|
1302
|
+
it 'should infer PType as the type of all other types' do
|
1303
|
+
ptype = Puppet::Pops::Types::PType
|
1304
|
+
calculator.string(calculator.infer(Puppet::Pops::Types::PNilType.new() )).should == "Type[Undef]"
|
1305
|
+
calculator.string(calculator.infer(Puppet::Pops::Types::PDataType.new() )).should == "Type[Data]"
|
1306
|
+
calculator.string(calculator.infer(Puppet::Pops::Types::PScalarType.new() )).should == "Type[Scalar]"
|
1307
|
+
calculator.string(calculator.infer(Puppet::Pops::Types::PStringType.new() )).should == "Type[String]"
|
1308
|
+
calculator.string(calculator.infer(Puppet::Pops::Types::PNumericType.new() )).should == "Type[Numeric]"
|
1309
|
+
calculator.string(calculator.infer(Puppet::Pops::Types::PIntegerType.new() )).should == "Type[Integer]"
|
1310
|
+
calculator.string(calculator.infer(Puppet::Pops::Types::PFloatType.new() )).should == "Type[Float]"
|
1311
|
+
calculator.string(calculator.infer(Puppet::Pops::Types::PRegexpType.new() )).should == "Type[Regexp]"
|
1312
|
+
calculator.string(calculator.infer(Puppet::Pops::Types::PBooleanType.new() )).should == "Type[Boolean]"
|
1313
|
+
calculator.string(calculator.infer(Puppet::Pops::Types::PCollectionType.new())).should == "Type[Collection]"
|
1314
|
+
calculator.string(calculator.infer(Puppet::Pops::Types::PArrayType.new() )).should == "Type[Array[?]]"
|
1315
|
+
calculator.string(calculator.infer(Puppet::Pops::Types::PHashType.new() )).should == "Type[Hash[?, ?]]"
|
1316
|
+
calculator.string(calculator.infer(Puppet::Pops::Types::PRubyType.new() )).should == "Type[Ruby[?]]"
|
1317
|
+
calculator.string(calculator.infer(Puppet::Pops::Types::PHostClassType.new() )).should == "Type[Class]"
|
1318
|
+
calculator.string(calculator.infer(Puppet::Pops::Types::PResourceType.new() )).should == "Type[Resource]"
|
1319
|
+
calculator.string(calculator.infer(Puppet::Pops::Types::PEnumType.new() )).should == "Type[Enum]"
|
1320
|
+
calculator.string(calculator.infer(Puppet::Pops::Types::PVariantType.new() )).should == "Type[Variant]"
|
1321
|
+
calculator.string(calculator.infer(Puppet::Pops::Types::PPatternType.new() )).should == "Type[Pattern]"
|
1322
|
+
calculator.string(calculator.infer(Puppet::Pops::Types::PTupleType.new() )).should == "Type[Tuple]"
|
1323
|
+
end
|
1324
|
+
|
1325
|
+
it "computes the common type of PType's type parameter" do
|
1326
|
+
int_t = Puppet::Pops::Types::PIntegerType.new()
|
1327
|
+
string_t = Puppet::Pops::Types::PStringType.new()
|
1328
|
+
calculator.string(calculator.infer([int_t])).should == "Array[Type[Integer], 1, 1]"
|
1329
|
+
calculator.string(calculator.infer([int_t, string_t])).should == "Array[Type[Scalar], 2, 2]"
|
1330
|
+
end
|
1331
|
+
|
1332
|
+
it 'should infer PType as the type of ruby classes' do
|
1333
|
+
class Foo
|
1334
|
+
end
|
1335
|
+
[Object, Numeric, Integer, Fixnum, Bignum, Float, String, Regexp, Array, Hash, Foo].each do |c|
|
1336
|
+
calculator.infer(c).is_a?(Puppet::Pops::Types::PType).should() == true
|
1337
|
+
end
|
1338
|
+
end
|
1339
|
+
|
1340
|
+
it 'should infer PType as the type of PType (meta regression short-circuit)' do
|
1341
|
+
calculator.infer(Puppet::Pops::Types::PType.new()).is_a?(Puppet::Pops::Types::PType).should() == true
|
1342
|
+
end
|
1343
|
+
|
1344
|
+
it 'computes instance? to be true if parameterized and type match' do
|
1345
|
+
int_t = Puppet::Pops::Types::PIntegerType.new()
|
1346
|
+
type_t = Puppet::Pops::Types::TypeFactory.type_type(int_t)
|
1347
|
+
type_type_t = Puppet::Pops::Types::TypeFactory.type_type(type_t)
|
1348
|
+
calculator.instance?(type_type_t, type_t).should == true
|
1349
|
+
end
|
1350
|
+
|
1351
|
+
it 'computes instance? to be false if parameterized and type do not match' do
|
1352
|
+
int_t = Puppet::Pops::Types::PIntegerType.new()
|
1353
|
+
string_t = Puppet::Pops::Types::PStringType.new()
|
1354
|
+
type_t = Puppet::Pops::Types::TypeFactory.type_type(int_t)
|
1355
|
+
type_t2 = Puppet::Pops::Types::TypeFactory.type_type(string_t)
|
1356
|
+
type_type_t = Puppet::Pops::Types::TypeFactory.type_type(type_t)
|
1357
|
+
# i.e. Type[Integer] =~ Type[Type[Integer]] # false
|
1358
|
+
calculator.instance?(type_type_t, type_t2).should == false
|
1359
|
+
end
|
1360
|
+
|
1361
|
+
it 'computes instance? to be true if unparameterized and matched against a type[?]' do
|
1362
|
+
int_t = Puppet::Pops::Types::PIntegerType.new()
|
1363
|
+
type_t = Puppet::Pops::Types::TypeFactory.type_type(int_t)
|
1364
|
+
calculator.instance?(Puppet::Pops::Types::PType.new, type_t).should == true
|
1365
|
+
end
|
1366
|
+
end
|
1367
|
+
|
1368
|
+
context "when asking for an enumerable " do
|
1369
|
+
it "should produce an enumerable for an Integer range that is not infinite" do
|
1370
|
+
t = Puppet::Pops::Types::PIntegerType.new()
|
1371
|
+
t.from = 1
|
1372
|
+
t.to = 10
|
1373
|
+
calculator.enumerable(t).respond_to?(:each).should == true
|
1374
|
+
end
|
1375
|
+
|
1376
|
+
it "should not produce an enumerable for an Integer range that has an infinite side" do
|
1377
|
+
t = Puppet::Pops::Types::PIntegerType.new()
|
1378
|
+
t.from = nil
|
1379
|
+
t.to = 10
|
1380
|
+
calculator.enumerable(t).should == nil
|
1381
|
+
|
1382
|
+
t = Puppet::Pops::Types::PIntegerType.new()
|
1383
|
+
t.from = 1
|
1384
|
+
t.to = nil
|
1385
|
+
calculator.enumerable(t).should == nil
|
1386
|
+
end
|
1387
|
+
|
1388
|
+
it "all but Integer range are not enumerable" do
|
1389
|
+
[Object, Numeric, Float, String, Regexp, Array, Hash].each do |t|
|
1390
|
+
calculator.enumerable(calculator.type(t)).should == nil
|
1391
|
+
end
|
1392
|
+
end
|
1393
|
+
end
|
1394
|
+
|
1395
|
+
context "when dealing with different types of inference" do
|
1396
|
+
it "an instance specific inference is produced by infer" do
|
1397
|
+
calculator.infer(['a','b']).element_type.values.should == ['a', 'b']
|
1398
|
+
end
|
1399
|
+
|
1400
|
+
it "a generic inference is produced using infer_generic" do
|
1401
|
+
calculator.infer_generic(['a','b']).element_type.values.should == []
|
1402
|
+
end
|
1403
|
+
|
1404
|
+
it "a generic result is created by generalize! given an instance specific result for an Array" do
|
1405
|
+
generic = calculator.infer(['a','b'])
|
1406
|
+
generic.element_type.values.should == ['a', 'b']
|
1407
|
+
calculator.generalize!(generic)
|
1408
|
+
generic.element_type.values.should == []
|
1409
|
+
end
|
1410
|
+
|
1411
|
+
it "a generic result is created by generalize! given an instance specific result for a Hash" do
|
1412
|
+
generic = calculator.infer({'a' =>1,'b' => 2})
|
1413
|
+
generic.key_type.values.sort.should == ['a', 'b']
|
1414
|
+
generic.element_type.from.should == 1
|
1415
|
+
generic.element_type.to.should == 2
|
1416
|
+
calculator.generalize!(generic)
|
1417
|
+
generic.key_type.values.should == []
|
1418
|
+
generic.element_type.from.should == nil
|
1419
|
+
generic.element_type.to.should == nil
|
1420
|
+
end
|
1421
|
+
|
1422
|
+
it "does not reduce by combining types when using infer_set" do
|
1423
|
+
element_type = calculator.infer(['a','b',1,2]).element_type
|
1424
|
+
element_type.class.should == Puppet::Pops::Types::PScalarType
|
1425
|
+
element_type = calculator.infer_set(['a','b',1,2]).element_type
|
1426
|
+
element_type.class.should == Puppet::Pops::Types::PVariantType
|
1427
|
+
element_type.types[0].class.should == Puppet::Pops::Types::PStringType
|
1428
|
+
element_type.types[1].class.should == Puppet::Pops::Types::PStringType
|
1429
|
+
element_type.types[2].class.should == Puppet::Pops::Types::PIntegerType
|
1430
|
+
element_type.types[3].class.should == Puppet::Pops::Types::PIntegerType
|
1431
|
+
end
|
1432
|
+
|
1433
|
+
it "does not reduce by combining types when using infer_set and values are undef" do
|
1434
|
+
element_type = calculator.infer(['a',nil]).element_type
|
1435
|
+
element_type.class.should == Puppet::Pops::Types::PStringType
|
1436
|
+
element_type = calculator.infer_set(['a',nil]).element_type
|
1437
|
+
element_type.class.should == Puppet::Pops::Types::PVariantType
|
1438
|
+
element_type.types[0].class.should == Puppet::Pops::Types::PStringType
|
1439
|
+
element_type.types[1].class.should == Puppet::Pops::Types::PNilType
|
1440
|
+
end
|
1441
|
+
end
|
1442
|
+
|
1443
|
+
matcher :be_assignable_to do |type|
|
1444
|
+
calc = Puppet::Pops::Types::TypeCalculator.new
|
1445
|
+
|
1446
|
+
match do |actual|
|
1447
|
+
calc.assignable?(type, actual)
|
1448
|
+
end
|
1449
|
+
|
1450
|
+
failure_message_for_should do |actual|
|
1451
|
+
"#{calc.string(actual)} should be assignable to #{calc.string(type)}"
|
1452
|
+
end
|
1453
|
+
|
1454
|
+
failure_message_for_should_not do |actual|
|
1455
|
+
"#{calc.string(actual)} is assignable to #{calc.string(type)} when it should not"
|
1456
|
+
end
|
1457
|
+
end
|
1458
|
+
|
1459
|
+
end
|