puppet 4.4.0-universal-darwin
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.
- checksums.yaml +7 -0
- data/COMMITTERS.md +244 -0
- data/CONTRIBUTING.md +116 -0
- data/Gemfile +92 -0
- data/LICENSE +17 -0
- data/README.md +75 -0
- data/Rakefile +97 -0
- data/bin/extlookup2hiera +56 -0
- data/bin/puppet +9 -0
- data/conf/auth.conf +124 -0
- data/conf/environment.conf +18 -0
- data/conf/fileserver.conf +42 -0
- data/conf/puppet.conf +6 -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/README.environment +8 -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 +20 -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 +146 -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 +13 -0
- data/ext/debian/puppet-common.install +4 -0
- data/ext/debian/puppet-common.lintian-overrides +5 -0
- data/ext/debian/puppet-common.manpages +30 -0
- data/ext/debian/puppet-common.postinst +35 -0
- data/ext/debian/puppet-common.postrm +33 -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.default +4 -0
- data/ext/debian/puppet.init +113 -0
- data/ext/debian/puppet.lintian-overrides +3 -0
- data/ext/debian/puppet.logrotate +20 -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.postinst +6 -0
- data/ext/debian/puppetmaster-passenger.dirs +4 -0
- data/ext/debian/puppetmaster-passenger.postinst +162 -0
- data/ext/debian/puppetmaster-passenger.postrm +61 -0
- data/ext/debian/puppetmaster.README.debian +17 -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 +132 -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 +5 -0
- data/ext/debian/vim-puppet.yaml +7 -0
- data/ext/debian/watch +2 -0
- data/ext/emacs/puppet-mode-init.el +6 -0
- data/ext/emacs/puppet-mode.el +433 -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/ips/puppet-agent +44 -0
- data/ext/ips/puppet-master +44 -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/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/osx/puppet.plist +30 -0
- data/ext/project_data.yaml +57 -0
- data/ext/puppet-nm-dispatcher +13 -0
- data/ext/puppet-test +500 -0
- data/ext/puppetlisten/puppetlisten.rb +77 -0
- data/ext/puppetlisten/puppetrun.rb +38 -0
- data/ext/pure_ruby_dsl/dsl_test.rb +7 -0
- data/ext/rack/config.ru +44 -0
- data/ext/rack/example-passenger-vhost.conf +57 -0
- data/ext/redhat/client.init +169 -0
- data/ext/redhat/client.sysconfig +2 -0
- data/ext/redhat/fileserver.conf +41 -0
- data/ext/redhat/logrotate +21 -0
- data/ext/redhat/puppet.spec.erb +858 -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/puppet +44 -0
- data/ext/solaris/smf/puppet.xml +44 -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 +141 -0
- data/ext/suse/puppet.spec +310 -0
- data/ext/suse/server.init +173 -0
- data/ext/systemd/puppet.service +15 -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/puppet_interactive.bat +6 -0
- data/ext/windows/puppet_shell.bat +9 -0
- data/ext/windows/run_puppet_interactive.bat +9 -0
- data/ext/windows/service/daemon.bat +6 -0
- data/ext/windows/service/daemon.rb +192 -0
- data/ext/yaml_nodes.rb +105 -0
- data/install.rb +477 -0
- data/lib/hiera/puppet_function.rb +82 -0
- data/lib/hiera/scope.rb +63 -0
- data/lib/hiera_puppet.rb +87 -0
- data/lib/puppet.rb +286 -0
- data/lib/puppet/agent.rb +102 -0
- data/lib/puppet/agent/disabler.rb +53 -0
- data/lib/puppet/agent/locker.rb +52 -0
- data/lib/puppet/application.rb +462 -0
- data/lib/puppet/application/agent.rb +457 -0
- data/lib/puppet/application/apply.rb +352 -0
- data/lib/puppet/application/ca.rb +10 -0
- data/lib/puppet/application/catalog.rb +4 -0
- data/lib/puppet/application/cert.rb +297 -0
- data/lib/puppet/application/certificate.rb +17 -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 +256 -0
- data/lib/puppet/application/doc.rb +226 -0
- data/lib/puppet/application/epp.rb +5 -0
- data/lib/puppet/application/face_base.rb +269 -0
- data/lib/puppet/application/facts.rb +4 -0
- data/lib/puppet/application/file.rb +4 -0
- data/lib/puppet/application/filebucket.rb +258 -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/key.rb +4 -0
- data/lib/puppet/application/lookup.rb +354 -0
- data/lib/puppet/application/man.rb +4 -0
- data/lib/puppet/application/master.rb +321 -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/report.rb +4 -0
- data/lib/puppet/application/resource.rb +228 -0
- data/lib/puppet/application/resource_type.rb +7 -0
- data/lib/puppet/application/status.rb +4 -0
- data/lib/puppet/application_support.rb +57 -0
- data/lib/puppet/bindings.rb +147 -0
- data/lib/puppet/coercion.rb +40 -0
- data/lib/puppet/configurer.rb +389 -0
- data/lib/puppet/configurer/downloader.rb +67 -0
- data/lib/puppet/configurer/downloader_factory.rb +34 -0
- data/lib/puppet/configurer/fact_handler.rb +37 -0
- data/lib/puppet/configurer/plugin_handler.rb +27 -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 +116 -0
- data/lib/puppet/context/trusted_information.rb +76 -0
- data/lib/puppet/daemon.rb +195 -0
- data/lib/puppet/data_binding.rb +14 -0
- data/lib/puppet/data_providers.rb +30 -0
- data/lib/puppet/data_providers/data_adapter.rb +30 -0
- data/lib/puppet/data_providers/data_function_support.rb +24 -0
- data/lib/puppet/data_providers/function_env_data_provider.rb +18 -0
- data/lib/puppet/data_providers/function_module_data_provider.rb +17 -0
- data/lib/puppet/data_providers/hiera_config.rb +131 -0
- data/lib/puppet/data_providers/hiera_env_data_provider.rb +18 -0
- data/lib/puppet/data_providers/hiera_interpolate.rb +112 -0
- data/lib/puppet/data_providers/hiera_module_data_provider.rb +23 -0
- data/lib/puppet/data_providers/hiera_support.rb +37 -0
- data/lib/puppet/data_providers/json_data_provider_factory.rb +31 -0
- data/lib/puppet/data_providers/lookup_adapter.rb +247 -0
- data/lib/puppet/data_providers/yaml_data_provider_factory.rb +32 -0
- data/lib/puppet/defaults.rb +1823 -0
- data/lib/puppet/environments.rb +487 -0
- data/lib/puppet/error.rb +100 -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 +248 -0
- data/lib/puppet/external/nagios/makefile +9 -0
- data/lib/puppet/external/nagios/parser.rb +400 -0
- data/lib/puppet/external/pson/common.rb +370 -0
- data/lib/puppet/external/pson/pure.rb +15 -0
- data/lib/puppet/external/pson/pure/generator.rb +395 -0
- data/lib/puppet/external/pson/pure/parser.rb +307 -0
- data/lib/puppet/external/pson/version.rb +8 -0
- data/lib/puppet/face.rb +12 -0
- data/lib/puppet/face/ca.rb +254 -0
- data/lib/puppet/face/catalog.rb +130 -0
- data/lib/puppet/face/catalog/select.rb +49 -0
- data/lib/puppet/face/certificate.rb +159 -0
- data/lib/puppet/face/certificate_request.rb +54 -0
- data/lib/puppet/face/certificate_revocation_list.rb +54 -0
- data/lib/puppet/face/config.rb +119 -0
- data/lib/puppet/face/epp.rb +479 -0
- data/lib/puppet/face/facts.rb +38 -0
- data/lib/puppet/face/file.rb +47 -0
- data/lib/puppet/face/file/download.rb +56 -0
- data/lib/puppet/face/file/store.rb +21 -0
- data/lib/puppet/face/help.rb +193 -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/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 +42 -0
- data/lib/puppet/face/module/generate.rb +251 -0
- data/lib/puppet/face/module/install.rb +145 -0
- data/lib/puppet/face/module/list.rb +275 -0
- data/lib/puppet/face/module/search.rb +94 -0
- data/lib/puppet/face/module/uninstall.rb +78 -0
- data/lib/puppet/face/module/upgrade.rb +86 -0
- data/lib/puppet/face/node.rb +42 -0
- data/lib/puppet/face/node/clean.rb +96 -0
- data/lib/puppet/face/parser.rb +161 -0
- data/lib/puppet/face/plugin.rb +58 -0
- data/lib/puppet/face/report.rb +54 -0
- data/lib/puppet/face/resource.rb +53 -0
- data/lib/puppet/face/resource_type.rb +84 -0
- data/lib/puppet/face/status.rb +48 -0
- data/lib/puppet/feature/base.rb +87 -0
- data/lib/puppet/feature/cfacter.rb +15 -0
- data/lib/puppet/feature/cfpropertylist.rb +3 -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/pe_license.rb +4 -0
- data/lib/puppet/feature/rack.rb +19 -0
- data/lib/puppet/feature/selinux.rb +3 -0
- data/lib/puppet/feature/ssh.rb +3 -0
- data/lib/puppet/feature/telnet.rb +9 -0
- data/lib/puppet/feature/zlib.rb +5 -0
- data/lib/puppet/file_bucket.rb +4 -0
- data/lib/puppet/file_bucket/dipper.rb +174 -0
- data/lib/puppet/file_bucket/file.rb +144 -0
- data/lib/puppet/file_serving.rb +3 -0
- data/lib/puppet/file_serving/base.rb +85 -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 +43 -0
- data/lib/puppet/file_serving/fileset.rb +172 -0
- data/lib/puppet/file_serving/http_metadata.rb +46 -0
- data/lib/puppet/file_serving/metadata.rb +163 -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 +31 -0
- data/lib/puppet/file_serving/terminus_selector.rb +32 -0
- data/lib/puppet/file_system.rb +376 -0
- data/lib/puppet/file_system/file_impl.rb +149 -0
- data/lib/puppet/file_system/memory_file.rb +66 -0
- data/lib/puppet/file_system/memory_impl.rb +82 -0
- data/lib/puppet/file_system/path_pattern.rb +97 -0
- data/lib/puppet/file_system/posix.rb +46 -0
- data/lib/puppet/file_system/uniquefile.rb +190 -0
- data/lib/puppet/file_system/windows.rb +117 -0
- data/lib/puppet/forge.rb +226 -0
- data/lib/puppet/forge/cache.rb +59 -0
- data/lib/puppet/forge/errors.rb +112 -0
- data/lib/puppet/forge/repository.rb +155 -0
- data/lib/puppet/functions.rb +663 -0
- data/lib/puppet/functions/assert_type.rb +95 -0
- data/lib/puppet/functions/defined.rb +161 -0
- data/lib/puppet/functions/each.rb +159 -0
- data/lib/puppet/functions/epp.rb +45 -0
- data/lib/puppet/functions/filter.rb +137 -0
- data/lib/puppet/functions/hiera.rb +81 -0
- data/lib/puppet/functions/hiera_array.rb +74 -0
- data/lib/puppet/functions/hiera_hash.rb +84 -0
- data/lib/puppet/functions/hiera_include.rb +90 -0
- data/lib/puppet/functions/import.rb +7 -0
- data/lib/puppet/functions/inline_epp.rb +59 -0
- data/lib/puppet/functions/lookup.rb +212 -0
- data/lib/puppet/functions/map.rb +122 -0
- data/lib/puppet/functions/match.rb +120 -0
- data/lib/puppet/functions/reduce.rb +121 -0
- data/lib/puppet/functions/regsubst.rb +79 -0
- data/lib/puppet/functions/reverse_each.rb +82 -0
- data/lib/puppet/functions/scanf.rb +44 -0
- data/lib/puppet/functions/slice.rb +111 -0
- data/lib/puppet/functions/split.rb +47 -0
- data/lib/puppet/functions/step.rb +88 -0
- data/lib/puppet/functions/type.rb +70 -0
- data/lib/puppet/functions/versioncmp.rb +36 -0
- data/lib/puppet/functions/with.rb +30 -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 +274 -0
- data/lib/puppet/graph/sequential_prioritizer.rb +31 -0
- data/lib/puppet/graph/simple_graph.rb +562 -0
- data/lib/puppet/graph/title_hash_prioritizer.rb +16 -0
- data/lib/puppet/indirector.rb +61 -0
- data/lib/puppet/indirector/catalog/compiler.rb +364 -0
- data/lib/puppet/indirector/catalog/json.rb +6 -0
- data/lib/puppet/indirector/catalog/msgpack.rb +6 -0
- data/lib/puppet/indirector/catalog/rest.rb +6 -0
- data/lib/puppet/indirector/catalog/static_compiler.rb +229 -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/data_binding/hiera.rb +7 -0
- data/lib/puppet/indirector/data_binding/none.rb +8 -0
- data/lib/puppet/indirector/direct_file_server.rb +17 -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 +148 -0
- data/lib/puppet/indirector/facts/facter.rb +90 -0
- data/lib/puppet/indirector/facts/memory.rb +9 -0
- data/lib/puppet/indirector/facts/network_device.rb +27 -0
- data/lib/puppet/indirector/facts/store_configs.rb +11 -0
- data/lib/puppet/indirector/facts/yaml.rb +86 -0
- data/lib/puppet/indirector/file_bucket_file/file.rb +199 -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/http.rb +15 -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 +7 -0
- data/lib/puppet/indirector/file_metadata/file_server.rb +7 -0
- data/lib/puppet/indirector/file_metadata/http.rb +27 -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 +51 -0
- data/lib/puppet/indirector/generic_http.rb +16 -0
- data/lib/puppet/indirector/hiera.rb +92 -0
- data/lib/puppet/indirector/indirection.rb +338 -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/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/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 +256 -0
- data/lib/puppet/indirector/resource/ral.rb +63 -0
- data/lib/puppet/indirector/resource/store_configs.rb +12 -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 +103 -0
- data/lib/puppet/indirector/resource_type/rest.rb +7 -0
- data/lib/puppet/indirector/rest.rb +256 -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/info_service.rb +7 -0
- data/lib/puppet/info_service/class_information_service.rb +112 -0
- data/lib/puppet/interface.rb +228 -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 +97 -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 +91 -0
- data/lib/puppet/interface/option_manager.rb +99 -0
- data/lib/puppet/loaders.rb +21 -0
- data/lib/puppet/metatype/manager.rb +178 -0
- data/lib/puppet/module.rb +355 -0
- data/lib/puppet/module_tool.rb +192 -0
- data/lib/puppet/module_tool/applications.rb +14 -0
- data/lib/puppet/module_tool/applications/application.rb +91 -0
- data/lib/puppet/module_tool/applications/builder.rb +148 -0
- data/lib/puppet/module_tool/applications/checksummer.rb +62 -0
- data/lib/puppet/module_tool/applications/installer.rb +351 -0
- data/lib/puppet/module_tool/applications/searcher.rb +29 -0
- data/lib/puppet/module_tool/applications/uninstaller.rb +117 -0
- data/lib/puppet/module_tool/applications/unpacker.rb +100 -0
- data/lib/puppet/module_tool/applications/upgrader.rb +277 -0
- data/lib/puppet/module_tool/checksums.rb +49 -0
- data/lib/puppet/module_tool/contents_description.rb +88 -0
- data/lib/puppet/module_tool/dependency.rb +42 -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 +95 -0
- data/lib/puppet/module_tool/errors/shared.rb +188 -0
- data/lib/puppet/module_tool/errors/uninstaller.rb +45 -0
- data/lib/puppet/module_tool/errors/upgrader.rb +63 -0
- data/lib/puppet/module_tool/install_directory.rb +45 -0
- data/lib/puppet/module_tool/installed_modules.rb +96 -0
- data/lib/puppet/module_tool/local_tarball.rb +90 -0
- data/lib/puppet/module_tool/metadata.rb +221 -0
- data/lib/puppet/module_tool/shared_behaviors.rb +180 -0
- data/lib/puppet/module_tool/skeleton/templates/generator/Gemfile +14 -0
- data/lib/puppet/module_tool/skeleton/templates/generator/README.md.erb +83 -0
- data/lib/puppet/module_tool/skeleton/templates/generator/Rakefile +17 -0
- data/lib/puppet/module_tool/skeleton/templates/generator/manifests/init.pp.erb +48 -0
- data/lib/puppet/module_tool/skeleton/templates/generator/metadata.json.erb +1 -0
- data/lib/puppet/module_tool/skeleton/templates/generator/spec/classes/init_spec.rb.erb +7 -0
- data/lib/puppet/module_tool/skeleton/templates/generator/spec/spec_helper.rb +1 -0
- data/lib/puppet/module_tool/skeleton/templates/generator/tests/init.pp.erb +12 -0
- data/lib/puppet/module_tool/tar.rb +17 -0
- data/lib/puppet/module_tool/tar/gnu.rb +19 -0
- data/lib/puppet/module_tool/tar/mini.rb +53 -0
- data/lib/puppet/network.rb +3 -0
- data/lib/puppet/network/auth_config_parser.rb +84 -0
- data/lib/puppet/network/authconfig.rb +112 -0
- data/lib/puppet/network/authorization.rb +41 -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 +128 -0
- data/lib/puppet/network/formats.rb +160 -0
- data/lib/puppet/network/http.rb +30 -0
- data/lib/puppet/network/http/api.rb +44 -0
- data/lib/puppet/network/http/api/ca.rb +2 -0
- data/lib/puppet/network/http/api/ca/v1.rb +11 -0
- data/lib/puppet/network/http/api/indirected_routes.rb +250 -0
- data/lib/puppet/network/http/api/indirection_type.rb +32 -0
- data/lib/puppet/network/http/api/master.rb +2 -0
- data/lib/puppet/network/http/api/master/v3.rb +28 -0
- data/lib/puppet/network/http/api/master/v3/authorization.rb +18 -0
- data/lib/puppet/network/http/api/master/v3/environment.rb +59 -0
- data/lib/puppet/network/http/api/master/v3/environments.rb +35 -0
- data/lib/puppet/network/http/compression.rb +116 -0
- data/lib/puppet/network/http/connection.rb +233 -0
- data/lib/puppet/network/http/error.rb +69 -0
- data/lib/puppet/network/http/factory.rb +47 -0
- data/lib/puppet/network/http/handler.rb +178 -0
- data/lib/puppet/network/http/issues.rb +11 -0
- data/lib/puppet/network/http/memory_response.rb +13 -0
- data/lib/puppet/network/http/nocache_pool.rb +21 -0
- data/lib/puppet/network/http/pool.rb +129 -0
- data/lib/puppet/network/http/rack.rb +33 -0
- data/lib/puppet/network/http/rack/rest.rb +138 -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 +100 -0
- data/lib/puppet/network/http/session.rb +17 -0
- data/lib/puppet/network/http/site.rb +39 -0
- data/lib/puppet/network/http/webrick.rb +124 -0
- data/lib/puppet/network/http/webrick/rest.rb +114 -0
- data/lib/puppet/network/http_pool.rb +61 -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 +197 -0
- data/lib/puppet/node/environment.rb +540 -0
- data/lib/puppet/node/facts.rb +133 -0
- data/lib/puppet/parameter.rb +572 -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 +91 -0
- data/lib/puppet/parameter/value_collection.rb +212 -0
- data/lib/puppet/parser.rb +20 -0
- data/lib/puppet/parser/ast.rb +60 -0
- data/lib/puppet/parser/ast/block_expression.rb +15 -0
- data/lib/puppet/parser/ast/branch.rb +19 -0
- data/lib/puppet/parser/ast/hostclass.rb +27 -0
- data/lib/puppet/parser/ast/leaf.rb +75 -0
- data/lib/puppet/parser/ast/node.rb +17 -0
- data/lib/puppet/parser/ast/pops_bridge.rb +287 -0
- data/lib/puppet/parser/ast/resource.rb +61 -0
- data/lib/puppet/parser/ast/resource_instance.rb +6 -0
- data/lib/puppet/parser/ast/resourceparam.rb +26 -0
- data/lib/puppet/parser/ast/top_level_construct.rb +4 -0
- data/lib/puppet/parser/compiler.rb +895 -0
- data/lib/puppet/parser/compiler/catalog_validator.rb +33 -0
- data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +64 -0
- data/lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb +38 -0
- data/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +20 -0
- data/lib/puppet/parser/e4_parser_adapter.rb +60 -0
- data/lib/puppet/parser/environment_compiler.rb +164 -0
- data/lib/puppet/parser/files.rb +92 -0
- data/lib/puppet/parser/functions.rb +272 -0
- data/lib/puppet/parser/functions/assert_type.rb +60 -0
- data/lib/puppet/parser/functions/contain.rb +38 -0
- data/lib/puppet/parser/functions/create_resources.rb +82 -0
- data/lib/puppet/parser/functions/defined.rb +131 -0
- data/lib/puppet/parser/functions/digest.rb +5 -0
- data/lib/puppet/parser/functions/each.rb +104 -0
- data/lib/puppet/parser/functions/epp.rb +36 -0
- data/lib/puppet/parser/functions/fail.rb +4 -0
- data/lib/puppet/parser/functions/file.rb +33 -0
- data/lib/puppet/parser/functions/filter.rb +78 -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 +89 -0
- data/lib/puppet/parser/functions/hiera_array.rb +78 -0
- data/lib/puppet/parser/functions/hiera_hash.rb +88 -0
- data/lib/puppet/parser/functions/hiera_include.rb +88 -0
- data/lib/puppet/parser/functions/include.rb +37 -0
- data/lib/puppet/parser/functions/inline_epp.rb +51 -0
- data/lib/puppet/parser/functions/inline_template.rb +21 -0
- data/lib/puppet/parser/functions/lookup.rb +133 -0
- data/lib/puppet/parser/functions/map.rb +76 -0
- data/lib/puppet/parser/functions/match.rb +43 -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 +106 -0
- data/lib/puppet/parser/functions/regsubst.rb +60 -0
- data/lib/puppet/parser/functions/require.rb +63 -0
- data/lib/puppet/parser/functions/scanf.rb +33 -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 +39 -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 +30 -0
- data/lib/puppet/parser/functions/versioncmp.rb +30 -0
- data/lib/puppet/parser/functions/with.rb +28 -0
- data/lib/puppet/parser/parser_factory.rb +60 -0
- data/lib/puppet/parser/relationship.rb +54 -0
- data/lib/puppet/parser/resource.rb +358 -0
- data/lib/puppet/parser/resource/param.rb +25 -0
- data/lib/puppet/parser/scope.rb +1079 -0
- data/lib/puppet/parser/templatewrapper.rb +101 -0
- data/lib/puppet/parser/type_loader.rb +149 -0
- data/lib/puppet/parser/yaml_trimmer.rb +7 -0
- data/lib/puppet/plugins.rb +9 -0
- data/lib/puppet/plugins/binding_schemes.rb +140 -0
- data/lib/puppet/plugins/configuration.rb +69 -0
- data/lib/puppet/plugins/data_providers.rb +42 -0
- data/lib/puppet/plugins/data_providers/data_provider.rb +325 -0
- data/lib/puppet/plugins/data_providers/registry.rb +84 -0
- data/lib/puppet/plugins/syntax_checkers.rb +103 -0
- data/lib/puppet/pops.rb +130 -0
- data/lib/puppet/pops/adaptable.rb +204 -0
- data/lib/puppet/pops/adapters.rb +189 -0
- data/lib/puppet/pops/binder/binder.rb +398 -0
- data/lib/puppet/pops/binder/binder_issues.rb +124 -0
- data/lib/puppet/pops/binder/bindings_checker.rb +201 -0
- data/lib/puppet/pops/binder/bindings_composer.rb +181 -0
- data/lib/puppet/pops/binder/bindings_factory.rb +813 -0
- data/lib/puppet/pops/binder/bindings_label_provider.rb +45 -0
- data/lib/puppet/pops/binder/bindings_loader.rb +87 -0
- data/lib/puppet/pops/binder/bindings_model.rb +70 -0
- data/lib/puppet/pops/binder/bindings_model_dumper.rb +215 -0
- data/lib/puppet/pops/binder/bindings_model_meta.rb +215 -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 +36 -0
- data/lib/puppet/pops/binder/config/issues.rb +90 -0
- data/lib/puppet/pops/binder/injector.rb +771 -0
- data/lib/puppet/pops/binder/injector_entry.rb +57 -0
- data/lib/puppet/pops/binder/key_factory.rb +65 -0
- data/lib/puppet/pops/binder/producers.rb +831 -0
- data/lib/puppet/pops/binder/scheme_handler/confdir_scheme.rb +34 -0
- data/lib/puppet/pops/binder/scheme_handler/module_scheme.rb +143 -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 +577 -0
- data/lib/puppet/pops/evaluator/callable_signature.rb +100 -0
- data/lib/puppet/pops/evaluator/closure.rb +265 -0
- data/lib/puppet/pops/evaluator/collector_transformer.rb +229 -0
- data/lib/puppet/pops/evaluator/collectors/abstract_collector.rb +86 -0
- data/lib/puppet/pops/evaluator/collectors/catalog_collector.rb +29 -0
- data/lib/puppet/pops/evaluator/collectors/exported_collector.rb +69 -0
- data/lib/puppet/pops/evaluator/collectors/fixed_set_collector.rb +37 -0
- data/lib/puppet/pops/evaluator/compare_operator.rb +199 -0
- data/lib/puppet/pops/evaluator/epp_evaluator.rb +94 -0
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +1165 -0
- data/lib/puppet/pops/evaluator/external_syntax_support.rb +52 -0
- data/lib/puppet/pops/evaluator/json_strict_literal_evaluator.rb +85 -0
- data/lib/puppet/pops/evaluator/literal_evaluator.rb +87 -0
- data/lib/puppet/pops/evaluator/puppet_proc.rb +69 -0
- data/lib/puppet/pops/evaluator/relationship_operator.rb +169 -0
- data/lib/puppet/pops/evaluator/runtime3_converter.rb +180 -0
- data/lib/puppet/pops/evaluator/runtime3_support.rb +527 -0
- data/lib/puppet/pops/functions/dispatch.rb +85 -0
- data/lib/puppet/pops/functions/dispatcher.rb +76 -0
- data/lib/puppet/pops/functions/function.rb +113 -0
- data/lib/puppet/pops/issue_reporter.rb +115 -0
- data/lib/puppet/pops/issues.rb +713 -0
- data/lib/puppet/pops/label_provider.rb +76 -0
- data/lib/puppet/pops/loader/base_loader.rb +102 -0
- data/lib/puppet/pops/loader/dependency_loader.rb +60 -0
- data/lib/puppet/pops/loader/gem_support.rb +49 -0
- data/lib/puppet/pops/loader/loader.rb +192 -0
- data/lib/puppet/pops/loader/loader_paths.rb +194 -0
- data/lib/puppet/pops/loader/module_loaders.rb +273 -0
- data/lib/puppet/pops/loader/null_loader.rb +44 -0
- data/lib/puppet/pops/loader/puppet_function_instantiator.rb +83 -0
- data/lib/puppet/pops/loader/ruby_function_instantiator.rb +47 -0
- data/lib/puppet/pops/loader/simple_environment_loader.rb +20 -0
- data/lib/puppet/pops/loader/static_loader.rb +79 -0
- data/lib/puppet/pops/loader/type_definition_instantiator.rb +55 -0
- data/lib/puppet/pops/loader/uri_helper.rb +22 -0
- data/lib/puppet/pops/loaders.rb +282 -0
- data/lib/puppet/pops/lookup.rb +79 -0
- data/lib/puppet/pops/lookup/explainer.rb +472 -0
- data/lib/puppet/pops/lookup/invocation.rb +119 -0
- data/lib/puppet/pops/merge_strategy.rb +348 -0
- data/lib/puppet/pops/migration/migration_checker.rb +54 -0
- data/lib/puppet/pops/model/ast_transformer.rb +125 -0
- data/lib/puppet/pops/model/factory.rb +1116 -0
- data/lib/puppet/pops/model/model.rb +123 -0
- data/lib/puppet/pops/model/model_label_provider.rb +124 -0
- data/lib/puppet/pops/model/model_meta.rb +621 -0
- data/lib/puppet/pops/model/model_tree_dumper.rb +433 -0
- data/lib/puppet/pops/model/tree_dumper.rb +59 -0
- data/lib/puppet/pops/parser/code_merger.rb +29 -0
- data/lib/puppet/pops/parser/egrammar.ra +845 -0
- data/lib/puppet/pops/parser/eparser.rb +3082 -0
- data/lib/puppet/pops/parser/epp_parser.rb +51 -0
- data/lib/puppet/pops/parser/epp_support.rb +262 -0
- data/lib/puppet/pops/parser/evaluating_parser.rb +161 -0
- data/lib/puppet/pops/parser/heredoc_support.rb +144 -0
- data/lib/puppet/pops/parser/interpolation_support.rb +237 -0
- data/lib/puppet/pops/parser/lexer2.rb +768 -0
- data/lib/puppet/pops/parser/lexer_support.rb +220 -0
- data/lib/puppet/pops/parser/locatable.rb +23 -0
- data/lib/puppet/pops/parser/locator.rb +288 -0
- data/lib/puppet/pops/parser/parser_support.rb +254 -0
- data/lib/puppet/pops/parser/slurp_support.rb +119 -0
- data/lib/puppet/pops/patterns.rb +47 -0
- data/lib/puppet/pops/semantic_error.rb +17 -0
- data/lib/puppet/pops/types/class_loader.rb +133 -0
- data/lib/puppet/pops/types/enumeration.rb +16 -0
- data/lib/puppet/pops/types/iterable.rb +308 -0
- data/lib/puppet/pops/types/recursion_guard.rb +82 -0
- data/lib/puppet/pops/types/type_acceptor.rb +25 -0
- data/lib/puppet/pops/types/type_asserter.rb +47 -0
- data/lib/puppet/pops/types/type_assertion_error.rb +27 -0
- data/lib/puppet/pops/types/type_calculator.rb +783 -0
- data/lib/puppet/pops/types/type_factory.rb +458 -0
- data/lib/puppet/pops/types/type_formatter.rb +334 -0
- data/lib/puppet/pops/types/type_mismatch_describer.rb +910 -0
- data/lib/puppet/pops/types/type_parser.rb +517 -0
- data/lib/puppet/pops/types/types.rb +2358 -0
- data/lib/puppet/pops/types/types_meta.rb +0 -0
- data/lib/puppet/pops/utils.rb +143 -0
- data/lib/puppet/pops/validation.rb +462 -0
- data/lib/puppet/pops/validation/checker4_0.rb +894 -0
- data/lib/puppet/pops/validation/validator_factory_4_0.rb +36 -0
- data/lib/puppet/pops/visitable.rb +6 -0
- data/lib/puppet/pops/visitor.rb +92 -0
- data/lib/puppet/property.rb +537 -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 +604 -0
- data/lib/puppet/provider/aixobject.rb +392 -0
- data/lib/puppet/provider/augeas/augeas.rb +567 -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 +297 -0
- data/lib/puppet/provider/exec.rb +96 -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 +104 -0
- data/lib/puppet/provider/group/aix.rb +141 -0
- data/lib/puppet/provider/group/directoryservice.rb +22 -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 +49 -0
- data/lib/puppet/provider/group/windows_adsi.rb +106 -0
- data/lib/puppet/provider/host/parsed.rb +46 -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 +298 -0
- data/lib/puppet/provider/mailalias/aliases.rb +50 -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 +280 -0
- data/lib/puppet/provider/naginator.rb +63 -0
- data/lib/puppet/provider/nameservice.rb +292 -0
- data/lib/puppet/provider/nameservice/directoryservice.rb +499 -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 +71 -0
- data/lib/puppet/provider/package.rb +56 -0
- data/lib/puppet/provider/package/aix.rb +152 -0
- data/lib/puppet/provider/package/appdmg.rb +110 -0
- data/lib/puppet/provider/package/apple.rb +47 -0
- data/lib/puppet/provider/package/apt.rb +116 -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/dnf.rb +41 -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 +169 -0
- data/lib/puppet/provider/package/hpux.rb +44 -0
- data/lib/puppet/provider/package/macports.rb +107 -0
- data/lib/puppet/provider/package/nim.rb +280 -0
- data/lib/puppet/provider/package/openbsd.rb +242 -0
- data/lib/puppet/provider/package/opkg.rb +81 -0
- data/lib/puppet/provider/package/pacman.rb +267 -0
- data/lib/puppet/provider/package/pip.rb +134 -0
- data/lib/puppet/provider/package/pip3.rb +18 -0
- data/lib/puppet/provider/package/pkg.rb +245 -0
- data/lib/puppet/provider/package/pkgdmg.rb +152 -0
- data/lib/puppet/provider/package/pkgin.rb +87 -0
- data/lib/puppet/provider/package/pkgng.rb +143 -0
- data/lib/puppet/provider/package/pkgutil.rb +186 -0
- data/lib/puppet/provider/package/portage.rb +153 -0
- data/lib/puppet/provider/package/ports.rb +91 -0
- data/lib/puppet/provider/package/portupgrade.rb +239 -0
- data/lib/puppet/provider/package/puppet_gem.rb +17 -0
- data/lib/puppet/provider/package/rpm.rb +290 -0
- data/lib/puppet/provider/package/rug.rb +51 -0
- data/lib/puppet/provider/package/sun.rb +132 -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 +113 -0
- data/lib/puppet/provider/package/windows/exe_package.rb +71 -0
- data/lib/puppet/provider/package/windows/msi_package.rb +62 -0
- data/lib/puppet/provider/package/windows/package.rb +100 -0
- data/lib/puppet/provider/package/yum.rb +302 -0
- data/lib/puppet/provider/package/zypper.rb +145 -0
- data/lib/puppet/provider/parsedfile.rb +459 -0
- data/lib/puppet/provider/scheduled_task/win32_taskscheduler.rb +583 -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 +121 -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 +74 -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 +189 -0
- data/lib/puppet/provider/service/launchd.rb +331 -0
- data/lib/puppet/provider/service/openbsd.rb +100 -0
- data/lib/puppet/provider/service/openrc.rb +71 -0
- data/lib/puppet/provider/service/openwrt.rb +36 -0
- data/lib/puppet/provider/service/rcng.rb +51 -0
- data/lib/puppet/provider/service/redhat.rb +71 -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 +157 -0
- data/lib/puppet/provider/service/src.rb +147 -0
- data/lib/puppet/provider/service/systemd.rb +163 -0
- data/lib/puppet/provider/service/upstart.rb +361 -0
- data/lib/puppet/provider/service/windows.rb +106 -0
- data/lib/puppet/provider/ssh_authorized_key/parsed.rb +105 -0
- data/lib/puppet/provider/sshkey/parsed.rb +50 -0
- data/lib/puppet/provider/user/aix.rb +369 -0
- data/lib/puppet/provider/user/directoryservice.rb +630 -0
- data/lib/puppet/provider/user/hpux.rb +95 -0
- data/lib/puppet/provider/user/ldap.rb +128 -0
- data/lib/puppet/provider/user/openbsd.rb +75 -0
- data/lib/puppet/provider/user/pw.rb +98 -0
- data/lib/puppet/provider/user/user_role_add.rb +210 -0
- data/lib/puppet/provider/user/useradd.rb +231 -0
- data/lib/puppet/provider/user/windows_adsi.rb +142 -0
- data/lib/puppet/provider/vlan/cisco.rb +28 -0
- data/lib/puppet/provider/yumrepo/inifile.rb +304 -0
- data/lib/puppet/provider/zfs/zfs.rb +84 -0
- data/lib/puppet/provider/zone/solaris.rb +361 -0
- data/lib/puppet/provider/zpool/zpool.rb +125 -0
- data/lib/puppet/reference/configuration.rb +80 -0
- data/lib/puppet/reference/function.rb +17 -0
- data/lib/puppet/reference/indirection.rb +71 -0
- data/lib/puppet/reference/metaparameter.rb +35 -0
- data/lib/puppet/reference/providers.rb +119 -0
- data/lib/puppet/reference/report.rb +20 -0
- data/lib/puppet/reference/type.rb +114 -0
- data/lib/puppet/relationship.rb +90 -0
- data/lib/puppet/reports.rb +93 -0
- data/lib/puppet/reports/http.rb +31 -0
- data/lib/puppet/reports/log.rb +14 -0
- data/lib/puppet/reports/store.rb +68 -0
- data/lib/puppet/resource.rb +606 -0
- data/lib/puppet/resource/capability_finder.rb +102 -0
- data/lib/puppet/resource/catalog.rb +648 -0
- data/lib/puppet/resource/status.rb +223 -0
- data/lib/puppet/resource/type.rb +562 -0
- data/lib/puppet/resource/type_collection.rb +241 -0
- data/lib/puppet/resource/type_collection_helper.rb +7 -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 +1429 -0
- data/lib/puppet/settings/array_setting.rb +17 -0
- data/lib/puppet/settings/autosign_setting.rb +22 -0
- data/lib/puppet/settings/base_setting.rb +171 -0
- data/lib/puppet/settings/boolean_setting.rb +32 -0
- data/lib/puppet/settings/config_file.rb +142 -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/environment_conf.rb +192 -0
- data/lib/puppet/settings/errors.rb +11 -0
- data/lib/puppet/settings/file_or_directory_setting.rb +34 -0
- data/lib/puppet/settings/file_setting.rb +235 -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/ttl_setting.rb +46 -0
- data/lib/puppet/settings/value_translator.rb +15 -0
- data/lib/puppet/ssl.rb +13 -0
- data/lib/puppet/ssl/base.rb +140 -0
- data/lib/puppet/ssl/certificate.rb +95 -0
- data/lib/puppet/ssl/certificate_authority.rb +517 -0
- data/lib/puppet/ssl/certificate_authority/autosign_command.rb +45 -0
- data/lib/puppet/ssl/certificate_authority/interface.rb +184 -0
- data/lib/puppet/ssl/certificate_factory.rb +219 -0
- data/lib/puppet/ssl/certificate_request.rb +327 -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 +58 -0
- data/lib/puppet/ssl/digest.rb +20 -0
- data/lib/puppet/ssl/host.rb +365 -0
- data/lib/puppet/ssl/inventory.rb +48 -0
- data/lib/puppet/ssl/key.rb +59 -0
- data/lib/puppet/ssl/oids.rb +155 -0
- data/lib/puppet/ssl/validator.rb +60 -0
- data/lib/puppet/ssl/validator/default_validator.rb +174 -0
- data/lib/puppet/ssl/validator/no_validator.rb +20 -0
- data/lib/puppet/status.rb +40 -0
- data/lib/puppet/syntax_checkers.rb +3 -0
- data/lib/puppet/syntax_checkers/json.rb +37 -0
- data/lib/puppet/test/test_helper.rb +254 -0
- data/lib/puppet/transaction.rb +405 -0
- data/lib/puppet/transaction/additional_resource_generator.rb +207 -0
- data/lib/puppet/transaction/event.rb +106 -0
- data/lib/puppet/transaction/event_manager.rb +167 -0
- data/lib/puppet/transaction/report.rb +408 -0
- data/lib/puppet/transaction/resource_harness.rb +236 -0
- data/lib/puppet/type.rb +2607 -0
- data/lib/puppet/type/augeas.rb +211 -0
- data/lib/puppet/type/component.rb +77 -0
- data/lib/puppet/type/computer.rb +66 -0
- data/lib/puppet/type/cron.rb +492 -0
- data/lib/puppet/type/exec.rb +601 -0
- data/lib/puppet/type/file.rb +985 -0
- data/lib/puppet/type/file/checksum.rb +43 -0
- data/lib/puppet/type/file/checksum_value.rb +53 -0
- data/lib/puppet/type/file/content.rb +160 -0
- data/lib/puppet/type/file/ctime.rb +20 -0
- data/lib/puppet/type/file/data_sync.rb +84 -0
- data/lib/puppet/type/file/ensure.rb +192 -0
- data/lib/puppet/type/file/group.rb +41 -0
- data/lib/puppet/type/file/mode.rb +173 -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 +346 -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 +200 -0
- data/lib/puppet/type/host.rb +95 -0
- data/lib/puppet/type/interface.rb +121 -0
- data/lib/puppet/type/k5login.rb +88 -0
- data/lib/puppet/type/macauthorization.rb +167 -0
- data/lib/puppet/type/mailalias.rb +62 -0
- data/lib/puppet/type/maillist.rb +62 -0
- data/lib/puppet/type/mcx.rb +98 -0
- data/lib/puppet/type/mount.rb +297 -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 +571 -0
- data/lib/puppet/type/resources.rb +180 -0
- data/lib/puppet/type/router.rb +17 -0
- data/lib/puppet/type/schedule.rb +469 -0
- data/lib/puppet/type/scheduled_task.rb +184 -0
- data/lib/puppet/type/selboolean.rb +26 -0
- data/lib/puppet/type/selmodule.rb +59 -0
- data/lib/puppet/type/service.rb +243 -0
- data/lib/puppet/type/ssh_authorized_key.rb +153 -0
- data/lib/puppet/type/sshkey.rb +73 -0
- data/lib/puppet/type/stage.rb +27 -0
- data/lib/puppet/type/tidy.rb +329 -0
- data/lib/puppet/type/user.rb +747 -0
- data/lib/puppet/type/vlan.rb +26 -0
- data/lib/puppet/type/whit.rb +34 -0
- data/lib/puppet/type/yumrepo.rb +409 -0
- data/lib/puppet/type/zfs.rb +150 -0
- data/lib/puppet/type/zone.rb +382 -0
- data/lib/puppet/type/zpool.rb +91 -0
- data/lib/puppet/util.rb +579 -0
- data/lib/puppet/util/autoload.rb +226 -0
- data/lib/puppet/util/backups.rb +86 -0
- data/lib/puppet/util/checksums.rb +282 -0
- data/lib/puppet/util/classgen.rb +228 -0
- data/lib/puppet/util/colors.rb +100 -0
- data/lib/puppet/util/command_line.rb +181 -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 +79 -0
- data/lib/puppet/util/docs.rb +128 -0
- data/lib/puppet/util/errors.rb +108 -0
- data/lib/puppet/util/execution.rb +356 -0
- data/lib/puppet/util/execution_stub.rb +26 -0
- data/lib/puppet/util/feature.rb +95 -0
- data/lib/puppet/util/file_watcher.rb +28 -0
- data/lib/puppet/util/fileparsing.rb +377 -0
- data/lib/puppet/util/filetype.rb +303 -0
- data/lib/puppet/util/http_proxy.rb +197 -0
- data/lib/puppet/util/inifile.rb +341 -0
- data/lib/puppet/util/instance_loader.rb +81 -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 +386 -0
- data/lib/puppet/util/log/destination.rb +49 -0
- data/lib/puppet/util/log/destinations.rb +255 -0
- data/lib/puppet/util/logging.rb +310 -0
- data/lib/puppet/util/metaid.rb +21 -0
- data/lib/puppet/util/methodhelper.rb +32 -0
- data/lib/puppet/util/metric.rb +61 -0
- data/lib/puppet/util/monkey_patches.rb +132 -0
- data/lib/puppet/util/multi_match.rb +51 -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 +23 -0
- data/lib/puppet/util/network_device/cisco.rb +4 -0
- data/lib/puppet/util/network_device/cisco/device.rb +275 -0
- data/lib/puppet/util/network_device/cisco/facts.rb +72 -0
- data/lib/puppet/util/network_device/cisco/interface.rb +95 -0
- data/lib/puppet/util/network_device/config.rb +98 -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 +126 -0
- data/lib/puppet/util/network_device/transport/telnet.rb +47 -0
- data/lib/puppet/util/package.rb +31 -0
- data/lib/puppet/util/pidlock.rb +62 -0
- data/lib/puppet/util/platform.rb +22 -0
- data/lib/puppet/util/plist.rb +130 -0
- data/lib/puppet/util/posix.rb +137 -0
- data/lib/puppet/util/profiler.rb +53 -0
- data/lib/puppet/util/profiler/aggregate.rb +85 -0
- data/lib/puppet/util/profiler/around_profiler.rb +67 -0
- data/lib/puppet/util/profiler/logging.rb +48 -0
- data/lib/puppet/util/profiler/object_counts.rb +17 -0
- data/lib/puppet/util/profiler/wall_clock.rb +35 -0
- data/lib/puppet/util/provider_features.rb +184 -0
- data/lib/puppet/util/psych_support.rb +38 -0
- data/lib/puppet/util/rdoc.rb +60 -0
- data/lib/puppet/util/rdoc/code_objects.rb +294 -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 +12 -0
- data/lib/puppet/util/rdoc/parser/puppet_parser_core.rb +258 -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/retry_action.rb +46 -0
- data/lib/puppet/util/rubygems.rb +75 -0
- data/lib/puppet/util/run_mode.rb +110 -0
- data/lib/puppet/util/selinux.rb +222 -0
- data/lib/puppet/util/skip_tags.rb +9 -0
- data/lib/puppet/util/splayer.rb +18 -0
- data/lib/puppet/util/ssl.rb +53 -0
- data/lib/puppet/util/storage.rb +89 -0
- data/lib/puppet/util/suidmanager.rb +164 -0
- data/lib/puppet/util/symbolic_file_mode.rb +144 -0
- data/lib/puppet/util/tag_set.rb +30 -0
- data/lib/puppet/util/tagging.rb +118 -0
- data/lib/puppet/util/terminal.rb +16 -0
- data/lib/puppet/util/user_attr.rb +21 -0
- data/lib/puppet/util/warnings.rb +33 -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 +32 -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/adsi.rb +523 -0
- data/lib/puppet/util/windows/api_types.rb +275 -0
- data/lib/puppet/util/windows/com.rb +224 -0
- data/lib/puppet/util/windows/error.rb +83 -0
- data/lib/puppet/util/windows/file.rb +395 -0
- data/lib/puppet/util/windows/principal.rb +190 -0
- data/lib/puppet/util/windows/process.rb +479 -0
- data/lib/puppet/util/windows/registry.rb +374 -0
- data/lib/puppet/util/windows/root_certs.rb +108 -0
- data/lib/puppet/util/windows/security.rb +857 -0
- data/lib/puppet/util/windows/security_descriptor.rb +62 -0
- data/lib/puppet/util/windows/sid.rb +231 -0
- data/lib/puppet/util/windows/string.rb +16 -0
- data/lib/puppet/util/windows/taskscheduler.rb +1220 -0
- data/lib/puppet/util/windows/user.rb +291 -0
- data/lib/puppet/util/yaml.rb +24 -0
- data/lib/puppet/vendor.rb +57 -0
- data/lib/puppet/vendor/deep_merge/CHANGELOG +45 -0
- data/lib/puppet/vendor/deep_merge/Gemfile +3 -0
- data/lib/puppet/vendor/deep_merge/LICENSE +21 -0
- data/lib/puppet/vendor/deep_merge/PUPPET_README.md +6 -0
- data/lib/puppet/vendor/deep_merge/README.md +113 -0
- data/lib/puppet/vendor/deep_merge/Rakefile +19 -0
- data/lib/puppet/vendor/deep_merge/deep_merge.gemspec +35 -0
- data/lib/puppet/vendor/deep_merge/lib/deep_merge.rb +2 -0
- data/lib/puppet/vendor/deep_merge/lib/deep_merge/core.rb +210 -0
- data/lib/puppet/vendor/deep_merge/lib/deep_merge/deep_merge_hash.rb +28 -0
- data/lib/puppet/vendor/deep_merge/lib/deep_merge/rails_compat.rb +27 -0
- data/lib/puppet/vendor/deep_merge/test/test_deep_merge.rb +608 -0
- data/lib/puppet/vendor/load_deep_merge.rb +1 -0
- data/lib/puppet/vendor/load_pathspec.rb +1 -0
- data/lib/puppet/vendor/load_rgen.rb +2 -0
- data/lib/puppet/vendor/load_semantic.rb +1 -0
- data/lib/puppet/vendor/pathspec/CHANGELOG.md +2 -0
- data/lib/puppet/vendor/pathspec/LICENSE +201 -0
- data/lib/puppet/vendor/pathspec/PUPPET_README.md +6 -0
- data/lib/puppet/vendor/pathspec/README.md +53 -0
- data/lib/puppet/vendor/pathspec/lib/pathspec.rb +121 -0
- data/lib/puppet/vendor/pathspec/lib/pathspec/gitignorespec.rb +275 -0
- data/lib/puppet/vendor/pathspec/lib/pathspec/regexspec.rb +17 -0
- data/lib/puppet/vendor/pathspec/lib/pathspec/spec.rb +14 -0
- data/lib/puppet/vendor/require_vendored.rb +7 -0
- data/lib/puppet/vendor/rgen/CHANGELOG +197 -0
- data/lib/puppet/vendor/rgen/MIT-LICENSE +20 -0
- data/lib/puppet/vendor/rgen/PUPPET_README.md +6 -0
- data/lib/puppet/vendor/rgen/README.rdoc +78 -0
- data/lib/puppet/vendor/rgen/Rakefile +41 -0
- data/lib/puppet/vendor/rgen/TODO +41 -0
- data/lib/puppet/vendor/rgen/anounce.txt +61 -0
- data/lib/puppet/vendor/rgen/design_rationale.txt +71 -0
- data/lib/puppet/vendor/rgen/lib/ea_support/ea_support.rb +54 -0
- data/lib/puppet/vendor/rgen/lib/ea_support/id_store.rb +32 -0
- data/lib/puppet/vendor/rgen/lib/ea_support/uml13_ea_metamodel.rb +562 -0
- data/lib/puppet/vendor/rgen/lib/ea_support/uml13_ea_metamodel_ext.rb +45 -0
- data/lib/puppet/vendor/rgen/lib/ea_support/uml13_ea_metamodel_generator.rb +43 -0
- data/lib/puppet/vendor/rgen/lib/ea_support/uml13_ea_to_uml13.rb +103 -0
- data/lib/puppet/vendor/rgen/lib/ea_support/uml13_to_uml13_ea.rb +89 -0
- data/lib/puppet/vendor/rgen/lib/metamodels/uml13_metamodel.rb +559 -0
- data/lib/puppet/vendor/rgen/lib/metamodels/uml13_metamodel_ext.rb +26 -0
- data/lib/puppet/vendor/rgen/lib/mmgen/metamodel_generator.rb +20 -0
- data/lib/puppet/vendor/rgen/lib/mmgen/mm_ext/ecore_mmgen_ext.rb +91 -0
- data/lib/puppet/vendor/rgen/lib/mmgen/mmgen.rb +28 -0
- data/lib/puppet/vendor/rgen/lib/mmgen/templates/annotations.tpl +37 -0
- data/lib/puppet/vendor/rgen/lib/mmgen/templates/metamodel_generator.tpl +172 -0
- data/lib/puppet/vendor/rgen/lib/rgen/array_extensions.rb +45 -0
- data/lib/puppet/vendor/rgen/lib/rgen/ecore/ecore.rb +218 -0
- data/lib/puppet/vendor/rgen/lib/rgen/ecore/ecore_builder_methods.rb +81 -0
- data/lib/puppet/vendor/rgen/lib/rgen/ecore/ecore_ext.rb +69 -0
- data/lib/puppet/vendor/rgen/lib/rgen/ecore/ecore_interface.rb +47 -0
- data/lib/puppet/vendor/rgen/lib/rgen/ecore/ecore_to_ruby.rb +167 -0
- data/lib/puppet/vendor/rgen/lib/rgen/ecore/ruby_to_ecore.rb +91 -0
- data/lib/puppet/vendor/rgen/lib/rgen/environment.rb +129 -0
- data/lib/puppet/vendor/rgen/lib/rgen/fragment/dump_file_cache.rb +63 -0
- data/lib/puppet/vendor/rgen/lib/rgen/fragment/fragmented_model.rb +140 -0
- data/lib/puppet/vendor/rgen/lib/rgen/fragment/model_fragment.rb +289 -0
- data/lib/puppet/vendor/rgen/lib/rgen/instantiator/abstract_instantiator.rb +66 -0
- data/lib/puppet/vendor/rgen/lib/rgen/instantiator/abstract_xml_instantiator.rb +66 -0
- data/lib/puppet/vendor/rgen/lib/rgen/instantiator/default_xml_instantiator.rb +117 -0
- data/lib/puppet/vendor/rgen/lib/rgen/instantiator/ecore_xml_instantiator.rb +169 -0
- data/lib/puppet/vendor/rgen/lib/rgen/instantiator/json_instantiator.rb +126 -0
- data/lib/puppet/vendor/rgen/lib/rgen/instantiator/json_parser.rb +331 -0
- data/lib/puppet/vendor/rgen/lib/rgen/instantiator/json_parser.y +94 -0
- data/lib/puppet/vendor/rgen/lib/rgen/instantiator/nodebased_xml_instantiator.rb +137 -0
- data/lib/puppet/vendor/rgen/lib/rgen/instantiator/qualified_name_resolver.rb +97 -0
- data/lib/puppet/vendor/rgen/lib/rgen/instantiator/reference_resolver.rb +128 -0
- data/lib/puppet/vendor/rgen/lib/rgen/instantiator/resolution_helper.rb +47 -0
- data/lib/puppet/vendor/rgen/lib/rgen/instantiator/xmi11_instantiator.rb +168 -0
- data/lib/puppet/vendor/rgen/lib/rgen/metamodel_builder.rb +224 -0
- data/lib/puppet/vendor/rgen/lib/rgen/metamodel_builder/builder_extensions.rb +556 -0
- data/lib/puppet/vendor/rgen/lib/rgen/metamodel_builder/builder_runtime.rb +174 -0
- data/lib/puppet/vendor/rgen/lib/rgen/metamodel_builder/constant_order_helper.rb +89 -0
- data/lib/puppet/vendor/rgen/lib/rgen/metamodel_builder/data_types.rb +77 -0
- data/lib/puppet/vendor/rgen/lib/rgen/metamodel_builder/intermediate/annotation.rb +30 -0
- data/lib/puppet/vendor/rgen/lib/rgen/metamodel_builder/intermediate/feature.rb +168 -0
- data/lib/puppet/vendor/rgen/lib/rgen/metamodel_builder/mm_multiple.rb +23 -0
- data/lib/puppet/vendor/rgen/lib/rgen/metamodel_builder/module_extension.rb +42 -0
- data/lib/puppet/vendor/rgen/lib/rgen/model_builder.rb +32 -0
- data/lib/puppet/vendor/rgen/lib/rgen/model_builder/builder_context.rb +334 -0
- data/lib/puppet/vendor/rgen/lib/rgen/model_builder/model_serializer.rb +225 -0
- data/lib/puppet/vendor/rgen/lib/rgen/model_builder/reference_resolver.rb +156 -0
- data/lib/puppet/vendor/rgen/lib/rgen/serializer/json_serializer.rb +121 -0
- data/lib/puppet/vendor/rgen/lib/rgen/serializer/opposite_reference_filter.rb +18 -0
- data/lib/puppet/vendor/rgen/lib/rgen/serializer/qualified_name_provider.rb +47 -0
- data/lib/puppet/vendor/rgen/lib/rgen/serializer/xmi11_serializer.rb +116 -0
- data/lib/puppet/vendor/rgen/lib/rgen/serializer/xmi20_serializer.rb +71 -0
- data/lib/puppet/vendor/rgen/lib/rgen/serializer/xml_serializer.rb +98 -0
- data/lib/puppet/vendor/rgen/lib/rgen/template_language.rb +297 -0
- data/lib/puppet/vendor/rgen/lib/rgen/template_language/directory_template_container.rb +83 -0
- data/lib/puppet/vendor/rgen/lib/rgen/template_language/output_handler.rb +87 -0
- data/lib/puppet/vendor/rgen/lib/rgen/template_language/template_container.rb +234 -0
- data/lib/puppet/vendor/rgen/lib/rgen/template_language/template_helper.rb +26 -0
- data/lib/puppet/vendor/rgen/lib/rgen/transformer.rb +475 -0
- data/lib/puppet/vendor/rgen/lib/rgen/util/auto_class_creator.rb +61 -0
- data/lib/puppet/vendor/rgen/lib/rgen/util/cached_glob.rb +67 -0
- data/lib/puppet/vendor/rgen/lib/rgen/util/file_cache_map.rb +124 -0
- data/lib/puppet/vendor/rgen/lib/rgen/util/file_change_detector.rb +84 -0
- data/lib/puppet/vendor/rgen/lib/rgen/util/method_delegation.rb +114 -0
- data/lib/puppet/vendor/rgen/lib/rgen/util/model_comparator.rb +68 -0
- data/lib/puppet/vendor/rgen/lib/rgen/util/model_comparator_base.rb +142 -0
- data/lib/puppet/vendor/rgen/lib/rgen/util/model_dumper.rb +29 -0
- data/lib/puppet/vendor/rgen/lib/rgen/util/name_helper.rb +42 -0
- data/lib/puppet/vendor/rgen/lib/rgen/util/pattern_matcher.rb +329 -0
- data/lib/puppet/vendor/rgen/lib/transformers/ecore_to_uml13.rb +79 -0
- data/lib/puppet/vendor/rgen/lib/transformers/uml13_to_ecore.rb +127 -0
- data/lib/puppet/vendor/rgen/test/array_extensions_test.rb +64 -0
- data/lib/puppet/vendor/rgen/test/ea_instantiator_test.rb +35 -0
- data/lib/puppet/vendor/rgen/test/ea_serializer_test.rb +23 -0
- data/lib/puppet/vendor/rgen/test/ecore_self_test.rb +54 -0
- data/lib/puppet/vendor/rgen/test/environment_test.rb +90 -0
- data/lib/puppet/vendor/rgen/test/json_test.rb +171 -0
- data/lib/puppet/vendor/rgen/test/metamodel_builder_test.rb +1482 -0
- data/lib/puppet/vendor/rgen/test/metamodel_from_ecore_test.rb +57 -0
- data/lib/puppet/vendor/rgen/test/metamodel_order_test.rb +131 -0
- data/lib/puppet/vendor/rgen/test/metamodel_roundtrip_test.rb +98 -0
- data/lib/puppet/vendor/rgen/test/metamodel_roundtrip_test/TestModel.rb +70 -0
- data/lib/puppet/vendor/rgen/test/metamodel_roundtrip_test/houseMetamodel.ecore +42 -0
- data/lib/puppet/vendor/rgen/test/metamodel_roundtrip_test/houseMetamodel_from_ecore.rb +44 -0
- data/lib/puppet/vendor/rgen/test/metamodel_roundtrip_test/using_builtin_types.ecore +9 -0
- data/lib/puppet/vendor/rgen/test/method_delegation_test.rb +178 -0
- data/lib/puppet/vendor/rgen/test/model_builder/builder_context_test.rb +59 -0
- data/lib/puppet/vendor/rgen/test/model_builder/builder_test.rb +242 -0
- data/lib/puppet/vendor/rgen/test/model_builder/ecore_original.rb +163 -0
- data/lib/puppet/vendor/rgen/test/model_builder/ecore_original_regenerated.rb +163 -0
- data/lib/puppet/vendor/rgen/test/model_builder/reference_resolver_test.rb +156 -0
- data/lib/puppet/vendor/rgen/test/model_builder/serializer_test.rb +94 -0
- data/lib/puppet/vendor/rgen/test/model_builder/statemachine_metamodel.rb +42 -0
- data/lib/puppet/vendor/rgen/test/model_builder/test_model/statemachine1.rb +23 -0
- data/lib/puppet/vendor/rgen/test/model_builder_test.rb +6 -0
- data/lib/puppet/vendor/rgen/test/model_fragment_test.rb +30 -0
- data/lib/puppet/vendor/rgen/test/output_handler_test.rb +58 -0
- data/lib/puppet/vendor/rgen/test/qualified_name_provider_test.rb +48 -0
- data/lib/puppet/vendor/rgen/test/qualified_name_resolver_test.rb +102 -0
- data/lib/puppet/vendor/rgen/test/reference_resolver_test.rb +117 -0
- data/lib/puppet/vendor/rgen/test/rgen_test.rb +26 -0
- data/lib/puppet/vendor/rgen/test/template_language_test.rb +163 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/expected_result1.txt +29 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/expected_result2.txt +9 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/expected_result3.txt +4 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/indentStringTestDefaultIndent.out +1 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/indentStringTestTabIndent.out +1 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/callback_indent_test/a.tpl +12 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/callback_indent_test/b.tpl +5 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/code/array.tpl +11 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/content/author.tpl +7 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/content/chapter.tpl +5 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/define_local_test/local.tpl +8 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/define_local_test/test.tpl +8 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/evaluate_test/test.tpl +7 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/indent_string_test.tpl +12 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/index/c/cmod.tpl +1 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/index/chapter.tpl +3 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/no_backslash_r_test.tpl +5 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/no_indent_test/no_indent.tpl +3 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/no_indent_test/sub1/no_indent.tpl +3 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/no_indent_test/test.tpl +24 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/no_indent_test/test2.tpl +13 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/no_indent_test/test3.tpl +10 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/null_context_test.tpl +17 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/root.tpl +31 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/template_resolution_test/sub1.tpl +9 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/template_resolution_test/sub1/sub1.tpl +3 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/templates/template_resolution_test/test.tpl +4 -0
- data/lib/puppet/vendor/rgen/test/template_language_test/testout.txt +29 -0
- data/lib/puppet/vendor/rgen/test/testmodel/class_model_checker.rb +119 -0
- data/lib/puppet/vendor/rgen/test/testmodel/ea_testmodel.eap +0 -0
- data/lib/puppet/vendor/rgen/test/testmodel/ea_testmodel.xml +1029 -0
- data/lib/puppet/vendor/rgen/test/testmodel/ea_testmodel_partial.xml +317 -0
- data/lib/puppet/vendor/rgen/test/testmodel/ecore_model_checker.rb +101 -0
- data/lib/puppet/vendor/rgen/test/testmodel/manual_testmodel.xml +22 -0
- data/lib/puppet/vendor/rgen/test/testmodel/object_model_checker.rb +67 -0
- data/lib/puppet/vendor/rgen/test/transformer_test.rb +254 -0
- data/lib/puppet/vendor/rgen/test/util/file_cache_map_test.rb +99 -0
- data/lib/puppet/vendor/rgen/test/util/pattern_matcher_test.rb +97 -0
- data/lib/puppet/vendor/rgen/test/util_test.rb +5 -0
- data/lib/puppet/vendor/rgen/test/xml_instantiator_test.rb +160 -0
- data/lib/puppet/vendor/rgen/test/xml_instantiator_test/simple_ecore_model_checker.rb +94 -0
- data/lib/puppet/vendor/rgen/test/xml_instantiator_test/simple_xmi_ecore_instantiator.rb +53 -0
- data/lib/puppet/vendor/rgen/test/xml_instantiator_test/simple_xmi_metamodel.rb +49 -0
- data/lib/puppet/vendor/rgen/test/xml_instantiator_test/simple_xmi_to_ecore.rb +75 -0
- data/lib/puppet/vendor/rgen_patch.rb +132 -0
- data/lib/puppet/vendor/semantic/Gemfile +20 -0
- data/lib/puppet/vendor/semantic/PUPPET_README.md +6 -0
- data/lib/puppet/vendor/semantic/Rakefile +69 -0
- data/lib/puppet/vendor/semantic/lib/semantic.rb +7 -0
- data/lib/puppet/vendor/semantic/lib/semantic/dependency.rb +181 -0
- data/lib/puppet/vendor/semantic/lib/semantic/dependency/graph.rb +60 -0
- data/lib/puppet/vendor/semantic/lib/semantic/dependency/graph_node.rb +117 -0
- data/lib/puppet/vendor/semantic/lib/semantic/dependency/module_release.rb +60 -0
- data/lib/puppet/vendor/semantic/lib/semantic/dependency/source.rb +25 -0
- data/lib/puppet/vendor/semantic/lib/semantic/dependency/unsatisfiable_graph.rb +31 -0
- data/lib/puppet/vendor/semantic/lib/semantic/version.rb +168 -0
- data/lib/puppet/vendor/semantic/lib/semantic/version_range.rb +424 -0
- data/lib/puppet/vendor/semantic/spec/spec_helper.rb +24 -0
- data/lib/puppet/vendor/semantic/spec/unit/semantic/dependency/graph_node_spec.rb +141 -0
- data/lib/puppet/vendor/semantic/spec/unit/semantic/dependency/graph_spec.rb +162 -0
- data/lib/puppet/vendor/semantic/spec/unit/semantic/dependency/module_release_spec.rb +143 -0
- data/lib/puppet/vendor/semantic/spec/unit/semantic/dependency/source_spec.rb +5 -0
- data/lib/puppet/vendor/semantic/spec/unit/semantic/dependency/unsatisfiable_graph_spec.rb +44 -0
- data/lib/puppet/vendor/semantic/spec/unit/semantic/dependency_spec.rb +383 -0
- data/lib/puppet/vendor/semantic/spec/unit/semantic/version_range_spec.rb +307 -0
- data/lib/puppet/vendor/semantic/spec/unit/semantic/version_spec.rb +608 -0
- data/lib/puppet/version.rb +89 -0
- data/lib/puppet_x.rb +8 -0
- data/lib/semver.rb +139 -0
- data/man/man5/puppet.conf.5 +1760 -0
- data/man/man8/extlookup2hiera.8 +10 -0
- data/man/man8/puppet-agent.8 +160 -0
- data/man/man8/puppet-apply.8 +82 -0
- data/man/man8/puppet-ca.8 +182 -0
- data/man/man8/puppet-catalog.8 +263 -0
- data/man/man8/puppet-cert.8 +101 -0
- data/man/man8/puppet-certificate.8 +224 -0
- data/man/man8/puppet-certificate_request.8 +161 -0
- data/man/man8/puppet-certificate_revocation_list.8 +139 -0
- data/man/man8/puppet-config.8 +117 -0
- data/man/man8/puppet-describe.8 +51 -0
- data/man/man8/puppet-device.8 +78 -0
- data/man/man8/puppet-doc.8 +46 -0
- data/man/man8/puppet-epp.8 +349 -0
- data/man/man8/puppet-facts.8 +133 -0
- data/man/man8/puppet-file.8 +189 -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-key.8 +132 -0
- data/man/man8/puppet-man.8 +70 -0
- data/man/man8/puppet-master.8 +85 -0
- data/man/man8/puppet-module.8 +448 -0
- data/man/man8/puppet-node.8 +163 -0
- data/man/man8/puppet-parser.8 +107 -0
- data/man/man8/puppet-plugin.8 +73 -0
- data/man/man8/puppet-report.8 +124 -0
- data/man/man8/puppet-resource.8 +88 -0
- data/man/man8/puppet-resource_type.8 +188 -0
- data/man/man8/puppet-status.8 +108 -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/node/environment/sitedir2/00_a.pp +2 -0
- data/spec/fixtures/integration/node/environment/sitedir2/02_folder/01_b.pp +6 -0
- data/spec/fixtures/integration/node/environment/sitedir2/03_c.pp +1 -0
- data/spec/fixtures/integration/node/environment/sitedir2/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 +31 -0
- data/spec/fixtures/integration/provider/sshkey/sample +21 -0
- data/spec/fixtures/java.tgz +0 -0
- data/spec/fixtures/manifests/site.pp +0 -0
- data/spec/fixtures/module.tar.gz +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/stdlib.tgz +0 -0
- data/spec/fixtures/unit/application/environments/production/data/common.yaml +7 -0
- data/spec/fixtures/unit/application/environments/production/environment.conf +1 -0
- data/spec/fixtures/unit/application/environments/production/manifests/site.pp +1 -0
- data/spec/fixtures/unit/application/environments/puppet_func_provider/environment.conf +1 -0
- data/spec/fixtures/unit/application/environments/puppet_func_provider/functions/data.pp +10 -0
- data/spec/fixtures/unit/application/environments/puppet_func_provider/manifests/site.pp +1 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_json/data/bad.json +3 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_json/environment.conf +2 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_json/hiera.yaml +5 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_json/manifests/site.pp +5 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_yaml/data/bad.yaml +3 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_yaml/environment.conf +2 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_yaml/hiera.yaml +5 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_yaml/manifests/site.pp +5 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_defaults/data/common.yaml +2 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_defaults/environment.conf +2 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_defaults/manifests/site.pp +1 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_defaults/modules/one/data/common.yaml +2 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_defaults/modules/one/manifests/init.pp +5 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_defaults/modules/one/metadata.json +9 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/first.json +3 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/name.yaml +2 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/second.json +3 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/single.yaml +2 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data2/single.yaml +2 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/environment.conf +2 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/hiera.yaml +18 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/manifests/site.pp +5 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_misc/data/common.yaml +46 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_misc/environment.conf +2 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_misc/manifests/site.pp +1 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_misc/modules/one/data/common.yaml +30 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_misc/modules/one/manifests/init.pp +13 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_misc/modules/one/metadata.json +9 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/data/common.yaml +4 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/data/specific.yaml +4 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/environment.conf +2 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/hiera.yaml +7 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/manifests/site.pp +1 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/first.json +3 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/name.yaml +1 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/second.json +3 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/single.yaml +2 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data2/single.yaml +2 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/hiera.yaml +18 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/manifests/init.pp +5 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/metadata.json +9 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/data/common.yaml +4 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/data/specific.yaml +4 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/environment.conf +2 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/hiera.yaml +7 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/manifests/site.pp +1 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/one/data/common.yaml +6 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/one/hiera.yaml +5 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/one/manifests/init.pp +2 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/one/metadata.json +9 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/two/data/common.yaml +4 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/two/hiera.yaml +5 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/two/manifests/init.pp +3 -0
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/two/metadata.json +9 -0
- data/spec/fixtures/unit/data_providers/environments/production/environment.conf +2 -0
- data/spec/fixtures/unit/data_providers/environments/production/lib/puppet/functions/environment/data.rb +9 -0
- data/spec/fixtures/unit/data_providers/environments/production/modules/abc/lib/puppet/bindings/abc/default.rb +9 -0
- data/spec/fixtures/unit/data_providers/environments/production/modules/abc/lib/puppet/functions/abc/data.rb +8 -0
- data/spec/fixtures/unit/data_providers/environments/production/modules/abc/manifests/init.pp +9 -0
- data/spec/fixtures/unit/data_providers/environments/production/modules/xyz/functions/data.pp +6 -0
- data/spec/fixtures/unit/data_providers/environments/production/modules/xyz/lib/puppet/bindings/xyz/default.rb +9 -0
- data/spec/fixtures/unit/data_providers/environments/production/modules/xyz/manifests/init.pp +9 -0
- data/spec/fixtures/unit/data_providers/environments/sample/environment.conf +2 -0
- data/spec/fixtures/unit/data_providers/environments/sample/manifests/site.pp +6 -0
- data/spec/fixtures/unit/data_providers/environments/sample/modules/dataprovider/lib/puppet/bindings/dataprovider/default.rb +54 -0
- data/spec/fixtures/unit/data_providers/environments/sample/modules/dataprovider/lib/puppet_x/helindbe/sample_env_data.rb +32 -0
- data/spec/fixtures/unit/data_providers/environments/sample/modules/dataprovider/lib/puppet_x/helindbe/sample_module_data.rb +33 -0
- data/spec/fixtures/unit/data_providers/environments/sample/modules/dataprovider/manifests/init.pp +5 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/environment.conf +2 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/lib/puppet/functions/environment/data.rb +13 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/abc/lib/puppet/bindings/abc/default.rb +9 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/abc/lib/puppet/functions/abc/data.rb +9 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/abc/manifests/init.pp +8 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/bad_data/lib/puppet/bindings/bad_data/default.rb +9 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/bad_data/lib/puppet/functions/bad_data/data.rb +7 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/bad_data/manifests/init.pp +2 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/bca/lib/puppet/bindings/bca/default.rb +9 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/bca/lib/puppet/functions/bca/data.rb +9 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/bca/manifests/init.pp +2 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/empty_json/data/empty.json +0 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/empty_json/hiera.yaml +5 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/empty_json/manifests/init.pp +2 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/empty_json/metadata.json +9 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/empty_yaml/data/empty.yaml +1 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/empty_yaml/hiera.yaml +5 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/empty_yaml/manifests/init.pp +2 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/empty_yaml/metadata.json +9 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/hieraprovider/data/first.json +4 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/hieraprovider/hiera.yaml +8 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/hieraprovider/manifests/init.pp +5 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/hieraprovider/metadata.json +9 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/meta/lib/puppet/functions/meta/data.rb +9 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/meta/manifests/init.pp +3 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/meta/metadata.json +9 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/metawcp/lib/puppet/bindings/metawcp/default.rb +10 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/metawcp/lib/puppet_x/thallgren/sample_module_data.rb +23 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/metawcp/manifests/init.pp +3 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/metawcp/metadata.json +9 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/no_provider/manifests/init.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/indirector/hiera/global.yaml +10 -0
- data/spec/fixtures/unit/indirector/hiera/invalid.yaml +1 -0
- data/spec/fixtures/unit/module/trailing-comma.json +24 -0
- data/spec/fixtures/unit/parser/functions/create_resources/foo/manifests/init.pp +3 -0
- data/spec/fixtures/unit/parser/functions/create_resources/foo/manifests/wrongdefine.pp +3 -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/puppet_x/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/nolayer/binder_config.yaml +6 -0
- data/spec/fixtures/unit/pops/binder/config/binder_config/ok/binder_config.yaml +9 -0
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/functions/usee_puppet.pp +3 -0
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/lib/puppet/functions/usee/callee.rb +5 -0
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/lib/puppet/functions/usee/usee_ruby.rb +6 -0
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/manifests/init.pp +8 -0
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/types/zero.pp +1 -0
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee2/lib/puppet/functions/usee2/callee.rb +5 -0
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/functions/puppet_calling_puppet.pp +5 -0
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/functions/puppet_calling_puppet_init.pp +5 -0
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/functions/puppet_calling_ruby.pp +5 -0
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/caller.rb +5 -0
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/caller2.rb +5 -0
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/ruby_calling_puppet.rb +5 -0
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/ruby_calling_puppet_init.rb +5 -0
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/ruby_calling_ruby.rb +5 -0
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/manifests/init.pp +81 -0
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/metadata.json +10 -0
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/types/withuseeone.pp +1 -0
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/types/withuseezero.pp +1 -0
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/callee.rb +8 -0
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/callee_ws.rb +8 -0
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/metadata.json +9 -0
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/functions/puppetcalled.pp +3 -0
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/functions/puppetcaller.pp +3 -0
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/functions/puppetcaller4.pp +3 -0
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/lib/puppet/functions/user/caller.rb +5 -0
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/lib/puppet/functions/user/caller_ws.rb +12 -0
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/lib/puppet/functions/user/callingpuppet.rb +5 -0
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/metadata.json +9 -0
- data/spec/fixtures/unit/pops/loaders/loaders/module_no_lib/modules/modulea/functions/hello.pp +3 -0
- data/spec/fixtures/unit/pops/loaders/loaders/module_no_lib/modules/modulea/manifests/init.pp +3 -0
- data/spec/fixtures/unit/pops/loaders/loaders/module_no_lib/modules/modulea/metadata.json +10 -0
- data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/functions/hello.pp +3 -0
- data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/functions/subspace/hello.pp +3 -0
- data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/lib/puppet/functions/modulea/rb_func_a.rb +5 -0
- data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/lib/puppet/functions/rb_func_a.rb +5 -0
- data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/manifests/init.pp +3 -0
- data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/metadata.json +10 -0
- data/spec/fixtures/unit/pops/loaders/loaders/wo_metadata_module/modules/moduleb/lib/puppet/functions/moduleb/rb_func_b.rb +6 -0
- data/spec/fixtures/unit/pops/loaders/loaders/wo_metadata_module/modules/moduleb/manifests/init.pp +3 -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 +152 -0
- data/spec/fixtures/unit/provider/mount/parsed/aix.mount +11 -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/naginator/define_empty_param +6 -0
- data/spec/fixtures/unit/provider/package/gem/gem-list-single-package +4 -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_implicit_version +3 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris10 +1 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.certificate_warning +2 -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/solaris11 +2 -0
- data/spec/fixtures/unit/provider/package/pkg/unknown_status +12 -0
- data/spec/fixtures/unit/provider/package/pkgng/pkg.info +8 -0
- data/spec/fixtures/unit/provider/package/pkgng/pkg.query +1 -0
- data/spec/fixtures/unit/provider/package/pkgng/pkg.query_absent +1 -0
- data/spec/fixtures/unit/provider/package/pkgng/pkg.version +3 -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/yum/yum-check-update-broken-notices.txt +187 -0
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-multiline.txt +201 -0
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-obsoletes.txt +195 -0
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-security.txt +184 -0
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-simple.txt +12 -0
- data/spec/fixtures/unit/provider/package/zypper/zypper-list-updates-SLES11sp1.out +369 -0
- data/spec/fixtures/unit/provider/package/zypper/zypper-list-updates-empty.out +3 -0
- data/spec/fixtures/unit/provider/parsedfile/simple.txt +7 -0
- data/spec/fixtures/unit/provider/service/gentoo/rc_update_show +30 -0
- data/spec/fixtures/unit/provider/service/openbsd/rcctl_getall +6 -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_unit_files_services +7 -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/sshkey/parsed/sample_with_blank_lines +8 -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/ssl/certificate/old-style-cert-exts.pem +33 -0
- data/spec/fixtures/unit/ssl/certificate_request/old-style-cert-request.pem +28 -0
- data/spec/fixtures/unit/type/user/authorized_keys +6 -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/vcr/cassettes/Puppet_Network_HTTP_Connection/when_handling_requests/_request_get/should_yield_to_the_block.yml +24 -0
- data/spec/fixtures/vcr/cassettes/Puppet_Network_HTTP_Connection/when_handling_requests/_request_head/should_yield_to_the_block.yml +24 -0
- data/spec/fixtures/vcr/cassettes/Puppet_Network_HTTP_Connection/when_handling_requests/_request_post/should_yield_to_the_block.yml +24 -0
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_fetch_if_not_on_the_local_disk.yml +205 -0
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_not_update_if_content_on_disk_is_up-to-date.yml +213 -0
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_update_if_content_differs_on_disk.yml +213 -0
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_mtime_is_older_on_disk.yml +205 -0
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_no_header_specified.yml +197 -0
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_not_on_the_local_disk.yml +205 -0
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_not_update_if_mtime_is_newer_on_disk.yml +205 -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 +206 -0
- data/spec/integration/application/doc_spec.rb +15 -0
- data/spec/integration/configurer_spec.rb +67 -0
- data/spec/integration/data_binding_spec.rb +229 -0
- data/spec/integration/defaults_spec.rb +246 -0
- data/spec/integration/directory_environments_spec.rb +51 -0
- data/spec/integration/environments/default_manifest_spec.rb +215 -0
- data/spec/integration/environments/setting_hooks_spec.rb +27 -0
- data/spec/integration/environments/settings_interpolation_spec.rb +110 -0
- data/spec/integration/environments/settings_spec.rb +100 -0
- data/spec/integration/faces/ca_spec.rb +354 -0
- data/spec/integration/faces/documentation_spec.rb +58 -0
- data/spec/integration/faces/plugin_spec.rb +58 -0
- data/spec/integration/file_bucket/file_spec.rb +54 -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/file_system/uniquefile_spec.rb +29 -0
- data/spec/integration/indirector/catalog/compiler_spec.rb +76 -0
- data/spec/integration/indirector/direct_file_server_spec.rb +92 -0
- data/spec/integration/indirector/facts/facter_spec.rb +119 -0
- data/spec/integration/indirector/file_content/file_server_spec.rb +91 -0
- data/spec/integration/indirector/file_metadata/file_server_spec.rb +67 -0
- data/spec/integration/indirector/node/ldap_spec.rb +14 -0
- data/spec/integration/module_tool/tar/mini_spec.rb +28 -0
- data/spec/integration/network/authconfig_spec.rb +257 -0
- data/spec/integration/network/formats_spec.rb +91 -0
- data/spec/integration/network/http/api/indirected_routes_spec.rb +56 -0
- data/spec/integration/node/environment_spec.rb +135 -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 +94 -0
- data/spec/integration/parser/class_spec.rb +33 -0
- data/spec/integration/parser/collection_spec.rb +308 -0
- data/spec/integration/parser/compiler_spec.rb +1783 -0
- data/spec/integration/parser/conditionals_spec.rb +92 -0
- data/spec/integration/parser/dynamic_scoping_spec.rb +67 -0
- data/spec/integration/parser/environment_spec.rb +47 -0
- data/spec/integration/parser/functions/require_spec.rb +43 -0
- data/spec/integration/parser/node_spec.rb +172 -0
- data/spec/integration/parser/parameter_defaults_spec.rb +336 -0
- data/spec/integration/parser/resource_expressions_spec.rb +220 -0
- data/spec/integration/parser/scope_spec.rb +666 -0
- data/spec/integration/parser/undef_param_spec.rb +95 -0
- data/spec/integration/provider/cron/crontab_spec.rb +241 -0
- data/spec/integration/provider/mailalias/aliases_spec.rb +10 -0
- data/spec/integration/provider/mount_spec.rb +161 -0
- data/spec/integration/provider/package_spec.rb +35 -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/service/windows_spec.rb +48 -0
- data/spec/integration/provider/ssh_authorized_key_spec.rb +219 -0
- data/spec/integration/provider/sshkey_spec.rb +159 -0
- data/spec/integration/provider/yumrepo_spec.rb +127 -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 +79 -0
- data/spec/integration/ssl/autosign_spec.rb +130 -0
- data/spec/integration/ssl/certificate_authority_spec.rb +162 -0
- data/spec/integration/ssl/certificate_request_spec.rb +47 -0
- data/spec/integration/ssl/certificate_revocation_list_spec.rb +34 -0
- data/spec/integration/ssl/host_spec.rb +81 -0
- data/spec/integration/test/test_helper_spec.rb +28 -0
- data/spec/integration/transaction/report_spec.rb +40 -0
- data/spec/integration/transaction_spec.rb +448 -0
- data/spec/integration/type/exec_spec.rb +77 -0
- data/spec/integration/type/file_spec.rb +1883 -0
- data/spec/integration/type/nagios_spec.rb +71 -0
- data/spec/integration/type/package_spec.rb +198 -0
- data/spec/integration/type/tidy_spec.rb +46 -0
- data/spec/integration/type/user_spec.rb +57 -0
- data/spec/integration/type_spec.rb +32 -0
- data/spec/integration/util/autoload_spec.rb +102 -0
- data/spec/integration/util/execution_spec.rb +39 -0
- data/spec/integration/util/rdoc/parser_spec.rb +182 -0
- data/spec/integration/util/settings_spec.rb +89 -0
- data/spec/integration/util/windows/principal_spec.rb +201 -0
- data/spec/integration/util/windows/process_spec.rb +65 -0
- data/spec/integration/util/windows/registry_spec.rb +257 -0
- data/spec/integration/util/windows/security_spec.rb +892 -0
- data/spec/integration/util/windows/user_spec.rb +125 -0
- data/spec/integration/util_spec.rb +133 -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 +20 -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 +137 -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 +74 -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_proxy.rb +34 -0
- data/spec/lib/puppet/indirector_testing.rb +27 -0
- data/spec/lib/puppet_spec/compiler.rb +66 -0
- data/spec/lib/puppet_spec/files.rb +103 -0
- data/spec/lib/puppet_spec/fixtures.rb +28 -0
- data/spec/lib/puppet_spec/handler.rb +53 -0
- data/spec/lib/puppet_spec/language.rb +74 -0
- data/spec/lib/puppet_spec/matchers.rb +161 -0
- data/spec/lib/puppet_spec/module_tool/shared_functions.rb +56 -0
- data/spec/lib/puppet_spec/module_tool/stub_source.rb +136 -0
- data/spec/lib/puppet_spec/modules.rb +37 -0
- data/spec/lib/puppet_spec/network.rb +101 -0
- data/spec/lib/puppet_spec/pops.rb +29 -0
- data/spec/lib/puppet_spec/scope.rb +14 -0
- data/spec/lib/puppet_spec/settings.rb +32 -0
- data/spec/lib/puppet_spec/verbose.rb +9 -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/hiera_indirections.rb +99 -0
- data/spec/shared_behaviours/iterative_functions.rb +69 -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/checksum.rb +62 -0
- data/spec/shared_contexts/digests.rb +55 -0
- data/spec/shared_contexts/types_setup.rb +96 -0
- data/spec/spec_helper.rb +209 -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 +282 -0
- data/spec/unit/application/agent_spec.rb +604 -0
- data/spec/unit/application/apply_spec.rb +490 -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 +453 -0
- data/spec/unit/application/doc_spec.rb +335 -0
- data/spec/unit/application/face_base_spec.rb +437 -0
- data/spec/unit/application/facts_spec.rb +23 -0
- data/spec/unit/application/filebucket_spec.rb +293 -0
- data/spec/unit/application/indirection_base_spec.rb +48 -0
- data/spec/unit/application/inspect_spec.rb +287 -0
- data/spec/unit/application/lookup_spec.rb +305 -0
- data/spec/unit/application/master_spec.rb +388 -0
- data/spec/unit/application/resource_spec.rb +157 -0
- data/spec/unit/application_spec.rb +641 -0
- data/spec/unit/appmgmt_spec.rb +657 -0
- data/spec/unit/capability_spec.rb +414 -0
- data/spec/unit/configurer/downloader_factory_spec.rb +96 -0
- data/spec/unit/configurer/downloader_spec.rb +228 -0
- data/spec/unit/configurer/fact_handler_spec.rb +96 -0
- data/spec/unit/configurer/plugin_handler_spec.rb +68 -0
- data/spec/unit/configurer_spec.rb +923 -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 +154 -0
- data/spec/unit/context_spec.rb +136 -0
- data/spec/unit/daemon_spec.rb +261 -0
- data/spec/unit/data_binding_spec.rb +11 -0
- data/spec/unit/data_providers/function_data_provider_spec.rb +105 -0
- data/spec/unit/data_providers/hiera_data_provider_spec.rb +378 -0
- data/spec/unit/data_providers/hiera_interpolation_spec.rb +57 -0
- data/spec/unit/data_providers/sample_data_provider_spec.rb +52 -0
- data/spec/unit/defaults_spec.rb +89 -0
- data/spec/unit/environments_spec.rb +677 -0
- data/spec/unit/external/pson_spec.rb +61 -0
- data/spec/unit/face/catalog_spec.rb +7 -0
- data/spec/unit/face/certificate_spec.rb +223 -0
- data/spec/unit/face/config_spec.rb +142 -0
- data/spec/unit/face/epp_face_spec.rb +303 -0
- data/spec/unit/face/facts_spec.rb +9 -0
- data/spec/unit/face/file_spec.rb +10 -0
- data/spec/unit/face/help_spec.rb +145 -0
- data/spec/unit/face/module/build_spec.rb +69 -0
- data/spec/unit/face/module/install_spec.rb +42 -0
- data/spec/unit/face/module/list_spec.rb +241 -0
- data/spec/unit/face/module/search_spec.rb +201 -0
- data/spec/unit/face/module/uninstall_spec.rb +49 -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 +154 -0
- data/spec/unit/face/parser_spec.rb +152 -0
- data/spec/unit/face/plugin_spec.rb +39 -0
- data/spec/unit/face_spec.rb +1 -0
- data/spec/unit/file_bucket/dipper_spec.rb +385 -0
- data/spec/unit/file_bucket/file_spec.rb +60 -0
- data/spec/unit/file_serving/base_spec.rb +168 -0
- data/spec/unit/file_serving/configuration/parser_spec.rb +181 -0
- data/spec/unit/file_serving/configuration_spec.rb +231 -0
- data/spec/unit/file_serving/content_spec.rb +100 -0
- data/spec/unit/file_serving/fileset_spec.rb +353 -0
- data/spec/unit/file_serving/http_metadata_spec.rb +85 -0
- data/spec/unit/file_serving/metadata_spec.rb +526 -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 +112 -0
- data/spec/unit/file_serving/terminus_selector_spec.rb +68 -0
- data/spec/unit/file_system/path_pattern_spec.rb +138 -0
- data/spec/unit/file_system/uniquefile_spec.rb +184 -0
- data/spec/unit/file_system_spec.rb +592 -0
- data/spec/unit/forge/errors_spec.rb +80 -0
- data/spec/unit/forge/module_release_spec.rb +218 -0
- data/spec/unit/forge/repository_spec.rb +224 -0
- data/spec/unit/forge_spec.rb +172 -0
- data/spec/unit/functions/assert_type_spec.rb +89 -0
- data/spec/unit/functions/defined_spec.rb +289 -0
- data/spec/unit/functions/each_spec.rb +107 -0
- data/spec/unit/functions/epp_spec.rb +154 -0
- data/spec/unit/functions/filter_spec.rb +145 -0
- data/spec/unit/functions/hiera_spec.rb +125 -0
- data/spec/unit/functions/inline_epp_spec.rb +89 -0
- data/spec/unit/functions/lookup_spec.rb +627 -0
- data/spec/unit/functions/map_spec.rb +163 -0
- data/spec/unit/functions/match_spec.rb +57 -0
- data/spec/unit/functions/reduce_spec.rb +85 -0
- data/spec/unit/functions/regsubst_spec.rb +107 -0
- data/spec/unit/functions/reverse_each_spec.rb +108 -0
- data/spec/unit/functions/scanf_spec.rb +32 -0
- data/spec/unit/functions/slice_spec.rb +136 -0
- data/spec/unit/functions/split_spec.rb +54 -0
- data/spec/unit/functions/step_spec.rb +113 -0
- data/spec/unit/functions/type_spec.rb +35 -0
- data/spec/unit/functions/versioncmp_spec.rb +36 -0
- data/spec/unit/functions/with_spec.rb +31 -0
- data/spec/unit/functions4_spec.rb +860 -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_spec.rb +717 -0
- data/spec/unit/graph/title_hash_prioritizer_spec.rb +49 -0
- data/spec/unit/hiera/scope_spec.rb +93 -0
- data/spec/unit/hiera_puppet_spec.rb +118 -0
- data/spec/unit/indirector/catalog/compiler_spec.rb +1004 -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/rest_spec.rb +10 -0
- data/spec/unit/indirector/catalog/static_compiler_spec.rb +255 -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 +19 -0
- data/spec/unit/indirector/data_binding/none_spec.rb +28 -0
- data/spec/unit/indirector/direct_file_server_spec.rb +90 -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 +75 -0
- data/spec/unit/indirector/facts/facter_spec.rb +168 -0
- data/spec/unit/indirector/facts/network_device_spec.rb +78 -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 +337 -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 +58 -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 +281 -0
- data/spec/unit/indirector/hiera_spec.rb +17 -0
- data/spec/unit/indirector/indirection_spec.rb +886 -0
- data/spec/unit/indirector/json_spec.rb +192 -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/exec_spec.rb +87 -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/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 +500 -0
- data/spec/unit/indirector/resource/ral_spec.rb +131 -0
- data/spec/unit/indirector/resource/store_configs_spec.rb +21 -0
- data/spec/unit/indirector/resource_type/parser_spec.rb +254 -0
- data/spec/unit/indirector/resource_type/rest_spec.rb +14 -0
- data/spec/unit/indirector/rest_spec.rb +604 -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/info_service_spec.rb +298 -0
- data/spec/unit/interface/action_builder_spec.rb +217 -0
- data/spec/unit/interface/action_manager_spec.rb +255 -0
- data/spec/unit/interface/action_spec.rb +647 -0
- data/spec/unit/interface/documentation_spec.rb +33 -0
- data/spec/unit/interface/face_collection_spec.rb +212 -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 +266 -0
- data/spec/unit/man_spec.rb +32 -0
- data/spec/unit/module_spec.rb +761 -0
- data/spec/unit/module_tool/application_spec.rb +25 -0
- data/spec/unit/module_tool/applications/builder_spec.rb +397 -0
- data/spec/unit/module_tool/applications/checksummer_spec.rb +115 -0
- data/spec/unit/module_tool/applications/installer_spec.rb +363 -0
- data/spec/unit/module_tool/applications/searcher_spec.rb +38 -0
- data/spec/unit/module_tool/applications/uninstaller_spec.rb +165 -0
- data/spec/unit/module_tool/applications/unpacker_spec.rb +74 -0
- data/spec/unit/module_tool/applications/upgrader_spec.rb +324 -0
- data/spec/unit/module_tool/install_directory_spec.rb +70 -0
- data/spec/unit/module_tool/installed_modules_spec.rb +49 -0
- data/spec/unit/module_tool/metadata_spec.rb +330 -0
- data/spec/unit/module_tool/tar/gnu_spec.rb +23 -0
- data/spec/unit/module_tool/tar/mini_spec.rb +60 -0
- data/spec/unit/module_tool/tar_spec.rb +31 -0
- data/spec/unit/module_tool_spec.rb +309 -0
- data/spec/unit/network/auth_config_parser_spec.rb +101 -0
- data/spec/unit/network/authconfig_spec.rb +139 -0
- data/spec/unit/network/authorization_spec.rb +62 -0
- data/spec/unit/network/authstore_spec.rb +423 -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 +336 -0
- data/spec/unit/network/http/api/ca/v1_spec.rb +26 -0
- data/spec/unit/network/http/api/indirected_routes_spec.rb +473 -0
- data/spec/unit/network/http/api/master/v3/authorization_spec.rb +59 -0
- data/spec/unit/network/http/api/master/v3/environments_spec.rb +63 -0
- data/spec/unit/network/http/api/master/v3_spec.rb +39 -0
- data/spec/unit/network/http/api_spec.rb +127 -0
- data/spec/unit/network/http/compression_spec.rb +190 -0
- data/spec/unit/network/http/connection_spec.rb +299 -0
- data/spec/unit/network/http/error_spec.rb +30 -0
- data/spec/unit/network/http/factory_spec.rb +94 -0
- data/spec/unit/network/http/handler_spec.rb +174 -0
- data/spec/unit/network/http/nocache_pool_spec.rb +43 -0
- data/spec/unit/network/http/pool_spec.rb +299 -0
- data/spec/unit/network/http/rack/rest_spec.rb +318 -0
- data/spec/unit/network/http/rack_spec.rb +43 -0
- data/spec/unit/network/http/route_spec.rb +91 -0
- data/spec/unit/network/http/session_spec.rb +43 -0
- data/spec/unit/network/http/site_spec.rb +90 -0
- data/spec/unit/network/http/webrick/rest_spec.rb +231 -0
- data/spec/unit/network/http/webrick_spec.rb +279 -0
- data/spec/unit/network/http_pool_spec.rb +98 -0
- data/spec/unit/network/http_spec.rb +10 -0
- data/spec/unit/network/resolver_spec.rb +207 -0
- data/spec/unit/network/rights_spec.rb +440 -0
- data/spec/unit/network/server_spec.rb +95 -0
- data/spec/unit/node/environment_spec.rb +485 -0
- data/spec/unit/node/facts_spec.rb +213 -0
- data/spec/unit/node_spec.rb +362 -0
- data/spec/unit/other/selinux_spec.rb +99 -0
- data/spec/unit/parameter/boolean_spec.rb +36 -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 +161 -0
- data/spec/unit/parameter/value_spec.rb +83 -0
- data/spec/unit/parameter_spec.rb +193 -0
- data/spec/unit/parser/ast/block_expression_spec.rb +68 -0
- data/spec/unit/parser/ast/leaf_spec.rb +138 -0
- data/spec/unit/parser/compiler_spec.rb +993 -0
- data/spec/unit/parser/files_spec.rb +102 -0
- data/spec/unit/parser/functions/contain_spec.rb +233 -0
- data/spec/unit/parser/functions/create_resources_spec.rb +213 -0
- data/spec/unit/parser/functions/defined_spec.rb +120 -0
- data/spec/unit/parser/functions/digest_spec.rb +31 -0
- data/spec/unit/parser/functions/fail_spec.rb +28 -0
- data/spec/unit/parser/functions/file_spec.rb +104 -0
- data/spec/unit/parser/functions/fqdn_rand_spec.rb +50 -0
- data/spec/unit/parser/functions/generate_spec.rb +127 -0
- data/spec/unit/parser/functions/hiera_array_spec.rb +12 -0
- data/spec/unit/parser/functions/hiera_hash_spec.rb +12 -0
- data/spec/unit/parser/functions/hiera_include_spec.rb +12 -0
- data/spec/unit/parser/functions/hiera_spec.rb +12 -0
- data/spec/unit/parser/functions/include_spec.rb +55 -0
- data/spec/unit/parser/functions/inline_template_spec.rb +34 -0
- data/spec/unit/parser/functions/lookup_spec.rb +14 -0
- data/spec/unit/parser/functions/realize_spec.rb +61 -0
- data/spec/unit/parser/functions/regsubst_spec.rb +24 -0
- data/spec/unit/parser/functions/require_spec.rb +68 -0
- data/spec/unit/parser/functions/scanf_spec.rb +30 -0
- data/spec/unit/parser/functions/shared.rb +82 -0
- data/spec/unit/parser/functions/shellquote_spec.rb +67 -0
- data/spec/unit/parser/functions/split_spec.rb +18 -0
- data/spec/unit/parser/functions/sprintf_spec.rb +47 -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 +132 -0
- data/spec/unit/parser/relationship_spec.rb +75 -0
- data/spec/unit/parser/resource/param_spec.rb +32 -0
- data/spec/unit/parser/resource_spec.rb +564 -0
- data/spec/unit/parser/scope_spec.rb +689 -0
- data/spec/unit/parser/templatewrapper_spec.rb +101 -0
- data/spec/unit/parser/type_loader_spec.rb +204 -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 +42 -0
- data/spec/unit/pops/binder/injector_spec.rb +768 -0
- data/spec/unit/pops/containment_spec.rb +26 -0
- data/spec/unit/pops/evaluator/access_ops_spec.rb +462 -0
- data/spec/unit/pops/evaluator/arithmetic_ops_spec.rb +77 -0
- data/spec/unit/pops/evaluator/basic_expressions_spec.rb +102 -0
- data/spec/unit/pops/evaluator/collections_ops_spec.rb +109 -0
- data/spec/unit/pops/evaluator/comparison_ops_spec.rb +268 -0
- data/spec/unit/pops/evaluator/conditionals_spec.rb +190 -0
- data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +1431 -0
- data/spec/unit/pops/evaluator/evaluator_rspec_helper.rb +71 -0
- data/spec/unit/pops/evaluator/json_strict_literal_evaluator_spec.rb +63 -0
- data/spec/unit/pops/evaluator/literal_evaluator_spec.rb +43 -0
- data/spec/unit/pops/evaluator/logical_ops_spec.rb +90 -0
- data/spec/unit/pops/evaluator/runtime3_converter_spec.rb +25 -0
- data/spec/unit/pops/evaluator/string_interpolation_spec.rb +44 -0
- data/spec/unit/pops/evaluator/variables_spec.rb +89 -0
- data/spec/unit/pops/factory_rspec_helper.rb +69 -0
- data/spec/unit/pops/factory_spec.rb +306 -0
- data/spec/unit/pops/issues_spec.rb +196 -0
- data/spec/unit/pops/label_provider_spec.rb +46 -0
- data/spec/unit/pops/loaders/dependency_loader_spec.rb +119 -0
- data/spec/unit/pops/loaders/loader_paths_spec.rb +43 -0
- data/spec/unit/pops/loaders/loaders_spec.rb +329 -0
- data/spec/unit/pops/loaders/module_loaders_spec.rb +95 -0
- data/spec/unit/pops/loaders/static_loader_spec.rb +52 -0
- data/spec/unit/pops/migration_spec.rb +53 -0
- data/spec/unit/pops/model/model_spec.rb +37 -0
- data/spec/unit/pops/parser/epp_parser_spec.rb +115 -0
- data/spec/unit/pops/parser/evaluating_parser_spec.rb +89 -0
- data/spec/unit/pops/parser/lexer2_spec.rb +814 -0
- data/spec/unit/pops/parser/parse_application_spec.rb +40 -0
- data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +292 -0
- data/spec/unit/pops/parser/parse_calls_spec.rb +127 -0
- data/spec/unit/pops/parser/parse_capabilities_spec.rb +47 -0
- data/spec/unit/pops/parser/parse_conditionals_spec.rb +173 -0
- data/spec/unit/pops/parser/parse_containers_spec.rb +261 -0
- data/spec/unit/pops/parser/parse_heredoc_spec.rb +164 -0
- data/spec/unit/pops/parser/parse_resource_spec.rb +329 -0
- data/spec/unit/pops/parser/parse_site_spec.rb +38 -0
- data/spec/unit/pops/parser/parser_rspec_helper.rb +21 -0
- data/spec/unit/pops/parser/parser_spec.rb +75 -0
- data/spec/unit/pops/parser/parsing_typed_parameters_spec.rb +65 -0
- data/spec/unit/pops/parser/rgen_sanitycheck_spec.rb +23 -0
- data/spec/unit/pops/parser/source_pos_adapter_spec.rb +26 -0
- data/spec/unit/pops/types/class_loader_spec.rb +10 -0
- data/spec/unit/pops/types/enumeration_spec.rb +50 -0
- data/spec/unit/pops/types/iterable_spec.rb +262 -0
- data/spec/unit/pops/types/recursion_guard_spec.rb +91 -0
- data/spec/unit/pops/types/type_acceptor_spec.rb +105 -0
- data/spec/unit/pops/types/type_asserter_spec.rb +43 -0
- data/spec/unit/pops/types/type_calculator_spec.rb +2060 -0
- data/spec/unit/pops/types/type_factory_spec.rb +281 -0
- data/spec/unit/pops/types/type_formatter_spec.rb +280 -0
- data/spec/unit/pops/types/type_mismatch_describer_spec.rb +152 -0
- data/spec/unit/pops/types/type_parser_spec.rb +288 -0
- data/spec/unit/pops/types/types_spec.rb +241 -0
- data/spec/unit/pops/utils_spec.rb +70 -0
- data/spec/unit/pops/validation_spec.rb +66 -0
- data/spec/unit/pops/validator/validator_spec.rb +418 -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 +173 -0
- data/spec/unit/property/ordered_list_spec.rb +63 -0
- data/spec/unit/property_spec.rb +517 -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 +1025 -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 +207 -0
- data/spec/unit/provider/cron/parsed_spec.rb +358 -0
- data/spec/unit/provider/exec/posix_spec.rb +209 -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/directoryservice_spec.rb +33 -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 +279 -0
- data/spec/unit/provider/host/parsed_spec.rb +233 -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 +155 -0
- data/spec/unit/provider/mcx/mcxcontent_spec.rb +192 -0
- data/spec/unit/provider/mount/parsed_spec.rb +317 -0
- data/spec/unit/provider/mount_spec.rb +165 -0
- data/spec/unit/provider/naginator_spec.rb +79 -0
- data/spec/unit/provider/nameservice/directoryservice_spec.rb +162 -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 +165 -0
- data/spec/unit/provider/package/aptitude_spec.rb +45 -0
- data/spec/unit/provider/package/aptrpm_spec.rb +47 -0
- data/spec/unit/provider/package/base_spec.rb +18 -0
- data/spec/unit/provider/package/dnf_spec.rb +108 -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 +326 -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/nim_spec.rb +250 -0
- data/spec/unit/provider/package/openbsd_spec.rb +404 -0
- data/spec/unit/provider/package/opkg_spec.rb +183 -0
- data/spec/unit/provider/package/pacman_spec.rb +468 -0
- data/spec/unit/provider/package/pip3_spec.rb +275 -0
- data/spec/unit/provider/package/pip_spec.rb +309 -0
- data/spec/unit/provider/package/pkg_spec.rb +333 -0
- data/spec/unit/provider/package/pkgdmg_spec.rb +171 -0
- data/spec/unit/provider/package/pkgin_spec.rb +188 -0
- data/spec/unit/provider/package/pkgng_spec.rb +174 -0
- data/spec/unit/provider/package/pkgutil_spec.rb +235 -0
- data/spec/unit/provider/package/portage_spec.rb +69 -0
- data/spec/unit/provider/package/puppet_gem_spec.rb +67 -0
- data/spec/unit/provider/package/rpm_spec.rb +484 -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_spec.rb +80 -0
- data/spec/unit/provider/package/windows/exe_package_spec.rb +100 -0
- data/spec/unit/provider/package/windows/msi_package_spec.rb +114 -0
- data/spec/unit/provider/package/windows/package_spec.rb +182 -0
- data/spec/unit/provider/package/windows_spec.rb +251 -0
- data/spec/unit/provider/package/yum_spec.rb +547 -0
- data/spec/unit/provider/package/zypper_spec.rb +231 -0
- data/spec/unit/provider/parsedfile_spec.rb +228 -0
- data/spec/unit/provider/scheduled_task/win32_taskscheduler_spec.rb +1859 -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 +88 -0
- data/spec/unit/provider/service/bsd_spec.rb +130 -0
- data/spec/unit/provider/service/daemontools_spec.rb +171 -0
- data/spec/unit/provider/service/debian_spec.rb +153 -0
- data/spec/unit/provider/service/freebsd_spec.rb +92 -0
- data/spec/unit/provider/service/gentoo_spec.rb +243 -0
- data/spec/unit/provider/service/init_spec.rb +251 -0
- data/spec/unit/provider/service/launchd_spec.rb +314 -0
- data/spec/unit/provider/service/openbsd_spec.rb +204 -0
- data/spec/unit/provider/service/openrc_spec.rb +226 -0
- data/spec/unit/provider/service/openwrt_spec.rb +109 -0
- data/spec/unit/provider/service/rcng_spec.rb +41 -0
- data/spec/unit/provider/service/redhat_spec.rb +171 -0
- data/spec/unit/provider/service/runit_spec.rb +145 -0
- data/spec/unit/provider/service/smf_spec.rb +178 -0
- data/spec/unit/provider/service/src_spec.rb +189 -0
- data/spec/unit/provider/service/systemd_spec.rb +332 -0
- data/spec/unit/provider/service/upstart_spec.rb +648 -0
- data/spec/unit/provider/service/windows_spec.rb +231 -0
- data/spec/unit/provider/ssh_authorized_key/parsed_spec.rb +276 -0
- data/spec/unit/provider/sshkey/parsed_spec.rb +95 -0
- data/spec/unit/provider/user/aix_spec.rb +162 -0
- data/spec/unit/provider/user/directoryservice_spec.rb +1051 -0
- data/spec/unit/provider/user/hpux_spec.rb +73 -0
- data/spec/unit/provider/user/ldap_spec.rb +289 -0
- data/spec/unit/provider/user/openbsd_spec.rb +77 -0
- data/spec/unit/provider/user/pw_spec.rb +214 -0
- data/spec/unit/provider/user/user_role_add_spec.rb +357 -0
- data/spec/unit/provider/user/useradd_spec.rb +446 -0
- data/spec/unit/provider/user/windows_adsi_spec.rb +303 -0
- data/spec/unit/provider/vlan/cisco_spec.rb +55 -0
- data/spec/unit/provider/yumrepo/inifile_spec.rb +326 -0
- data/spec/unit/provider/zfs/zfs_spec.rb +106 -0
- data/spec/unit/provider/zone/solaris_spec.rb +247 -0
- data/spec/unit/provider/zpool/zpool_spec.rb +251 -0
- data/spec/unit/provider_spec.rb +722 -0
- data/spec/unit/puppet_spec.rb +48 -0
- data/spec/unit/relationship_spec.rb +224 -0
- data/spec/unit/reports/http_spec.rb +100 -0
- data/spec/unit/reports/store_spec.rb +60 -0
- data/spec/unit/reports_spec.rb +70 -0
- data/spec/unit/resource/capability_finder_spec.rb +69 -0
- data/spec/unit/resource/catalog_spec.rb +926 -0
- data/spec/unit/resource/status_spec.rb +194 -0
- data/spec/unit/resource/type_collection_helper_spec.rb +24 -0
- data/spec/unit/resource/type_collection_spec.rb +334 -0
- data/spec/unit/resource/type_spec.rb +914 -0
- data/spec/unit/resource_spec.rb +1069 -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 +305 -0
- data/spec/unit/settings/array_setting_spec.rb +39 -0
- data/spec/unit/settings/autosign_setting_spec.rb +104 -0
- data/spec/unit/settings/config_file_spec.rb +149 -0
- data/spec/unit/settings/directory_setting_spec.rb +32 -0
- data/spec/unit/settings/duration_setting_spec.rb +49 -0
- data/spec/unit/settings/enum_setting_spec.rb +27 -0
- data/spec/unit/settings/environment_conf_spec.rb +135 -0
- data/spec/unit/settings/file_setting_spec.rb +329 -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 +1854 -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 +394 -0
- data/spec/unit/ssl/certificate_authority_spec.rb +1132 -0
- data/spec/unit/ssl/certificate_factory_spec.rb +181 -0
- data/spec/unit/ssl/certificate_request_attributes_spec.rb +61 -0
- data/spec/unit/ssl/certificate_request_spec.rb +381 -0
- data/spec/unit/ssl/certificate_revocation_list_spec.rb +196 -0
- data/spec/unit/ssl/certificate_spec.rb +190 -0
- data/spec/unit/ssl/configuration_spec.rb +132 -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 +127 -0
- data/spec/unit/ssl/key_spec.rb +191 -0
- data/spec/unit/ssl/oids_spec.rb +69 -0
- data/spec/unit/ssl/validator_spec.rb +418 -0
- data/spec/unit/status_spec.rb +45 -0
- data/spec/unit/transaction/additional_resource_generator_spec.rb +484 -0
- data/spec/unit/transaction/event_manager_spec.rb +340 -0
- data/spec/unit/transaction/event_spec.rb +192 -0
- data/spec/unit/transaction/report_spec.rb +533 -0
- data/spec/unit/transaction/resource_harness_spec.rb +495 -0
- data/spec/unit/transaction_spec.rb +748 -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 +543 -0
- data/spec/unit/type/exec_spec.rb +780 -0
- data/spec/unit/type/file/checksum_spec.rb +85 -0
- data/spec/unit/type/file/checksum_value_spec.rb +286 -0
- data/spec/unit/type/file/content_spec.rb +394 -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 +222 -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 +658 -0
- data/spec/unit/type/file/type_spec.rb +19 -0
- data/spec/unit/type/file_spec.rb +1604 -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 +681 -0
- data/spec/unit/type/interface_spec.rb +129 -0
- data/spec/unit/type/k5login_spec.rb +115 -0
- data/spec/unit/type/macauthorization_spec.rb +113 -0
- data/spec/unit/type/mailalias_spec.rb +49 -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 +600 -0
- data/spec/unit/type/nagios_spec.rb +293 -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 +374 -0
- data/spec/unit/type/resources_spec.rb +318 -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 +266 -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 +452 -0
- data/spec/unit/type/user_spec.rb +526 -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 +402 -0
- data/spec/unit/type/zfs_spec.rb +46 -0
- data/spec/unit/type/zone_spec.rb +172 -0
- data/spec/unit/type/zpool_spec.rb +109 -0
- data/spec/unit/type_spec.rb +1187 -0
- data/spec/unit/util/autoload_spec.rb +281 -0
- data/spec/unit/util/backups_spec.rb +134 -0
- data/spec/unit/util/checksums_spec.rb +208 -0
- data/spec/unit/util/colors_spec.rb +45 -0
- data/spec/unit/util/command_line_spec.rb +164 -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 +39 -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 +675 -0
- data/spec/unit/util/execution_stub_spec.rb +39 -0
- data/spec/unit/util/feature_spec.rb +102 -0
- data/spec/unit/util/filetype_spec.rb +211 -0
- data/spec/unit/util/http_proxy_spec.rb +212 -0
- data/spec/unit/util/inifile_spec.rb +492 -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 +228 -0
- data/spec/unit/util/log_spec.rb +501 -0
- data/spec/unit/util/logging_spec.rb +391 -0
- data/spec/unit/util/metric_spec.rb +83 -0
- data/spec/unit/util/monkey_patches_spec.rb +219 -0
- data/spec/unit/util/multi_match_spec.rb +39 -0
- data/spec/unit/util/nagios_maker_spec.rb +122 -0
- data/spec/unit/util/network_device/cisco/device_spec.rb +482 -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 +92 -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 +86 -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 +218 -0
- data/spec/unit/util/plist_spec.rb +110 -0
- data/spec/unit/util/posix_spec.rb +251 -0
- data/spec/unit/util/profiler/aggregate_spec.rb +55 -0
- data/spec/unit/util/profiler/around_profiler_spec.rb +61 -0
- data/spec/unit/util/profiler/logging_spec.rb +70 -0
- data/spec/unit/util/profiler/object_counts_spec.rb +12 -0
- data/spec/unit/util/profiler/wall_clock_spec.rb +13 -0
- data/spec/unit/util/profiler_spec.rb +47 -0
- data/spec/unit/util/rdoc_spec.rb +56 -0
- data/spec/unit/util/reference_spec.rb +39 -0
- data/spec/unit/util/resource_template_spec.rb +57 -0
- data/spec/unit/util/retry_action_spec.rb +85 -0
- data/spec/unit/util/rubygems_spec.rb +82 -0
- data/spec/unit/util/run_mode_spec.rb +311 -0
- data/spec/unit/util/selinux_spec.rb +311 -0
- data/spec/unit/util/splayer_spec.rb +45 -0
- data/spec/unit/util/ssl_spec.rb +92 -0
- data/spec/unit/util/storage_spec.rb +214 -0
- data/spec/unit/util/suidmanager_spec.rb +286 -0
- data/spec/unit/util/symbolic_file_mode_spec.rb +181 -0
- data/spec/unit/util/tag_set_spec.rb +46 -0
- data/spec/unit/util/tagging_spec.rb +169 -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 +46 -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/adsi_spec.rb +510 -0
- data/spec/unit/util/windows/api_types_spec.rb +70 -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 +203 -0
- data/spec/unit/util/windows/string_spec.rb +58 -0
- data/spec/unit/util/yaml_spec.rb +55 -0
- data/spec/unit/util_spec.rb +674 -0
- data/spec/unit/version_spec.rb +42 -0
- data/spec/watchr.rb +138 -0
- data/tasks/benchmark.rake +139 -0
- data/tasks/cfpropertylist.rake +15 -0
- data/tasks/ci.rake +29 -0
- data/tasks/manpages.rake +75 -0
- data/tasks/memwalk.rake +195 -0
- data/tasks/parallel.rake +405 -0
- data/tasks/parser.rake +14 -0
- data/tasks/yard.rake +59 -0
- metadata +3842 -0
@@ -0,0 +1,144 @@
|
|
1
|
+
module Puppet::Pops
|
2
|
+
module Parser
|
3
|
+
module HeredocSupport
|
4
|
+
include LexerSupport
|
5
|
+
|
6
|
+
# Pattern for heredoc `@(endtag[:syntax][/escapes])
|
7
|
+
# Produces groups for endtag (group 1), syntax (group 2), and escapes (group 3)
|
8
|
+
#
|
9
|
+
PATTERN_HEREDOC = %r{@\(([^:/\r\n\)]+)(?::[:blank:]*([a-z][a-zA-Z0-9_+]+)[:blank:]*)?(?:/((?:\w|[$])*)[:blank:]*)?\)}
|
10
|
+
|
11
|
+
|
12
|
+
def heredoc
|
13
|
+
scn = @scanner
|
14
|
+
ctx = @lexing_context
|
15
|
+
locator = @locator
|
16
|
+
before = scn.pos
|
17
|
+
|
18
|
+
# scanner is at position before @(
|
19
|
+
# find end of the heredoc spec
|
20
|
+
str = scn.scan_until(/\)/) || lex_error(Issues::HEREDOC_UNCLOSED_PARENTHESIS, :followed_by => followed_by)
|
21
|
+
pos_after_heredoc = scn.pos
|
22
|
+
|
23
|
+
# Note: allows '+' as separator in syntax, but this needs validation as empty segments are not allowed
|
24
|
+
md = str.match(PATTERN_HEREDOC)
|
25
|
+
lex_error(Issues::HEREDOC_INVALID_SYNTAX) unless md
|
26
|
+
endtag = md[1]
|
27
|
+
syntax = md[2] || ''
|
28
|
+
escapes = md[3]
|
29
|
+
|
30
|
+
endtag.strip!
|
31
|
+
|
32
|
+
# Is this a dq string style heredoc? (endtag enclosed in "")
|
33
|
+
if endtag =~ /^"(.*)"$/
|
34
|
+
dqstring_style = true
|
35
|
+
endtag = $1.strip
|
36
|
+
end
|
37
|
+
|
38
|
+
lex_error(Issues::HEREDOC_MISSING_ENDTAG) unless endtag.length >= 1
|
39
|
+
|
40
|
+
resulting_escapes = []
|
41
|
+
if escapes
|
42
|
+
escapes = "trnsuL$" if escapes.length < 1
|
43
|
+
|
44
|
+
escapes = escapes.split('')
|
45
|
+
unless escapes.length == escapes.uniq.length
|
46
|
+
lex_error(Issues::HEREDOC_MULTIPLE_AT_ESCAPES, :escapes => escapes)
|
47
|
+
end
|
48
|
+
resulting_escapes = ["\\"]
|
49
|
+
escapes.each do |e|
|
50
|
+
case e
|
51
|
+
when "t", "r", "n", "s", "u", "$"
|
52
|
+
resulting_escapes << e
|
53
|
+
when "L"
|
54
|
+
resulting_escapes += ["\n", "\r\n"]
|
55
|
+
else
|
56
|
+
lex_error(Issues::HEREDOC_INVALID_ESCAPE, :actual => e)
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
# Produce a heredoc token to make the syntax available to the grammar
|
62
|
+
enqueue_completed([:HEREDOC, syntax, pos_after_heredoc - before], before)
|
63
|
+
|
64
|
+
# If this is the second or subsequent heredoc on the line, the lexing context's :newline_jump contains
|
65
|
+
# the position after the \n where the next heredoc text should scan. If not set, this is the first
|
66
|
+
# and it should start scanning after the first found \n (or if not found == error).
|
67
|
+
|
68
|
+
if ctx[:newline_jump]
|
69
|
+
scn.pos = ctx[:newline_jump]
|
70
|
+
else
|
71
|
+
scn.scan_until(/\n/) || lex_error(Issues::HEREDOC_WITHOUT_TEXT)
|
72
|
+
end
|
73
|
+
# offset 0 for the heredoc, and its line number
|
74
|
+
heredoc_offset = scn.pos
|
75
|
+
heredoc_line = locator.line_for_offset(heredoc_offset)-1
|
76
|
+
|
77
|
+
# Compute message to emit if there is no end (to make it refer to the opening heredoc position).
|
78
|
+
eof_error = create_lex_error(Issues::HEREDOC_WITHOUT_END_TAGGED_LINE)
|
79
|
+
|
80
|
+
# Text from this position (+ lexing contexts offset for any preceding heredoc) is heredoc until a line
|
81
|
+
# that terminates the heredoc is found.
|
82
|
+
|
83
|
+
# (Endline in EBNF form): WS* ('|' WS*)? ('-' WS*)? endtag WS* \r? (\n|$)
|
84
|
+
endline_pattern = /([[:blank:]]*)(?:([|])[[:blank:]]*)?(?:(\-)[[:blank:]]*)?#{Regexp.escape(endtag)}[[:blank:]]*\r?(?:\n|\z)/
|
85
|
+
lines = []
|
86
|
+
while !scn.eos? do
|
87
|
+
one_line = scn.scan_until(/(?:\n|\z)/)
|
88
|
+
raise eof_error unless one_line
|
89
|
+
if md = one_line.match(endline_pattern)
|
90
|
+
leading = md[1]
|
91
|
+
has_margin = md[2] == '|'
|
92
|
+
remove_break = md[3] == '-'
|
93
|
+
# Record position where next heredoc (from same line as current @()) should start scanning for content
|
94
|
+
ctx[:newline_jump] = scn.pos
|
95
|
+
|
96
|
+
|
97
|
+
# Process captured lines - remove leading, and trailing newline
|
98
|
+
str = heredoc_text(lines, leading, has_margin, remove_break)
|
99
|
+
|
100
|
+
# Use a new lexer instance configured with a sub-locator to enable correct positioning
|
101
|
+
sublexer = self.class.new()
|
102
|
+
locator = Locator::SubLocator.sub_locator(str,
|
103
|
+
locator.file, heredoc_line, heredoc_offset, leading.length())
|
104
|
+
|
105
|
+
# Emit a token that provides the grammar with location information about the lines on which the heredoc
|
106
|
+
# content is based.
|
107
|
+
enqueue([:SUBLOCATE,
|
108
|
+
LexerSupport::TokenValue.new([:SUBLOCATE,
|
109
|
+
lines, lines.reduce(0) {|size, s| size + s.length} ],
|
110
|
+
heredoc_offset,
|
111
|
+
locator)])
|
112
|
+
|
113
|
+
sublexer.lex_unquoted_string(str, locator, resulting_escapes, dqstring_style)
|
114
|
+
sublexer.interpolate_uq_to(self)
|
115
|
+
# Continue scan after @(...)
|
116
|
+
scn.pos = pos_after_heredoc
|
117
|
+
return
|
118
|
+
else
|
119
|
+
lines << one_line
|
120
|
+
end
|
121
|
+
end
|
122
|
+
raise eof_error
|
123
|
+
end
|
124
|
+
|
125
|
+
# Produces the heredoc text string given the individual (unprocessed) lines as an array.
|
126
|
+
# @param lines [Array<String>] unprocessed lines of text in the heredoc w/o terminating line
|
127
|
+
# @param leading [String] the leading text up (up to pipe or other terminating char)
|
128
|
+
# @param has_margin [Boolean] if the left margin should be adjusted as indicated by `leading`
|
129
|
+
# @param remove_break [Boolean] if the line break (\r?\n) at the end of the last line should be removed or not
|
130
|
+
#
|
131
|
+
def heredoc_text(lines, leading, has_margin, remove_break)
|
132
|
+
if has_margin
|
133
|
+
leading_pattern = /^#{Regexp.escape(leading)}/
|
134
|
+
lines = lines.collect {|s| s.gsub(leading_pattern, '') }
|
135
|
+
end
|
136
|
+
result = lines.join('')
|
137
|
+
result.gsub!(/\r?\n$/, '') if remove_break
|
138
|
+
result
|
139
|
+
end
|
140
|
+
|
141
|
+
|
142
|
+
end
|
143
|
+
end
|
144
|
+
end
|
@@ -0,0 +1,237 @@
|
|
1
|
+
# This module is an integral part of the Lexer.
|
2
|
+
# It defines interpolation support
|
3
|
+
# PERFORMANCE NOTE: There are 4 very similar methods in this module that are designed to be as
|
4
|
+
# performant as possible. While it is possible to parameterize them into one common method, the overhead
|
5
|
+
# of passing parameters and evaluating conditional logic has a negative impact on performance.
|
6
|
+
#
|
7
|
+
module Puppet::Pops::Parser::InterpolationSupport
|
8
|
+
|
9
|
+
PATTERN_VARIABLE = %r{(::)?(\w+::)*\w+}
|
10
|
+
|
11
|
+
# This is the starting point for a double quoted string with possible interpolation
|
12
|
+
# The structure mimics that of the grammar.
|
13
|
+
# The logic is explicit (where the former implementation used parameters/strucures) given to a
|
14
|
+
# generic handler.
|
15
|
+
# (This is both easier to understand and faster).
|
16
|
+
#
|
17
|
+
def interpolate_dq
|
18
|
+
scn = @scanner
|
19
|
+
ctx = @lexing_context
|
20
|
+
before = scn.pos
|
21
|
+
# skip the leading " by doing a scan since the slurp_dqstring uses last matched when there is an error
|
22
|
+
scn.scan(/"/)
|
23
|
+
value,terminator = slurp_dqstring()
|
24
|
+
text = value
|
25
|
+
after = scn.pos
|
26
|
+
while true
|
27
|
+
case terminator
|
28
|
+
when '"'
|
29
|
+
# simple case, there was no interpolation, return directly
|
30
|
+
return emit_completed([:STRING, text, scn.pos-before], before)
|
31
|
+
when '${'
|
32
|
+
count = ctx[:brace_count]
|
33
|
+
ctx[:brace_count] += 1
|
34
|
+
# The ${ terminator is counted towards the string part
|
35
|
+
enqueue_completed([:DQPRE, text, scn.pos-before], before)
|
36
|
+
# Lex expression tokens until a closing (balanced) brace count is reached
|
37
|
+
enqueue_until count
|
38
|
+
break
|
39
|
+
when '$'
|
40
|
+
if varname = scn.scan(PATTERN_VARIABLE)
|
41
|
+
# The $ is counted towards the variable
|
42
|
+
enqueue_completed([:DQPRE, text, after-before-1], before)
|
43
|
+
enqueue_completed([:VARIABLE, varname, scn.pos - after + 1], after -1)
|
44
|
+
break
|
45
|
+
else
|
46
|
+
# false $ variable start
|
47
|
+
text += terminator
|
48
|
+
value,terminator = slurp_dqstring()
|
49
|
+
text += value
|
50
|
+
after = scn.pos
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
interpolate_tail_dq
|
55
|
+
# return the first enqueued token and shift the queue
|
56
|
+
@token_queue.shift
|
57
|
+
end
|
58
|
+
|
59
|
+
def interpolate_tail_dq
|
60
|
+
scn = @scanner
|
61
|
+
ctx = @lexing_context
|
62
|
+
before = scn.pos
|
63
|
+
value,terminator = slurp_dqstring
|
64
|
+
text = value
|
65
|
+
after = scn.pos
|
66
|
+
while true
|
67
|
+
case terminator
|
68
|
+
when '"'
|
69
|
+
# simple case, there was no further interpolation, return directly
|
70
|
+
enqueue_completed([:DQPOST, text, scn.pos-before], before)
|
71
|
+
return
|
72
|
+
when '${'
|
73
|
+
count = ctx[:brace_count]
|
74
|
+
ctx[:brace_count] += 1
|
75
|
+
# The ${ terminator is counted towards the string part
|
76
|
+
enqueue_completed([:DQMID, text, scn.pos-before], before)
|
77
|
+
# Lex expression tokens until a closing (balanced) brace count is reached
|
78
|
+
enqueue_until count
|
79
|
+
break
|
80
|
+
when '$'
|
81
|
+
if varname = scn.scan(PATTERN_VARIABLE)
|
82
|
+
# The $ is counted towards the variable
|
83
|
+
enqueue_completed([:DQMID, text, after-before-1], before)
|
84
|
+
enqueue_completed([:VARIABLE, varname, scn.pos - after +1], after -1)
|
85
|
+
break
|
86
|
+
else
|
87
|
+
# false $ variable start
|
88
|
+
text += terminator
|
89
|
+
value,terminator = slurp_dqstring
|
90
|
+
text += value
|
91
|
+
after = scn.pos
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
95
|
+
interpolate_tail_dq
|
96
|
+
end
|
97
|
+
|
98
|
+
# This is the starting point for a un-quoted string with possible interpolation
|
99
|
+
# The logic is explicit (where the former implementation used parameters/strucures) given to a
|
100
|
+
# generic handler.
|
101
|
+
# (This is both easier to understand and faster).
|
102
|
+
#
|
103
|
+
def interpolate_uq
|
104
|
+
scn = @scanner
|
105
|
+
ctx = @lexing_context
|
106
|
+
before = scn.pos
|
107
|
+
value,terminator = slurp_uqstring()
|
108
|
+
text = value
|
109
|
+
after = scn.pos
|
110
|
+
while true
|
111
|
+
case terminator
|
112
|
+
when ''
|
113
|
+
# simple case, there was no interpolation, return directly
|
114
|
+
enqueue_completed([:STRING, text, scn.pos-before], before)
|
115
|
+
return
|
116
|
+
when '${'
|
117
|
+
count = ctx[:brace_count]
|
118
|
+
ctx[:brace_count] += 1
|
119
|
+
# The ${ terminator is counted towards the string part
|
120
|
+
enqueue_completed([:DQPRE, text, scn.pos-before], before)
|
121
|
+
# Lex expression tokens until a closing (balanced) brace count is reached
|
122
|
+
enqueue_until count
|
123
|
+
break
|
124
|
+
when '$'
|
125
|
+
if varname = scn.scan(PATTERN_VARIABLE)
|
126
|
+
# The $ is counted towards the variable
|
127
|
+
enqueue_completed([:DQPRE, text, after-before-1], before)
|
128
|
+
enqueue_completed([:VARIABLE, varname, scn.pos - after + 1], after -1)
|
129
|
+
break
|
130
|
+
else
|
131
|
+
# false $ variable start
|
132
|
+
text += terminator
|
133
|
+
value,terminator = slurp_uqstring()
|
134
|
+
text += value
|
135
|
+
after = scn.pos
|
136
|
+
end
|
137
|
+
end
|
138
|
+
end
|
139
|
+
interpolate_tail_uq
|
140
|
+
nil
|
141
|
+
end
|
142
|
+
|
143
|
+
def interpolate_tail_uq
|
144
|
+
scn = @scanner
|
145
|
+
ctx = @lexing_context
|
146
|
+
before = scn.pos
|
147
|
+
value,terminator = slurp_uqstring
|
148
|
+
text = value
|
149
|
+
after = scn.pos
|
150
|
+
while true
|
151
|
+
case terminator
|
152
|
+
when ''
|
153
|
+
# simple case, there was no further interpolation, return directly
|
154
|
+
enqueue_completed([:DQPOST, text, scn.pos-before], before)
|
155
|
+
return
|
156
|
+
when '${'
|
157
|
+
count = ctx[:brace_count]
|
158
|
+
ctx[:brace_count] += 1
|
159
|
+
# The ${ terminator is counted towards the string part
|
160
|
+
enqueue_completed([:DQMID, text, scn.pos-before], before)
|
161
|
+
# Lex expression tokens until a closing (balanced) brace count is reached
|
162
|
+
enqueue_until count
|
163
|
+
break
|
164
|
+
when '$'
|
165
|
+
if varname = scn.scan(PATTERN_VARIABLE)
|
166
|
+
# The $ is counted towards the variable
|
167
|
+
enqueue_completed([:DQMID, text, after-before-1], before)
|
168
|
+
enqueue_completed([:VARIABLE, varname, scn.pos - after +1], after -1)
|
169
|
+
break
|
170
|
+
else
|
171
|
+
# false $ variable start
|
172
|
+
text += terminator
|
173
|
+
value,terminator = slurp_uqstring
|
174
|
+
text += value
|
175
|
+
after = scn.pos
|
176
|
+
end
|
177
|
+
end
|
178
|
+
end
|
179
|
+
interpolate_tail_uq
|
180
|
+
end
|
181
|
+
|
182
|
+
# Enqueues lexed tokens until either end of input, or the given brace_count is reached
|
183
|
+
#
|
184
|
+
def enqueue_until brace_count
|
185
|
+
scn = @scanner
|
186
|
+
ctx = @lexing_context
|
187
|
+
queue = @token_queue
|
188
|
+
|
189
|
+
scn.skip(self.class::PATTERN_WS)
|
190
|
+
queue_size = queue.size
|
191
|
+
until scn.eos? do
|
192
|
+
if token = lex_token
|
193
|
+
token_name = token[0]
|
194
|
+
ctx[:after] = token_name
|
195
|
+
if token_name == :RBRACE && ctx[:brace_count] == brace_count
|
196
|
+
qlength = queue.size - queue_size
|
197
|
+
if qlength == 1
|
198
|
+
# Single token is subject to replacement
|
199
|
+
queue[-1] = transform_to_variable(queue[-1])
|
200
|
+
elsif qlength > 1 && [:DOT, :LBRACK].include?(queue[queue_size + 1][0])
|
201
|
+
# A first word, number of name token followed by '[' or '.' is subject to replacement
|
202
|
+
# But not for other operators such as ?, +, - etc. where user must use a $ before the name
|
203
|
+
# to get a variable
|
204
|
+
queue[queue_size] = transform_to_variable(queue[queue_size])
|
205
|
+
end
|
206
|
+
return
|
207
|
+
end
|
208
|
+
queue << token
|
209
|
+
else
|
210
|
+
scn.skip(self.class::PATTERN_WS)
|
211
|
+
end
|
212
|
+
end
|
213
|
+
end
|
214
|
+
|
215
|
+
def transform_to_variable(token)
|
216
|
+
token_name = token[0]
|
217
|
+
if [:NUMBER, :NAME, :WORD].include?(token_name) || self.class::KEYWORD_NAMES[token_name]
|
218
|
+
t = token[1]
|
219
|
+
ta = t.token_array
|
220
|
+
[:VARIABLE, self.class::TokenValue.new([:VARIABLE, ta[1], ta[2]], t.offset, t.locator)]
|
221
|
+
else
|
222
|
+
token
|
223
|
+
end
|
224
|
+
end
|
225
|
+
|
226
|
+
# Interpolates unquoted string and transfers the result to the given lexer
|
227
|
+
# (This is used when a second lexer instance is used to lex a substring)
|
228
|
+
#
|
229
|
+
def interpolate_uq_to(lexer)
|
230
|
+
interpolate_uq
|
231
|
+
queue = @token_queue
|
232
|
+
until queue.empty? do
|
233
|
+
lexer.enqueue(queue.shift)
|
234
|
+
end
|
235
|
+
end
|
236
|
+
|
237
|
+
end
|
@@ -0,0 +1,768 @@
|
|
1
|
+
# The Lexer is responsbile for turning source text into tokens.
|
2
|
+
# This version is a performance enhanced lexer (in comparison to the 3.x and earlier "future parser" lexer.
|
3
|
+
#
|
4
|
+
# Old returns tokens [:KEY, value, { locator = }
|
5
|
+
# Could return [[token], locator]
|
6
|
+
# or Token.new([token], locator) with the same API x[0] = token_symbol, x[1] = self, x[:key] = (:value, :file, :line, :pos) etc
|
7
|
+
|
8
|
+
require 'strscan'
|
9
|
+
require 'puppet/pops/parser/lexer_support'
|
10
|
+
require 'puppet/pops/parser/heredoc_support'
|
11
|
+
require 'puppet/pops/parser/interpolation_support'
|
12
|
+
require 'puppet/pops/parser/epp_support'
|
13
|
+
require 'puppet/pops/parser/slurp_support'
|
14
|
+
|
15
|
+
module Puppet::Pops
|
16
|
+
module Parser
|
17
|
+
class Lexer2
|
18
|
+
include LexerSupport
|
19
|
+
include HeredocSupport
|
20
|
+
include InterpolationSupport
|
21
|
+
include SlurpSupport
|
22
|
+
include EppSupport
|
23
|
+
|
24
|
+
# ALl tokens have three slots, the token name (a Symbol), the token text (String), and a token text length.
|
25
|
+
# All operator and punctuation tokens reuse singleton arrays Tokens that require unique values create
|
26
|
+
# a unique array per token.
|
27
|
+
#
|
28
|
+
# PEFORMANCE NOTES:
|
29
|
+
# This construct reduces the amount of object that needs to be created for operators and punctuation.
|
30
|
+
# The length is pre-calculated for all singleton tokens. The length is used both to signal the length of
|
31
|
+
# the token, and to advance the scanner position (without having to advance it with a scan(regexp)).
|
32
|
+
#
|
33
|
+
TOKEN_LBRACK = [:LBRACK, '['.freeze, 1].freeze
|
34
|
+
TOKEN_LISTSTART = [:LISTSTART, '['.freeze, 1].freeze
|
35
|
+
TOKEN_RBRACK = [:RBRACK, ']'.freeze, 1].freeze
|
36
|
+
TOKEN_LBRACE = [:LBRACE, '{'.freeze, 1].freeze
|
37
|
+
TOKEN_RBRACE = [:RBRACE, '}'.freeze, 1].freeze
|
38
|
+
TOKEN_SELBRACE = [:SELBRACE, '{'.freeze, 1].freeze
|
39
|
+
TOKEN_LPAREN = [:LPAREN, '('.freeze, 1].freeze
|
40
|
+
TOKEN_RPAREN = [:RPAREN, ')'.freeze, 1].freeze
|
41
|
+
|
42
|
+
TOKEN_EQUALS = [:EQUALS, '='.freeze, 1].freeze
|
43
|
+
TOKEN_APPENDS = [:APPENDS, '+='.freeze, 2].freeze
|
44
|
+
TOKEN_DELETES = [:DELETES, '-='.freeze, 2].freeze
|
45
|
+
|
46
|
+
TOKEN_ISEQUAL = [:ISEQUAL, '=='.freeze, 2].freeze
|
47
|
+
TOKEN_NOTEQUAL = [:NOTEQUAL, '!='.freeze, 2].freeze
|
48
|
+
TOKEN_MATCH = [:MATCH, '=~'.freeze, 2].freeze
|
49
|
+
TOKEN_NOMATCH = [:NOMATCH, '!~'.freeze, 2].freeze
|
50
|
+
TOKEN_GREATEREQUAL = [:GREATEREQUAL, '>='.freeze, 2].freeze
|
51
|
+
TOKEN_GREATERTHAN = [:GREATERTHAN, '>'.freeze, 1].freeze
|
52
|
+
TOKEN_LESSEQUAL = [:LESSEQUAL, '<='.freeze, 2].freeze
|
53
|
+
TOKEN_LESSTHAN = [:LESSTHAN, '<'.freeze, 1].freeze
|
54
|
+
|
55
|
+
TOKEN_FARROW = [:FARROW, '=>'.freeze, 2].freeze
|
56
|
+
TOKEN_PARROW = [:PARROW, '+>'.freeze, 2].freeze
|
57
|
+
|
58
|
+
TOKEN_LSHIFT = [:LSHIFT, '<<'.freeze, 2].freeze
|
59
|
+
TOKEN_LLCOLLECT = [:LLCOLLECT, '<<|'.freeze, 3].freeze
|
60
|
+
TOKEN_LCOLLECT = [:LCOLLECT, '<|'.freeze, 2].freeze
|
61
|
+
|
62
|
+
TOKEN_RSHIFT = [:RSHIFT, '>>'.freeze, 2].freeze
|
63
|
+
TOKEN_RRCOLLECT = [:RRCOLLECT, '|>>'.freeze, 3].freeze
|
64
|
+
TOKEN_RCOLLECT = [:RCOLLECT, '|>'.freeze, 2].freeze
|
65
|
+
|
66
|
+
TOKEN_PLUS = [:PLUS, '+'.freeze, 1].freeze
|
67
|
+
TOKEN_MINUS = [:MINUS, '-'.freeze, 1].freeze
|
68
|
+
TOKEN_DIV = [:DIV, '/'.freeze, 1].freeze
|
69
|
+
TOKEN_TIMES = [:TIMES, '*'.freeze, 1].freeze
|
70
|
+
TOKEN_MODULO = [:MODULO, '%'.freeze, 1].freeze
|
71
|
+
|
72
|
+
TOKEN_NOT = [:NOT, '!'.freeze, 1].freeze
|
73
|
+
TOKEN_DOT = [:DOT, '.'.freeze, 1].freeze
|
74
|
+
TOKEN_PIPE = [:PIPE, '|'.freeze, 1].freeze
|
75
|
+
TOKEN_AT = [:AT , '@'.freeze, 1].freeze
|
76
|
+
TOKEN_ATAT = [:ATAT , '@@'.freeze, 2].freeze
|
77
|
+
TOKEN_COLON = [:COLON, ':'.freeze, 1].freeze
|
78
|
+
TOKEN_COMMA = [:COMMA, ','.freeze, 1].freeze
|
79
|
+
TOKEN_SEMIC = [:SEMIC, ';'.freeze, 1].freeze
|
80
|
+
TOKEN_QMARK = [:QMARK, '?'.freeze, 1].freeze
|
81
|
+
TOKEN_TILDE = [:TILDE, '~'.freeze, 1].freeze # lexed but not an operator in Puppet
|
82
|
+
|
83
|
+
TOKEN_REGEXP = [:REGEXP, nil, 0].freeze
|
84
|
+
|
85
|
+
TOKEN_IN_EDGE = [:IN_EDGE, '->'.freeze, 2].freeze
|
86
|
+
TOKEN_IN_EDGE_SUB = [:IN_EDGE_SUB, '~>'.freeze, 2].freeze
|
87
|
+
TOKEN_OUT_EDGE = [:OUT_EDGE, '<-'.freeze, 2].freeze
|
88
|
+
TOKEN_OUT_EDGE_SUB = [:OUT_EDGE_SUB, '<~'.freeze, 2].freeze
|
89
|
+
|
90
|
+
# Tokens that are always unique to what has been lexed
|
91
|
+
TOKEN_STRING = [:STRING, nil, 0].freeze
|
92
|
+
TOKEN_WORD = [:WORD, nil, 0].freeze
|
93
|
+
TOKEN_DQPRE = [:DQPRE, nil, 0].freeze
|
94
|
+
TOKEN_DQMID = [:DQPRE, nil, 0].freeze
|
95
|
+
TOKEN_DQPOS = [:DQPRE, nil, 0].freeze
|
96
|
+
TOKEN_NUMBER = [:NUMBER, nil, 0].freeze
|
97
|
+
TOKEN_VARIABLE = [:VARIABLE, nil, 1].freeze
|
98
|
+
TOKEN_VARIABLE_EMPTY = [:VARIABLE, ''.freeze, 1].freeze
|
99
|
+
|
100
|
+
# HEREDOC has syntax as an argument.
|
101
|
+
TOKEN_HEREDOC = [:HEREDOC, nil, 0].freeze
|
102
|
+
|
103
|
+
# EPP_START is currently a marker token, may later get syntax
|
104
|
+
TOKEN_EPPSTART = [:EPP_START, nil, 0].freeze
|
105
|
+
TOKEN_EPPEND = [:EPP_END, '%>', 2].freeze
|
106
|
+
TOKEN_EPPEND_TRIM = [:EPP_END_TRIM, '-%>', 3].freeze
|
107
|
+
|
108
|
+
# This is used for unrecognized tokens, will always be a single character. This particular instance
|
109
|
+
# is not used, but is kept here for documentation purposes.
|
110
|
+
TOKEN_OTHER = [:OTHER, nil, 0]
|
111
|
+
|
112
|
+
# Keywords are all singleton tokens with pre calculated lengths.
|
113
|
+
# Booleans are pre-calculated (rather than evaluating the strings "false" "true" repeatedly.
|
114
|
+
#
|
115
|
+
KEYWORDS = {
|
116
|
+
'case' => [:CASE, 'case', 4],
|
117
|
+
'class' => [:CLASS, 'class', 5],
|
118
|
+
'default' => [:DEFAULT, 'default', 7],
|
119
|
+
'define' => [:DEFINE, 'define', 6],
|
120
|
+
'if' => [:IF, 'if', 2],
|
121
|
+
'elsif' => [:ELSIF, 'elsif', 5],
|
122
|
+
'else' => [:ELSE, 'else', 4],
|
123
|
+
'inherits' => [:INHERITS, 'inherits', 8],
|
124
|
+
'node' => [:NODE, 'node', 4],
|
125
|
+
'and' => [:AND, 'and', 3],
|
126
|
+
'or' => [:OR, 'or', 2],
|
127
|
+
'undef' => [:UNDEF, 'undef', 5],
|
128
|
+
'false' => [:BOOLEAN, false, 5],
|
129
|
+
'true' => [:BOOLEAN, true, 4],
|
130
|
+
'in' => [:IN, 'in', 2],
|
131
|
+
'unless' => [:UNLESS, 'unless', 6],
|
132
|
+
'function' => [:FUNCTION, 'function', 8],
|
133
|
+
'type' => [:TYPE, 'type', 4],
|
134
|
+
'attr' => [:ATTR, 'attr', 4],
|
135
|
+
'private' => [:PRIVATE, 'private', 7],
|
136
|
+
}
|
137
|
+
|
138
|
+
KEYWORDS.each {|k,v| v[1].freeze; v.freeze }
|
139
|
+
KEYWORDS.freeze
|
140
|
+
|
141
|
+
# We maintain two different tables of tokens for the constructs
|
142
|
+
# introduced by application management. Which ones we use is decided in
|
143
|
+
# +initvars+; by selecting one or the other variant, we select whether we
|
144
|
+
# hit the appmgmt-specific code paths
|
145
|
+
APP_MANAGEMENT_TOKENS = {
|
146
|
+
:with_appm => {
|
147
|
+
'application' => [:APPLICATION, 'application', 11],
|
148
|
+
'consumes' => [:CONSUMES, 'consumes', 8],
|
149
|
+
'produces' => [:PRODUCES, 'produces', 8],
|
150
|
+
'site' => [:SITE, 'site', 4]
|
151
|
+
},
|
152
|
+
:without_appm => {
|
153
|
+
'application' => [:APPLICATION_R, 'application', 11],
|
154
|
+
'consumes' => [:CONSUMES_R, 'consumes', 8],
|
155
|
+
'produces' => [:PRODUCES_R, 'produces', 8],
|
156
|
+
'site' => [:SITE_R, 'site', 4]
|
157
|
+
}
|
158
|
+
}
|
159
|
+
|
160
|
+
APP_MANAGEMENT_TOKENS.each do |_, variant|
|
161
|
+
variant.each { |_,v| v[1].freeze; v.freeze }
|
162
|
+
variant.freeze
|
163
|
+
end
|
164
|
+
APP_MANAGEMENT_TOKENS.freeze
|
165
|
+
|
166
|
+
# Reverse lookup of keyword name to string
|
167
|
+
KEYWORD_NAMES = {}
|
168
|
+
KEYWORDS.each {|k, v| KEYWORD_NAMES[v[0]] = k }
|
169
|
+
APP_MANAGEMENT_TOKENS.each do |_, variant|
|
170
|
+
variant.each { |k,v| KEYWORD_NAMES[v[0]] = k }
|
171
|
+
end
|
172
|
+
KEYWORD_NAMES.freeze
|
173
|
+
|
174
|
+
PATTERN_WS = %r{[[:blank:]\r]+}
|
175
|
+
PATTERN_NON_WS = %r{\w+\b?}
|
176
|
+
|
177
|
+
# The single line comment includes the line ending.
|
178
|
+
PATTERN_COMMENT = %r{#.*\r?}
|
179
|
+
PATTERN_MLCOMMENT = %r{/\*(.*?)\*/}m
|
180
|
+
|
181
|
+
PATTERN_REGEX = %r{/[^/\n]*/}
|
182
|
+
PATTERN_REGEX_END = %r{/}
|
183
|
+
PATTERN_REGEX_A = %r{\A/} # for replacement to ""
|
184
|
+
PATTERN_REGEX_Z = %r{/\Z} # for replacement to ""
|
185
|
+
PATTERN_REGEX_ESC = %r{\\/} # for replacement to "/"
|
186
|
+
|
187
|
+
# The 3x patterns:
|
188
|
+
# PATTERN_CLASSREF = %r{((::){0,1}[A-Z][-\w]*)+}
|
189
|
+
# PATTERN_NAME = %r{((::)?[a-z0-9][-\w]*)(::[a-z0-9][-\w]*)*}
|
190
|
+
|
191
|
+
# The NAME and CLASSREF in 4x are strict. Each segment must start with
|
192
|
+
# a letter a-z and may not contain dashes (\w includes letters, digits and _).
|
193
|
+
#
|
194
|
+
PATTERN_CLASSREF = %r{((::){0,1}[A-Z][\w]*)+}
|
195
|
+
PATTERN_NAME = %r{^((::)?[a-z][\w]*)(::[a-z][\w]*)*$}
|
196
|
+
|
197
|
+
PATTERN_BARE_WORD = %r{((?:::){0,1}(?:[a-z_](?:[\w-]*[\w])?))+}
|
198
|
+
|
199
|
+
PATTERN_DOLLAR_VAR = %r{\$(::)?(\w+::)*\w+}
|
200
|
+
PATTERN_NUMBER = %r{\b(?:0[xX][0-9A-Fa-f]+|0?\d+(?:\.\d+)?(?:[eE]-?\d+)?)\b}
|
201
|
+
|
202
|
+
# PERFORMANCE NOTE:
|
203
|
+
# Comparison against a frozen string is faster (than unfrozen).
|
204
|
+
#
|
205
|
+
STRING_BSLASH_BSLASH = '\\'.freeze
|
206
|
+
|
207
|
+
attr_reader :locator
|
208
|
+
|
209
|
+
def initialize()
|
210
|
+
@selector = {
|
211
|
+
'.' => lambda { emit(TOKEN_DOT, @scanner.pos) },
|
212
|
+
',' => lambda { emit(TOKEN_COMMA, @scanner.pos) },
|
213
|
+
'[' => lambda do
|
214
|
+
before = @scanner.pos
|
215
|
+
if (before == 0 || @scanner.string[locator.char_offset(before)-1,1] =~ /[[:blank:]\r\n]+/)
|
216
|
+
emit(TOKEN_LISTSTART, before)
|
217
|
+
else
|
218
|
+
emit(TOKEN_LBRACK, before)
|
219
|
+
end
|
220
|
+
end,
|
221
|
+
']' => lambda { emit(TOKEN_RBRACK, @scanner.pos) },
|
222
|
+
'(' => lambda { emit(TOKEN_LPAREN, @scanner.pos) },
|
223
|
+
')' => lambda { emit(TOKEN_RPAREN, @scanner.pos) },
|
224
|
+
';' => lambda { emit(TOKEN_SEMIC, @scanner.pos) },
|
225
|
+
'?' => lambda { emit(TOKEN_QMARK, @scanner.pos) },
|
226
|
+
'*' => lambda { emit(TOKEN_TIMES, @scanner.pos) },
|
227
|
+
'%' => lambda do
|
228
|
+
scn = @scanner
|
229
|
+
before = scn.pos
|
230
|
+
la = scn.peek(2)
|
231
|
+
if la[1] == '>' && @lexing_context[:epp_mode]
|
232
|
+
scn.pos += 2
|
233
|
+
if @lexing_context[:epp_mode] == :expr
|
234
|
+
enqueue_completed(TOKEN_EPPEND, before)
|
235
|
+
end
|
236
|
+
@lexing_context[:epp_mode] = :text
|
237
|
+
interpolate_epp
|
238
|
+
else
|
239
|
+
emit(TOKEN_MODULO, before)
|
240
|
+
end
|
241
|
+
end,
|
242
|
+
'{' => lambda do
|
243
|
+
# The lexer needs to help the parser since the technology used cannot deal with
|
244
|
+
# lookahead of same token with different precedence. This is solved by making left brace
|
245
|
+
# after ? into a separate token.
|
246
|
+
#
|
247
|
+
@lexing_context[:brace_count] += 1
|
248
|
+
emit(if @lexing_context[:after] == :QMARK
|
249
|
+
TOKEN_SELBRACE
|
250
|
+
else
|
251
|
+
TOKEN_LBRACE
|
252
|
+
end, @scanner.pos)
|
253
|
+
end,
|
254
|
+
'}' => lambda do
|
255
|
+
@lexing_context[:brace_count] -= 1
|
256
|
+
emit(TOKEN_RBRACE, @scanner.pos)
|
257
|
+
end,
|
258
|
+
|
259
|
+
|
260
|
+
# TOKENS @, @@, @(
|
261
|
+
'@' => lambda do
|
262
|
+
scn = @scanner
|
263
|
+
la = scn.peek(2)
|
264
|
+
if la[1] == '@'
|
265
|
+
emit(TOKEN_ATAT, scn.pos) # TODO; Check if this is good for the grammar
|
266
|
+
elsif la[1] == '('
|
267
|
+
heredoc
|
268
|
+
else
|
269
|
+
emit(TOKEN_AT, scn.pos)
|
270
|
+
end
|
271
|
+
end,
|
272
|
+
|
273
|
+
# TOKENS |, |>, |>>
|
274
|
+
'|' => lambda do
|
275
|
+
scn = @scanner
|
276
|
+
la = scn.peek(3)
|
277
|
+
emit(la[1] == '>' ? (la[2] == '>' ? TOKEN_RRCOLLECT : TOKEN_RCOLLECT) : TOKEN_PIPE, scn.pos)
|
278
|
+
end,
|
279
|
+
|
280
|
+
# TOKENS =, =>, ==, =~
|
281
|
+
'=' => lambda do
|
282
|
+
scn = @scanner
|
283
|
+
la = scn.peek(2)
|
284
|
+
emit(case la[1]
|
285
|
+
when '='
|
286
|
+
TOKEN_ISEQUAL
|
287
|
+
when '>'
|
288
|
+
TOKEN_FARROW
|
289
|
+
when '~'
|
290
|
+
TOKEN_MATCH
|
291
|
+
else
|
292
|
+
TOKEN_EQUALS
|
293
|
+
end, scn.pos)
|
294
|
+
end,
|
295
|
+
|
296
|
+
# TOKENS '+', '+=', and '+>'
|
297
|
+
'+' => lambda do
|
298
|
+
scn = @scanner
|
299
|
+
la = scn.peek(2)
|
300
|
+
emit(case la[1]
|
301
|
+
when '='
|
302
|
+
TOKEN_APPENDS
|
303
|
+
when '>'
|
304
|
+
TOKEN_PARROW
|
305
|
+
else
|
306
|
+
TOKEN_PLUS
|
307
|
+
end, scn.pos)
|
308
|
+
end,
|
309
|
+
|
310
|
+
# TOKENS '-', '->', and epp '-%>' (end of interpolation with trim)
|
311
|
+
'-' => lambda do
|
312
|
+
scn = @scanner
|
313
|
+
la = scn.peek(3)
|
314
|
+
before = scn.pos
|
315
|
+
if @lexing_context[:epp_mode] && la[1] == '%' && la[2] == '>'
|
316
|
+
scn.pos += 3
|
317
|
+
if @lexing_context[:epp_mode] == :expr
|
318
|
+
enqueue_completed(TOKEN_EPPEND_TRIM, before)
|
319
|
+
end
|
320
|
+
interpolate_epp(:with_trim)
|
321
|
+
else
|
322
|
+
emit(case la[1]
|
323
|
+
when '>'
|
324
|
+
TOKEN_IN_EDGE
|
325
|
+
when '='
|
326
|
+
TOKEN_DELETES
|
327
|
+
else
|
328
|
+
TOKEN_MINUS
|
329
|
+
end, before)
|
330
|
+
end
|
331
|
+
end,
|
332
|
+
|
333
|
+
# TOKENS !, !=, !~
|
334
|
+
'!' => lambda do
|
335
|
+
scn = @scanner
|
336
|
+
la = scn.peek(2)
|
337
|
+
emit(case la[1]
|
338
|
+
when '='
|
339
|
+
TOKEN_NOTEQUAL
|
340
|
+
when '~'
|
341
|
+
TOKEN_NOMATCH
|
342
|
+
else
|
343
|
+
TOKEN_NOT
|
344
|
+
end, scn.pos)
|
345
|
+
end,
|
346
|
+
|
347
|
+
# TOKENS ~>, ~
|
348
|
+
'~' => lambda do
|
349
|
+
scn = @scanner
|
350
|
+
la = scn.peek(2)
|
351
|
+
emit(la[1] == '>' ? TOKEN_IN_EDGE_SUB : TOKEN_TILDE, scn.pos)
|
352
|
+
end,
|
353
|
+
|
354
|
+
'#' => lambda { @scanner.skip(PATTERN_COMMENT); nil },
|
355
|
+
|
356
|
+
# TOKENS '/', '/*' and '/ regexp /'
|
357
|
+
'/' => lambda do
|
358
|
+
scn = @scanner
|
359
|
+
la = scn.peek(2)
|
360
|
+
if la[1] == '*'
|
361
|
+
lex_error(Issues::UNCLOSED_MLCOMMENT) if scn.skip(PATTERN_MLCOMMENT).nil?
|
362
|
+
nil
|
363
|
+
else
|
364
|
+
before = scn.pos
|
365
|
+
# regexp position is a regexp, else a div
|
366
|
+
if regexp_acceptable? && value = scn.scan(PATTERN_REGEX)
|
367
|
+
# Ensure an escaped / was not matched
|
368
|
+
while value[-2..-2] == STRING_BSLASH_BSLASH # i.e. \\
|
369
|
+
value += scn.scan_until(PATTERN_REGEX_END)
|
370
|
+
end
|
371
|
+
regex = value.sub(PATTERN_REGEX_A, '').sub(PATTERN_REGEX_Z, '').gsub(PATTERN_REGEX_ESC, '/')
|
372
|
+
emit_completed([:REGEX, Regexp.new(regex), scn.pos-before], before)
|
373
|
+
else
|
374
|
+
emit(TOKEN_DIV, before)
|
375
|
+
end
|
376
|
+
end
|
377
|
+
end,
|
378
|
+
|
379
|
+
# TOKENS <, <=, <|, <<|, <<, <-, <~
|
380
|
+
'<' => lambda do
|
381
|
+
scn = @scanner
|
382
|
+
la = scn.peek(3)
|
383
|
+
emit(case la[1]
|
384
|
+
when '<'
|
385
|
+
if la[2] == '|'
|
386
|
+
TOKEN_LLCOLLECT
|
387
|
+
else
|
388
|
+
TOKEN_LSHIFT
|
389
|
+
end
|
390
|
+
when '='
|
391
|
+
TOKEN_LESSEQUAL
|
392
|
+
when '|'
|
393
|
+
TOKEN_LCOLLECT
|
394
|
+
when '-'
|
395
|
+
TOKEN_OUT_EDGE
|
396
|
+
when '~'
|
397
|
+
TOKEN_OUT_EDGE_SUB
|
398
|
+
else
|
399
|
+
TOKEN_LESSTHAN
|
400
|
+
end, scn.pos)
|
401
|
+
end,
|
402
|
+
|
403
|
+
# TOKENS >, >=, >>
|
404
|
+
'>' => lambda do
|
405
|
+
scn = @scanner
|
406
|
+
la = scn.peek(2)
|
407
|
+
emit(case la[1]
|
408
|
+
when '>'
|
409
|
+
TOKEN_RSHIFT
|
410
|
+
when '='
|
411
|
+
TOKEN_GREATEREQUAL
|
412
|
+
else
|
413
|
+
TOKEN_GREATERTHAN
|
414
|
+
end, scn.pos)
|
415
|
+
end,
|
416
|
+
|
417
|
+
# TOKENS :, ::CLASSREF, ::NAME
|
418
|
+
':' => lambda do
|
419
|
+
scn = @scanner
|
420
|
+
la = scn.peek(3)
|
421
|
+
before = scn.pos
|
422
|
+
if la[1] == ':'
|
423
|
+
# PERFORMANCE NOTE: This could potentially be speeded up by using a case/when listing all
|
424
|
+
# upper case letters. Alternatively, the 'A', and 'Z' comparisons may be faster if they are
|
425
|
+
# frozen.
|
426
|
+
#
|
427
|
+
la2 = la[2]
|
428
|
+
if la2 >= 'A' && la2 <= 'Z'
|
429
|
+
# CLASSREF or error
|
430
|
+
value = scn.scan(PATTERN_CLASSREF)
|
431
|
+
if value && scn.peek(2) != '::'
|
432
|
+
after = scn.pos
|
433
|
+
emit_completed([:CLASSREF, value.freeze, after-before], before)
|
434
|
+
else
|
435
|
+
# move to faulty position ('::<uc-letter>' was ok)
|
436
|
+
scn.pos = scn.pos + 3
|
437
|
+
lex_error(Issues::ILLEGAL_FULLY_QUALIFIED_CLASS_REFERENCE)
|
438
|
+
end
|
439
|
+
else
|
440
|
+
value = scn.scan(PATTERN_BARE_WORD)
|
441
|
+
if value
|
442
|
+
if value =~ PATTERN_NAME
|
443
|
+
emit_completed([:NAME, value.freeze, scn.pos - before], before)
|
444
|
+
else
|
445
|
+
emit_completed([:WORD, value.freeze, scn.pos - before], before)
|
446
|
+
end
|
447
|
+
else
|
448
|
+
# move to faulty position ('::' was ok)
|
449
|
+
scn.pos = scn.pos + 2
|
450
|
+
lex_error(Issues::ILLEGAL_FULLY_QUALIFIED_NAME)
|
451
|
+
end
|
452
|
+
end
|
453
|
+
else
|
454
|
+
emit(TOKEN_COLON, before)
|
455
|
+
end
|
456
|
+
end,
|
457
|
+
|
458
|
+
'$' => lambda do
|
459
|
+
scn = @scanner
|
460
|
+
before = scn.pos
|
461
|
+
if value = scn.scan(PATTERN_DOLLAR_VAR)
|
462
|
+
emit_completed([:VARIABLE, value[1..-1].freeze, scn.pos - before], before)
|
463
|
+
else
|
464
|
+
# consume the $ and let higher layer complain about the error instead of getting a syntax error
|
465
|
+
emit(TOKEN_VARIABLE_EMPTY, before)
|
466
|
+
end
|
467
|
+
end,
|
468
|
+
|
469
|
+
'"' => lambda do
|
470
|
+
# Recursive string interpolation, 'interpolate' either returns a STRING token, or
|
471
|
+
# a DQPRE with the rest of the string's tokens placed in the @token_queue
|
472
|
+
interpolate_dq
|
473
|
+
end,
|
474
|
+
|
475
|
+
"'" => lambda do
|
476
|
+
scn = @scanner
|
477
|
+
before = scn.pos
|
478
|
+
emit_completed([:STRING, slurp_sqstring.freeze, scn.pos - before], before)
|
479
|
+
end,
|
480
|
+
|
481
|
+
"\n" => lambda do
|
482
|
+
# If heredoc_cont is in effect there are heredoc text lines to skip over
|
483
|
+
# otherwise just skip the newline.
|
484
|
+
#
|
485
|
+
ctx = @lexing_context
|
486
|
+
if ctx[:newline_jump]
|
487
|
+
@scanner.pos = ctx[:newline_jump]
|
488
|
+
ctx[:newline_jump] = nil
|
489
|
+
else
|
490
|
+
@scanner.pos += 1
|
491
|
+
end
|
492
|
+
nil
|
493
|
+
end,
|
494
|
+
'' => lambda { nil } # when the peek(1) returns empty
|
495
|
+
}
|
496
|
+
|
497
|
+
[ ' ', "\t", "\r" ].each { |c| @selector[c] = lambda { @scanner.skip(PATTERN_WS); nil } }
|
498
|
+
|
499
|
+
[ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'].each do |c|
|
500
|
+
@selector[c] = lambda do
|
501
|
+
scn = @scanner
|
502
|
+
before = scn.pos
|
503
|
+
value = scn.scan(PATTERN_NUMBER)
|
504
|
+
if value
|
505
|
+
length = scn.pos - before
|
506
|
+
assert_numeric(value, before)
|
507
|
+
emit_completed([:NUMBER, value.freeze, length], before)
|
508
|
+
else
|
509
|
+
invalid_number = scn.scan_until(PATTERN_NON_WS)
|
510
|
+
if before > 1
|
511
|
+
after = scn.pos
|
512
|
+
scn.pos = before - 1
|
513
|
+
if scn.peek(1) == '.'
|
514
|
+
# preceded by a dot. Is this a bad decimal number then?
|
515
|
+
scn.pos = before - 2
|
516
|
+
while scn.peek(1) =~ /^\d$/
|
517
|
+
invalid_number = nil
|
518
|
+
before = scn.pos
|
519
|
+
break if before == 0
|
520
|
+
scn.pos = scn.pos - 1
|
521
|
+
end
|
522
|
+
end
|
523
|
+
scn.pos = before
|
524
|
+
invalid_number = scn.peek(after - before) unless invalid_number
|
525
|
+
end
|
526
|
+
length = scn.pos - before
|
527
|
+
assert_numeric(invalid_number, before)
|
528
|
+
scn.pos = before + 1
|
529
|
+
lex_error(Issues::ILLEGAL_NUMBER, {:value => invalid_number})
|
530
|
+
end
|
531
|
+
end
|
532
|
+
end
|
533
|
+
['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm',
|
534
|
+
'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '_'].each do |c|
|
535
|
+
@selector[c] = lambda do
|
536
|
+
|
537
|
+
scn = @scanner
|
538
|
+
before = scn.pos
|
539
|
+
value = scn.scan(PATTERN_BARE_WORD)
|
540
|
+
if value && value =~ PATTERN_NAME
|
541
|
+
emit_completed(KEYWORDS[value] || @appm_keywords[value] || [:NAME, value.freeze, scn.pos - before], before)
|
542
|
+
elsif value
|
543
|
+
emit_completed([:WORD, value.freeze, scn.pos - before], before)
|
544
|
+
else
|
545
|
+
# move to faulty position ([a-z_] was ok)
|
546
|
+
scn.pos = scn.pos + 1
|
547
|
+
fully_qualified = scn.match?(/::/)
|
548
|
+
if fully_qualified
|
549
|
+
lex_error(Issues::ILLEGAL_FULLY_QUALIFIED_NAME)
|
550
|
+
else
|
551
|
+
lex_error(Issues::ILLEGAL_NAME_OR_BARE_WORD)
|
552
|
+
end
|
553
|
+
end
|
554
|
+
end
|
555
|
+
end
|
556
|
+
|
557
|
+
['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M',
|
558
|
+
'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'].each do |c|
|
559
|
+
@selector[c] = lambda do
|
560
|
+
scn = @scanner
|
561
|
+
before = scn.pos
|
562
|
+
value = @scanner.scan(PATTERN_CLASSREF)
|
563
|
+
if value && @scanner.peek(2) != '::'
|
564
|
+
emit_completed([:CLASSREF, value.freeze, scn.pos - before], before)
|
565
|
+
else
|
566
|
+
# move to faulty position ([A-Z] was ok)
|
567
|
+
scn.pos = scn.pos + 1
|
568
|
+
lex_error(Issues::ILLEGAL_CLASS_REFERENCE)
|
569
|
+
end
|
570
|
+
end
|
571
|
+
end
|
572
|
+
|
573
|
+
@selector.default = lambda do
|
574
|
+
# In case of unicode spaces of various kinds that are captured by a regexp, but not by the
|
575
|
+
# simpler case expression above (not worth handling those special cases with better performance).
|
576
|
+
scn = @scanner
|
577
|
+
if scn.skip(PATTERN_WS)
|
578
|
+
nil
|
579
|
+
else
|
580
|
+
# "unrecognized char"
|
581
|
+
emit([:OTHER, scn.peek(0), 1], scn.pos)
|
582
|
+
end
|
583
|
+
end
|
584
|
+
@selector.each { |k,v| k.freeze }
|
585
|
+
@selector.freeze
|
586
|
+
end
|
587
|
+
|
588
|
+
# Clears the lexer state (it is not required to call this as it will be garbage collected
|
589
|
+
# and the next lex call (lex_string, lex_file) will reset the internal state.
|
590
|
+
#
|
591
|
+
def clear()
|
592
|
+
# not really needed, but if someone wants to ensure garbage is collected as early as possible
|
593
|
+
@scanner = nil
|
594
|
+
@locator = nil
|
595
|
+
@lexing_context = nil
|
596
|
+
end
|
597
|
+
|
598
|
+
# Convenience method, and for compatibility with older lexer. Use the lex_string instead which allows
|
599
|
+
# passing the path to use without first having to call file= (which reads the file if it exists).
|
600
|
+
# (Bad form to use overloading of assignment operator for something that is not really an assignment. Also,
|
601
|
+
# overloading of = does not allow passing more than one argument).
|
602
|
+
#
|
603
|
+
def string=(string)
|
604
|
+
lex_string(string, '')
|
605
|
+
end
|
606
|
+
|
607
|
+
def lex_string(string, path='')
|
608
|
+
initvars
|
609
|
+
assert_not_bom(string)
|
610
|
+
@scanner = StringScanner.new(string)
|
611
|
+
@locator = Locator.locator(string, path)
|
612
|
+
end
|
613
|
+
|
614
|
+
# Lexes an unquoted string.
|
615
|
+
# @param string [String] the string to lex
|
616
|
+
# @param locator [Locator] the locator to use (a default is used if nil is given)
|
617
|
+
# @param escapes [Array<String>] array of character strings representing the escape sequences to transform
|
618
|
+
# @param interpolate [Boolean] whether interpolation of expressions should be made or not.
|
619
|
+
#
|
620
|
+
def lex_unquoted_string(string, locator, escapes, interpolate)
|
621
|
+
initvars
|
622
|
+
assert_not_bom(string)
|
623
|
+
@scanner = StringScanner.new(string)
|
624
|
+
@locator = locator || Locator.locator(string, '')
|
625
|
+
@lexing_context[:escapes] = escapes || UQ_ESCAPES
|
626
|
+
@lexing_context[:uq_slurp_pattern] = interpolate ? (escapes.include?('$') ? SLURP_UQ_PATTERN : SLURP_UQNE_PATTERN) : SLURP_ALL_PATTERN
|
627
|
+
end
|
628
|
+
|
629
|
+
# Convenience method, and for compatibility with older lexer. Use the lex_file instead.
|
630
|
+
# (Bad form to use overloading of assignment operator for something that is not really an assignment).
|
631
|
+
#
|
632
|
+
def file=(file)
|
633
|
+
lex_file(file)
|
634
|
+
end
|
635
|
+
|
636
|
+
# TODO: This method should not be used, callers should get the locator since it is most likely required to
|
637
|
+
# compute line, position etc given offsets.
|
638
|
+
#
|
639
|
+
def file
|
640
|
+
@locator ? @locator.file : nil
|
641
|
+
end
|
642
|
+
|
643
|
+
# Initializes lexing of the content of the given file. An empty string is used if the file does not exist.
|
644
|
+
#
|
645
|
+
def lex_file(file)
|
646
|
+
initvars
|
647
|
+
contents = Puppet::FileSystem.exist?(file) ? Puppet::FileSystem.read(file, :encoding => 'utf-8') : ''
|
648
|
+
assert_not_bom(contents)
|
649
|
+
@scanner = StringScanner.new(contents.freeze)
|
650
|
+
@locator = Locator.locator(contents, file)
|
651
|
+
end
|
652
|
+
|
653
|
+
def initvars
|
654
|
+
@token_queue = []
|
655
|
+
# NOTE: additional keys are used; :escapes, :uq_slurp_pattern, :newline_jump, :epp_*
|
656
|
+
@lexing_context = {
|
657
|
+
:brace_count => 0,
|
658
|
+
:after => nil,
|
659
|
+
}
|
660
|
+
appm_mode = Puppet[:app_management] ? :with_appm : :without_appm
|
661
|
+
@appm_keywords = APP_MANAGEMENT_TOKENS[appm_mode]
|
662
|
+
end
|
663
|
+
|
664
|
+
# Scans all of the content and returns it in an array
|
665
|
+
# Note that the terminating [false, false] token is included in the result.
|
666
|
+
#
|
667
|
+
def fullscan
|
668
|
+
result = []
|
669
|
+
scan {|token| result.push(token) }
|
670
|
+
result
|
671
|
+
end
|
672
|
+
|
673
|
+
# A block must be passed to scan. It will be called with two arguments, a symbol for the token,
|
674
|
+
# and an instance of LexerSupport::TokenValue
|
675
|
+
# PERFORMANCE NOTE: The TokenValue is designed to reduce the amount of garbage / temporary data
|
676
|
+
# and to only convert the lexer's internal tokens on demand. It is slightly more costly to create an
|
677
|
+
# instance of a class defined in Ruby than an Array or Hash, but the gain is much bigger since transformation
|
678
|
+
# logic is avoided for many of its members (most are never used (e.g. line/pos information which is only of
|
679
|
+
# value in general for error messages, and for some expressions (which the lexer does not know about).
|
680
|
+
#
|
681
|
+
def scan
|
682
|
+
# PERFORMANCE note: it is faster to access local variables than instance variables.
|
683
|
+
# This makes a small but notable difference since instance member access is avoided for
|
684
|
+
# every token in the lexed content.
|
685
|
+
#
|
686
|
+
scn = @scanner
|
687
|
+
lex_error_without_pos(Issues::NO_INPUT_TO_LEXER) unless scn
|
688
|
+
|
689
|
+
ctx = @lexing_context
|
690
|
+
queue = @token_queue
|
691
|
+
selector = @selector
|
692
|
+
|
693
|
+
scn.skip(PATTERN_WS)
|
694
|
+
|
695
|
+
# This is the lexer's main loop
|
696
|
+
until queue.empty? && scn.eos? do
|
697
|
+
if token = queue.shift || selector[scn.peek(1)].call
|
698
|
+
ctx[:after] = token[0]
|
699
|
+
yield token
|
700
|
+
end
|
701
|
+
end
|
702
|
+
|
703
|
+
# Signals end of input
|
704
|
+
yield [false, false]
|
705
|
+
end
|
706
|
+
|
707
|
+
# This lexes one token at the current position of the scanner.
|
708
|
+
# PERFORMANCE NOTE: Any change to this logic should be performance measured.
|
709
|
+
#
|
710
|
+
def lex_token
|
711
|
+
@selector[@scanner.peek(1)].call
|
712
|
+
end
|
713
|
+
|
714
|
+
# Emits (produces) a token [:tokensymbol, TokenValue] and moves the scanner's position past the token
|
715
|
+
#
|
716
|
+
def emit(token, byte_offset)
|
717
|
+
@scanner.pos = byte_offset + token[2]
|
718
|
+
[token[0], TokenValue.new(token, byte_offset, @locator)]
|
719
|
+
end
|
720
|
+
|
721
|
+
# Emits the completed token on the form [:tokensymbol, TokenValue. This method does not alter
|
722
|
+
# the scanner's position.
|
723
|
+
#
|
724
|
+
def emit_completed(token, byte_offset)
|
725
|
+
[token[0], TokenValue.new(token, byte_offset, @locator)]
|
726
|
+
end
|
727
|
+
|
728
|
+
# Enqueues a completed token at the given offset
|
729
|
+
def enqueue_completed(token, byte_offset)
|
730
|
+
@token_queue << emit_completed(token, byte_offset)
|
731
|
+
end
|
732
|
+
|
733
|
+
# Allows subprocessors for heredoc etc to enqueue tokens that are tokenized by a different lexer instance
|
734
|
+
#
|
735
|
+
def enqueue(emitted_token)
|
736
|
+
@token_queue << emitted_token
|
737
|
+
end
|
738
|
+
|
739
|
+
# Answers after which tokens it is acceptable to lex a regular expression.
|
740
|
+
# PERFORMANCE NOTE:
|
741
|
+
# It may be beneficial to turn this into a hash with default value of true for missing entries.
|
742
|
+
# A case expression with literal values will however create a hash internally. Since a reference is
|
743
|
+
# always needed to the hash, this access is almost as costly as a method call.
|
744
|
+
#
|
745
|
+
def regexp_acceptable?
|
746
|
+
case @lexing_context[:after]
|
747
|
+
|
748
|
+
# Ends of (potential) R-value generating expressions
|
749
|
+
when :RPAREN, :RBRACK, :RRCOLLECT, :RCOLLECT
|
750
|
+
false
|
751
|
+
|
752
|
+
# End of (potential) R-value - but must be allowed because of case expressions
|
753
|
+
# Called out here to not be mistaken for a bug.
|
754
|
+
when :RBRACE
|
755
|
+
true
|
756
|
+
|
757
|
+
# Operands (that can be followed by DIV (even if illegal in grammar)
|
758
|
+
when :NAME, :CLASSREF, :NUMBER, :STRING, :BOOLEAN, :DQPRE, :DQMID, :DQPOST, :HEREDOC, :REGEX, :VARIABLE, :WORD
|
759
|
+
false
|
760
|
+
|
761
|
+
else
|
762
|
+
true
|
763
|
+
end
|
764
|
+
end
|
765
|
+
|
766
|
+
end
|
767
|
+
end
|
768
|
+
end
|