puppet 8.3.1-x64-mingw32 → 8.5.0-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +4 -1
- data/Gemfile.lock +89 -64
- data/README.md +4 -4
- data/Rakefile +0 -27
- data/examples/enc/regexp_nodes/regexp_nodes.rb +1 -1
- data/ext/project_data.yaml +4 -4
- data/ext/windows/service/daemon.rb +12 -13
- data/lib/hiera/puppet_function.rb +7 -6
- data/lib/hiera/scope.rb +6 -5
- data/lib/hiera_puppet.rb +1 -4
- data/lib/puppet/agent/disabler.rb +4 -3
- data/lib/puppet/agent/locker.rb +1 -2
- data/lib/puppet/agent.rb +5 -4
- data/lib/puppet/application/agent.rb +301 -298
- data/lib/puppet/application/apply.rb +118 -114
- data/lib/puppet/application/catalog.rb +1 -0
- data/lib/puppet/application/config.rb +1 -0
- data/lib/puppet/application/describe.rb +40 -42
- data/lib/puppet/application/device.rb +122 -122
- data/lib/puppet/application/doc.rb +51 -50
- data/lib/puppet/application/epp.rb +1 -0
- data/lib/puppet/application/face_base.rb +10 -10
- data/lib/puppet/application/facts.rb +1 -0
- data/lib/puppet/application/filebucket.rb +168 -166
- data/lib/puppet/application/generate.rb +2 -1
- data/lib/puppet/application/help.rb +1 -0
- data/lib/puppet/application/indirection_base.rb +1 -0
- data/lib/puppet/application/lookup.rb +171 -174
- data/lib/puppet/application/module.rb +1 -0
- data/lib/puppet/application/node.rb +1 -0
- data/lib/puppet/application/parser.rb +1 -0
- data/lib/puppet/application/plugin.rb +1 -0
- data/lib/puppet/application/report.rb +1 -0
- data/lib/puppet/application/resource.rb +95 -92
- data/lib/puppet/application/script.rb +73 -74
- data/lib/puppet/application/ssl.rb +89 -88
- data/lib/puppet/application.rb +16 -15
- data/lib/puppet/application_support.rb +2 -2
- data/lib/puppet/coercion.rb +3 -2
- data/lib/puppet/compilable_resource_type.rb +3 -2
- data/lib/puppet/concurrent/lock.rb +1 -3
- data/lib/puppet/concurrent/synchronized.rb +1 -2
- data/lib/puppet/concurrent/thread_local_singleton.rb +1 -0
- data/lib/puppet/concurrent.rb +1 -0
- data/lib/puppet/configurer/downloader.rb +1 -1
- data/lib/puppet/configurer/fact_handler.rb +5 -4
- data/lib/puppet/configurer/plugin_handler.rb +1 -0
- data/lib/puppet/configurer.rb +24 -19
- data/lib/puppet/confine/any.rb +2 -1
- data/lib/puppet/confine/boolean.rb +2 -1
- data/lib/puppet/confine/exists.rb +2 -1
- data/lib/puppet/confine/false.rb +2 -1
- data/lib/puppet/confine/feature.rb +2 -2
- data/lib/puppet/confine/true.rb +2 -1
- data/lib/puppet/confine/variable.rb +2 -1
- data/lib/puppet/confine.rb +2 -0
- data/lib/puppet/confine_collection.rb +4 -2
- data/lib/puppet/confiner.rb +1 -0
- data/lib/puppet/context/trusted_information.rb +5 -4
- data/lib/puppet/context.rb +1 -0
- data/lib/puppet/daemon.rb +10 -7
- data/lib/puppet/data_binding.rb +2 -1
- data/lib/puppet/datatypes/error.rb +2 -1
- data/lib/puppet/datatypes/impl/error.rb +1 -0
- data/lib/puppet/datatypes.rb +8 -3
- data/lib/puppet/defaults.rb +31 -30
- data/lib/puppet/environments.rb +10 -9
- data/lib/puppet/error.rb +15 -12
- data/lib/puppet/etc.rb +9 -5
- data/lib/puppet/external/dot.rb +28 -47
- data/lib/puppet/face/catalog/select.rb +3 -2
- data/lib/puppet/face/catalog.rb +3 -2
- data/lib/puppet/face/config.rb +19 -21
- data/lib/puppet/face/epp.rb +14 -14
- data/lib/puppet/face/facts.rb +5 -4
- data/lib/puppet/face/generate.rb +3 -1
- data/lib/puppet/face/help.rb +24 -27
- data/lib/puppet/face/module/changes.rb +2 -0
- data/lib/puppet/face/module/install.rb +6 -4
- data/lib/puppet/face/module/list.rb +14 -16
- data/lib/puppet/face/module/uninstall.rb +1 -0
- data/lib/puppet/face/module/upgrade.rb +4 -3
- data/lib/puppet/face/module.rb +1 -0
- data/lib/puppet/face/node/clean.rb +2 -1
- data/lib/puppet/face/node.rb +2 -1
- data/lib/puppet/face/parser.rb +8 -8
- data/lib/puppet/face/plugin.rb +2 -1
- data/lib/puppet/face/report.rb +2 -1
- data/lib/puppet/face/resource.rb +1 -0
- data/lib/puppet/face.rb +1 -0
- data/lib/puppet/feature/base.rb +4 -3
- data/lib/puppet/feature/bolt.rb +1 -0
- data/lib/puppet/feature/cfpropertylist.rb +1 -0
- data/lib/puppet/feature/eventlog.rb +1 -0
- data/lib/puppet/feature/hiera_eyaml.rb +1 -0
- data/lib/puppet/feature/hocon.rb +1 -0
- data/lib/puppet/feature/libuser.rb +4 -3
- data/lib/puppet/feature/msgpack.rb +1 -0
- data/lib/puppet/feature/pe_license.rb +2 -1
- data/lib/puppet/feature/pson.rb +1 -0
- data/lib/puppet/feature/selinux.rb +1 -0
- data/lib/puppet/feature/ssh.rb +1 -0
- data/lib/puppet/feature/telnet.rb +1 -0
- data/lib/puppet/feature/zlib.rb +1 -0
- data/lib/puppet/ffi/posix/constants.rb +2 -1
- data/lib/puppet/ffi/posix/functions.rb +1 -1
- data/lib/puppet/ffi/posix.rb +1 -0
- data/lib/puppet/ffi/windows/api_types.rb +1 -0
- data/lib/puppet/ffi/windows/constants.rb +78 -77
- data/lib/puppet/ffi/windows/functions.rb +73 -73
- data/lib/puppet/ffi/windows/structs.rb +3 -3
- data/lib/puppet/ffi/windows.rb +1 -0
- data/lib/puppet/file_bucket/dipper.rb +15 -7
- data/lib/puppet/file_bucket/file.rb +3 -2
- data/lib/puppet/file_bucket.rb +1 -0
- data/lib/puppet/file_serving/base.rb +13 -6
- data/lib/puppet/file_serving/configuration/parser.rb +3 -1
- data/lib/puppet/file_serving/configuration.rb +6 -4
- data/lib/puppet/file_serving/content.rb +1 -0
- data/lib/puppet/file_serving/fileset.rb +9 -6
- data/lib/puppet/file_serving/http_metadata.rb +2 -4
- data/lib/puppet/file_serving/metadata.rb +13 -15
- data/lib/puppet/file_serving/mount/file.rb +6 -3
- data/lib/puppet/file_serving/mount/locales.rb +2 -1
- data/lib/puppet/file_serving/mount/modules.rb +2 -0
- data/lib/puppet/file_serving/mount/pluginfacts.rb +2 -1
- data/lib/puppet/file_serving/mount/plugins.rb +2 -1
- data/lib/puppet/file_serving/mount/scripts.rb +2 -0
- data/lib/puppet/file_serving/mount/tasks.rb +2 -0
- data/lib/puppet/file_serving/mount.rb +2 -0
- data/lib/puppet/file_serving/terminus_helper.rb +1 -0
- data/lib/puppet/file_serving/terminus_selector.rb +2 -1
- data/lib/puppet/file_serving.rb +1 -0
- data/lib/puppet/file_system/file_impl.rb +6 -6
- data/lib/puppet/file_system/jruby.rb +1 -0
- data/lib/puppet/file_system/memory_file.rb +2 -0
- data/lib/puppet/file_system/memory_impl.rb +3 -0
- data/lib/puppet/file_system/path_pattern.rb +1 -0
- data/lib/puppet/file_system/posix.rb +5 -1
- data/lib/puppet/file_system/uniquefile.rb +15 -15
- data/lib/puppet/file_system/windows.rb +11 -9
- data/lib/puppet/file_system.rb +4 -3
- data/lib/puppet/forge/cache.rb +2 -2
- data/lib/puppet/forge/errors.rb +1 -3
- data/lib/puppet/forge/repository.rb +3 -1
- data/lib/puppet/forge.rb +6 -3
- data/lib/puppet/functions/abs.rb +6 -4
- data/lib/puppet/functions/alert.rb +1 -0
- data/lib/puppet/functions/all.rb +2 -1
- data/lib/puppet/functions/annotate.rb +1 -0
- data/lib/puppet/functions/any.rb +2 -1
- data/lib/puppet/functions/assert_type.rb +4 -2
- data/lib/puppet/functions/binary_file.rb +3 -1
- data/lib/puppet/functions/break.rb +3 -2
- data/lib/puppet/functions/call.rb +1 -1
- data/lib/puppet/functions/camelcase.rb +3 -3
- data/lib/puppet/functions/capitalize.rb +3 -3
- data/lib/puppet/functions/ceiling.rb +2 -2
- data/lib/puppet/functions/chomp.rb +2 -2
- data/lib/puppet/functions/chop.rb +2 -2
- data/lib/puppet/functions/compare.rb +2 -1
- data/lib/puppet/functions/contain.rb +6 -4
- data/lib/puppet/functions/convert_to.rb +1 -0
- data/lib/puppet/functions/crit.rb +1 -0
- data/lib/puppet/functions/debug.rb +1 -0
- data/lib/puppet/functions/defined.rb +7 -4
- data/lib/puppet/functions/dig.rb +11 -9
- data/lib/puppet/functions/downcase.rb +3 -2
- data/lib/puppet/functions/each.rb +1 -0
- data/lib/puppet/functions/emerg.rb +1 -0
- data/lib/puppet/functions/empty.rb +1 -0
- data/lib/puppet/functions/epp.rb +1 -1
- data/lib/puppet/functions/err.rb +1 -0
- data/lib/puppet/functions/eyaml_lookup_key.rb +5 -3
- data/lib/puppet/functions/filter.rb +7 -7
- data/lib/puppet/functions/find_file.rb +1 -0
- data/lib/puppet/functions/find_template.rb +1 -0
- data/lib/puppet/functions/flatten.rb +1 -0
- data/lib/puppet/functions/floor.rb +2 -2
- data/lib/puppet/functions/get.rb +2 -1
- data/lib/puppet/functions/getvar.rb +6 -5
- data/lib/puppet/functions/group_by.rb +2 -2
- data/lib/puppet/functions/hiera.rb +1 -0
- data/lib/puppet/functions/hiera_array.rb +1 -0
- data/lib/puppet/functions/hiera_hash.rb +1 -0
- data/lib/puppet/functions/hiera_include.rb +2 -0
- data/lib/puppet/functions/hocon_data.rb +1 -0
- data/lib/puppet/functions/import.rb +1 -0
- data/lib/puppet/functions/include.rb +4 -2
- data/lib/puppet/functions/index.rb +3 -3
- data/lib/puppet/functions/info.rb +1 -0
- data/lib/puppet/functions/inline_epp.rb +1 -1
- data/lib/puppet/functions/join.rb +3 -2
- data/lib/puppet/functions/json_data.rb +1 -0
- data/lib/puppet/functions/keys.rb +1 -0
- data/lib/puppet/functions/length.rb +1 -1
- data/lib/puppet/functions/lest.rb +1 -0
- data/lib/puppet/functions/lookup.rb +10 -11
- data/lib/puppet/functions/lstrip.rb +2 -2
- data/lib/puppet/functions/map.rb +3 -2
- data/lib/puppet/functions/match.rb +7 -5
- data/lib/puppet/functions/max.rb +6 -6
- data/lib/puppet/functions/min.rb +6 -6
- data/lib/puppet/functions/module_directory.rb +1 -0
- data/lib/puppet/functions/new.rb +2 -1
- data/lib/puppet/functions/next.rb +2 -1
- data/lib/puppet/functions/notice.rb +1 -0
- data/lib/puppet/functions/reduce.rb +1 -1
- data/lib/puppet/functions/regsubst.rb +1 -0
- data/lib/puppet/functions/require.rb +5 -2
- data/lib/puppet/functions/return.rb +1 -0
- data/lib/puppet/functions/reverse_each.rb +1 -0
- data/lib/puppet/functions/round.rb +1 -0
- data/lib/puppet/functions/rstrip.rb +2 -2
- data/lib/puppet/functions/scanf.rb +1 -0
- data/lib/puppet/functions/size.rb +1 -2
- data/lib/puppet/functions/slice.rb +3 -1
- data/lib/puppet/functions/sort.rb +1 -0
- data/lib/puppet/functions/split.rb +1 -0
- data/lib/puppet/functions/step.rb +1 -0
- data/lib/puppet/functions/strftime.rb +4 -3
- data/lib/puppet/functions/strip.rb +2 -2
- data/lib/puppet/functions/then.rb +2 -0
- data/lib/puppet/functions/tree_each.rb +3 -3
- data/lib/puppet/functions/type.rb +1 -0
- data/lib/puppet/functions/unique.rb +9 -8
- data/lib/puppet/functions/unwrap.rb +1 -0
- data/lib/puppet/functions/upcase.rb +3 -2
- data/lib/puppet/functions/values.rb +1 -0
- data/lib/puppet/functions/versioncmp.rb +2 -2
- data/lib/puppet/functions/warning.rb +1 -0
- data/lib/puppet/functions/with.rb +1 -0
- data/lib/puppet/functions/yaml_data.rb +1 -0
- data/lib/puppet/functions.rb +26 -26
- data/lib/puppet/generate/models/type/property.rb +3 -1
- data/lib/puppet/generate/models/type/type.rb +4 -2
- data/lib/puppet/generate/type.rb +9 -4
- data/lib/puppet/gettext/config.rb +6 -0
- data/lib/puppet/gettext/module_translations.rb +1 -1
- data/lib/puppet/gettext/stubs.rb +1 -0
- data/lib/puppet/graph/key.rb +1 -0
- data/lib/puppet/graph/prioritizer.rb +1 -0
- data/lib/puppet/graph/rb_tree_map.rb +17 -7
- data/lib/puppet/graph/relationship_graph.rb +18 -17
- data/lib/puppet/graph/sequential_prioritizer.rb +1 -0
- data/lib/puppet/graph/simple_graph.rb +56 -49
- data/lib/puppet/graph.rb +1 -0
- data/lib/puppet/http/client.rb +8 -5
- data/lib/puppet/http/dns.rb +7 -8
- data/lib/puppet/http/errors.rb +3 -2
- data/lib/puppet/http/external_client.rb +2 -2
- data/lib/puppet/http/factory.rb +2 -1
- data/lib/puppet/http/pool.rb +2 -1
- data/lib/puppet/http/pool_entry.rb +1 -0
- data/lib/puppet/http/proxy.rb +5 -4
- data/lib/puppet/http/redirector.rb +2 -1
- data/lib/puppet/http/resolver/server_list.rb +4 -4
- data/lib/puppet/http/resolver/settings.rb +1 -1
- data/lib/puppet/http/resolver/srv.rb +1 -1
- data/lib/puppet/http/resolver.rb +1 -0
- data/lib/puppet/http/response.rb +1 -0
- data/lib/puppet/http/response_converter.rb +3 -3
- data/lib/puppet/http/response_net_http.rb +1 -1
- data/lib/puppet/http/retry_after_handler.rb +1 -1
- data/lib/puppet/http/service/ca.rb +4 -3
- data/lib/puppet/http/service/compiler.rb +11 -5
- data/lib/puppet/http/service/file_server.rb +2 -1
- data/lib/puppet/http/service/puppetserver.rb +2 -2
- data/lib/puppet/http/service/report.rb +1 -1
- data/lib/puppet/http/service.rb +7 -9
- data/lib/puppet/http/session.rb +2 -1
- data/lib/puppet/http/site.rb +1 -0
- data/lib/puppet/http.rb +1 -0
- data/lib/puppet/indirector/catalog/compiler.rb +62 -54
- data/lib/puppet/indirector/catalog/json.rb +1 -0
- data/lib/puppet/indirector/catalog/msgpack.rb +1 -0
- data/lib/puppet/indirector/catalog/rest.rb +9 -0
- data/lib/puppet/indirector/catalog/store_configs.rb +1 -2
- data/lib/puppet/indirector/catalog/yaml.rb +1 -0
- data/lib/puppet/indirector/code.rb +1 -0
- data/lib/puppet/indirector/data_binding/hiera.rb +1 -1
- data/lib/puppet/indirector/data_binding/none.rb +1 -0
- data/lib/puppet/indirector/direct_file_server.rb +3 -1
- data/lib/puppet/indirector/envelope.rb +1 -0
- data/lib/puppet/indirector/errors.rb +1 -0
- data/lib/puppet/indirector/exec.rb +2 -1
- data/lib/puppet/indirector/face.rb +7 -6
- data/lib/puppet/indirector/fact_search.rb +2 -1
- data/lib/puppet/indirector/facts/facter.rb +2 -0
- data/lib/puppet/indirector/facts/json.rb +2 -1
- data/lib/puppet/indirector/facts/memory.rb +1 -0
- data/lib/puppet/indirector/facts/network_device.rb +1 -0
- data/lib/puppet/indirector/facts/rest.rb +1 -0
- data/lib/puppet/indirector/facts/store_configs.rb +1 -1
- data/lib/puppet/indirector/facts/yaml.rb +1 -0
- data/lib/puppet/indirector/file_bucket_file/file.rb +15 -10
- data/lib/puppet/indirector/file_bucket_file/rest.rb +2 -0
- data/lib/puppet/indirector/file_bucket_file/selector.rb +1 -1
- data/lib/puppet/indirector/file_content/file.rb +1 -0
- data/lib/puppet/indirector/file_content/file_server.rb +1 -0
- data/lib/puppet/indirector/file_content/rest.rb +1 -0
- data/lib/puppet/indirector/file_content/selector.rb +1 -0
- data/lib/puppet/indirector/file_content.rb +1 -0
- data/lib/puppet/indirector/file_metadata/file.rb +1 -0
- data/lib/puppet/indirector/file_metadata/file_server.rb +1 -0
- data/lib/puppet/indirector/file_metadata/http.rb +3 -2
- data/lib/puppet/indirector/file_metadata/rest.rb +1 -0
- data/lib/puppet/indirector/file_metadata/selector.rb +1 -0
- data/lib/puppet/indirector/file_metadata.rb +1 -0
- data/lib/puppet/indirector/file_server.rb +2 -0
- data/lib/puppet/indirector/generic_http.rb +1 -0
- data/lib/puppet/indirector/hiera.rb +7 -7
- data/lib/puppet/indirector/indirection.rb +23 -13
- data/lib/puppet/indirector/json.rb +5 -3
- data/lib/puppet/indirector/memory.rb +2 -0
- data/lib/puppet/indirector/msgpack.rb +7 -4
- data/lib/puppet/indirector/node/exec.rb +5 -6
- data/lib/puppet/indirector/node/json.rb +1 -1
- data/lib/puppet/indirector/node/memory.rb +1 -0
- data/lib/puppet/indirector/node/msgpack.rb +1 -0
- data/lib/puppet/indirector/node/plain.rb +1 -0
- data/lib/puppet/indirector/node/rest.rb +1 -0
- data/lib/puppet/indirector/node/store_configs.rb +1 -2
- data/lib/puppet/indirector/node/yaml.rb +1 -0
- data/lib/puppet/indirector/none.rb +1 -1
- data/lib/puppet/indirector/plain.rb +1 -0
- data/lib/puppet/indirector/report/json.rb +2 -1
- data/lib/puppet/indirector/report/msgpack.rb +2 -1
- data/lib/puppet/indirector/report/processor.rb +2 -0
- data/lib/puppet/indirector/report/rest.rb +1 -0
- data/lib/puppet/indirector/report/yaml.rb +2 -1
- data/lib/puppet/indirector/request.rb +10 -8
- data/lib/puppet/indirector/resource/ral.rb +7 -6
- data/lib/puppet/indirector/resource/store_configs.rb +1 -0
- data/lib/puppet/indirector/resource/validator.rb +1 -0
- data/lib/puppet/indirector/rest.rb +2 -1
- data/lib/puppet/indirector/store_configs.rb +1 -0
- data/lib/puppet/indirector/terminus.rb +4 -1
- data/lib/puppet/indirector/yaml.rb +3 -2
- data/lib/puppet/indirector.rb +2 -0
- data/lib/puppet/info_service/class_information_service.rb +12 -12
- data/lib/puppet/info_service/plan_information_service.rb +4 -3
- data/lib/puppet/info_service/task_information_service.rb +4 -3
- data/lib/puppet/interface/action.rb +45 -40
- data/lib/puppet/interface/action_builder.rb +15 -15
- data/lib/puppet/interface/action_manager.rb +4 -2
- data/lib/puppet/interface/documentation.rb +35 -29
- data/lib/puppet/interface/face_collection.rb +10 -7
- data/lib/puppet/interface/option.rb +21 -10
- data/lib/puppet/interface/option_builder.rb +13 -9
- data/lib/puppet/interface/option_manager.rb +5 -4
- data/lib/puppet/interface.rb +4 -4
- data/lib/puppet/loaders.rb +1 -1
- data/lib/puppet/metatype/manager.rb +13 -13
- data/lib/puppet/module/plan.rb +13 -7
- data/lib/puppet/module/task.rb +24 -18
- data/lib/puppet/module.rb +19 -8
- data/lib/puppet/module_tool/applications/application.rb +6 -4
- data/lib/puppet/module_tool/applications/checksummer.rb +2 -3
- data/lib/puppet/module_tool/applications/installer.rb +35 -48
- data/lib/puppet/module_tool/applications/uninstaller.rb +23 -22
- data/lib/puppet/module_tool/applications/unpacker.rb +4 -1
- data/lib/puppet/module_tool/applications/upgrader.rb +32 -30
- data/lib/puppet/module_tool/applications.rb +1 -0
- data/lib/puppet/module_tool/checksums.rb +1 -1
- data/lib/puppet/module_tool/contents_description.rb +4 -5
- data/lib/puppet/module_tool/dependency.rb +3 -3
- data/lib/puppet/module_tool/errors/base.rb +1 -0
- data/lib/puppet/module_tool/errors/installer.rb +5 -5
- data/lib/puppet/module_tool/errors/shared.rb +15 -15
- data/lib/puppet/module_tool/errors/uninstaller.rb +2 -2
- data/lib/puppet/module_tool/errors/upgrader.rb +3 -3
- data/lib/puppet/module_tool/errors.rb +1 -0
- data/lib/puppet/module_tool/install_directory.rb +6 -4
- data/lib/puppet/module_tool/installed_modules.rb +4 -2
- data/lib/puppet/module_tool/local_tarball.rb +6 -3
- data/lib/puppet/module_tool/metadata.rb +23 -22
- data/lib/puppet/module_tool/shared_behaviors.rb +34 -32
- data/lib/puppet/module_tool/tar/gnu.rb +1 -0
- data/lib/puppet/module_tool/tar/mini.rb +2 -1
- data/lib/puppet/module_tool/tar.rb +3 -2
- data/lib/puppet/module_tool.rb +5 -5
- data/lib/puppet/network/authconfig.rb +1 -0
- data/lib/puppet/network/authorization.rb +1 -0
- data/lib/puppet/network/client_request.rb +1 -1
- data/lib/puppet/network/format.rb +6 -1
- data/lib/puppet/network/format_handler.rb +7 -6
- data/lib/puppet/network/format_support.rb +6 -6
- data/lib/puppet/network/formats.rb +27 -21
- data/lib/puppet/network/http/api/indirected_routes.rb +34 -22
- data/lib/puppet/network/http/api/indirection_type.rb +1 -1
- data/lib/puppet/network/http/api/master/v3/environments.rb +1 -1
- data/lib/puppet/network/http/api/master/v3.rb +1 -1
- data/lib/puppet/network/http/api/master.rb +1 -0
- data/lib/puppet/network/http/api/server/v3/environments.rb +20 -15
- data/lib/puppet/network/http/api/server/v3.rb +13 -13
- data/lib/puppet/network/http/api/server.rb +1 -0
- data/lib/puppet/network/http/api.rb +19 -18
- data/lib/puppet/network/http/connection.rb +4 -3
- data/lib/puppet/network/http/error.rb +4 -3
- data/lib/puppet/network/http/handler.rb +7 -6
- data/lib/puppet/network/http/issues.rb +1 -0
- data/lib/puppet/network/http/memory_response.rb +1 -0
- data/lib/puppet/network/http/request.rb +20 -9
- data/lib/puppet/network/http/response.rb +1 -0
- data/lib/puppet/network/http/route.rb +4 -2
- data/lib/puppet/network/http.rb +1 -0
- data/lib/puppet/network/http_pool.rb +3 -3
- data/lib/puppet/network/uri.rb +1 -0
- data/lib/puppet/network.rb +1 -0
- data/lib/puppet/node/environment.rb +25 -22
- data/lib/puppet/node/facts.rb +8 -9
- data/lib/puppet/node.rb +7 -8
- data/lib/puppet/pal/catalog_compiler.rb +1 -3
- data/lib/puppet/pal/compiler.rb +10 -6
- data/lib/puppet/pal/function_signature.rb +4 -3
- data/lib/puppet/pal/json_catalog_encoder.rb +5 -1
- data/lib/puppet/pal/pal_api.rb +1 -0
- data/lib/puppet/pal/pal_impl.rb +55 -59
- data/lib/puppet/pal/plan_signature.rb +3 -2
- data/lib/puppet/pal/script_compiler.rb +3 -2
- data/lib/puppet/pal/task_signature.rb +14 -9
- data/lib/puppet/parameter/boolean.rb +1 -0
- data/lib/puppet/parameter/package_options.rb +1 -0
- data/lib/puppet/parameter/path.rb +6 -3
- data/lib/puppet/parameter/value.rb +2 -1
- data/lib/puppet/parameter/value_collection.rb +8 -8
- data/lib/puppet/parameter.rb +8 -7
- data/lib/puppet/parser/abstract_compiler.rb +1 -3
- data/lib/puppet/parser/ast/block_expression.rb +1 -0
- data/lib/puppet/parser/ast/branch.rb +1 -0
- data/lib/puppet/parser/ast/hostclass.rb +2 -1
- data/lib/puppet/parser/ast/leaf.rb +2 -0
- data/lib/puppet/parser/ast/node.rb +1 -0
- data/lib/puppet/parser/ast/pops_bridge.rb +10 -10
- data/lib/puppet/parser/ast/resource.rb +3 -4
- data/lib/puppet/parser/ast/resource_instance.rb +2 -0
- data/lib/puppet/parser/ast/resourceparam.rb +7 -6
- data/lib/puppet/parser/ast/top_level_construct.rb +1 -0
- data/lib/puppet/parser/ast.rb +4 -3
- data/lib/puppet/parser/catalog_compiler.rb +2 -3
- data/lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb +3 -2
- data/lib/puppet/parser/compiler/catalog_validator.rb +1 -0
- data/lib/puppet/parser/compiler.rb +20 -18
- data/lib/puppet/parser/e4_parser_adapter.rb +16 -16
- data/lib/puppet/parser/files.rb +3 -3
- data/lib/puppet/parser/functions/assert_type.rb +42 -41
- data/lib/puppet/parser/functions/binary_file.rb +15 -14
- data/lib/puppet/parser/functions/break.rb +28 -27
- data/lib/puppet/parser/functions/contain.rb +2 -1
- data/lib/puppet/parser/functions/create_resources.rb +14 -11
- data/lib/puppet/parser/functions/defined.rb +103 -102
- data/lib/puppet/parser/functions/dig.rb +25 -24
- data/lib/puppet/parser/functions/digest.rb +2 -1
- data/lib/puppet/parser/functions/each.rb +100 -99
- data/lib/puppet/parser/functions/epp.rb +3 -3
- data/lib/puppet/parser/functions/fail.rb +10 -9
- data/lib/puppet/parser/functions/file.rb +15 -14
- data/lib/puppet/parser/functions/filter.rb +56 -55
- data/lib/puppet/parser/functions/find_file.rb +18 -18
- data/lib/puppet/parser/functions/fqdn_rand.rb +24 -23
- data/lib/puppet/parser/functions/generate.rb +21 -21
- data/lib/puppet/parser/functions/hiera.rb +94 -93
- data/lib/puppet/parser/functions/hiera_array.rb +82 -82
- data/lib/puppet/parser/functions/hiera_hash.rb +92 -92
- data/lib/puppet/parser/functions/hiera_include.rb +92 -92
- data/lib/puppet/parser/functions/include.rb +4 -3
- data/lib/puppet/parser/functions/inline_epp.rb +3 -3
- data/lib/puppet/parser/functions/inline_template.rb +14 -13
- data/lib/puppet/parser/functions/lest.rb +35 -34
- data/lib/puppet/parser/functions/lookup.rb +131 -130
- data/lib/puppet/parser/functions/map.rb +53 -52
- data/lib/puppet/parser/functions/match.rb +30 -29
- data/lib/puppet/parser/functions/md5.rb +3 -2
- data/lib/puppet/parser/functions/new.rb +915 -915
- data/lib/puppet/parser/functions/next.rb +35 -34
- data/lib/puppet/parser/functions/realize.rb +12 -11
- data/lib/puppet/parser/functions/reduce.rb +133 -132
- data/lib/puppet/parser/functions/regsubst.rb +7 -5
- data/lib/puppet/parser/functions/require.rb +7 -5
- data/lib/puppet/parser/functions/return.rb +89 -88
- data/lib/puppet/parser/functions/reverse_each.rb +58 -57
- data/lib/puppet/parser/functions/scanf.rb +24 -23
- data/lib/puppet/parser/functions/sha1.rb +3 -2
- data/lib/puppet/parser/functions/sha256.rb +2 -1
- data/lib/puppet/parser/functions/shellquote.rb +1 -0
- data/lib/puppet/parser/functions/slice.rb +26 -25
- data/lib/puppet/parser/functions/split.rb +6 -6
- data/lib/puppet/parser/functions/sprintf.rb +7 -7
- data/lib/puppet/parser/functions/step.rb +61 -60
- data/lib/puppet/parser/functions/strftime.rb +174 -173
- data/lib/puppet/parser/functions/tag.rb +9 -7
- data/lib/puppet/parser/functions/tagged.rb +15 -13
- data/lib/puppet/parser/functions/template.rb +26 -24
- data/lib/puppet/parser/functions/then.rb +53 -52
- data/lib/puppet/parser/functions/type.rb +35 -34
- data/lib/puppet/parser/functions/versioncmp.rb +2 -2
- data/lib/puppet/parser/functions/with.rb +21 -20
- data/lib/puppet/parser/functions.rb +8 -6
- data/lib/puppet/parser/parser_factory.rb +1 -0
- data/lib/puppet/parser/relationship.rb +5 -2
- data/lib/puppet/parser/resource/param.rb +1 -0
- data/lib/puppet/parser/resource.rb +22 -21
- data/lib/puppet/parser/scope.rb +73 -64
- data/lib/puppet/parser/script_compiler.rb +10 -11
- data/lib/puppet/parser/templatewrapper.rb +2 -1
- data/lib/puppet/parser/type_loader.rb +21 -19
- data/lib/puppet/parser.rb +1 -0
- data/lib/puppet/plugins/configuration.rb +1 -0
- data/lib/puppet/plugins/syntax_checkers.rb +1 -1
- data/lib/puppet/plugins.rb +2 -1
- data/lib/puppet/pops/adaptable.rb +3 -2
- data/lib/puppet/pops/adapters.rb +3 -1
- data/lib/puppet/pops/evaluator/access_operator.rb +127 -115
- data/lib/puppet/pops/evaluator/callable_signature.rb +1 -1
- data/lib/puppet/pops/evaluator/closure.rb +271 -277
- data/lib/puppet/pops/evaluator/collector_transformer.rb +13 -11
- data/lib/puppet/pops/evaluator/collectors/abstract_collector.rb +2 -1
- data/lib/puppet/pops/evaluator/collectors/catalog_collector.rb +3 -3
- data/lib/puppet/pops/evaluator/collectors/exported_collector.rb +5 -5
- data/lib/puppet/pops/evaluator/collectors/fixed_set_collector.rb +3 -4
- data/lib/puppet/pops/evaluator/compare_operator.rb +27 -13
- data/lib/puppet/pops/evaluator/deferred_resolver.rb +19 -17
- data/lib/puppet/pops/evaluator/epp_evaluator.rb +16 -16
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +197 -194
- data/lib/puppet/pops/evaluator/external_syntax_support.rb +2 -2
- data/lib/puppet/pops/evaluator/json_strict_literal_evaluator.rb +4 -4
- data/lib/puppet/pops/evaluator/literal_evaluator.rb +15 -7
- data/lib/puppet/pops/evaluator/puppet_proc.rb +5 -3
- data/lib/puppet/pops/evaluator/relationship_operator.rb +11 -9
- data/lib/puppet/pops/evaluator/runtime3_converter.rb +30 -27
- data/lib/puppet/pops/evaluator/runtime3_resource_support.rb +31 -33
- data/lib/puppet/pops/evaluator/runtime3_support.rb +30 -32
- data/lib/puppet/pops/functions/dispatch.rb +6 -7
- data/lib/puppet/pops/functions/dispatcher.rb +5 -5
- data/lib/puppet/pops/functions/function.rb +3 -4
- data/lib/puppet/pops/issue_reporter.rb +22 -20
- data/lib/puppet/pops/issues.rb +13 -5
- data/lib/puppet/pops/label_provider.rb +3 -2
- data/lib/puppet/pops/loader/base_loader.rb +3 -4
- data/lib/puppet/pops/loader/dependency_loader.rb +5 -2
- data/lib/puppet/pops/loader/gem_support.rb +4 -2
- data/lib/puppet/pops/loader/generic_plan_instantiator.rb +1 -0
- data/lib/puppet/pops/loader/loader.rb +1 -2
- data/lib/puppet/pops/loader/loader_paths.rb +26 -26
- data/lib/puppet/pops/loader/module_loaders.rb +32 -37
- data/lib/puppet/pops/loader/predefined_loader.rb +2 -3
- data/lib/puppet/pops/loader/puppet_function_instantiator.rb +5 -2
- data/lib/puppet/pops/loader/puppet_plan_instantiator.rb +5 -2
- data/lib/puppet/pops/loader/puppet_resource_type_impl_instantiator.rb +5 -5
- data/lib/puppet/pops/loader/ruby_data_type_instantiator.rb +4 -1
- data/lib/puppet/pops/loader/ruby_function_instantiator.rb +4 -1
- data/lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb +13 -8
- data/lib/puppet/pops/loader/runtime3_type_loader.rb +3 -3
- data/lib/puppet/pops/loader/simple_environment_loader.rb +2 -3
- data/lib/puppet/pops/loader/static_loader.rb +24 -23
- data/lib/puppet/pops/loader/task_instantiator.rb +3 -2
- data/lib/puppet/pops/loader/type_definition_instantiator.rb +8 -5
- data/lib/puppet/pops/loader/typed_name.rb +2 -1
- data/lib/puppet/pops/loader/uri_helper.rb +2 -1
- data/lib/puppet/pops/loaders.rb +24 -21
- data/lib/puppet/pops/lookup/configured_data_provider.rb +1 -0
- data/lib/puppet/pops/lookup/context.rb +31 -23
- data/lib/puppet/pops/lookup/data_adapter.rb +1 -0
- data/lib/puppet/pops/lookup/data_dig_function_provider.rb +4 -4
- data/lib/puppet/pops/lookup/data_hash_function_provider.rb +1 -0
- data/lib/puppet/pops/lookup/data_provider.rb +1 -0
- data/lib/puppet/pops/lookup/environment_data_provider.rb +1 -0
- data/lib/puppet/pops/lookup/explainer.rb +43 -42
- data/lib/puppet/pops/lookup/function_provider.rb +7 -6
- data/lib/puppet/pops/lookup/global_data_provider.rb +3 -3
- data/lib/puppet/pops/lookup/hiera_config.rb +153 -114
- data/lib/puppet/pops/lookup/interpolation.rb +9 -4
- data/lib/puppet/pops/lookup/invocation.rb +3 -0
- data/lib/puppet/pops/lookup/key_recorder.rb +4 -2
- data/lib/puppet/pops/lookup/location_resolver.rb +2 -1
- data/lib/puppet/pops/lookup/lookup_adapter.rb +25 -21
- data/lib/puppet/pops/lookup/lookup_key.rb +2 -1
- data/lib/puppet/pops/lookup/lookup_key_function_provider.rb +1 -0
- data/lib/puppet/pops/lookup/module_data_provider.rb +3 -1
- data/lib/puppet/pops/lookup/sub_lookup.rb +5 -2
- data/lib/puppet/pops/lookup.rb +13 -9
- data/lib/puppet/pops/merge_strategy.rb +15 -10
- data/lib/puppet/pops/migration/migration_checker.rb +6 -4
- data/lib/puppet/pops/model/ast.rb +786 -685
- data/lib/puppet/pops/model/ast_transformer.rb +10 -9
- data/lib/puppet/pops/model/factory.rb +29 -26
- data/lib/puppet/pops/model/model_label_provider.rb +4 -2
- data/lib/puppet/pops/model/model_tree_dumper.rb +31 -30
- data/lib/puppet/pops/model/pn_transformer.rb +4 -6
- data/lib/puppet/pops/model/tree_dumper.rb +5 -3
- data/lib/puppet/pops/parser/code_merger.rb +2 -3
- data/lib/puppet/pops/parser/epp_parser.rb +3 -3
- data/lib/puppet/pops/parser/epp_support.rb +7 -7
- data/lib/puppet/pops/parser/evaluating_parser.rb +9 -6
- data/lib/puppet/pops/parser/heredoc_support.rb +9 -10
- data/lib/puppet/pops/parser/interpolation_support.rb +22 -23
- data/lib/puppet/pops/parser/lexer2.rb +55 -51
- data/lib/puppet/pops/parser/lexer_support.rb +56 -57
- data/lib/puppet/pops/parser/locatable.rb +1 -2
- data/lib/puppet/pops/parser/locator.rb +42 -39
- data/lib/puppet/pops/parser/parser_support.rb +9 -7
- data/lib/puppet/pops/parser/pn_parser.rb +2 -2
- data/lib/puppet/pops/parser/slurp_support.rb +38 -37
- data/lib/puppet/pops/patterns.rb +2 -3
- data/lib/puppet/pops/pcore.rb +3 -3
- data/lib/puppet/pops/pn.rb +4 -2
- data/lib/puppet/pops/puppet_stack.rb +1 -0
- data/lib/puppet/pops/resource/param.rb +12 -12
- data/lib/puppet/pops/resource/resource_type_impl.rb +45 -44
- data/lib/puppet/pops/semantic_error.rb +2 -1
- data/lib/puppet/pops/serialization/abstract_reader.rb +3 -2
- data/lib/puppet/pops/serialization/abstract_writer.rb +7 -6
- data/lib/puppet/pops/serialization/deserializer.rb +2 -0
- data/lib/puppet/pops/serialization/extension.rb +7 -0
- data/lib/puppet/pops/serialization/from_data_converter.rb +15 -9
- data/lib/puppet/pops/serialization/instance_reader.rb +1 -0
- data/lib/puppet/pops/serialization/instance_writer.rb +1 -0
- data/lib/puppet/pops/serialization/json.rb +8 -5
- data/lib/puppet/pops/serialization/json_path.rb +1 -0
- data/lib/puppet/pops/serialization/object.rb +5 -3
- data/lib/puppet/pops/serialization/serializer.rb +19 -16
- data/lib/puppet/pops/serialization/time_factory.rb +1 -1
- data/lib/puppet/pops/serialization/to_data_converter.rb +7 -5
- data/lib/puppet/pops/serialization/to_stringified_converter.rb +7 -7
- data/lib/puppet/pops/serialization.rb +1 -0
- data/lib/puppet/pops/time/timespan.rb +19 -8
- data/lib/puppet/pops/time/timestamp.rb +8 -2
- data/lib/puppet/pops/types/annotatable.rb +1 -1
- data/lib/puppet/pops/types/annotation.rb +4 -3
- data/lib/puppet/pops/types/class_loader.rb +12 -9
- data/lib/puppet/pops/types/implementation_registry.rb +3 -1
- data/lib/puppet/pops/types/iterable.rb +22 -13
- data/lib/puppet/pops/types/p_binary_type.rb +4 -5
- data/lib/puppet/pops/types/p_init_type.rb +13 -11
- data/lib/puppet/pops/types/p_meta_type.rb +2 -2
- data/lib/puppet/pops/types/p_object_type.rb +87 -63
- data/lib/puppet/pops/types/p_object_type_extension.rb +10 -8
- data/lib/puppet/pops/types/p_runtime_type.rb +11 -10
- data/lib/puppet/pops/types/p_sem_ver_range_type.rb +1 -1
- data/lib/puppet/pops/types/p_sem_ver_type.rb +7 -8
- data/lib/puppet/pops/types/p_sensitive_type.rb +2 -5
- data/lib/puppet/pops/types/p_timespan_type.rb +6 -5
- data/lib/puppet/pops/types/p_timestamp_type.rb +3 -3
- data/lib/puppet/pops/types/p_type_set_type.rb +42 -36
- data/lib/puppet/pops/types/p_uri_type.rb +30 -23
- data/lib/puppet/pops/types/puppet_object.rb +1 -1
- data/lib/puppet/pops/types/recursion_guard.rb +7 -2
- data/lib/puppet/pops/types/ruby_generator.rb +14 -10
- data/lib/puppet/pops/types/ruby_method.rb +7 -7
- data/lib/puppet/pops/types/string_converter.rb +93 -88
- data/lib/puppet/pops/types/tree_iterators.rb +11 -14
- data/lib/puppet/pops/types/type_acceptor.rb +1 -0
- data/lib/puppet/pops/types/type_asserter.rb +4 -3
- data/lib/puppet/pops/types/type_assertion_error.rb +0 -1
- data/lib/puppet/pops/types/type_calculator.rb +46 -40
- data/lib/puppet/pops/types/type_conversion_error.rb +1 -10
- data/lib/puppet/pops/types/type_factory.rb +16 -12
- data/lib/puppet/pops/types/type_formatter.rb +40 -43
- data/lib/puppet/pops/types/type_mismatch_describer.rb +37 -29
- data/lib/puppet/pops/types/type_parser.rb +123 -117
- data/lib/puppet/pops/types/type_set_reference.rb +2 -0
- data/lib/puppet/pops/types/type_with_members.rb +1 -2
- data/lib/puppet/pops/types/types.rb +243 -230
- data/lib/puppet/pops/utils.rb +3 -2
- data/lib/puppet/pops/validation/checker4_0.rb +68 -49
- data/lib/puppet/pops/validation/tasks_checker.rb +5 -4
- data/lib/puppet/pops/validation/validator_factory_4_0.rb +1 -2
- data/lib/puppet/pops/validation.rb +21 -19
- data/lib/puppet/pops/visitable.rb +1 -0
- data/lib/puppet/pops/visitor.rb +15 -2
- data/lib/puppet/pops.rb +2 -0
- data/lib/puppet/property/boolean.rb +1 -0
- data/lib/puppet/property/ensure.rb +4 -2
- data/lib/puppet/property/keyvalue.rb +10 -10
- data/lib/puppet/property/list.rb +6 -6
- data/lib/puppet/property/ordered_list.rb +4 -4
- data/lib/puppet/property.rb +21 -21
- data/lib/puppet/provider/aix_object.rb +14 -9
- data/lib/puppet/provider/command.rb +1 -0
- data/lib/puppet/provider/confine.rb +1 -0
- data/lib/puppet/provider/exec/posix.rb +3 -1
- data/lib/puppet/provider/exec/shell.rb +1 -0
- data/lib/puppet/provider/exec/windows.rb +2 -1
- data/lib/puppet/provider/exec.rb +4 -3
- data/lib/puppet/provider/file/posix.rb +1 -0
- data/lib/puppet/provider/file/windows.rb +13 -9
- data/lib/puppet/provider/group/aix.rb +1 -0
- data/lib/puppet/provider/group/directoryservice.rb +1 -1
- data/lib/puppet/provider/group/groupadd.rb +11 -6
- data/lib/puppet/provider/group/ldap.rb +2 -0
- data/lib/puppet/provider/group/pw.rb +1 -1
- data/lib/puppet/provider/group/windows_adsi.rb +5 -3
- data/lib/puppet/provider/ldap.rb +4 -3
- data/lib/puppet/provider/nameservice/directoryservice.rb +39 -30
- data/lib/puppet/provider/nameservice/objectadd.rb +1 -0
- data/lib/puppet/provider/nameservice/pw.rb +6 -6
- data/lib/puppet/provider/nameservice.rb +17 -14
- data/lib/puppet/provider/network_device.rb +1 -2
- data/lib/puppet/provider/package/aix.rb +8 -7
- data/lib/puppet/provider/package/appdmg.rb +22 -21
- data/lib/puppet/provider/package/apple.rb +4 -3
- data/lib/puppet/provider/package/apt.rb +10 -6
- data/lib/puppet/provider/package/aptitude.rb +1 -0
- data/lib/puppet/provider/package/aptrpm.rb +8 -5
- data/lib/puppet/provider/package/blastwave.rb +9 -9
- data/lib/puppet/provider/package/dnf.rb +7 -0
- data/lib/puppet/provider/package/dnfmodule.rb +9 -8
- data/lib/puppet/provider/package/dpkg.rb +12 -12
- data/lib/puppet/provider/package/fink.rb +2 -1
- data/lib/puppet/provider/package/freebsd.rb +3 -2
- data/lib/puppet/provider/package/gem.rb +12 -9
- data/lib/puppet/provider/package/hpux.rb +6 -5
- data/lib/puppet/provider/package/macports.rb +2 -1
- data/lib/puppet/provider/package/nim.rb +16 -18
- data/lib/puppet/provider/package/openbsd.rb +14 -12
- data/lib/puppet/provider/package/opkg.rb +8 -6
- data/lib/puppet/provider/package/pacman.rb +14 -14
- data/lib/puppet/provider/package/pip.rb +11 -9
- data/lib/puppet/provider/package/pip2.rb +2 -2
- data/lib/puppet/provider/package/pip3.rb +2 -2
- data/lib/puppet/provider/package/pkg.rb +33 -29
- data/lib/puppet/provider/package/pkgdmg.rb +12 -7
- data/lib/puppet/provider/package/pkgin.rb +11 -11
- data/lib/puppet/provider/package/pkgng.rb +12 -8
- data/lib/puppet/provider/package/pkgutil.rb +18 -17
- data/lib/puppet/provider/package/portage.rb +14 -9
- data/lib/puppet/provider/package/ports.rb +6 -5
- data/lib/puppet/provider/package/portupgrade.rb +11 -19
- data/lib/puppet/provider/package/puppet_gem.rb +3 -2
- data/lib/puppet/provider/package/puppetserver_gem.rb +5 -4
- data/lib/puppet/provider/package/rpm.rb +19 -15
- data/lib/puppet/provider/package/rug.rb +2 -1
- data/lib/puppet/provider/package/sun.rb +22 -19
- data/lib/puppet/provider/package/sunfreeware.rb +1 -0
- data/lib/puppet/provider/package/tdnf.rb +7 -1
- data/lib/puppet/provider/package/up2date.rb +2 -1
- data/lib/puppet/provider/package/urpmi.rb +1 -0
- data/lib/puppet/provider/package/windows/exe_package.rb +3 -2
- data/lib/puppet/provider/package/windows/msi_package.rb +1 -0
- data/lib/puppet/provider/package/windows/package.rb +8 -6
- data/lib/puppet/provider/package/windows.rb +5 -3
- data/lib/puppet/provider/package/yum.rb +34 -20
- data/lib/puppet/provider/package/zypper.rb +22 -21
- data/lib/puppet/provider/package.rb +8 -7
- data/lib/puppet/provider/package_targetable.rb +3 -2
- data/lib/puppet/provider/parsedfile.rb +12 -9
- data/lib/puppet/provider/service/base.rb +2 -2
- data/lib/puppet/provider/service/bsd.rb +1 -0
- data/lib/puppet/provider/service/daemontools.rb +17 -15
- data/lib/puppet/provider/service/debian.rb +6 -5
- data/lib/puppet/provider/service/freebsd.rb +16 -19
- data/lib/puppet/provider/service/gentoo.rb +5 -4
- data/lib/puppet/provider/service/init.rb +12 -14
- data/lib/puppet/provider/service/launchd.rb +13 -7
- data/lib/puppet/provider/service/openbsd.rb +4 -4
- data/lib/puppet/provider/service/openrc.rb +2 -2
- data/lib/puppet/provider/service/openwrt.rb +1 -1
- data/lib/puppet/provider/service/rcng.rb +1 -0
- data/lib/puppet/provider/service/redhat.rb +5 -3
- data/lib/puppet/provider/service/runit.rb +10 -10
- data/lib/puppet/provider/service/service.rb +1 -1
- data/lib/puppet/provider/service/smf.rb +9 -6
- data/lib/puppet/provider/service/src.rb +19 -20
- data/lib/puppet/provider/service/systemd.rb +11 -6
- data/lib/puppet/provider/service/upstart.rb +14 -15
- data/lib/puppet/provider/service/windows.rb +37 -41
- data/lib/puppet/provider/user/aix.rb +17 -16
- data/lib/puppet/provider/user/directoryservice.rb +60 -52
- data/lib/puppet/provider/user/hpux.rb +23 -22
- data/lib/puppet/provider/user/ldap.rb +12 -10
- data/lib/puppet/provider/user/openbsd.rb +21 -20
- data/lib/puppet/provider/user/pw.rb +4 -4
- data/lib/puppet/provider/user/user_role_add.rb +23 -18
- data/lib/puppet/provider/user/useradd.rb +53 -43
- data/lib/puppet/provider/user/windows_adsi.rb +10 -7
- data/lib/puppet/provider.rb +11 -11
- data/lib/puppet/reference/configuration.rb +48 -46
- data/lib/puppet/reference/function.rb +1 -0
- data/lib/puppet/reference/indirection.rb +28 -27
- data/lib/puppet/reference/metaparameter.rb +1 -0
- data/lib/puppet/reference/providers.rb +4 -2
- data/lib/puppet/reference/report.rb +1 -0
- data/lib/puppet/reference/type.rb +5 -4
- data/lib/puppet/relationship.rb +5 -4
- data/lib/puppet/reports/http.rb +1 -1
- data/lib/puppet/reports/log.rb +1 -1
- data/lib/puppet/reports/store.rb +5 -3
- data/lib/puppet/reports.rb +4 -3
- data/lib/puppet/resource/catalog.rb +40 -40
- data/lib/puppet/resource/status.rb +5 -4
- data/lib/puppet/resource/type.rb +35 -26
- data/lib/puppet/resource/type_collection.rb +9 -5
- data/lib/puppet/resource.rb +50 -37
- data/lib/puppet/runtime.rb +1 -0
- data/lib/puppet/scheduler/job.rb +1 -0
- data/lib/puppet/scheduler/scheduler.rb +2 -1
- data/lib/puppet/scheduler/splay_job.rb +1 -0
- data/lib/puppet/scheduler/timer.rb +1 -0
- data/lib/puppet/scheduler.rb +2 -1
- data/lib/puppet/settings/alias_setting.rb +1 -0
- data/lib/puppet/settings/array_setting.rb +1 -1
- data/lib/puppet/settings/autosign_setting.rb +1 -1
- data/lib/puppet/settings/base_setting.rb +11 -7
- data/lib/puppet/settings/boolean_setting.rb +2 -1
- data/lib/puppet/settings/certificate_revocation_setting.rb +1 -1
- data/lib/puppet/settings/config_file.rb +5 -5
- data/lib/puppet/settings/directory_setting.rb +1 -0
- data/lib/puppet/settings/duration_setting.rb +3 -3
- data/lib/puppet/settings/enum_setting.rb +2 -1
- data/lib/puppet/settings/environment_conf.rb +15 -12
- data/lib/puppet/settings/errors.rb +5 -3
- data/lib/puppet/settings/file_or_directory_setting.rb +1 -5
- data/lib/puppet/settings/file_setting.rb +3 -13
- data/lib/puppet/settings/http_extra_headers_setting.rb +1 -1
- data/lib/puppet/settings/ini_file.rb +1 -0
- data/lib/puppet/settings/integer_setting.rb +2 -1
- data/lib/puppet/settings/path_setting.rb +1 -0
- data/lib/puppet/settings/port_setting.rb +2 -1
- data/lib/puppet/settings/priority_setting.rb +12 -12
- data/lib/puppet/settings/server_list_setting.rb +6 -6
- data/lib/puppet/settings/string_setting.rb +1 -0
- data/lib/puppet/settings/symbolic_enum_setting.rb +2 -1
- data/lib/puppet/settings/terminus_setting.rb +1 -0
- data/lib/puppet/settings/ttl_setting.rb +5 -4
- data/lib/puppet/settings/value_translator.rb +8 -7
- data/lib/puppet/settings.rb +123 -97
- data/lib/puppet/ssl/base.rb +6 -2
- data/lib/puppet/ssl/certificate.rb +5 -4
- data/lib/puppet/ssl/certificate_request.rb +14 -12
- data/lib/puppet/ssl/certificate_request_attributes.rb +4 -2
- data/lib/puppet/ssl/certificate_signer.rb +2 -3
- data/lib/puppet/ssl/digest.rb +1 -0
- data/lib/puppet/ssl/error.rb +2 -0
- data/lib/puppet/ssl/oids.rb +7 -7
- data/lib/puppet/ssl/openssl_loader.rb +1 -0
- data/lib/puppet/ssl/ssl_context.rb +11 -15
- data/lib/puppet/ssl/ssl_provider.rb +10 -7
- data/lib/puppet/ssl/state_machine.rb +12 -11
- data/lib/puppet/ssl/verifier.rb +2 -2
- data/lib/puppet/ssl.rb +1 -0
- data/lib/puppet/syntax_checkers/base64.rb +3 -2
- data/lib/puppet/syntax_checkers/epp.rb +3 -3
- data/lib/puppet/syntax_checkers/json.rb +3 -4
- data/lib/puppet/syntax_checkers/pp.rb +3 -3
- data/lib/puppet/syntax_checkers.rb +2 -1
- data/lib/puppet/test/test_helper.rb +26 -23
- data/lib/puppet/thread_local.rb +1 -0
- data/lib/puppet/transaction/additional_resource_generator.rb +10 -6
- data/lib/puppet/transaction/event.rb +5 -3
- data/lib/puppet/transaction/event_manager.rb +6 -6
- data/lib/puppet/transaction/persistence.rb +3 -2
- data/lib/puppet/transaction/report.rb +28 -22
- data/lib/puppet/transaction/resource_harness.rb +7 -4
- data/lib/puppet/transaction.rb +22 -17
- data/lib/puppet/trusted_external.rb +9 -5
- data/lib/puppet/type/component.rb +11 -5
- data/lib/puppet/type/exec.rb +33 -21
- data/lib/puppet/type/file/checksum.rb +1 -0
- data/lib/puppet/type/file/checksum_value.rb +4 -3
- data/lib/puppet/type/file/content.rb +17 -14
- data/lib/puppet/type/file/ctime.rb +2 -2
- data/lib/puppet/type/file/data_sync.rb +6 -4
- data/lib/puppet/type/file/ensure.rb +11 -14
- data/lib/puppet/type/file/group.rb +2 -1
- data/lib/puppet/type/file/mode.rb +4 -2
- data/lib/puppet/type/file/mtime.rb +2 -1
- data/lib/puppet/type/file/owner.rb +2 -2
- data/lib/puppet/type/file/selcontext.rb +2 -3
- data/lib/puppet/type/file/source.rb +14 -12
- data/lib/puppet/type/file/target.rb +4 -5
- data/lib/puppet/type/file/type.rb +2 -2
- data/lib/puppet/type/file.rb +40 -35
- data/lib/puppet/type/filebucket.rb +1 -0
- data/lib/puppet/type/group.rb +10 -10
- data/lib/puppet/type/notify.rb +1 -1
- data/lib/puppet/type/package.rb +29 -29
- data/lib/puppet/type/resources.rb +33 -28
- data/lib/puppet/type/schedule.rb +13 -14
- data/lib/puppet/type/service.rb +13 -11
- data/lib/puppet/type/stage.rb +1 -0
- data/lib/puppet/type/tidy.rb +16 -11
- data/lib/puppet/type/user.rb +48 -43
- data/lib/puppet/type/whit.rb +1 -1
- data/lib/puppet/type.rb +115 -110
- data/lib/puppet/util/at_fork/noop.rb +1 -0
- data/lib/puppet/util/at_fork/solaris.rb +6 -5
- data/lib/puppet/util/at_fork.rb +2 -1
- data/lib/puppet/util/autoload.rb +7 -2
- data/lib/puppet/util/backups.rb +6 -5
- data/lib/puppet/util/character_encoding.rb +1 -0
- data/lib/puppet/util/checksums.rb +12 -10
- data/lib/puppet/util/classgen.rb +10 -16
- data/lib/puppet/util/colors.rb +65 -64
- data/lib/puppet/util/command_line/puppet_option_parser.rb +17 -16
- data/lib/puppet/util/command_line/trollop.rb +696 -689
- data/lib/puppet/util/command_line.rb +2 -1
- data/lib/puppet/util/constant_inflector.rb +3 -3
- data/lib/puppet/util/diff.rb +16 -16
- data/lib/puppet/util/docs.rb +6 -3
- data/lib/puppet/util/errors.rb +3 -2
- data/lib/puppet/util/execution.rb +27 -28
- data/lib/puppet/util/execution_stub.rb +1 -0
- data/lib/puppet/util/feature.rb +7 -8
- data/lib/puppet/util/file_watcher.rb +2 -0
- data/lib/puppet/util/fileparsing.rb +11 -12
- data/lib/puppet/util/filetype.rb +6 -3
- data/lib/puppet/util/http_proxy.rb +1 -0
- data/lib/puppet/util/inifile.rb +4 -4
- data/lib/puppet/util/instance_loader.rb +2 -0
- data/lib/puppet/util/json.rb +1 -0
- data/lib/puppet/util/json_lockfile.rb +3 -1
- data/lib/puppet/util/ldap/connection.rb +19 -18
- data/lib/puppet/util/ldap/generator.rb +1 -0
- data/lib/puppet/util/ldap/manager.rb +9 -9
- data/lib/puppet/util/ldap.rb +1 -0
- data/lib/puppet/util/libuser.rb +2 -2
- data/lib/puppet/util/limits.rb +1 -0
- data/lib/puppet/util/lockfile.rb +1 -0
- data/lib/puppet/util/log/destination.rb +1 -1
- data/lib/puppet/util/log/destinations.rb +15 -16
- data/lib/puppet/util/log.rb +28 -23
- data/lib/puppet/util/logging.rb +24 -21
- data/lib/puppet/util/metaid.rb +1 -1
- data/lib/puppet/util/metric.rb +5 -3
- data/lib/puppet/util/monkey_patches.rb +2 -1
- data/lib/puppet/util/multi_match.rb +8 -5
- data/lib/puppet/util/network_device/base.rb +2 -2
- data/lib/puppet/util/network_device/config.rb +5 -6
- data/lib/puppet/util/network_device/transport/base.rb +0 -1
- data/lib/puppet/util/network_device/transport.rb +1 -0
- data/lib/puppet/util/network_device.rb +1 -0
- data/lib/puppet/util/package/version/debian.rb +5 -3
- data/lib/puppet/util/package/version/gem.rb +2 -0
- data/lib/puppet/util/package/version/pip.rb +9 -4
- data/lib/puppet/util/package/version/range/eq.rb +2 -0
- data/lib/puppet/util/package/version/range/gt.rb +2 -0
- data/lib/puppet/util/package/version/range/gt_eq.rb +2 -0
- data/lib/puppet/util/package/version/range/lt.rb +3 -1
- data/lib/puppet/util/package/version/range/lt_eq.rb +2 -0
- data/lib/puppet/util/package/version/range/min_max.rb +4 -0
- data/lib/puppet/util/package/version/range/simple.rb +1 -0
- data/lib/puppet/util/package/version/range.rb +8 -5
- data/lib/puppet/util/package/version/rpm.rb +6 -4
- data/lib/puppet/util/package.rb +4 -1
- data/lib/puppet/util/pidlock.rb +8 -8
- data/lib/puppet/util/platform.rb +1 -0
- data/lib/puppet/util/plist.rb +7 -6
- data/lib/puppet/util/posix.rb +10 -8
- data/lib/puppet/util/profiler/aggregate.rb +3 -7
- data/lib/puppet/util/profiler/around_profiler.rb +1 -1
- data/lib/puppet/util/profiler/logging.rb +2 -1
- data/lib/puppet/util/profiler/object_counts.rb +1 -0
- data/lib/puppet/util/profiler/wall_clock.rb +3 -3
- data/lib/puppet/util/profiler.rb +1 -0
- data/lib/puppet/util/provider_features.rb +5 -2
- data/lib/puppet/util/psych_support.rb +1 -0
- data/lib/puppet/util/rdoc/code_objects.rb +14 -17
- data/lib/puppet/util/rdoc/generators/puppet_generator.rb +70 -80
- data/lib/puppet/util/rdoc/generators/template/puppet/puppet.rb +50 -68
- data/lib/puppet/util/rdoc/parser/puppet_parser_core.rb +21 -19
- data/lib/puppet/util/rdoc/parser/puppet_parser_rdoc2.rb +1 -0
- data/lib/puppet/util/rdoc/parser.rb +1 -0
- data/lib/puppet/util/rdoc.rb +9 -9
- data/lib/puppet/util/reference.rb +3 -3
- data/lib/puppet/util/resource_template.rb +2 -1
- data/lib/puppet/util/retry_action.rb +4 -4
- data/lib/puppet/util/rpm_compare.rb +13 -10
- data/lib/puppet/util/rubygems.rb +1 -2
- data/lib/puppet/util/run_mode.rb +5 -4
- data/lib/puppet/util/selinux.rb +25 -14
- data/lib/puppet/util/skip_tags.rb +1 -0
- data/lib/puppet/util/splayer.rb +1 -0
- data/lib/puppet/util/storage.rb +2 -1
- data/lib/puppet/util/suidmanager.rb +21 -20
- data/lib/puppet/util/symbolic_file_mode.rb +11 -8
- data/lib/puppet/util/tag_set.rb +1 -0
- data/lib/puppet/util/tagging.rb +4 -3
- data/lib/puppet/util/terminal.rb +1 -0
- data/lib/puppet/util/user_attr.rb +2 -1
- data/lib/puppet/util/warnings.rb +3 -0
- data/lib/puppet/util/watched_file.rb +3 -1
- data/lib/puppet/util/watcher/change_watcher.rb +1 -0
- data/lib/puppet/util/watcher/periodic_watcher.rb +1 -1
- data/lib/puppet/util/watcher/timer.rb +1 -0
- data/lib/puppet/util/watcher.rb +1 -0
- data/lib/puppet/util/windows/access_control_entry.rb +1 -0
- data/lib/puppet/util/windows/access_control_list.rb +7 -5
- data/lib/puppet/util/windows/adsi.rb +46 -39
- data/lib/puppet/util/windows/com.rb +7 -5
- data/lib/puppet/util/windows/daemon.rb +39 -39
- data/lib/puppet/util/windows/error.rb +3 -2
- data/lib/puppet/util/windows/eventlog.rb +12 -9
- data/lib/puppet/util/windows/file.rb +43 -33
- data/lib/puppet/util/windows/monkey_patches/process.rb +1 -2
- data/lib/puppet/util/windows/principal.rb +31 -29
- data/lib/puppet/util/windows/process.rb +33 -26
- data/lib/puppet/util/windows/registry.rb +84 -49
- data/lib/puppet/util/windows/root_certs.rb +2 -1
- data/lib/puppet/util/windows/security.rb +61 -60
- data/lib/puppet/util/windows/security_descriptor.rb +1 -0
- data/lib/puppet/util/windows/service.rb +16 -5
- data/lib/puppet/util/windows/sid.rb +14 -13
- data/lib/puppet/util/windows/string.rb +1 -0
- data/lib/puppet/util/windows/user.rb +37 -35
- data/lib/puppet/util/windows.rb +7 -1
- data/lib/puppet/util/yaml.rb +1 -0
- data/lib/puppet/util.rb +32 -36
- data/lib/puppet/vendor.rb +2 -1
- data/lib/puppet/version.rb +3 -1
- data/lib/puppet/x509/cert_provider.rb +19 -13
- data/lib/puppet/x509/pem_store.rb +1 -0
- data/lib/puppet/x509.rb +1 -0
- data/lib/puppet.rb +9 -7
- data/lib/puppet_pal.rb +1 -0
- data/lib/puppet_x.rb +1 -0
- data/locales/puppet.pot +2013 -2013
- data/man/man5/puppet.conf.5 +2 -2
- data/man/man8/puppet-agent.8 +1 -1
- data/man/man8/puppet-apply.8 +1 -1
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-config.8 +1 -1
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +1 -1
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +1 -1
- data/man/man8/puppet-filebucket.8 +1 -1
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +1 -1
- data/man/man8/puppet-lookup.8 +1 -1
- data/man/man8/puppet-module.8 +1 -1
- data/man/man8/puppet-node.8 +1 -1
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +1 -1
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-script.8 +1 -1
- data/man/man8/puppet-ssl.8 +1 -1
- data/man/man8/puppet.8 +2 -2
- data/tasks/generate_cert_fixtures.rake +1 -0
- metadata +3 -2456
- data/CONTRIBUTING.md +0 -161
- data/spec/fixtures/faulty_face/puppet/face/syntax.rb +0 -8
- data/spec/fixtures/hiera.yaml +0 -9
- data/spec/fixtures/integration/application/agent/cached_deferred_catalog.json +0 -92
- data/spec/fixtures/integration/application/agent/lib/facter/agent_spec_role.rb +0 -3
- data/spec/fixtures/integration/application/apply/environments/spec/modules/amod/lib/puppet/provider/applytest/applytest.rb +0 -2
- data/spec/fixtures/integration/application/apply/environments/spec/modules/amod/lib/puppet/type/applytest.rb +0 -25
- data/spec/fixtures/integration/application/module/environments/direnv/modules/nginx/README +0 -3
- data/spec/fixtures/integration/application/module/environments/direnv/modules/nginx/manifests/init.pp +0 -17
- data/spec/fixtures/integration/application/module/environments/direnv/modules/nginx/metadata.json +0 -20
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Gemfile +0 -4
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Rakefile +0 -3
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/lib/puppet/functions/l10n.rb +0 -8
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/config.yaml +0 -25
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/ja/puppet-l10n.po +0 -19
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/puppet-l10n.pot +0 -20
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/metadata.json +0 -8
- data/spec/fixtures/integration/node/environment/sitedir/00_a.pp +0 -2
- data/spec/fixtures/integration/node/environment/sitedir/01_b.pp +0 -6
- data/spec/fixtures/integration/node/environment/sitedir/03_empty.pp +0 -0
- data/spec/fixtures/integration/node/environment/sitedir/04_include.pp +0 -2
- data/spec/fixtures/integration/node/environment/sitedir2/00_a.pp +0 -2
- data/spec/fixtures/integration/node/environment/sitedir2/02_folder/01_b.pp +0 -6
- data/spec/fixtures/integration/node/environment/sitedir2/03_c.pp +0 -1
- data/spec/fixtures/integration/node/environment/sitedir2/04_include.pp +0 -2
- 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 +0 -2
- data/spec/fixtures/releases/jamtur01-apache/files/httpd +0 -24
- data/spec/fixtures/releases/jamtur01-apache/files/test.vhost +0 -18
- data/spec/fixtures/releases/jamtur01-apache/lib/puppet/provider/a2mod/debian.rb +0 -21
- data/spec/fixtures/releases/jamtur01-apache/lib/puppet/type/a2mod.rb +0 -12
- data/spec/fixtures/releases/jamtur01-apache/manifests/dev.pp +0 -5
- data/spec/fixtures/releases/jamtur01-apache/manifests/init.pp +0 -34
- data/spec/fixtures/releases/jamtur01-apache/manifests/params.pp +0 -17
- data/spec/fixtures/releases/jamtur01-apache/manifests/php.pp +0 -5
- data/spec/fixtures/releases/jamtur01-apache/manifests/ssl.pp +0 -15
- data/spec/fixtures/releases/jamtur01-apache/manifests/vhost.pp +0 -15
- data/spec/fixtures/releases/jamtur01-apache/metadata.json +0 -1
- data/spec/fixtures/releases/jamtur01-apache/templates/vhost-default.conf.erb +0 -20
- data/spec/fixtures/releases/jamtur01-apache/tests/apache.pp +0 -1
- data/spec/fixtures/releases/jamtur01-apache/tests/dev.pp +0 -1
- data/spec/fixtures/releases/jamtur01-apache/tests/init.pp +0 -1
- data/spec/fixtures/releases/jamtur01-apache/tests/php.pp +0 -1
- data/spec/fixtures/releases/jamtur01-apache/tests/ssl.pp +0 -1
- data/spec/fixtures/releases/jamtur01-apache/tests/vhost.pp +0 -2
- data/spec/fixtures/ssl/127.0.0.1-key.pem +0 -117
- data/spec/fixtures/ssl/127.0.0.1.pem +0 -70
- data/spec/fixtures/ssl/bad-basic-constraints.pem +0 -81
- data/spec/fixtures/ssl/bad-int-basic-constraints.pem +0 -81
- data/spec/fixtures/ssl/ca.pem +0 -81
- data/spec/fixtures/ssl/crl.pem +0 -40
- data/spec/fixtures/ssl/ec-key-openssl.pem +0 -8
- data/spec/fixtures/ssl/ec-key-pk8.pem +0 -5
- data/spec/fixtures/ssl/ec-key.pem +0 -18
- data/spec/fixtures/ssl/ec.pem +0 -50
- data/spec/fixtures/ssl/encrypted-ec-key.pem +0 -21
- data/spec/fixtures/ssl/encrypted-key.pem +0 -120
- data/spec/fixtures/ssl/intermediate-agent-crl.pem +0 -40
- data/spec/fixtures/ssl/intermediate-agent.pem +0 -81
- data/spec/fixtures/ssl/intermediate-crl.pem +0 -46
- data/spec/fixtures/ssl/intermediate.pem +0 -81
- data/spec/fixtures/ssl/netlock-arany-utf8.pem +0 -23
- data/spec/fixtures/ssl/oid-key.pem +0 -117
- data/spec/fixtures/ssl/oid.pem +0 -70
- data/spec/fixtures/ssl/pluto-key.pem +0 -117
- data/spec/fixtures/ssl/pluto.pem +0 -67
- data/spec/fixtures/ssl/renewed.pem +0 -67
- data/spec/fixtures/ssl/request-key.pem +0 -117
- data/spec/fixtures/ssl/request.pem +0 -62
- data/spec/fixtures/ssl/revoked-key.pem +0 -117
- data/spec/fixtures/ssl/revoked.pem +0 -67
- data/spec/fixtures/ssl/signed-key.pem +0 -117
- data/spec/fixtures/ssl/signed.pem +0 -67
- data/spec/fixtures/ssl/tampered-cert.pem +0 -67
- data/spec/fixtures/ssl/tampered-csr.pem +0 -62
- data/spec/fixtures/ssl/trusted_oid_mapping.yaml +0 -5
- data/spec/fixtures/ssl/unknown-127.0.0.1-key.pem +0 -117
- data/spec/fixtures/ssl/unknown-127.0.0.1.pem +0 -70
- data/spec/fixtures/ssl/unknown-ca-key.pem +0 -117
- data/spec/fixtures/ssl/unknown-ca.pem +0 -81
- data/spec/fixtures/stdlib.tgz +0 -0
- data/spec/fixtures/unit/application/environments/production/data/common.yaml +0 -24
- data/spec/fixtures/unit/application/environments/production/environment.conf +0 -1
- data/spec/fixtures/unit/application/environments/production/manifests/site.pp +0 -1
- data/spec/fixtures/unit/application/environments/puppet_func_provider/environment.conf +0 -1
- data/spec/fixtures/unit/application/environments/puppet_func_provider/functions/environment/data.pp +0 -10
- data/spec/fixtures/unit/application/environments/puppet_func_provider/manifests/site.pp +0 -1
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_json/data/bad.json +0 -3
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_json/environment.conf +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_json/hiera.yaml +0 -5
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_json/manifests/site.pp +0 -5
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_yaml/data/bad.yaml +0 -3
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_yaml/environment.conf +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_yaml/hiera.yaml +0 -5
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_yaml/manifests/site.pp +0 -5
- data/spec/fixtures/unit/data_providers/environments/hiera_defaults/data/common.yaml +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_defaults/environment.conf +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_defaults/manifests/site.pp +0 -1
- data/spec/fixtures/unit/data_providers/environments/hiera_defaults/modules/one/data/common.yaml +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_defaults/modules/one/manifests/init.pp +0 -5
- data/spec/fixtures/unit/data_providers/environments/hiera_defaults/modules/one/metadata.json +0 -9
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/first.json +0 -3
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/name.yaml +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/second.json +0 -3
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/single.yaml +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/third_utf8.json +0 -3
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/utf8.yaml +0 -3
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data2/single.yaml +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/environment.conf +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/hiera.yaml +0 -22
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/manifests/site.pp +0 -5
- data/spec/fixtures/unit/data_providers/environments/hiera_misc/data/common.yaml +0 -48
- data/spec/fixtures/unit/data_providers/environments/hiera_misc/environment.conf +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_misc/manifests/site.pp +0 -1
- data/spec/fixtures/unit/data_providers/environments/hiera_misc/modules/one/data/common.yaml +0 -30
- data/spec/fixtures/unit/data_providers/environments/hiera_misc/modules/one/manifests/init.pp +0 -13
- data/spec/fixtures/unit/data_providers/environments/hiera_misc/modules/one/metadata.json +0 -9
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/data/common.yaml +0 -4
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/data/specific.yaml +0 -4
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/environment.conf +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/hiera.yaml +0 -7
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/manifests/site.pp +0 -1
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/first.json +0 -3
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/name.yaml +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/second.json +0 -3
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/server1.yaml +0 -1
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/server2.yaml +0 -1
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/single.yaml +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data2/single.yaml +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/hiera.yaml +0 -20
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/manifests/init.pp +0 -5
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/metadata.json +0 -9
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/data/common.yaml +0 -4
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/data/specific.yaml +0 -4
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/environment.conf +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/hiera.yaml +0 -7
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/manifests/site.pp +0 -1
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/one/data/common.yaml +0 -6
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/one/hiera.yaml +0 -5
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/one/manifests/init.pp +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/one/metadata.json +0 -9
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/two/data/common.yaml +0 -4
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/two/hiera.yaml +0 -5
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/two/manifests/init.pp +0 -3
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/two/metadata.json +0 -9
- data/spec/fixtures/unit/data_providers/environments/production/environment.conf +0 -2
- data/spec/fixtures/unit/data_providers/environments/production/lib/puppet/functions/environment/data.rb +0 -9
- data/spec/fixtures/unit/data_providers/environments/production/modules/abc/lib/puppet/functions/abc/data.rb +0 -9
- data/spec/fixtures/unit/data_providers/environments/production/modules/abc/manifests/init.pp +0 -10
- data/spec/fixtures/unit/data_providers/environments/production/modules/abc/metadata.json +0 -9
- data/spec/fixtures/unit/data_providers/environments/production/modules/xyz/functions/data.pp +0 -6
- data/spec/fixtures/unit/data_providers/environments/production/modules/xyz/manifests/init.pp +0 -9
- data/spec/fixtures/unit/data_providers/environments/production/modules/xyz/metadata.json +0 -9
- data/spec/fixtures/unit/forge/bacula-releases.json +0 -128
- data/spec/fixtures/unit/forge/bacula.json +0 -76
- data/spec/fixtures/unit/forge/bacula.tar.gz +0 -0
- data/spec/fixtures/unit/functions/hiera/hiera/backend/hieraspec_backend.rb +0 -22
- data/spec/fixtures/unit/functions/lookup/data/common.yaml +0 -19
- data/spec/fixtures/unit/functions/lookup/hiera/backend/custom_backend.rb +0 -18
- data/spec/fixtures/unit/functions/lookup/hiera/backend/other_backend.rb +0 -7
- data/spec/fixtures/unit/functions/lookup_fixture/data/common.yaml +0 -19
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/environment.conf +0 -2
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/lib/puppet/functions/environment/data.rb +0 -13
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/abc/lib/puppet/functions/abc/data.rb +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/abc/manifests/init.pp +0 -8
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/abc/metadata.json +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/bad_data/lib/puppet/functions/bad_data/data.rb +0 -7
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/bad_data/manifests/init.pp +0 -2
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/bad_data/metadata.json +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/bca/lib/puppet/functions/bca/data.rb +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/bca/manifests/init.pp +0 -2
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/bca/metadata.json +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_json/data/empty.json +0 -0
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_json/hiera.yaml +0 -5
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_json/manifests/init.pp +0 -2
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_json/metadata.json +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_key_json/data/empty_key.json +0 -1
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_key_json/hiera.yaml +0 -5
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_key_json/manifests/init.pp +0 -2
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_key_json/metadata.json +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_key_yaml/data/empty_key.yaml +0 -1
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_key_yaml/hiera.yaml +0 -5
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_key_yaml/manifests/init.pp +0 -2
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_key_yaml/metadata.json +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_yaml/data/empty.yaml +0 -2
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_yaml/hiera.yaml +0 -5
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_yaml/manifests/init.pp +0 -2
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_yaml/metadata.json +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/hieraprovider/data/first.json +0 -4
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/hieraprovider/hiera.yaml +0 -8
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/hieraprovider/manifests/init.pp +0 -5
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/hieraprovider/metadata.json +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/meta/lib/puppet/functions/meta/data.rb +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/meta/manifests/init.pp +0 -3
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/meta/metadata.json +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/no_provider/manifests/init.pp +0 -2
- data/spec/fixtures/unit/indirector/data_binding/hiera/global.yaml +0 -10
- data/spec/fixtures/unit/indirector/data_binding/hiera/invalid.yaml +0 -1
- data/spec/fixtures/unit/indirector/hiera/global.yaml +0 -10
- data/spec/fixtures/unit/indirector/hiera/invalid.yaml +0 -1
- data/spec/fixtures/unit/module/trailing-comma.json +0 -24
- data/spec/fixtures/unit/parser/functions/create_resources/foo/manifests/init.pp +0 -3
- data/spec/fixtures/unit/parser/functions/create_resources/foo/manifests/wrongdefine.pp +0 -3
- data/spec/fixtures/unit/parser/lexer/aliastest.pp +0 -16
- data/spec/fixtures/unit/parser/lexer/append.pp +0 -11
- data/spec/fixtures/unit/parser/lexer/argumentdefaults.pp +0 -14
- data/spec/fixtures/unit/parser/lexer/arithmetic_expression.pp +0 -8
- data/spec/fixtures/unit/parser/lexer/arraytrailingcomma.pp +0 -3
- data/spec/fixtures/unit/parser/lexer/casestatement.pp +0 -65
- data/spec/fixtures/unit/parser/lexer/classheirarchy.pp +0 -15
- data/spec/fixtures/unit/parser/lexer/classincludes.pp +0 -17
- data/spec/fixtures/unit/parser/lexer/classpathtest.pp +0 -11
- data/spec/fixtures/unit/parser/lexer/collection.pp +0 -10
- data/spec/fixtures/unit/parser/lexer/collection_override.pp +0 -8
- data/spec/fixtures/unit/parser/lexer/collection_within_virtual_definitions.pp +0 -20
- data/spec/fixtures/unit/parser/lexer/componentmetaparams.pp +0 -11
- data/spec/fixtures/unit/parser/lexer/componentrequire.pp +0 -8
- data/spec/fixtures/unit/parser/lexer/deepclassheirarchy.pp +0 -23
- data/spec/fixtures/unit/parser/lexer/defineoverrides.pp +0 -17
- data/spec/fixtures/unit/parser/lexer/emptyclass.pp +0 -9
- data/spec/fixtures/unit/parser/lexer/emptyexec.pp +0 -3
- data/spec/fixtures/unit/parser/lexer/emptyifelse.pp +0 -9
- data/spec/fixtures/unit/parser/lexer/falsevalues.pp +0 -3
- data/spec/fixtures/unit/parser/lexer/filecreate.pp +0 -11
- data/spec/fixtures/unit/parser/lexer/fqdefinition.pp +0 -5
- data/spec/fixtures/unit/parser/lexer/fqparents.pp +0 -11
- data/spec/fixtures/unit/parser/lexer/funccomma.pp +0 -5
- data/spec/fixtures/unit/parser/lexer/hash.pp +0 -33
- data/spec/fixtures/unit/parser/lexer/ifexpression.pp +0 -12
- data/spec/fixtures/unit/parser/lexer/implicititeration.pp +0 -15
- data/spec/fixtures/unit/parser/lexer/multilinecomments.pp +0 -10
- data/spec/fixtures/unit/parser/lexer/multipleclass.pp +0 -9
- data/spec/fixtures/unit/parser/lexer/multipleinstances.pp +0 -7
- data/spec/fixtures/unit/parser/lexer/multisubs.pp +0 -13
- data/spec/fixtures/unit/parser/lexer/namevartest.pp +0 -9
- data/spec/fixtures/unit/parser/lexer/scopetest.pp +0 -13
- data/spec/fixtures/unit/parser/lexer/selectorvalues.pp +0 -49
- data/spec/fixtures/unit/parser/lexer/simpledefaults.pp +0 -5
- data/spec/fixtures/unit/parser/lexer/simpleselector.pp +0 -38
- data/spec/fixtures/unit/parser/lexer/singleary.pp +0 -19
- data/spec/fixtures/unit/parser/lexer/singlequote.pp +0 -11
- data/spec/fixtures/unit/parser/lexer/singleselector.pp +0 -22
- data/spec/fixtures/unit/parser/lexer/subclass_name_duplication.pp +0 -11
- data/spec/fixtures/unit/parser/lexer/tag.pp +0 -9
- data/spec/fixtures/unit/parser/lexer/tagged.pp +0 -35
- data/spec/fixtures/unit/parser/lexer/virtualresources.pp +0 -14
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/binder_config.yaml +0 -10
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/lib/puppet/bindings/confdirtest.rb +0 -10
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/awesome2/lib/puppet/bindings/awesome2/default.rb +0 -20
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/awesome2/lib/puppet_x/awesome2/echo_scheme_handler.rb +0 -18
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/bad/lib/puppet/bindings/bad/default.rb +0 -5
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/good/lib/puppet/bindings/good/default.rb +0 -6
- data/spec/fixtures/unit/pops/binder/config/binder_config/nolayer/binder_config.yaml +0 -6
- data/spec/fixtures/unit/pops/binder/config/binder_config/ok/binder_config.yaml +0 -9
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/functions/usee_puppet.pp +0 -3
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/lib/puppet/functions/usee/callee.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/lib/puppet/functions/usee/usee_ruby.rb +0 -6
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/lib/puppet/type/usee_type.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/manifests/init.pp +0 -8
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/types/zero.pp +0 -1
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee2/lib/puppet/functions/usee2/callee.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/functions/puppet_calling_puppet.pp +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/functions/puppet_calling_puppet_init.pp +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/functions/puppet_calling_ruby.pp +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/caller.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/caller2.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/ruby_calling_puppet.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/ruby_calling_puppet_init.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/ruby_calling_ruby.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/manifests/init.pp +0 -87
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/metadata.json +0 -10
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/types/withuseeone.pp +0 -1
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/types/withuseezero.pp +0 -1
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load.rb +0 -11
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load2.rb +0 -11
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load3.rb +0 -11
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load4.rb +0 -11
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load5.rb +0 -12
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/callee.rb +0 -8
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/callee_ws.rb +0 -8
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/func_with_syntax_error.rb +0 -9
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/good_func_load.rb +0 -9
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/metadata.json +0 -9
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/functions/puppetcalled.pp +0 -3
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/functions/puppetcaller.pp +0 -3
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/functions/puppetcaller4.pp +0 -3
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/lib/puppet/functions/user/caller.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/lib/puppet/functions/user/caller_ws.rb +0 -12
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/lib/puppet/functions/user/callingpuppet.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/metadata.json +0 -9
- data/spec/fixtures/unit/pops/loaders/loaders/module_no_lib/modules/modulea/functions/hello.pp +0 -3
- data/spec/fixtures/unit/pops/loaders/loaders/module_no_lib/modules/modulea/manifests/init.pp +0 -3
- data/spec/fixtures/unit/pops/loaders/loaders/module_no_lib/modules/modulea/metadata.json +0 -10
- data/spec/fixtures/unit/pops/loaders/loaders/no_modules/manifests/site.pp +0 -10
- data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/functions/hello.pp +0 -3
- data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/functions/subspace/hello.pp +0 -3
- data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/lib/puppet/functions/modulea/rb_func_a.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/lib/puppet/functions/rb_func_a.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/manifests/init.pp +0 -3
- data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/metadata.json +0 -10
- data/spec/fixtures/unit/pops/loaders/loaders/wo_metadata_module/modules/moduleb/lib/puppet/functions/moduleb/rb_func_b.rb +0 -6
- data/spec/fixtures/unit/pops/loaders/loaders/wo_metadata_module/modules/moduleb/manifests/init.pp +0 -3
- data/spec/fixtures/unit/pops/parser/lexer/aliastest.pp +0 -16
- data/spec/fixtures/unit/pops/parser/lexer/append.pp +0 -11
- data/spec/fixtures/unit/pops/parser/lexer/argumentdefaults.pp +0 -14
- data/spec/fixtures/unit/pops/parser/lexer/arithmetic_expression.pp +0 -8
- data/spec/fixtures/unit/pops/parser/lexer/arraytrailingcomma.pp +0 -3
- data/spec/fixtures/unit/pops/parser/lexer/casestatement.pp +0 -65
- data/spec/fixtures/unit/pops/parser/lexer/classheirarchy.pp +0 -15
- data/spec/fixtures/unit/pops/parser/lexer/classincludes.pp +0 -17
- data/spec/fixtures/unit/pops/parser/lexer/classpathtest.pp +0 -11
- data/spec/fixtures/unit/pops/parser/lexer/collection.pp +0 -10
- data/spec/fixtures/unit/pops/parser/lexer/collection_override.pp +0 -8
- data/spec/fixtures/unit/pops/parser/lexer/collection_within_virtual_definitions.pp +0 -20
- data/spec/fixtures/unit/pops/parser/lexer/componentmetaparams.pp +0 -11
- data/spec/fixtures/unit/pops/parser/lexer/componentrequire.pp +0 -8
- data/spec/fixtures/unit/pops/parser/lexer/deepclassheirarchy.pp +0 -23
- data/spec/fixtures/unit/pops/parser/lexer/defineoverrides.pp +0 -17
- data/spec/fixtures/unit/pops/parser/lexer/emptyclass.pp +0 -9
- data/spec/fixtures/unit/pops/parser/lexer/emptyexec.pp +0 -3
- data/spec/fixtures/unit/pops/parser/lexer/emptyifelse.pp +0 -9
- data/spec/fixtures/unit/pops/parser/lexer/falsevalues.pp +0 -3
- data/spec/fixtures/unit/pops/parser/lexer/filecreate.pp +0 -11
- data/spec/fixtures/unit/pops/parser/lexer/fqdefinition.pp +0 -5
- data/spec/fixtures/unit/pops/parser/lexer/fqparents.pp +0 -11
- data/spec/fixtures/unit/pops/parser/lexer/funccomma.pp +0 -5
- data/spec/fixtures/unit/pops/parser/lexer/hash.pp +0 -33
- data/spec/fixtures/unit/pops/parser/lexer/ifexpression.pp +0 -12
- data/spec/fixtures/unit/pops/parser/lexer/implicititeration.pp +0 -15
- data/spec/fixtures/unit/pops/parser/lexer/multilinecomments.pp +0 -10
- data/spec/fixtures/unit/pops/parser/lexer/multipleclass.pp +0 -9
- data/spec/fixtures/unit/pops/parser/lexer/multipleinstances.pp +0 -7
- data/spec/fixtures/unit/pops/parser/lexer/multisubs.pp +0 -13
- data/spec/fixtures/unit/pops/parser/lexer/namevartest.pp +0 -9
- data/spec/fixtures/unit/pops/parser/lexer/scopetest.pp +0 -13
- data/spec/fixtures/unit/pops/parser/lexer/selectorvalues.pp +0 -49
- data/spec/fixtures/unit/pops/parser/lexer/simpledefaults.pp +0 -5
- data/spec/fixtures/unit/pops/parser/lexer/simpleselector.pp +0 -38
- data/spec/fixtures/unit/pops/parser/lexer/singleary.pp +0 -19
- data/spec/fixtures/unit/pops/parser/lexer/singlequote.pp +0 -11
- data/spec/fixtures/unit/pops/parser/lexer/singleselector.pp +0 -22
- data/spec/fixtures/unit/pops/parser/lexer/subclass_name_duplication.pp +0 -11
- data/spec/fixtures/unit/pops/parser/lexer/tag.pp +0 -9
- data/spec/fixtures/unit/pops/parser/lexer/tagged.pp +0 -35
- data/spec/fixtures/unit/pops/parser/lexer/virtualresources.pp +0 -14
- data/spec/fixtures/unit/provider/aix_object/aix_colon_list_real_world_input.out +0 -1
- data/spec/fixtures/unit/provider/aix_object/aix_colon_list_real_world_output.out +0 -1
- data/spec/fixtures/unit/provider/cron/crontab/single_line.yaml +0 -272
- data/spec/fixtures/unit/provider/cron/crontab/vixie_header.txt +0 -3
- data/spec/fixtures/unit/provider/cron/parsed/managed +0 -6
- data/spec/fixtures/unit/provider/cron/parsed/simple +0 -9
- data/spec/fixtures/unit/provider/package/dnfmodule/dnf-module-list.txt +0 -19
- data/spec/fixtures/unit/provider/package/gem/gem-list-single-package +0 -4
- data/spec/fixtures/unit/provider/package/gem/line-with-1.8.5-warning +0 -14
- data/spec/fixtures/unit/provider/package/openbsd/pkginfo.detail +0 -19
- data/spec/fixtures/unit/provider/package/openbsd/pkginfo.list +0 -10
- data/spec/fixtures/unit/provider/package/openbsd/pkginfo.query +0 -1
- data/spec/fixtures/unit/provider/package/openbsd/pkginfo_flavors.list +0 -2
- data/spec/fixtures/unit/provider/package/pkg/dummy_implicit_version +0 -3
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris10 +0 -1
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.certificate_warning +0 -2
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.ifo.installed +0 -1
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.ifo.known +0 -1
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.installed +0 -1
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.known +0 -1
- data/spec/fixtures/unit/provider/package/pkg/incomplete +0 -1
- data/spec/fixtures/unit/provider/package/pkg/solaris11 +0 -2
- data/spec/fixtures/unit/provider/package/pkg/unknown_status +0 -12
- data/spec/fixtures/unit/provider/package/pkgng/pkg.query +0 -7
- data/spec/fixtures/unit/provider/package/pkgng/pkg.query.zsh +0 -1
- data/spec/fixtures/unit/provider/package/pkgng/pkg.version +0 -5
- data/spec/fixtures/unit/provider/package/puppetserver_gem/gem-list-local-packages +0 -30
- data/spec/fixtures/unit/provider/package/sun/dummy.server +0 -12
- data/spec/fixtures/unit/provider/package/sun/simple +0 -24
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-broken-notices.txt +0 -187
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-multiline.txt +0 -201
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-obsoletes.txt +0 -195
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-plugin-output.txt +0 -36
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-security.txt +0 -184
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-simple.txt +0 -13
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-subscription-manager.txt +0 -9
- data/spec/fixtures/unit/provider/package/zypper/zypper-list-updates-SLES11sp1.out +0 -369
- data/spec/fixtures/unit/provider/package/zypper/zypper-list-updates-empty.out +0 -3
- data/spec/fixtures/unit/provider/package/zypper/zypper-search-uninstalled.out +0 -13
- data/spec/fixtures/unit/provider/parsedfile/aliases.txt +0 -2
- data/spec/fixtures/unit/provider/parsedfile/simple.txt +0 -7
- data/spec/fixtures/unit/provider/service/base/ps_ef.mixed_encoding +0 -3
- data/spec/fixtures/unit/provider/service/gentoo/rc_update_show +0 -30
- data/spec/fixtures/unit/provider/service/openbsd/rcctl_getall +0 -6
- data/spec/fixtures/unit/provider/service/openrc/rcservice_list +0 -8
- data/spec/fixtures/unit/provider/service/openrc/rcstatus +0 -43
- data/spec/fixtures/unit/provider/service/smf/svcs_fmri.out +0 -6
- data/spec/fixtures/unit/provider/service/smf/svcs_instances.out +0 -4
- data/spec/fixtures/unit/provider/service/smf/svcs_multiple_fmris.out +0 -13
- data/spec/fixtures/unit/provider/service/systemd/list_unit_files_services +0 -16
- data/spec/fixtures/unit/provider/service/systemd/list_unit_files_services_vendor_preset +0 -9
- data/spec/fixtures/unit/provider/user/aix/aix_passwd_file.out +0 -36
- data/spec/fixtures/unit/reports/tagmail/tagmail_email.conf +0 -2
- data/spec/fixtures/unit/reports/tagmail/tagmail_failers.conf +0 -3
- data/spec/fixtures/unit/reports/tagmail/tagmail_passers.conf +0 -30
- data/spec/fixtures/unit/ssl/certificate/old-style-cert-exts.pem +0 -33
- data/spec/fixtures/unit/ssl/certificate_request/old-style-cert-request.pem +0 -28
- data/spec/fixtures/unit/type/user/authorized_keys +0 -6
- data/spec/fixtures/unit/util/filetype/aixtab_output +0 -44
- data/spec/fixtures/unit/util/filetype/suntab_output +0 -9
- data/spec/fixtures/unit/util/monkey_patches/x509.pem +0 -32
- data/spec/fixtures/unit/util/rdoc/basic.pp +0 -16
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_fetch_if_not_on_the_local_disk.yml +0 -104
- 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 +0 -108
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_update_if_content_differs_on_disk.yml +0 -108
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_mtime_is_older_on_disk.yml +0 -104
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_no_header_specified.yml +0 -100
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_not_on_the_local_disk.yml +0 -104
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_not_update_if_mtime_is_newer_on_disk.yml +0 -104
- data/spec/fixtures/yaml/report2.6.x.yaml +0 -190
- data/spec/fixtures/yaml/test.local.yaml +0 -16
- data/spec/integration/agent/logging_spec.rb +0 -179
- data/spec/integration/application/agent_spec.rb +0 -1054
- data/spec/integration/application/apply_spec.rb +0 -781
- data/spec/integration/application/doc_spec.rb +0 -24
- data/spec/integration/application/filebucket_spec.rb +0 -255
- data/spec/integration/application/help_spec.rb +0 -44
- data/spec/integration/application/lookup_spec.rb +0 -275
- data/spec/integration/application/module_spec.rb +0 -230
- data/spec/integration/application/plugin_spec.rb +0 -145
- data/spec/integration/application/resource_spec.rb +0 -68
- data/spec/integration/application/ssl_spec.rb +0 -20
- data/spec/integration/configurer_spec.rb +0 -166
- data/spec/integration/data_binding_spec.rb +0 -278
- data/spec/integration/defaults_spec.rb +0 -279
- data/spec/integration/directory_environments_spec.rb +0 -67
- data/spec/integration/environments/default_manifest_spec.rb +0 -215
- data/spec/integration/environments/setting_hooks_spec.rb +0 -27
- data/spec/integration/environments/settings_interpolation_spec.rb +0 -106
- data/spec/integration/environments/settings_spec.rb +0 -128
- data/spec/integration/http/client_spec.rb +0 -229
- data/spec/integration/indirector/catalog/compiler_spec.rb +0 -75
- data/spec/integration/indirector/direct_file_server_spec.rb +0 -90
- data/spec/integration/indirector/facts/facter_spec.rb +0 -168
- data/spec/integration/indirector/file_content/file_server_spec.rb +0 -106
- data/spec/integration/indirector/file_metadata/file_server_spec.rb +0 -75
- data/spec/integration/l10n/compiler_spec.rb +0 -37
- data/spec/integration/network/formats_spec.rb +0 -90
- data/spec/integration/network/http/api/indirected_routes_spec.rb +0 -60
- data/spec/integration/network/http_pool_spec.rb +0 -275
- data/spec/integration/node/environment_spec.rb +0 -170
- data/spec/integration/node/facts_spec.rb +0 -40
- data/spec/integration/node_spec.rb +0 -77
- data/spec/integration/parser/catalog_spec.rb +0 -68
- data/spec/integration/parser/class_spec.rb +0 -33
- data/spec/integration/parser/collection_spec.rb +0 -362
- data/spec/integration/parser/compiler_spec.rb +0 -1221
- data/spec/integration/parser/conditionals_spec.rb +0 -95
- data/spec/integration/parser/dynamic_scoping_spec.rb +0 -66
- data/spec/integration/parser/environment_spec.rb +0 -47
- data/spec/integration/parser/node_spec.rb +0 -163
- data/spec/integration/parser/parameter_defaults_spec.rb +0 -358
- data/spec/integration/parser/pcore_resource_spec.rb +0 -243
- data/spec/integration/parser/resource_expressions_spec.rb +0 -222
- data/spec/integration/parser/scope_spec.rb +0 -735
- data/spec/integration/parser/script_compiler_spec.rb +0 -113
- data/spec/integration/parser/undef_param_spec.rb +0 -95
- data/spec/integration/provider/file/windows_spec.rb +0 -162
- data/spec/integration/resource/catalog_spec.rb +0 -47
- data/spec/integration/resource/type_collection_spec.rb +0 -88
- data/spec/integration/transaction/report_spec.rb +0 -706
- data/spec/integration/transaction_spec.rb +0 -553
- data/spec/integration/type/exec_spec.rb +0 -114
- data/spec/integration/type/file_spec.rb +0 -2012
- data/spec/integration/type/notify_spec.rb +0 -46
- data/spec/integration/type/package_spec.rb +0 -200
- data/spec/integration/type/tidy_spec.rb +0 -45
- data/spec/integration/type_spec.rb +0 -30
- data/spec/integration/util/autoload_spec.rb +0 -104
- data/spec/integration/util/execution_spec.rb +0 -104
- data/spec/integration/util/rdoc/parser_spec.rb +0 -171
- data/spec/integration/util/settings_spec.rb +0 -115
- data/spec/integration/util/windows/adsi_spec.rb +0 -207
- data/spec/integration/util/windows/monkey_patches/process_spec.rb +0 -231
- data/spec/integration/util/windows/principal_spec.rb +0 -279
- data/spec/integration/util/windows/process_spec.rb +0 -96
- data/spec/integration/util/windows/registry_spec.rb +0 -334
- data/spec/integration/util/windows/security_spec.rb +0 -1010
- data/spec/integration/util/windows/user_spec.rb +0 -226
- data/spec/integration/util_spec.rb +0 -104
- data/spec/lib/matchers/containment_matchers.rb +0 -52
- data/spec/lib/matchers/include_in_order.rb +0 -20
- data/spec/lib/matchers/include_in_order_spec.rb +0 -30
- data/spec/lib/matchers/json.rb +0 -132
- data/spec/lib/matchers/match_tokens2.rb +0 -74
- data/spec/lib/matchers/relationship_graph_matchers.rb +0 -48
- data/spec/lib/matchers/resource.rb +0 -74
- data/spec/lib/puppet/certificate_factory.rb +0 -218
- data/spec/lib/puppet/face/1.0.0/huzzah.rb +0 -8
- data/spec/lib/puppet/face/basetest.rb +0 -51
- data/spec/lib/puppet/face/huzzah/obsolete.rb +0 -6
- data/spec/lib/puppet/face/huzzah.rb +0 -8
- data/spec/lib/puppet/face/version_matching.rb +0 -12
- data/spec/lib/puppet/indirector/indirector_testing/json.rb +0 -6
- data/spec/lib/puppet/indirector/indirector_testing/memory.rb +0 -7
- data/spec/lib/puppet/indirector/indirector_testing/msgpack.rb +0 -6
- data/spec/lib/puppet/indirector_proxy.rb +0 -34
- data/spec/lib/puppet/indirector_testing.rb +0 -31
- data/spec/lib/puppet/test_ca.rb +0 -157
- data/spec/lib/puppet_spec/character_encoding.rb +0 -12
- data/spec/lib/puppet_spec/compiler.rb +0 -112
- data/spec/lib/puppet_spec/files.rb +0 -107
- data/spec/lib/puppet_spec/fixtures.rb +0 -52
- data/spec/lib/puppet_spec/handler.rb +0 -53
- data/spec/lib/puppet_spec/https.rb +0 -95
- data/spec/lib/puppet_spec/language.rb +0 -75
- data/spec/lib/puppet_spec/matchers.rb +0 -68
- data/spec/lib/puppet_spec/module_tool/shared_functions.rb +0 -56
- data/spec/lib/puppet_spec/module_tool/stub_source.rb +0 -136
- data/spec/lib/puppet_spec/modules.rb +0 -82
- data/spec/lib/puppet_spec/network.rb +0 -127
- data/spec/lib/puppet_spec/pops.rb +0 -29
- data/spec/lib/puppet_spec/puppetserver.rb +0 -179
- data/spec/lib/puppet_spec/scope.rb +0 -13
- data/spec/lib/puppet_spec/settings.rb +0 -39
- data/spec/lib/puppet_spec/ssl.rb +0 -265
- data/spec/lib/puppet_spec/unindent.rb +0 -5
- data/spec/lib/puppet_spec/verbose.rb +0 -18
- data/spec/shared_behaviours/all_parsedfile_providers.rb +0 -21
- data/spec/shared_behaviours/an_indirector_face.rb +0 -6
- data/spec/shared_behaviours/documentation_on_faces.rb +0 -261
- data/spec/shared_behaviours/file_server_terminus.rb +0 -38
- data/spec/shared_behaviours/file_serving.rb +0 -73
- data/spec/shared_behaviours/hiera_indirections.rb +0 -98
- data/spec/shared_behaviours/iterative_functions.rb +0 -68
- data/spec/shared_behaviours/memory_terminus.rb +0 -28
- data/spec/shared_behaviours/path_parameters.rb +0 -160
- data/spec/shared_behaviours/store_configs_terminus.rb +0 -21
- data/spec/shared_behaviours/things_that_declare_options.rb +0 -262
- data/spec/shared_contexts/checksum.rb +0 -65
- data/spec/shared_contexts/digests.rb +0 -100
- data/spec/shared_contexts/https.rb +0 -29
- data/spec/shared_contexts/l10n.rb +0 -32
- data/spec/shared_contexts/provider.rb +0 -16
- data/spec/shared_contexts/types_setup.rb +0 -204
- data/spec/shared_examples/rhel_package_provider.rb +0 -398
- data/spec/spec_helper.rb +0 -240
- data/spec/unit/agent/disabler_spec.rb +0 -63
- data/spec/unit/agent/locker_spec.rb +0 -99
- data/spec/unit/agent_spec.rb +0 -416
- data/spec/unit/application/agent_spec.rb +0 -640
- data/spec/unit/application/apply_spec.rb +0 -559
- data/spec/unit/application/config_spec.rb +0 -232
- data/spec/unit/application/describe_spec.rb +0 -135
- data/spec/unit/application/device_spec.rb +0 -616
- data/spec/unit/application/doc_spec.rb +0 -333
- data/spec/unit/application/face_base_spec.rb +0 -454
- data/spec/unit/application/facts_spec.rb +0 -139
- data/spec/unit/application/filebucket_spec.rb +0 -319
- data/spec/unit/application/indirection_base_spec.rb +0 -50
- data/spec/unit/application/lookup_spec.rb +0 -698
- data/spec/unit/application/resource_spec.rb +0 -229
- data/spec/unit/application/ssl_spec.rb +0 -507
- data/spec/unit/application_spec.rb +0 -730
- data/spec/unit/certificate_factory_spec.rb +0 -170
- data/spec/unit/concurrent/lock_spec.rb +0 -29
- data/spec/unit/concurrent/thread_local_singleton_spec.rb +0 -39
- data/spec/unit/configurer/downloader_spec.rb +0 -252
- data/spec/unit/configurer/fact_handler_spec.rb +0 -147
- data/spec/unit/configurer/plugin_handler_spec.rb +0 -152
- data/spec/unit/configurer_spec.rb +0 -1488
- data/spec/unit/confine/exists_spec.rb +0 -82
- data/spec/unit/confine/false_spec.rb +0 -78
- data/spec/unit/confine/feature_spec.rb +0 -59
- data/spec/unit/confine/true_spec.rb +0 -78
- data/spec/unit/confine/variable_spec.rb +0 -105
- data/spec/unit/confine_collection_spec.rb +0 -132
- data/spec/unit/confine_spec.rb +0 -99
- data/spec/unit/confiner_spec.rb +0 -61
- data/spec/unit/context/trusted_information_spec.rb +0 -213
- data/spec/unit/context_spec.rb +0 -217
- data/spec/unit/daemon_spec.rb +0 -193
- data/spec/unit/data_binding_spec.rb +0 -11
- data/spec/unit/data_providers/function_data_provider_spec.rb +0 -122
- data/spec/unit/data_providers/hiera_data_provider_spec.rb +0 -362
- data/spec/unit/datatypes_spec.rb +0 -352
- data/spec/unit/defaults_spec.rb +0 -182
- data/spec/unit/environments_spec.rb +0 -1186
- data/spec/unit/etc_spec.rb +0 -465
- data/spec/unit/external/pson_spec.rb +0 -58
- data/spec/unit/face/config_spec.rb +0 -402
- data/spec/unit/face/epp_face_spec.rb +0 -385
- data/spec/unit/face/facts_spec.rb +0 -78
- data/spec/unit/face/generate_spec.rb +0 -293
- data/spec/unit/face/help_spec.rb +0 -208
- data/spec/unit/face/module/install_spec.rb +0 -40
- data/spec/unit/face/module/list_spec.rb +0 -256
- data/spec/unit/face/module/uninstall_spec.rb +0 -45
- data/spec/unit/face/module/upgrade_spec.rb +0 -26
- data/spec/unit/face/node_spec.rb +0 -129
- data/spec/unit/face/parser_spec.rb +0 -310
- data/spec/unit/face/plugin_spec.rb +0 -158
- data/spec/unit/face_spec.rb +0 -1
- data/spec/unit/facter_impl_spec.rb +0 -31
- data/spec/unit/file_bucket/dipper_spec.rb +0 -405
- data/spec/unit/file_bucket/file_spec.rb +0 -58
- data/spec/unit/file_serving/base_spec.rb +0 -164
- data/spec/unit/file_serving/configuration/parser_spec.rb +0 -206
- data/spec/unit/file_serving/configuration_spec.rb +0 -240
- data/spec/unit/file_serving/content_spec.rb +0 -98
- data/spec/unit/file_serving/fileset_spec.rb +0 -417
- data/spec/unit/file_serving/http_metadata_spec.rb +0 -109
- data/spec/unit/file_serving/metadata_spec.rb +0 -551
- data/spec/unit/file_serving/mount/file_spec.rb +0 -188
- data/spec/unit/file_serving/mount/locales_spec.rb +0 -72
- data/spec/unit/file_serving/mount/modules_spec.rb +0 -69
- data/spec/unit/file_serving/mount/pluginfacts_spec.rb +0 -72
- data/spec/unit/file_serving/mount/plugins_spec.rb +0 -72
- data/spec/unit/file_serving/mount/scripts_spec.rb +0 -69
- data/spec/unit/file_serving/mount/tasks_spec.rb +0 -71
- data/spec/unit/file_serving/mount_spec.rb +0 -30
- data/spec/unit/file_serving/terminus_helper_spec.rb +0 -114
- data/spec/unit/file_serving/terminus_selector_spec.rb +0 -84
- data/spec/unit/file_system/path_pattern_spec.rb +0 -153
- data/spec/unit/file_system/uniquefile_spec.rb +0 -245
- data/spec/unit/file_system_spec.rb +0 -1198
- data/spec/unit/forge/errors_spec.rb +0 -80
- data/spec/unit/forge/forge_spec.rb +0 -69
- data/spec/unit/forge/module_release_spec.rb +0 -331
- data/spec/unit/forge/repository_spec.rb +0 -154
- data/spec/unit/forge_spec.rb +0 -210
- data/spec/unit/functions/abs_spec.rb +0 -70
- data/spec/unit/functions/all_spec.rb +0 -97
- data/spec/unit/functions/annotate_spec.rb +0 -175
- data/spec/unit/functions/any_spec.rb +0 -109
- data/spec/unit/functions/assert_type_spec.rb +0 -97
- data/spec/unit/functions/binary_file_spec.rb +0 -46
- data/spec/unit/functions/break_spec.rb +0 -207
- data/spec/unit/functions/call_spec.rb +0 -131
- data/spec/unit/functions/camelcase_spec.rb +0 -34
- data/spec/unit/functions/capitalize_spec.rb +0 -34
- data/spec/unit/functions/ceiling_spec.rb +0 -65
- data/spec/unit/functions/chomp_spec.rb +0 -46
- data/spec/unit/functions/chop_spec.rb +0 -38
- data/spec/unit/functions/compare_spec.rb +0 -147
- data/spec/unit/functions/contain_spec.rb +0 -297
- data/spec/unit/functions/convert_to_spec.rb +0 -25
- data/spec/unit/functions/defined_spec.rb +0 -288
- data/spec/unit/functions/dig_spec.rb +0 -58
- data/spec/unit/functions/downcase_spec.rb +0 -34
- data/spec/unit/functions/each_spec.rb +0 -107
- data/spec/unit/functions/empty_spec.rb +0 -87
- data/spec/unit/functions/epp_spec.rb +0 -178
- data/spec/unit/functions/filter_spec.rb +0 -145
- data/spec/unit/functions/find_file_spec.rb +0 -69
- data/spec/unit/functions/find_template_spec.rb +0 -69
- data/spec/unit/functions/flatten_spec.rb +0 -31
- data/spec/unit/functions/floor_spec.rb +0 -65
- data/spec/unit/functions/get_spec.rb +0 -135
- data/spec/unit/functions/getvar_spec.rb +0 -121
- data/spec/unit/functions/group_by_spec.rb +0 -40
- data/spec/unit/functions/hiera_spec.rb +0 -495
- data/spec/unit/functions/include_spec.rb +0 -186
- data/spec/unit/functions/index_spec.rb +0 -184
- data/spec/unit/functions/inline_epp_spec.rb +0 -120
- data/spec/unit/functions/join_spec.rb +0 -33
- data/spec/unit/functions/keys_spec.rb +0 -31
- data/spec/unit/functions/length_spec.rb +0 -50
- data/spec/unit/functions/lest_spec.rb +0 -34
- data/spec/unit/functions/logging_spec.rb +0 -62
- data/spec/unit/functions/lookup_fixture_spec.rb +0 -687
- data/spec/unit/functions/lookup_spec.rb +0 -3415
- data/spec/unit/functions/lstrip_spec.rb +0 -30
- data/spec/unit/functions/map_spec.rb +0 -163
- data/spec/unit/functions/match_spec.rb +0 -74
- data/spec/unit/functions/max_spec.rb +0 -158
- data/spec/unit/functions/min_spec.rb +0 -158
- data/spec/unit/functions/module_directory_spec.rb +0 -43
- data/spec/unit/functions/new_spec.rb +0 -776
- data/spec/unit/functions/next_spec.rb +0 -93
- data/spec/unit/functions/partition_spec.rb +0 -40
- data/spec/unit/functions/reduce_spec.rb +0 -85
- data/spec/unit/functions/regsubst_spec.rb +0 -114
- data/spec/unit/functions/require_spec.rb +0 -82
- data/spec/unit/functions/return_spec.rb +0 -109
- data/spec/unit/functions/reverse_each_spec.rb +0 -108
- data/spec/unit/functions/round_spec.rb +0 -41
- data/spec/unit/functions/rstrip_spec.rb +0 -30
- data/spec/unit/functions/scanf_spec.rb +0 -32
- data/spec/unit/functions/shared.rb +0 -94
- data/spec/unit/functions/size_spec.rb +0 -50
- data/spec/unit/functions/slice_spec.rb +0 -136
- data/spec/unit/functions/sort_spec.rb +0 -79
- data/spec/unit/functions/split_spec.rb +0 -59
- data/spec/unit/functions/step_spec.rb +0 -113
- data/spec/unit/functions/strftime_spec.rb +0 -152
- data/spec/unit/functions/strip_spec.rb +0 -30
- data/spec/unit/functions/then_spec.rb +0 -40
- data/spec/unit/functions/tree_each_spec.rb +0 -493
- data/spec/unit/functions/type_spec.rb +0 -35
- data/spec/unit/functions/unique_spec.rb +0 -111
- data/spec/unit/functions/unwrap_spec.rb +0 -37
- data/spec/unit/functions/upcase_spec.rb +0 -34
- data/spec/unit/functions/values_spec.rb +0 -30
- data/spec/unit/functions/versioncmp_spec.rb +0 -70
- data/spec/unit/functions/with_spec.rb +0 -31
- data/spec/unit/functions4_spec.rb +0 -1046
- data/spec/unit/gettext/config_spec.rb +0 -156
- data/spec/unit/gettext/module_loading_spec.rb +0 -53
- data/spec/unit/graph/key_spec.rb +0 -41
- data/spec/unit/graph/rb_tree_map_spec.rb +0 -570
- data/spec/unit/graph/relationship_graph_spec.rb +0 -401
- data/spec/unit/graph/sequential_prioritizer_spec.rb +0 -32
- data/spec/unit/graph/simple_graph_spec.rb +0 -759
- data/spec/unit/hiera/scope_spec.rb +0 -105
- data/spec/unit/hiera_puppet_spec.rb +0 -159
- data/spec/unit/http/client_spec.rb +0 -937
- data/spec/unit/http/dns_spec.rb +0 -281
- data/spec/unit/http/external_client_spec.rb +0 -201
- data/spec/unit/http/factory_spec.rb +0 -160
- data/spec/unit/http/pool_entry_spec.rb +0 -49
- data/spec/unit/http/pool_spec.rb +0 -401
- data/spec/unit/http/proxy_spec.rb +0 -347
- data/spec/unit/http/resolver_spec.rb +0 -133
- data/spec/unit/http/response_spec.rb +0 -75
- data/spec/unit/http/service/ca_spec.rb +0 -281
- data/spec/unit/http/service/compiler_spec.rb +0 -746
- data/spec/unit/http/service/file_server_spec.rb +0 -309
- data/spec/unit/http/service/puppetserver_spec.rb +0 -112
- data/spec/unit/http/service/report_spec.rb +0 -107
- data/spec/unit/http/service_spec.rb +0 -137
- data/spec/unit/http/session_spec.rb +0 -309
- data/spec/unit/http/site_spec.rb +0 -96
- data/spec/unit/indirector/catalog/compiler_spec.rb +0 -1221
- data/spec/unit/indirector/catalog/json_spec.rb +0 -66
- data/spec/unit/indirector/catalog/msgpack_spec.rb +0 -11
- data/spec/unit/indirector/catalog/rest_spec.rb +0 -74
- data/spec/unit/indirector/catalog/store_configs_spec.rb +0 -16
- data/spec/unit/indirector/catalog/yaml_spec.rb +0 -23
- data/spec/unit/indirector/data_binding/hiera_spec.rb +0 -19
- data/spec/unit/indirector/data_binding/none_spec.rb +0 -28
- data/spec/unit/indirector/direct_file_server_spec.rb +0 -87
- data/spec/unit/indirector/envelope_spec.rb +0 -32
- data/spec/unit/indirector/exec_spec.rb +0 -63
- data/spec/unit/indirector/face_spec.rb +0 -80
- data/spec/unit/indirector/facts/facter_spec.rb +0 -290
- data/spec/unit/indirector/facts/json_spec.rb +0 -255
- data/spec/unit/indirector/facts/network_device_spec.rb +0 -77
- data/spec/unit/indirector/facts/rest_spec.rb +0 -99
- data/spec/unit/indirector/facts/store_configs_spec.rb +0 -16
- data/spec/unit/indirector/facts/yaml_spec.rb +0 -255
- data/spec/unit/indirector/file_bucket_file/file_spec.rb +0 -426
- data/spec/unit/indirector/file_bucket_file/rest_spec.rb +0 -89
- data/spec/unit/indirector/file_bucket_file/selector_spec.rb +0 -46
- data/spec/unit/indirector/file_content/file_server_spec.rb +0 -13
- data/spec/unit/indirector/file_content/file_spec.rb +0 -13
- data/spec/unit/indirector/file_content/rest_spec.rb +0 -60
- data/spec/unit/indirector/file_content/selector_spec.rb +0 -9
- data/spec/unit/indirector/file_metadata/file_server_spec.rb +0 -13
- data/spec/unit/indirector/file_metadata/file_spec.rb +0 -57
- data/spec/unit/indirector/file_metadata/http_spec.rb +0 -194
- data/spec/unit/indirector/file_metadata/rest_spec.rb +0 -116
- data/spec/unit/indirector/file_metadata/selector_spec.rb +0 -10
- data/spec/unit/indirector/file_server_spec.rb +0 -288
- data/spec/unit/indirector/hiera_spec.rb +0 -22
- data/spec/unit/indirector/indirection_spec.rb +0 -916
- data/spec/unit/indirector/json_spec.rb +0 -200
- data/spec/unit/indirector/memory_spec.rb +0 -26
- data/spec/unit/indirector/msgpack_spec.rb +0 -199
- data/spec/unit/indirector/node/exec_spec.rb +0 -107
- data/spec/unit/indirector/node/json_spec.rb +0 -33
- data/spec/unit/indirector/node/memory_spec.rb +0 -16
- data/spec/unit/indirector/node/msgpack_spec.rb +0 -23
- data/spec/unit/indirector/node/plain_spec.rb +0 -34
- data/spec/unit/indirector/node/rest_spec.rb +0 -66
- data/spec/unit/indirector/node/store_configs_spec.rb +0 -16
- data/spec/unit/indirector/node/yaml_spec.rb +0 -23
- data/spec/unit/indirector/none_spec.rb +0 -33
- data/spec/unit/indirector/plain_spec.rb +0 -26
- data/spec/unit/indirector/report/json_spec.rb +0 -72
- data/spec/unit/indirector/report/msgpack_spec.rb +0 -27
- data/spec/unit/indirector/report/processor_spec.rb +0 -99
- data/spec/unit/indirector/report/rest_spec.rb +0 -58
- data/spec/unit/indirector/report/yaml_spec.rb +0 -91
- data/spec/unit/indirector/request_spec.rb +0 -295
- data/spec/unit/indirector/resource/ral_spec.rb +0 -89
- data/spec/unit/indirector/resource/store_configs_spec.rb +0 -20
- data/spec/unit/indirector/rest_spec.rb +0 -149
- data/spec/unit/indirector/terminus_spec.rb +0 -264
- data/spec/unit/indirector/yaml_spec.rb +0 -188
- data/spec/unit/indirector_spec.rb +0 -148
- data/spec/unit/info_service_spec.rb +0 -575
- data/spec/unit/interface/action_builder_spec.rb +0 -216
- data/spec/unit/interface/action_manager_spec.rb +0 -254
- data/spec/unit/interface/action_spec.rb +0 -670
- data/spec/unit/interface/documentation_spec.rb +0 -32
- data/spec/unit/interface/face_collection_spec.rb +0 -219
- data/spec/unit/interface/option_builder_spec.rb +0 -86
- data/spec/unit/interface/option_spec.rb +0 -156
- data/spec/unit/interface_spec.rb +0 -305
- data/spec/unit/module_spec.rb +0 -985
- data/spec/unit/module_tool/application_spec.rb +0 -25
- data/spec/unit/module_tool/applications/checksummer_spec.rb +0 -115
- data/spec/unit/module_tool/applications/installer_spec.rb +0 -473
- data/spec/unit/module_tool/applications/uninstaller_spec.rb +0 -181
- data/spec/unit/module_tool/applications/unpacker_spec.rb +0 -75
- data/spec/unit/module_tool/applications/upgrader_spec.rb +0 -337
- data/spec/unit/module_tool/install_directory_spec.rb +0 -70
- data/spec/unit/module_tool/installed_modules_spec.rb +0 -49
- data/spec/unit/module_tool/metadata_spec.rb +0 -330
- data/spec/unit/module_tool/tar/gnu_spec.rb +0 -23
- data/spec/unit/module_tool/tar/mini_spec.rb +0 -109
- data/spec/unit/module_tool/tar_spec.rb +0 -36
- data/spec/unit/module_tool_spec.rb +0 -304
- data/spec/unit/network/authconfig_spec.rb +0 -8
- data/spec/unit/network/authorization_spec.rb +0 -8
- data/spec/unit/network/format_handler_spec.rb +0 -93
- data/spec/unit/network/format_spec.rb +0 -205
- data/spec/unit/network/format_support_spec.rb +0 -199
- data/spec/unit/network/formats_spec.rb +0 -584
- data/spec/unit/network/http/api/indirected_routes_spec.rb +0 -425
- data/spec/unit/network/http/api/master_spec.rb +0 -38
- data/spec/unit/network/http/api/server/v3/environments_spec.rb +0 -51
- data/spec/unit/network/http/api/server/v3_spec.rb +0 -78
- data/spec/unit/network/http/api_spec.rb +0 -109
- data/spec/unit/network/http/connection_spec.rb +0 -636
- data/spec/unit/network/http/error_spec.rb +0 -30
- data/spec/unit/network/http/handler_spec.rb +0 -164
- data/spec/unit/network/http/request_spec.rb +0 -108
- data/spec/unit/network/http/response_spec.rb +0 -106
- data/spec/unit/network/http/route_spec.rb +0 -90
- data/spec/unit/network/http_pool_spec.rb +0 -145
- data/spec/unit/network/uri_spec.rb +0 -47
- data/spec/unit/node/environment_spec.rb +0 -612
- data/spec/unit/node/facts_spec.rb +0 -225
- data/spec/unit/node_spec.rb +0 -434
- data/spec/unit/other/selinux_spec.rb +0 -27
- data/spec/unit/parameter/boolean_spec.rb +0 -35
- data/spec/unit/parameter/package_options_spec.rb +0 -43
- data/spec/unit/parameter/path_spec.rb +0 -23
- data/spec/unit/parameter/value_collection_spec.rb +0 -160
- data/spec/unit/parameter/value_spec.rb +0 -82
- data/spec/unit/parameter_spec.rb +0 -272
- data/spec/unit/parser/ast/block_expression_spec.rb +0 -66
- data/spec/unit/parser/ast/leaf_spec.rb +0 -136
- data/spec/unit/parser/compiler_spec.rb +0 -1020
- data/spec/unit/parser/files_spec.rb +0 -101
- data/spec/unit/parser/functions/create_resources_spec.rb +0 -326
- data/spec/unit/parser/functions/digest_spec.rb +0 -26
- data/spec/unit/parser/functions/fail_spec.rb +0 -23
- data/spec/unit/parser/functions/file_spec.rb +0 -99
- data/spec/unit/parser/functions/fqdn_rand_spec.rb +0 -87
- data/spec/unit/parser/functions/generate_spec.rb +0 -124
- data/spec/unit/parser/functions/hiera_array_spec.rb +0 -12
- data/spec/unit/parser/functions/hiera_hash_spec.rb +0 -12
- data/spec/unit/parser/functions/hiera_include_spec.rb +0 -12
- data/spec/unit/parser/functions/hiera_spec.rb +0 -12
- data/spec/unit/parser/functions/inline_template_spec.rb +0 -36
- data/spec/unit/parser/functions/lookup_spec.rb +0 -14
- data/spec/unit/parser/functions/realize_spec.rb +0 -70
- data/spec/unit/parser/functions/regsubst_spec.rb +0 -19
- data/spec/unit/parser/functions/scanf_spec.rb +0 -25
- data/spec/unit/parser/functions/shellquote_spec.rb +0 -66
- data/spec/unit/parser/functions/split_spec.rb +0 -13
- data/spec/unit/parser/functions/sprintf_spec.rb +0 -68
- data/spec/unit/parser/functions/tag_spec.rb +0 -30
- data/spec/unit/parser/functions/tagged_spec.rb +0 -36
- data/spec/unit/parser/functions/template_spec.rb +0 -93
- data/spec/unit/parser/functions/versioncmp_spec.rb +0 -28
- data/spec/unit/parser/functions_spec.rb +0 -156
- data/spec/unit/parser/relationship_spec.rb +0 -74
- data/spec/unit/parser/resource/param_spec.rb +0 -32
- data/spec/unit/parser/resource_spec.rb +0 -657
- data/spec/unit/parser/scope_spec.rb +0 -698
- data/spec/unit/parser/templatewrapper_spec.rb +0 -111
- data/spec/unit/parser/type_loader_spec.rb +0 -202
- data/spec/unit/plan_spec.rb +0 -65
- data/spec/unit/pops/adaptable_spec.rb +0 -139
- data/spec/unit/pops/benchmark_spec.rb +0 -123
- data/spec/unit/pops/containment_spec.rb +0 -0
- data/spec/unit/pops/evaluator/access_ops_spec.rb +0 -560
- data/spec/unit/pops/evaluator/arithmetic_ops_spec.rb +0 -317
- data/spec/unit/pops/evaluator/basic_expressions_spec.rb +0 -101
- data/spec/unit/pops/evaluator/collections_ops_spec.rb +0 -108
- data/spec/unit/pops/evaluator/comparison_ops_spec.rb +0 -267
- data/spec/unit/pops/evaluator/conditionals_spec.rb +0 -189
- data/spec/unit/pops/evaluator/deferred_resolver_spec.rb +0 -46
- data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +0 -1639
- data/spec/unit/pops/evaluator/evaluator_rspec_helper.rb +0 -75
- data/spec/unit/pops/evaluator/json_strict_literal_evaluator_spec.rb +0 -63
- data/spec/unit/pops/evaluator/literal_evaluator_spec.rb +0 -43
- data/spec/unit/pops/evaluator/logical_ops_spec.rb +0 -89
- data/spec/unit/pops/evaluator/runtime3_converter_spec.rb +0 -181
- data/spec/unit/pops/evaluator/string_interpolation_spec.rb +0 -43
- data/spec/unit/pops/evaluator/variables_spec.rb +0 -88
- data/spec/unit/pops/factory_rspec_helper.rb +0 -65
- data/spec/unit/pops/factory_spec.rb +0 -309
- data/spec/unit/pops/issues_spec.rb +0 -210
- data/spec/unit/pops/label_provider_spec.rb +0 -46
- data/spec/unit/pops/loaders/dependency_loader_spec.rb +0 -122
- data/spec/unit/pops/loaders/environment_loader_spec.rb +0 -172
- data/spec/unit/pops/loaders/loader_paths_spec.rb +0 -43
- data/spec/unit/pops/loaders/loader_spec.rb +0 -516
- data/spec/unit/pops/loaders/loaders_spec.rb +0 -863
- data/spec/unit/pops/loaders/module_loaders_spec.rb +0 -268
- data/spec/unit/pops/loaders/static_loader_spec.rb +0 -85
- data/spec/unit/pops/lookup/context_spec.rb +0 -333
- data/spec/unit/pops/lookup/interpolation_spec.rb +0 -389
- data/spec/unit/pops/lookup/lookup_spec.rb +0 -375
- data/spec/unit/pops/merge_strategy_spec.rb +0 -17
- data/spec/unit/pops/migration_spec.rb +0 -51
- data/spec/unit/pops/model/model_spec.rb +0 -41
- data/spec/unit/pops/model/pn_transformer_spec.rb +0 -56
- data/spec/unit/pops/parser/epp_parser_spec.rb +0 -115
- data/spec/unit/pops/parser/evaluating_parser_spec.rb +0 -89
- data/spec/unit/pops/parser/lexer2_spec.rb +0 -942
- data/spec/unit/pops/parser/locator_spec.rb +0 -86
- data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +0 -380
- data/spec/unit/pops/parser/parse_calls_spec.rb +0 -171
- data/spec/unit/pops/parser/parse_conditionals_spec.rb +0 -184
- data/spec/unit/pops/parser/parse_containers_spec.rb +0 -247
- data/spec/unit/pops/parser/parse_functions_spec.rb +0 -19
- data/spec/unit/pops/parser/parse_heredoc_spec.rb +0 -276
- data/spec/unit/pops/parser/parse_lambda_spec.rb +0 -19
- data/spec/unit/pops/parser/parse_plan_spec.rb +0 -47
- data/spec/unit/pops/parser/parse_resource_spec.rb +0 -328
- data/spec/unit/pops/parser/parser_rspec_helper.rb +0 -17
- data/spec/unit/pops/parser/parser_spec.rb +0 -211
- data/spec/unit/pops/parser/parsing_typed_parameters_spec.rb +0 -65
- data/spec/unit/pops/parser/pn_parser_spec.rb +0 -100
- data/spec/unit/pops/pn_spec.rb +0 -147
- data/spec/unit/pops/puppet_stack_spec.rb +0 -108
- data/spec/unit/pops/resource/resource_type_impl_spec.rb +0 -37
- data/spec/unit/pops/serialization/packer_spec.rb +0 -162
- data/spec/unit/pops/serialization/serialization_spec.rb +0 -458
- data/spec/unit/pops/serialization/to_from_hr_spec.rb +0 -649
- data/spec/unit/pops/serialization/to_stringified_spec.rb +0 -162
- data/spec/unit/pops/time/timespan_spec.rb +0 -121
- data/spec/unit/pops/time/timestamp_spec.rb +0 -13
- data/spec/unit/pops/types/class_loader_spec.rb +0 -10
- data/spec/unit/pops/types/deferred_spec.rb +0 -87
- data/spec/unit/pops/types/error_spec.rb +0 -207
- data/spec/unit/pops/types/iterable_spec.rb +0 -262
- data/spec/unit/pops/types/p_binary_type_spec.rb +0 -243
- data/spec/unit/pops/types/p_init_type_spec.rb +0 -383
- data/spec/unit/pops/types/p_object_type_spec.rb +0 -1730
- data/spec/unit/pops/types/p_sem_ver_type_spec.rb +0 -340
- data/spec/unit/pops/types/p_sensitive_type_spec.rb +0 -191
- data/spec/unit/pops/types/p_timespan_type_spec.rb +0 -323
- data/spec/unit/pops/types/p_timestamp_type_spec.rb +0 -391
- data/spec/unit/pops/types/p_type_set_type_spec.rb +0 -549
- data/spec/unit/pops/types/p_uri_type_spec.rb +0 -191
- data/spec/unit/pops/types/recursion_guard_spec.rb +0 -93
- data/spec/unit/pops/types/ruby_generator_spec.rb +0 -874
- data/spec/unit/pops/types/string_converter_spec.rb +0 -1202
- data/spec/unit/pops/types/task_spec.rb +0 -411
- data/spec/unit/pops/types/type_acceptor_spec.rb +0 -106
- data/spec/unit/pops/types/type_asserter_spec.rb +0 -43
- data/spec/unit/pops/types/type_calculator_spec.rb +0 -2504
- data/spec/unit/pops/types/type_factory_spec.rb +0 -322
- data/spec/unit/pops/types/type_formatter_spec.rb +0 -427
- data/spec/unit/pops/types/type_mismatch_describer_spec.rb +0 -424
- data/spec/unit/pops/types/type_parser_spec.rb +0 -445
- data/spec/unit/pops/types/types_spec.rb +0 -755
- data/spec/unit/pops/utils_spec.rb +0 -70
- data/spec/unit/pops/validation_spec.rb +0 -66
- data/spec/unit/pops/validator/validator_spec.rb +0 -1029
- data/spec/unit/pops/visitor_spec.rb +0 -93
- data/spec/unit/property/boolean_spec.rb +0 -24
- data/spec/unit/property/ensure_spec.rb +0 -11
- data/spec/unit/property/keyvalue_spec.rb +0 -259
- data/spec/unit/property/list_spec.rb +0 -172
- data/spec/unit/property/ordered_list_spec.rb +0 -59
- data/spec/unit/property_spec.rb +0 -563
- data/spec/unit/provider/README.markdown +0 -4
- data/spec/unit/provider/aix_object_spec.rb +0 -821
- data/spec/unit/provider/command_spec.rb +0 -62
- data/spec/unit/provider/exec/posix_spec.rb +0 -232
- data/spec/unit/provider/exec/shell_spec.rb +0 -53
- data/spec/unit/provider/exec/windows_spec.rb +0 -105
- data/spec/unit/provider/exec_spec.rb +0 -244
- data/spec/unit/provider/file/posix_spec.rb +0 -230
- data/spec/unit/provider/file/windows_spec.rb +0 -152
- data/spec/unit/provider/group/aix_spec.rb +0 -91
- data/spec/unit/provider/group/directoryservice_spec.rb +0 -33
- data/spec/unit/provider/group/groupadd_spec.rb +0 -284
- data/spec/unit/provider/group/ldap_spec.rb +0 -98
- data/spec/unit/provider/group/pw_spec.rb +0 -78
- data/spec/unit/provider/group/windows_adsi_spec.rb +0 -398
- data/spec/unit/provider/ldap_spec.rb +0 -242
- data/spec/unit/provider/nameservice/directoryservice_spec.rb +0 -157
- data/spec/unit/provider/nameservice_spec.rb +0 -398
- data/spec/unit/provider/package/aix_spec.rb +0 -158
- data/spec/unit/provider/package/appdmg_spec.rb +0 -42
- data/spec/unit/provider/package/apt_spec.rb +0 -302
- data/spec/unit/provider/package/aptitude_spec.rb +0 -46
- data/spec/unit/provider/package/aptrpm_spec.rb +0 -42
- data/spec/unit/provider/package/base_spec.rb +0 -19
- data/spec/unit/provider/package/dnf_spec.rb +0 -55
- data/spec/unit/provider/package/dnfmodule_spec.rb +0 -256
- data/spec/unit/provider/package/dpkg_spec.rb +0 -444
- data/spec/unit/provider/package/freebsd_spec.rb +0 -51
- data/spec/unit/provider/package/gem_spec.rb +0 -487
- data/spec/unit/provider/package/hpux_spec.rb +0 -48
- data/spec/unit/provider/package/macports_spec.rb +0 -142
- data/spec/unit/provider/package/nim_spec.rb +0 -267
- data/spec/unit/provider/package/openbsd_spec.rb +0 -417
- data/spec/unit/provider/package/opkg_spec.rb +0 -180
- data/spec/unit/provider/package/pacman_spec.rb +0 -438
- data/spec/unit/provider/package/pip2_spec.rb +0 -38
- data/spec/unit/provider/package/pip3_spec.rb +0 -38
- data/spec/unit/provider/package/pip_spec.rb +0 -504
- data/spec/unit/provider/package/pkg_spec.rb +0 -473
- data/spec/unit/provider/package/pkgdmg_spec.rb +0 -166
- data/spec/unit/provider/package/pkgin_spec.rb +0 -185
- data/spec/unit/provider/package/pkgng_spec.rb +0 -228
- data/spec/unit/provider/package/pkgutil_spec.rb +0 -231
- data/spec/unit/provider/package/portage_spec.rb +0 -226
- data/spec/unit/provider/package/puppet_gem_spec.rb +0 -130
- data/spec/unit/provider/package/puppetserver_gem_spec.rb +0 -139
- data/spec/unit/provider/package/rpm_spec.rb +0 -674
- data/spec/unit/provider/package/sun_spec.rb +0 -112
- data/spec/unit/provider/package/tdnf_spec.rb +0 -15
- data/spec/unit/provider/package/up2date_spec.rb +0 -22
- data/spec/unit/provider/package/urpmi_spec.rb +0 -84
- data/spec/unit/provider/package/windows/exe_package_spec.rb +0 -114
- data/spec/unit/provider/package/windows/msi_package_spec.rb +0 -111
- data/spec/unit/provider/package/windows/package_spec.rb +0 -180
- data/spec/unit/provider/package/windows_spec.rb +0 -272
- data/spec/unit/provider/package/yum_spec.rb +0 -512
- data/spec/unit/provider/package/zypper_spec.rb +0 -327
- data/spec/unit/provider/package_targetable_spec.rb +0 -60
- data/spec/unit/provider/parsedfile_spec.rb +0 -263
- data/spec/unit/provider/service/base_spec.rb +0 -109
- data/spec/unit/provider/service/bsd_spec.rb +0 -127
- data/spec/unit/provider/service/daemontools_spec.rb +0 -190
- data/spec/unit/provider/service/debian_spec.rb +0 -158
- data/spec/unit/provider/service/freebsd_spec.rb +0 -92
- data/spec/unit/provider/service/gentoo_spec.rb +0 -250
- data/spec/unit/provider/service/init_spec.rb +0 -316
- data/spec/unit/provider/service/launchd_spec.rb +0 -425
- data/spec/unit/provider/service/openbsd_spec.rb +0 -196
- data/spec/unit/provider/service/openrc_spec.rb +0 -231
- data/spec/unit/provider/service/openwrt_spec.rb +0 -101
- data/spec/unit/provider/service/rcng_spec.rb +0 -40
- data/spec/unit/provider/service/redhat_spec.rb +0 -190
- data/spec/unit/provider/service/runit_spec.rb +0 -164
- data/spec/unit/provider/service/smf_spec.rb +0 -526
- data/spec/unit/provider/service/src_spec.rb +0 -186
- data/spec/unit/provider/service/systemd_spec.rb +0 -576
- data/spec/unit/provider/service/upstart_spec.rb +0 -681
- data/spec/unit/provider/service/windows_spec.rb +0 -475
- data/spec/unit/provider/user/aix_spec.rb +0 -320
- data/spec/unit/provider/user/directoryservice_spec.rb +0 -1256
- data/spec/unit/provider/user/hpux_spec.rb +0 -72
- data/spec/unit/provider/user/ldap_spec.rb +0 -286
- data/spec/unit/provider/user/openbsd_spec.rb +0 -76
- data/spec/unit/provider/user/pw_spec.rb +0 -252
- data/spec/unit/provider/user/user_role_add_spec.rb +0 -374
- data/spec/unit/provider/user/useradd_spec.rb +0 -849
- data/spec/unit/provider/user/windows_adsi_spec.rb +0 -407
- data/spec/unit/provider_spec.rb +0 -904
- data/spec/unit/puppet_pal_2pec.rb +0 -1033
- data/spec/unit/puppet_pal_catalog_spec.rb +0 -962
- data/spec/unit/puppet_pal_spec.rb +0 -3
- data/spec/unit/puppet_spec.rb +0 -127
- data/spec/unit/relationship_spec.rb +0 -202
- data/spec/unit/reports/http_spec.rb +0 -119
- data/spec/unit/reports/store_spec.rb +0 -69
- data/spec/unit/reports_spec.rb +0 -68
- data/spec/unit/resource/catalog_spec.rb +0 -1160
- data/spec/unit/resource/status_spec.rb +0 -216
- data/spec/unit/resource/type_collection_spec.rb +0 -332
- data/spec/unit/resource/type_spec.rb +0 -876
- data/spec/unit/resource_spec.rb +0 -1189
- data/spec/unit/scheduler/job_spec.rb +0 -78
- data/spec/unit/scheduler/scheduler_spec.rb +0 -115
- data/spec/unit/scheduler/splay_job_spec.rb +0 -34
- data/spec/unit/settings/array_setting_spec.rb +0 -39
- data/spec/unit/settings/autosign_setting_spec.rb +0 -104
- data/spec/unit/settings/certificate_revocation_setting_spec.rb +0 -37
- data/spec/unit/settings/config_file_spec.rb +0 -147
- data/spec/unit/settings/directory_setting_spec.rb +0 -27
- data/spec/unit/settings/duration_setting_spec.rb +0 -48
- data/spec/unit/settings/enum_setting_spec.rb +0 -27
- data/spec/unit/settings/environment_conf_spec.rb +0 -133
- data/spec/unit/settings/file_setting_spec.rb +0 -344
- data/spec/unit/settings/http_extra_headers_spec.rb +0 -62
- data/spec/unit/settings/ini_file_spec.rb +0 -550
- data/spec/unit/settings/integer_setting_spec.rb +0 -42
- data/spec/unit/settings/path_setting_spec.rb +0 -29
- data/spec/unit/settings/port_setting_spec.rb +0 -31
- data/spec/unit/settings/priority_setting_spec.rb +0 -65
- data/spec/unit/settings/server_list_setting_spec.rb +0 -21
- data/spec/unit/settings/string_setting_spec.rb +0 -74
- data/spec/unit/settings/terminus_setting_spec.rb +0 -27
- data/spec/unit/settings/value_translator_spec.rb +0 -75
- data/spec/unit/settings_spec.rb +0 -2343
- data/spec/unit/ssl/base_spec.rb +0 -125
- data/spec/unit/ssl/certificate_request_attributes_spec.rb +0 -80
- data/spec/unit/ssl/certificate_request_spec.rb +0 -373
- data/spec/unit/ssl/certificate_signer_spec.rb +0 -17
- data/spec/unit/ssl/certificate_spec.rb +0 -183
- data/spec/unit/ssl/digest_spec.rb +0 -34
- data/spec/unit/ssl/oids_spec.rb +0 -73
- data/spec/unit/ssl/ssl_provider_spec.rb +0 -657
- data/spec/unit/ssl/state_machine_spec.rb +0 -1117
- data/spec/unit/ssl/verifier_spec.rb +0 -102
- data/spec/unit/task_spec.rb +0 -345
- data/spec/unit/test/test_helper_spec.rb +0 -17
- data/spec/unit/transaction/additional_resource_generator_spec.rb +0 -534
- data/spec/unit/transaction/event_manager_spec.rb +0 -365
- data/spec/unit/transaction/event_spec.rb +0 -198
- data/spec/unit/transaction/persistence_spec.rb +0 -276
- data/spec/unit/transaction/report_spec.rb +0 -772
- data/spec/unit/transaction/resource_harness_spec.rb +0 -625
- data/spec/unit/transaction_spec.rb +0 -1037
- data/spec/unit/type/README.markdown +0 -4
- data/spec/unit/type/component_spec.rb +0 -52
- data/spec/unit/type/exec_spec.rb +0 -932
- data/spec/unit/type/file/checksum_spec.rb +0 -104
- data/spec/unit/type/file/checksum_value_spec.rb +0 -285
- data/spec/unit/type/file/content_spec.rb +0 -440
- data/spec/unit/type/file/ctime_spec.rb +0 -33
- data/spec/unit/type/file/ensure_spec.rb +0 -121
- data/spec/unit/type/file/group_spec.rb +0 -65
- data/spec/unit/type/file/mode_spec.rb +0 -220
- data/spec/unit/type/file/mtime_spec.rb +0 -33
- data/spec/unit/type/file/owner_spec.rb +0 -63
- data/spec/unit/type/file/selinux_spec.rb +0 -86
- data/spec/unit/type/file/source_spec.rb +0 -730
- data/spec/unit/type/file/type_spec.rb +0 -18
- data/spec/unit/type/file_spec.rb +0 -1746
- data/spec/unit/type/filebucket_spec.rb +0 -104
- data/spec/unit/type/group_spec.rb +0 -105
- data/spec/unit/type/noop_metaparam_spec.rb +0 -37
- data/spec/unit/type/package/package_settings_spec.rb +0 -156
- data/spec/unit/type/package_spec.rb +0 -396
- data/spec/unit/type/resources_spec.rb +0 -362
- data/spec/unit/type/schedule_spec.rb +0 -621
- data/spec/unit/type/service_spec.rb +0 -458
- data/spec/unit/type/stage_spec.rb +0 -7
- data/spec/unit/type/tidy_spec.rb +0 -493
- data/spec/unit/type/user_spec.rb +0 -553
- data/spec/unit/type/whit_spec.rb +0 -9
- data/spec/unit/type_spec.rb +0 -1473
- data/spec/unit/util/at_fork_spec.rb +0 -150
- data/spec/unit/util/autoload_spec.rb +0 -330
- data/spec/unit/util/backups_spec.rb +0 -130
- data/spec/unit/util/character_encoding_spec.rb +0 -186
- data/spec/unit/util/checksums_spec.rb +0 -223
- data/spec/unit/util/colors_spec.rb +0 -44
- data/spec/unit/util/command_line_spec.rb +0 -200
- data/spec/unit/util/command_line_utils/puppet_option_parser_spec.rb +0 -129
- data/spec/unit/util/constant_inflector_spec.rb +0 -55
- data/spec/unit/util/diff_spec.rb +0 -46
- data/spec/unit/util/docs_spec.rb +0 -100
- data/spec/unit/util/errors_spec.rb +0 -36
- data/spec/unit/util/execution_spec.rb +0 -943
- data/spec/unit/util/execution_stub_spec.rb +0 -38
- data/spec/unit/util/feature_spec.rb +0 -129
- data/spec/unit/util/filetype_spec.rb +0 -223
- data/spec/unit/util/inifile_spec.rb +0 -510
- data/spec/unit/util/json_lockfile_spec.rb +0 -48
- data/spec/unit/util/json_spec.rb +0 -126
- data/spec/unit/util/ldap/connection_spec.rb +0 -162
- data/spec/unit/util/ldap/generator_spec.rb +0 -49
- data/spec/unit/util/ldap/manager_spec.rb +0 -612
- data/spec/unit/util/lockfile_spec.rb +0 -117
- data/spec/unit/util/log/destinations_spec.rb +0 -258
- data/spec/unit/util/log_spec.rb +0 -479
- data/spec/unit/util/logging_spec.rb +0 -618
- data/spec/unit/util/metric_spec.rb +0 -89
- data/spec/unit/util/monkey_patches_spec.rb +0 -161
- data/spec/unit/util/multi_match_spec.rb +0 -38
- data/spec/unit/util/network_device/config_spec.rb +0 -91
- data/spec/unit/util/network_device/transport/base_spec.rb +0 -40
- data/spec/unit/util/network_device_spec.rb +0 -43
- data/spec/unit/util/package/version/debian_spec.rb +0 -83
- data/spec/unit/util/package/version/pip_spec.rb +0 -464
- data/spec/unit/util/package/version/range_spec.rb +0 -175
- data/spec/unit/util/package/version/rpm_spec.rb +0 -121
- data/spec/unit/util/package_spec.rb +0 -19
- data/spec/unit/util/pidlock_spec.rb +0 -333
- data/spec/unit/util/plist_spec.rb +0 -168
- data/spec/unit/util/posix_spec.rb +0 -630
- data/spec/unit/util/profiler/aggregate_spec.rb +0 -55
- data/spec/unit/util/profiler/around_profiler_spec.rb +0 -61
- data/spec/unit/util/profiler/logging_spec.rb +0 -70
- data/spec/unit/util/profiler/object_counts_spec.rb +0 -13
- data/spec/unit/util/profiler/wall_clock_spec.rb +0 -13
- data/spec/unit/util/profiler_spec.rb +0 -47
- data/spec/unit/util/rdoc_spec.rb +0 -55
- data/spec/unit/util/reference_spec.rb +0 -38
- data/spec/unit/util/resource_template_spec.rb +0 -57
- data/spec/unit/util/retry_action_spec.rb +0 -84
- data/spec/unit/util/rpm_compare_spec.rb +0 -196
- data/spec/unit/util/rubygems_spec.rb +0 -47
- data/spec/unit/util/run_mode_spec.rb +0 -185
- data/spec/unit/util/selinux_spec.rb +0 -422
- data/spec/unit/util/skip_tags_spec.rb +0 -14
- data/spec/unit/util/splayer_spec.rb +0 -44
- data/spec/unit/util/storage_spec.rb +0 -330
- data/spec/unit/util/suidmanager_spec.rb +0 -278
- data/spec/unit/util/symbolic_file_mode_spec.rb +0 -180
- data/spec/unit/util/tag_set_spec.rb +0 -52
- data/spec/unit/util/tagging_spec.rb +0 -246
- data/spec/unit/util/terminal_spec.rb +0 -41
- data/spec/unit/util/user_attr_spec.rb +0 -45
- data/spec/unit/util/warnings_spec.rb +0 -45
- data/spec/unit/util/watched_file_spec.rb +0 -52
- data/spec/unit/util/watcher/periodic_watcher_spec.rb +0 -52
- data/spec/unit/util/watcher_spec.rb +0 -86
- data/spec/unit/util/windows/access_control_entry_spec.rb +0 -66
- data/spec/unit/util/windows/access_control_list_spec.rb +0 -132
- data/spec/unit/util/windows/adsi_spec.rb +0 -704
- data/spec/unit/util/windows/api_types_spec.rb +0 -184
- data/spec/unit/util/windows/eventlog_spec.rb +0 -120
- data/spec/unit/util/windows/file_spec.rb +0 -88
- data/spec/unit/util/windows/root_certs_spec.rb +0 -16
- data/spec/unit/util/windows/security_descriptor_spec.rb +0 -115
- data/spec/unit/util/windows/service_spec.rb +0 -677
- data/spec/unit/util/windows/sid_spec.rb +0 -338
- data/spec/unit/util/windows/string_spec.rb +0 -55
- data/spec/unit/util/windows_spec.rb +0 -23
- data/spec/unit/util/yaml_spec.rb +0 -171
- data/spec/unit/util_spec.rb +0 -960
- data/spec/unit/version_spec.rb +0 -61
- data/spec/unit/x509/cert_provider_spec.rb +0 -663
- data/spec/unit/x509/pem_store_spec.rb +0 -160
@@ -1,4 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
+
|
2
3
|
require_relative 'iterable'
|
3
4
|
require_relative 'recursion_guard'
|
4
5
|
require_relative 'type_acceptor'
|
@@ -15,7 +16,6 @@ require_relative 'puppet_object'
|
|
15
16
|
|
16
17
|
module Puppet::Pops
|
17
18
|
module Types
|
18
|
-
|
19
19
|
# The EMPTY_xxx declarations is for backward compatibility. They should not be explicitly referenced
|
20
20
|
|
21
21
|
# @api private
|
@@ -51,7 +51,7 @@ class TypedModelObject < Object
|
|
51
51
|
end
|
52
52
|
|
53
53
|
def self.create_ptype(loader, ir, parent_name, attributes_hash = EMPTY_HASH)
|
54
|
-
@type = Pcore
|
54
|
+
@type = Pcore.create_object_type(loader, ir, self, "Pcore::#{simple_name}Type", "Pcore::#{parent_name}", attributes_hash)
|
55
55
|
end
|
56
56
|
|
57
57
|
def self.register_ptypes(loader, ir)
|
@@ -61,8 +61,10 @@ class TypedModelObject < Object
|
|
61
61
|
]
|
62
62
|
Types.constants.each do |c|
|
63
63
|
next if c == :PType || c == :PHostClassType
|
64
|
+
|
64
65
|
cls = Types.const_get(c)
|
65
66
|
next unless cls.is_a?(Class) && cls < self
|
67
|
+
|
66
68
|
type = cls.register_ptype(loader, ir)
|
67
69
|
types << type unless type.nil?
|
68
70
|
end
|
@@ -74,9 +76,8 @@ end
|
|
74
76
|
# @api public
|
75
77
|
#
|
76
78
|
class PAnyType < TypedModelObject
|
77
|
-
|
78
79
|
def self.register_ptype(loader, ir)
|
79
|
-
@type = Pcore
|
80
|
+
@type = Pcore.create_object_type(loader, ir, self, 'Pcore::AnyType', 'Any', EMPTY_HASH)
|
80
81
|
end
|
81
82
|
|
82
83
|
def self.create(*args)
|
@@ -130,9 +131,10 @@ class PAnyType < TypedModelObject
|
|
130
131
|
end
|
131
132
|
when PVariantType
|
132
133
|
# Assignable if all contained types are assignable, or if this is exactly Any
|
133
|
-
return true if self.
|
134
|
+
return true if self.instance_of?(PAnyType)
|
134
135
|
# An empty variant may be assignable to NotUndef[T] if T is assignable to empty variant
|
135
136
|
return _assignable?(o, guard) if is_a?(PNotUndefType) && o.types.empty?
|
137
|
+
|
136
138
|
!o.types.empty? && o.types.all? { |vt| assignable?(vt, guard) }
|
137
139
|
when POptionalType
|
138
140
|
# Assignable if undef and contained type is assignable
|
@@ -162,7 +164,7 @@ class PAnyType < TypedModelObject
|
|
162
164
|
# @param args [Array] the arguments to test
|
163
165
|
# @param block [Proc] block, or nil if not called with a block
|
164
166
|
# @return [Boolean] `true` if this instance is a callable that accepts the given _args_
|
165
|
-
def callable_with?(args,
|
167
|
+
def callable_with?(args, block = nil)
|
166
168
|
false
|
167
169
|
end
|
168
170
|
|
@@ -296,7 +298,7 @@ class PAnyType < TypedModelObject
|
|
296
298
|
def self.simple_name
|
297
299
|
@simple_name ||= (
|
298
300
|
n = name
|
299
|
-
n[n.rindex(DOUBLE_COLON)+3..n.size-5].freeze
|
301
|
+
n[n.rindex(DOUBLE_COLON) + 3..n.size - 5].freeze
|
300
302
|
)
|
301
303
|
end
|
302
304
|
|
@@ -464,14 +466,12 @@ end
|
|
464
466
|
# @api public
|
465
467
|
#
|
466
468
|
class PTypeType < PTypeWithContainedType
|
467
|
-
|
468
469
|
def self.register_ptype(loader, ir)
|
469
470
|
create_ptype(loader, ir, 'AnyType',
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
)
|
471
|
+
'type' => {
|
472
|
+
KEY_TYPE => POptionalType.new(PTypeType::DEFAULT),
|
473
|
+
KEY_VALUE => nil
|
474
|
+
})
|
475
475
|
end
|
476
476
|
|
477
477
|
# Returns a new function that produces a Type instance
|
@@ -489,9 +489,10 @@ class PTypeType < PTypeWithContainedType
|
|
489
489
|
end
|
490
490
|
|
491
491
|
def instance?(o, guard = nil)
|
492
|
-
|
492
|
+
case o
|
493
|
+
when PAnyType
|
493
494
|
type.nil? || type.assignable?(o, guard)
|
494
|
-
|
495
|
+
when Module, Puppet::Resource, Puppet::Parser::Resource
|
495
496
|
@type.nil? ? true : assignable?(TypeCalculator.infer(o))
|
496
497
|
else
|
497
498
|
false
|
@@ -538,6 +539,7 @@ class PTypeType < PTypeWithContainedType
|
|
538
539
|
return false unless o.is_a?(PTypeType)
|
539
540
|
return true if @type.nil? # wide enough to handle all types
|
540
541
|
return false if o.type.nil? # wider than t
|
542
|
+
|
541
543
|
@type.assignable?(o.type, guard)
|
542
544
|
end
|
543
545
|
end
|
@@ -548,15 +550,14 @@ PType = PTypeType
|
|
548
550
|
class PNotUndefType < PTypeWithContainedType
|
549
551
|
def self.register_ptype(loader, ir)
|
550
552
|
create_ptype(loader, ir, 'AnyType',
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
)
|
553
|
+
'type' => {
|
554
|
+
KEY_TYPE => POptionalType.new(PTypeType::DEFAULT),
|
555
|
+
KEY_VALUE => nil
|
556
|
+
})
|
556
557
|
end
|
557
558
|
|
558
559
|
def initialize(type = nil)
|
559
|
-
super(type.
|
560
|
+
super(type.instance_of?(PAnyType) ? nil : type)
|
560
561
|
end
|
561
562
|
|
562
563
|
def instance?(o, guard = nil)
|
@@ -567,16 +568,14 @@ class PNotUndefType < PTypeWithContainedType
|
|
567
568
|
n = super
|
568
569
|
if n.type.nil?
|
569
570
|
n
|
571
|
+
elsif n.type.is_a?(POptionalType)
|
572
|
+
PNotUndefType.new(n.type.type).normalize
|
573
|
+
# No point in having an optional in a NotUndef
|
574
|
+
elsif !n.type.assignable?(PUndefType::DEFAULT)
|
575
|
+
# THe type is NotUndef anyway, so it can be stripped of
|
576
|
+
n.type
|
570
577
|
else
|
571
|
-
|
572
|
-
# No point in having an optional in a NotUndef
|
573
|
-
PNotUndefType.new(n.type.type).normalize
|
574
|
-
elsif !n.type.assignable?(PUndefType::DEFAULT)
|
575
|
-
# THe type is NotUndef anyway, so it can be stripped of
|
576
|
-
n.type
|
577
|
-
else
|
578
|
-
n
|
579
|
-
end
|
578
|
+
n
|
580
579
|
end
|
581
580
|
end
|
582
581
|
|
@@ -619,6 +618,7 @@ class PUndefType < PAnyType
|
|
619
618
|
DEFAULT = PUndefType.new
|
620
619
|
|
621
620
|
protected
|
621
|
+
|
622
622
|
# @api private
|
623
623
|
def _assignable?(o, guard)
|
624
624
|
o.is_a?(PUndefType)
|
@@ -641,7 +641,7 @@ class PUnitType < PAnyType
|
|
641
641
|
def self.new_function(type)
|
642
642
|
@new_function ||= Puppet::Functions.create_loaded_function(:new_unit, type.loader) do
|
643
643
|
dispatch :from_args do
|
644
|
-
param
|
644
|
+
param 'Any', :from
|
645
645
|
end
|
646
646
|
|
647
647
|
def from_args(from)
|
@@ -652,7 +652,7 @@ class PUnitType < PAnyType
|
|
652
652
|
|
653
653
|
DEFAULT = PUnitType.new
|
654
654
|
|
655
|
-
def assignable?(o, guard=nil)
|
655
|
+
def assignable?(o, guard = nil)
|
656
656
|
true
|
657
657
|
end
|
658
658
|
|
@@ -680,6 +680,7 @@ class PDefaultType < PAnyType
|
|
680
680
|
DEFAULT = PDefaultType.new
|
681
681
|
|
682
682
|
protected
|
683
|
+
|
683
684
|
# @api private
|
684
685
|
def _assignable?(o, guard)
|
685
686
|
o.is_a?(PDefaultType)
|
@@ -759,8 +760,8 @@ end
|
|
759
760
|
class PEnumType < PScalarDataType
|
760
761
|
def self.register_ptype(loader, ir)
|
761
762
|
create_ptype(loader, ir, 'ScalarDataType',
|
762
|
-
|
763
|
-
|
763
|
+
'values' => PArrayType.new(PStringType::NON_EMPTY),
|
764
|
+
'case_insensitive' => { 'type' => PBooleanType::DEFAULT, 'value' => false })
|
764
765
|
end
|
765
766
|
|
766
767
|
attr_reader :values, :case_insensitive
|
@@ -823,18 +824,19 @@ class PEnumType < PScalarDataType
|
|
823
824
|
# @api private
|
824
825
|
def _assignable?(o, guard)
|
825
826
|
return true if self == o
|
827
|
+
|
826
828
|
svalues = values
|
827
829
|
if svalues.empty?
|
828
830
|
return true if o.is_a?(PStringType) || o.is_a?(PEnumType) || o.is_a?(PPatternType)
|
829
831
|
end
|
830
832
|
case o
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
833
|
+
when PStringType
|
834
|
+
# if the contained string is found in the set of enums
|
835
|
+
instance?(o.value, guard)
|
836
|
+
when PEnumType
|
837
|
+
!o.values.empty? && (case_insensitive? || !o.case_insensitive?) && o.values.all? { |s| instance?(s, guard) }
|
838
|
+
else
|
839
|
+
false
|
838
840
|
end
|
839
841
|
end
|
840
842
|
end
|
@@ -850,18 +852,17 @@ OPTIONAL_FRACTION = '(?:\.\d+)?'
|
|
850
852
|
OPTIONAL_EXPONENT = '(?:[eE]-?\d+)?'
|
851
853
|
FLOAT_DEC = '(?:' + INTEGER_DEC + OPTIONAL_FRACTION + OPTIONAL_EXPONENT + ')'
|
852
854
|
|
853
|
-
INTEGER_PATTERN
|
855
|
+
INTEGER_PATTERN = '\A' + SIGN_PREFIX + '(?:' + INTEGER_DEC + '|' + INTEGER_HEX + '|' + INTEGER_OCT + '|' + INTEGER_BIN + ')\z'
|
854
856
|
INTEGER_PATTERN_LENIENT = '\A' + SIGN_PREFIX + '(?:' + INTEGER_DEC_OR_OCT + '|' + INTEGER_HEX + '|' + INTEGER_BIN + ')\z'
|
855
|
-
FLOAT_PATTERN
|
857
|
+
FLOAT_PATTERN = '\A' + SIGN_PREFIX + '(?:' + FLOAT_DEC + '|' + INTEGER_HEX + '|' + INTEGER_OCT + '|' + INTEGER_BIN + ')\z'
|
856
858
|
|
857
859
|
# @api public
|
858
860
|
#
|
859
861
|
class PNumericType < PScalarDataType
|
860
862
|
def self.register_ptype(loader, ir)
|
861
863
|
create_ptype(loader, ir, 'ScalarDataType',
|
862
|
-
|
863
|
-
|
864
|
-
)
|
864
|
+
'from' => { KEY_TYPE => POptionalType.new(PNumericType::DEFAULT), KEY_VALUE => nil },
|
865
|
+
'to' => { KEY_TYPE => POptionalType.new(PNumericType::DEFAULT), KEY_VALUE => nil })
|
865
866
|
end
|
866
867
|
|
867
868
|
def self.new_function(type)
|
@@ -877,7 +878,7 @@ class PNumericType < PScalarDataType
|
|
877
878
|
end
|
878
879
|
|
879
880
|
dispatch :from_hash do
|
880
|
-
param 'NamedArgs',
|
881
|
+
param 'NamedArgs', :hash_args
|
881
882
|
end
|
882
883
|
|
883
884
|
argument_mismatch :on_error do
|
@@ -940,6 +941,7 @@ class PNumericType < PScalarDataType
|
|
940
941
|
from = -Float::INFINITY if from.nil? || from == :default
|
941
942
|
to = Float::INFINITY if to.nil? || to == :default
|
942
943
|
raise ArgumentError, "'from' must be less or equal to 'to'. Got (#{from}, #{to}" if from > to
|
944
|
+
|
943
945
|
@from = from
|
944
946
|
@to = to
|
945
947
|
end
|
@@ -950,7 +952,7 @@ class PNumericType < PScalarDataType
|
|
950
952
|
# @return [Boolean] `true` if this range intersects with the other range
|
951
953
|
# @api public
|
952
954
|
def intersect?(o)
|
953
|
-
self.
|
955
|
+
self.instance_of?(o.class) && !(@to < o.numeric_from || o.numeric_to < @from)
|
954
956
|
end
|
955
957
|
|
956
958
|
# Returns the lower bound of the numeric range or `nil` if no lower bound is set.
|
@@ -998,6 +1000,7 @@ class PNumericType < PScalarDataType
|
|
998
1000
|
# @api_private
|
999
1001
|
def _assignable?(o, guard)
|
1000
1002
|
return false unless o.is_a?(self.class)
|
1003
|
+
|
1001
1004
|
# If o min and max are within the range of t
|
1002
1005
|
@from <= o.numeric_from && @to >= o.numeric_to
|
1003
1006
|
end
|
@@ -1033,7 +1036,7 @@ class PIntegerType < PNumericType
|
|
1033
1036
|
# @return [Boolean] `true` if this range is adjacent to the other range
|
1034
1037
|
# @api public
|
1035
1038
|
def adjacent?(o)
|
1036
|
-
o.is_a?(PIntegerType) &&
|
1039
|
+
o.is_a?(PIntegerType) && (@to + 1 == o.from || o.to + 1 == @from)
|
1037
1040
|
end
|
1038
1041
|
|
1039
1042
|
# Concatenates this range with another range provided that the ranges intersect or
|
@@ -1064,7 +1067,8 @@ class PIntegerType < PNumericType
|
|
1064
1067
|
# Returns Float.Infinity if one end of the range is unbound
|
1065
1068
|
def size
|
1066
1069
|
return Float::INFINITY if @from == -Float::INFINITY || @to == Float::INFINITY
|
1067
|
-
|
1070
|
+
|
1071
|
+
1 + (to - from).abs
|
1068
1072
|
end
|
1069
1073
|
|
1070
1074
|
# Returns the range as an array ordered so the smaller number is always first.
|
@@ -1096,17 +1100,17 @@ class PIntegerType < PNumericType
|
|
1096
1100
|
end
|
1097
1101
|
|
1098
1102
|
dispatch :from_args do
|
1099
|
-
param 'Convertible',
|
1103
|
+
param 'Convertible', :from
|
1100
1104
|
optional_param 'Radix', :radix
|
1101
1105
|
optional_param 'Boolean', :abs
|
1102
1106
|
end
|
1103
1107
|
|
1104
1108
|
dispatch :from_hash do
|
1105
|
-
param 'NamedArgs',
|
1109
|
+
param 'NamedArgs', :hash_args
|
1106
1110
|
end
|
1107
1111
|
|
1108
1112
|
argument_mismatch :on_error_hash do
|
1109
|
-
param 'Hash',
|
1113
|
+
param 'Hash', :hash_args
|
1110
1114
|
end
|
1111
1115
|
|
1112
1116
|
argument_mismatch :on_error do
|
@@ -1178,12 +1182,12 @@ class PIntegerType < PNumericType
|
|
1178
1182
|
def assert_radix(radix)
|
1179
1183
|
case radix
|
1180
1184
|
when 2, 8, 10, 16
|
1185
|
+
# do nothing
|
1181
1186
|
else
|
1182
1187
|
raise ArgumentError.new(_("Illegal radix: %{radix}, expected 2, 8, 10, 16, or default") % { radix: radix })
|
1183
1188
|
end
|
1184
1189
|
radix
|
1185
1190
|
end
|
1186
|
-
|
1187
1191
|
end
|
1188
1192
|
end
|
1189
1193
|
|
@@ -1236,7 +1240,7 @@ class PFloatType < PNumericType
|
|
1236
1240
|
end
|
1237
1241
|
|
1238
1242
|
dispatch :from_hash do
|
1239
|
-
param 'NamedArgs',
|
1243
|
+
param 'NamedArgs', :hash_args
|
1240
1244
|
end
|
1241
1245
|
|
1242
1246
|
argument_mismatch :on_error do
|
@@ -1309,11 +1313,10 @@ end
|
|
1309
1313
|
class PCollectionType < PAnyType
|
1310
1314
|
def self.register_ptype(loader, ir)
|
1311
1315
|
create_ptype(loader, ir, 'AnyType',
|
1312
|
-
|
1313
|
-
|
1314
|
-
|
1315
|
-
|
1316
|
-
)
|
1316
|
+
'size_type' => {
|
1317
|
+
KEY_TYPE => POptionalType.new(PTypeType.new(PIntegerType::DEFAULT)),
|
1318
|
+
KEY_VALUE => nil
|
1319
|
+
})
|
1317
1320
|
end
|
1318
1321
|
|
1319
1322
|
attr_reader :size_type
|
@@ -1366,7 +1369,6 @@ class PCollectionType < PAnyType
|
|
1366
1369
|
self.class == o.class && @size_type == o.size_type
|
1367
1370
|
end
|
1368
1371
|
|
1369
|
-
|
1370
1372
|
DEFAULT_SIZE = PIntegerType.new(0)
|
1371
1373
|
ZERO_SIZE = PIntegerType.new(0, 0)
|
1372
1374
|
NOT_EMPTY_SIZE = PIntegerType.new(1)
|
@@ -1378,22 +1380,22 @@ class PCollectionType < PAnyType
|
|
1378
1380
|
#
|
1379
1381
|
def _assignable?(o, guard)
|
1380
1382
|
case o
|
1381
|
-
|
1382
|
-
|
1383
|
-
|
1384
|
-
|
1385
|
-
|
1386
|
-
|
1387
|
-
|
1388
|
-
|
1389
|
-
|
1390
|
-
|
1391
|
-
|
1392
|
-
|
1393
|
-
|
1394
|
-
|
1395
|
-
|
1396
|
-
|
1383
|
+
when PCollectionType
|
1384
|
+
(@size_type || DEFAULT_SIZE).assignable?(o.size_type || DEFAULT_SIZE, guard)
|
1385
|
+
when PTupleType
|
1386
|
+
# compute the tuple's min/max size, and check if that size matches
|
1387
|
+
size_s = size_type || DEFAULT_SIZE
|
1388
|
+
size_o = o.size_type
|
1389
|
+
if size_o.nil?
|
1390
|
+
type_count = o.types.size
|
1391
|
+
size_o = PIntegerType.new(type_count, type_count)
|
1392
|
+
end
|
1393
|
+
size_s.assignable?(size_o)
|
1394
|
+
when PStructType
|
1395
|
+
from = to = o.elements.size
|
1396
|
+
(@size_type || DEFAULT_SIZE).assignable?(PIntegerType.new(from, to), guard)
|
1397
|
+
else
|
1398
|
+
false
|
1397
1399
|
end
|
1398
1400
|
end
|
1399
1401
|
end
|
@@ -1401,11 +1403,10 @@ end
|
|
1401
1403
|
class PIterableType < PTypeWithContainedType
|
1402
1404
|
def self.register_ptype(loader, ir)
|
1403
1405
|
create_ptype(loader, ir, 'AnyType',
|
1404
|
-
|
1405
|
-
|
1406
|
-
|
1407
|
-
|
1408
|
-
)
|
1406
|
+
'type' => {
|
1407
|
+
KEY_TYPE => POptionalType.new(PTypeType::DEFAULT),
|
1408
|
+
KEY_VALUE => nil
|
1409
|
+
})
|
1409
1410
|
end
|
1410
1411
|
|
1411
1412
|
def element_type
|
@@ -1461,11 +1462,10 @@ end
|
|
1461
1462
|
class PIteratorType < PTypeWithContainedType
|
1462
1463
|
def self.register_ptype(loader, ir)
|
1463
1464
|
create_ptype(loader, ir, 'AnyType',
|
1464
|
-
|
1465
|
-
|
1466
|
-
|
1467
|
-
|
1468
|
-
)
|
1465
|
+
'type' => {
|
1466
|
+
KEY_TYPE => POptionalType.new(PTypeType::DEFAULT),
|
1467
|
+
KEY_VALUE => nil
|
1468
|
+
})
|
1469
1469
|
end
|
1470
1470
|
|
1471
1471
|
def element_type
|
@@ -1499,10 +1499,10 @@ end
|
|
1499
1499
|
class PStringType < PScalarDataType
|
1500
1500
|
def self.register_ptype(loader, ir)
|
1501
1501
|
create_ptype(loader, ir, 'ScalarDataType',
|
1502
|
-
|
1503
|
-
|
1504
|
-
|
1505
|
-
|
1502
|
+
'size_type_or_value' => {
|
1503
|
+
KEY_TYPE => POptionalType.new(PVariantType.new([PStringType::DEFAULT, PTypeType.new(PIntegerType::DEFAULT)])),
|
1504
|
+
KEY_VALUE => nil
|
1505
|
+
})
|
1506
1506
|
end
|
1507
1507
|
|
1508
1508
|
attr_reader :size_type_or_value
|
@@ -1510,7 +1510,7 @@ class PStringType < PScalarDataType
|
|
1510
1510
|
def initialize(size_type_or_value, deprecated_multi_args = EMPTY_ARRAY)
|
1511
1511
|
unless deprecated_multi_args.empty?
|
1512
1512
|
if Puppet[:strict] != :off
|
1513
|
-
#TRANSLATORS 'PStringType#initialize' is a class and method name and should not be translated
|
1513
|
+
# TRANSLATORS 'PStringType#initialize' is a class and method name and should not be translated
|
1514
1514
|
Puppet.warn_once('deprecations', "PStringType#initialize_multi_args",
|
1515
1515
|
_("Passing more than one argument to PStringType#initialize is deprecated"))
|
1516
1516
|
end
|
@@ -1565,7 +1565,7 @@ class PStringType < PScalarDataType
|
|
1565
1565
|
# @api private
|
1566
1566
|
def values
|
1567
1567
|
if Puppet[:strict] != :off
|
1568
|
-
#TRANSLATORS 'PStringType#values' and '#value' are classes and method names and should not be translated
|
1568
|
+
# TRANSLATORS 'PStringType#values' and '#value' are classes and method names and should not be translated
|
1569
1569
|
Puppet.warn_once('deprecations', "PStringType#values", _("Method PStringType#values is deprecated. Use #value instead"))
|
1570
1570
|
end
|
1571
1571
|
@value.is_a?(String) ? [@value] : EMPTY_ARRAY
|
@@ -1576,9 +1576,10 @@ class PStringType < PScalarDataType
|
|
1576
1576
|
end
|
1577
1577
|
|
1578
1578
|
def derived_size_type
|
1579
|
-
|
1579
|
+
case @size_type_or_value
|
1580
|
+
when PIntegerType
|
1580
1581
|
@size_type_or_value
|
1581
|
-
|
1582
|
+
when String
|
1582
1583
|
sz = @size_type_or_value.size
|
1583
1584
|
PIntegerType.new(sz, sz)
|
1584
1585
|
else
|
@@ -1616,7 +1617,7 @@ class PStringType < PScalarDataType
|
|
1616
1617
|
NON_EMPTY = PStringType.new(PCollectionType::NOT_EMPTY_SIZE)
|
1617
1618
|
|
1618
1619
|
# Iterates over each character of the string
|
1619
|
-
ITERABLE_TYPE = PIterableType.new(PStringType.new(PIntegerType.new(1,1)))
|
1620
|
+
ITERABLE_TYPE = PIterableType.new(PStringType.new(PIntegerType.new(1, 1)))
|
1620
1621
|
|
1621
1622
|
protected
|
1622
1623
|
|
@@ -1673,13 +1674,12 @@ end
|
|
1673
1674
|
class PRegexpType < PScalarType
|
1674
1675
|
def self.register_ptype(loader, ir)
|
1675
1676
|
create_ptype(loader, ir, 'ScalarType',
|
1676
|
-
|
1677
|
-
|
1678
|
-
|
1679
|
-
|
1677
|
+
'pattern' => {
|
1678
|
+
KEY_TYPE => PVariantType.new([PUndefType::DEFAULT, PStringType::DEFAULT, PRegexpType::DEFAULT]),
|
1679
|
+
KEY_VALUE => nil
|
1680
|
+
})
|
1680
1681
|
end
|
1681
1682
|
|
1682
|
-
|
1683
1683
|
# Returns a new function that produces a Regexp instance
|
1684
1684
|
#
|
1685
1685
|
def self.new_function(type)
|
@@ -1749,7 +1749,7 @@ class PRegexpType < PScalarType
|
|
1749
1749
|
self.class == o.class && @pattern == o.pattern
|
1750
1750
|
end
|
1751
1751
|
|
1752
|
-
def instance?(o, guard=nil)
|
1752
|
+
def instance?(o, guard = nil)
|
1753
1753
|
o.is_a?(Regexp) && @pattern.nil? || regexp == o
|
1754
1754
|
end
|
1755
1755
|
|
@@ -1805,6 +1805,7 @@ class PPatternType < PScalarDataType
|
|
1805
1805
|
#
|
1806
1806
|
def _assignable?(o, guard)
|
1807
1807
|
return true if self == o
|
1808
|
+
|
1808
1809
|
case o
|
1809
1810
|
when PStringType
|
1810
1811
|
v = o.value
|
@@ -1827,7 +1828,7 @@ class PPatternType < PScalarDataType
|
|
1827
1828
|
# all strings in String/Enum type must match one of the patterns in Pattern type,
|
1828
1829
|
# or Pattern represents all Patterns == all Strings
|
1829
1830
|
regexps = @patterns.map { |p| p.regexp }
|
1830
|
-
regexps.empty? || o.values.all? { |s| regexps.any? {|re| re.match(s) } }
|
1831
|
+
regexps.empty? || o.values.all? { |s| regexps.any? { |re| re.match(s) } }
|
1831
1832
|
end
|
1832
1833
|
when PPatternType
|
1833
1834
|
@patterns.empty?
|
@@ -1869,7 +1870,7 @@ class PBooleanType < PScalarDataType
|
|
1869
1870
|
def self.new_function(type)
|
1870
1871
|
@new_function ||= Puppet::Functions.create_loaded_function(:new_boolean, type.loader) do
|
1871
1872
|
dispatch :from_args do
|
1872
|
-
param "Variant[Integer, Float, Boolean, Enum['false','true','yes','no','y','n',true]]",
|
1873
|
+
param "Variant[Integer, Float, Boolean, Enum['false','true','yes','no','y','n',true]]", :from
|
1873
1874
|
end
|
1874
1875
|
|
1875
1876
|
argument_mismatch :on_error do
|
@@ -1879,10 +1880,8 @@ class PBooleanType < PScalarDataType
|
|
1879
1880
|
def from_args(from)
|
1880
1881
|
from = from.downcase if from.is_a?(String)
|
1881
1882
|
case from
|
1882
|
-
when Float
|
1883
|
-
from
|
1884
|
-
when Integer
|
1885
|
-
from != 0
|
1883
|
+
when Float, Integer
|
1884
|
+
!from.zero?
|
1886
1885
|
when false, 'false', 'no', 'n'
|
1887
1886
|
false
|
1888
1887
|
else
|
@@ -1920,9 +1919,9 @@ end
|
|
1920
1919
|
#
|
1921
1920
|
class PStructElement < TypedModelObject
|
1922
1921
|
def self.register_ptype(loader, ir)
|
1923
|
-
@type = Pcore
|
1924
|
-
|
1925
|
-
|
1922
|
+
@type = Pcore.create_object_type(loader, ir, self, 'Pcore::StructElement', nil,
|
1923
|
+
'key_type' => PTypeType::DEFAULT,
|
1924
|
+
'value_type' => PTypeType::DEFAULT)
|
1926
1925
|
end
|
1927
1926
|
|
1928
1927
|
attr_accessor :key_type, :value_type
|
@@ -2026,9 +2025,11 @@ class PStructType < PAnyType
|
|
2026
2025
|
end
|
2027
2026
|
end
|
2028
2027
|
|
2028
|
+
# rubocop:disable Naming/MemoizedInstanceVariableName
|
2029
2029
|
def hashed_elements
|
2030
|
-
@hashed ||= @elements.
|
2030
|
+
@hashed ||= @elements.each_with_object({}) { |e, memo| memo[e.name] = e; }
|
2031
2031
|
end
|
2032
|
+
# rubocop:enable Naming/MemoizedInstanceVariableName
|
2032
2033
|
|
2033
2034
|
def hash
|
2034
2035
|
@elements.hash
|
@@ -2044,9 +2045,11 @@ class PStructType < PAnyType
|
|
2044
2045
|
else
|
2045
2046
|
PIterableType.new(
|
2046
2047
|
PTupleType.new([
|
2047
|
-
|
2048
|
-
|
2049
|
-
|
2048
|
+
PVariantType.maybe_create(@elements.map { |se| se.key_type }),
|
2049
|
+
PVariantType.maybe_create(@elements.map { |se| se.value_type })
|
2050
|
+
],
|
2051
|
+
PHashType::KEY_PAIR_TUPLE_SIZE)
|
2052
|
+
)
|
2050
2053
|
end
|
2051
2054
|
end
|
2052
2055
|
|
@@ -2071,6 +2074,7 @@ class PStructType < PAnyType
|
|
2071
2074
|
def instance?(o, guard = nil)
|
2072
2075
|
# The inferred type of a class derived from Hash is either Runtime or Object. It's not assignable to the Struct type.
|
2073
2076
|
return false unless o.instance_of?(Hash)
|
2077
|
+
|
2074
2078
|
matched = 0
|
2075
2079
|
@elements.all? do |e|
|
2076
2080
|
key = e.name
|
@@ -2097,7 +2101,8 @@ class PStructType < PAnyType
|
|
2097
2101
|
|
2098
2102
|
# @api private
|
2099
2103
|
def _assignable?(o, guard)
|
2100
|
-
|
2104
|
+
case o
|
2105
|
+
when Types::PStructType
|
2101
2106
|
h2 = o.hashed_elements
|
2102
2107
|
matched = 0
|
2103
2108
|
elements.all? do |e1|
|
@@ -2109,7 +2114,7 @@ class PStructType < PAnyType
|
|
2109
2114
|
e1.key_type.assignable?(e2.key_type, guard) && e1.value_type.assignable?(e2.value_type, guard)
|
2110
2115
|
end
|
2111
2116
|
end && matched == h2.size
|
2112
|
-
|
2117
|
+
when Types::PHashType
|
2113
2118
|
required = 0
|
2114
2119
|
required_elements_assignable = elements.all? do |e|
|
2115
2120
|
key_type = e.key_type
|
@@ -2146,12 +2151,11 @@ class PTupleType < PAnyType
|
|
2146
2151
|
|
2147
2152
|
def self.register_ptype(loader, ir)
|
2148
2153
|
create_ptype(loader, ir, 'AnyType',
|
2149
|
-
|
2150
|
-
|
2151
|
-
|
2152
|
-
|
2153
|
-
|
2154
|
-
)
|
2154
|
+
'types' => PArrayType.new(PTypeType::DEFAULT),
|
2155
|
+
'size_type' => {
|
2156
|
+
KEY_TYPE => POptionalType.new(PTypeType.new(PIntegerType::DEFAULT)),
|
2157
|
+
KEY_VALUE => nil
|
2158
|
+
})
|
2155
2159
|
end
|
2156
2160
|
|
2157
2161
|
# If set, describes min and max required of the given types - if max > size of
|
@@ -2244,6 +2248,7 @@ class PTupleType < PAnyType
|
|
2244
2248
|
def instance?(o, guard = nil)
|
2245
2249
|
# The inferred type of a class derived from Array is either Runtime or Object. It's not assignable to the Tuple type.
|
2246
2250
|
return false unless o.instance_of?(Array)
|
2251
|
+
|
2247
2252
|
if @size_type
|
2248
2253
|
return false unless @size_type.instance?(o.size, guard)
|
2249
2254
|
else
|
@@ -2280,11 +2285,12 @@ class PTupleType < PAnyType
|
|
2280
2285
|
if @size_type.nil?
|
2281
2286
|
return [1, 1]
|
2282
2287
|
end
|
2288
|
+
|
2283
2289
|
types_size = @types.size
|
2284
2290
|
from, to = @size_type.range
|
2285
|
-
min = from - (types_size-1)
|
2291
|
+
min = from - (types_size - 1)
|
2286
2292
|
min = min <= 0 ? 0 : min
|
2287
|
-
max = to - (types_size-1)
|
2293
|
+
max = to - (types_size - 1)
|
2288
2294
|
[min, max]
|
2289
2295
|
end
|
2290
2296
|
|
@@ -2310,15 +2316,18 @@ class PTupleType < PAnyType
|
|
2310
2316
|
def _assignable?(o, guard)
|
2311
2317
|
return true if self == o
|
2312
2318
|
return false unless o.is_a?(PTupleType) || o.is_a?(PArrayType)
|
2319
|
+
|
2313
2320
|
s_types = types
|
2314
2321
|
size_s = size_type || PIntegerType.new(*size_range)
|
2315
2322
|
|
2316
2323
|
if o.is_a?(PTupleType)
|
2317
2324
|
size_o = o.size_type || PIntegerType.new(*o.size_range)
|
2318
2325
|
return false unless size_s.assignable?(size_o, guard)
|
2326
|
+
|
2319
2327
|
unless s_types.empty?
|
2320
2328
|
o_types = o.types
|
2321
2329
|
return size_s.numeric_from == 0 if o_types.empty?
|
2330
|
+
|
2322
2331
|
o_types.size.times do |index|
|
2323
2332
|
return false unless (s_types[index] || s_types[-1]).assignable?(o_types[index], guard)
|
2324
2333
|
end
|
@@ -2326,12 +2335,14 @@ class PTupleType < PAnyType
|
|
2326
2335
|
else
|
2327
2336
|
size_o = o.size_type || PCollectionType::DEFAULT_SIZE
|
2328
2337
|
return false unless size_s.assignable?(size_o, guard)
|
2338
|
+
|
2329
2339
|
unless s_types.empty?
|
2330
2340
|
o_entry = o.element_type
|
2331
2341
|
# Array of anything can not be assigned (unless tuple is tuple of anything) - this case
|
2332
2342
|
# was handled at the top of this method.
|
2333
2343
|
#
|
2334
2344
|
return false if o_entry.nil?
|
2345
|
+
|
2335
2346
|
[s_types.size, size_o.range[1]].min.times { |index| return false unless (s_types[index] || s_types[-1]).assignable?(o_entry, guard) }
|
2336
2347
|
end
|
2337
2348
|
end
|
@@ -2344,19 +2355,18 @@ end
|
|
2344
2355
|
class PCallableType < PAnyType
|
2345
2356
|
def self.register_ptype(loader, ir)
|
2346
2357
|
create_ptype(loader, ir, 'AnyType',
|
2347
|
-
|
2348
|
-
|
2349
|
-
|
2350
|
-
|
2351
|
-
|
2352
|
-
|
2353
|
-
|
2354
|
-
|
2355
|
-
|
2356
|
-
|
2357
|
-
|
2358
|
-
|
2359
|
-
)
|
2358
|
+
'param_types' => {
|
2359
|
+
KEY_TYPE => POptionalType.new(PTypeType.new(PTupleType::DEFAULT)),
|
2360
|
+
KEY_VALUE => nil
|
2361
|
+
},
|
2362
|
+
'block_type' => {
|
2363
|
+
KEY_TYPE => POptionalType.new(PTypeType.new(PCallableType::DEFAULT)),
|
2364
|
+
KEY_VALUE => nil
|
2365
|
+
},
|
2366
|
+
'return_type' => {
|
2367
|
+
KEY_TYPE => POptionalType.new(PTypeType::DEFAULT),
|
2368
|
+
KEY_VALUE => PAnyType::DEFAULT
|
2369
|
+
})
|
2360
2370
|
end
|
2361
2371
|
|
2362
2372
|
# @return [PAnyType] The type for the values returned by this callable. Returns `nil` if return value is unconstrained
|
@@ -2422,6 +2432,7 @@ class PCallableType < PAnyType
|
|
2422
2432
|
# nil param_types and compatible return type means other Callable is assignable
|
2423
2433
|
return true if @param_types.nil?
|
2424
2434
|
return false unless @param_types.instance?(args)
|
2435
|
+
|
2425
2436
|
if @block_type.nil?
|
2426
2437
|
block == nil
|
2427
2438
|
else
|
@@ -2435,7 +2446,7 @@ class PCallableType < PAnyType
|
|
2435
2446
|
required_callable_t.assignable?(self, guard)
|
2436
2447
|
end
|
2437
2448
|
|
2438
|
-
def kind_of_callable?(optional=true, guard = nil)
|
2449
|
+
def kind_of_callable?(optional = true, guard = nil)
|
2439
2450
|
true
|
2440
2451
|
end
|
2441
2452
|
|
@@ -2455,11 +2466,11 @@ class PCallableType < PAnyType
|
|
2455
2466
|
def block_range
|
2456
2467
|
case block_type
|
2457
2468
|
when POptionalType
|
2458
|
-
[0,1]
|
2469
|
+
[0, 1]
|
2459
2470
|
when PVariantType, PCallableType
|
2460
|
-
[1,1]
|
2471
|
+
[1, 1]
|
2461
2472
|
else
|
2462
|
-
[0,0]
|
2473
|
+
[0, 0]
|
2463
2474
|
end
|
2464
2475
|
end
|
2465
2476
|
|
@@ -2494,7 +2505,8 @@ class PCallableType < PAnyType
|
|
2494
2505
|
# (it's lower bound), not its upper bound
|
2495
2506
|
other_param_types = o.param_types
|
2496
2507
|
|
2497
|
-
return false if other_param_types.nil? ||
|
2508
|
+
return false if other_param_types.nil? || !other_param_types.assignable?(@param_types, guard)
|
2509
|
+
|
2498
2510
|
# names are ignored, they are just information
|
2499
2511
|
# Blocks must be compatible
|
2500
2512
|
this_block_t = @block_type || PUndefType::DEFAULT
|
@@ -2506,14 +2518,12 @@ end
|
|
2506
2518
|
# @api public
|
2507
2519
|
#
|
2508
2520
|
class PArrayType < PCollectionType
|
2509
|
-
|
2510
2521
|
def self.register_ptype(loader, ir)
|
2511
2522
|
create_ptype(loader, ir, 'CollectionType',
|
2512
|
-
|
2513
|
-
|
2514
|
-
|
2515
|
-
|
2516
|
-
)
|
2523
|
+
'element_type' => {
|
2524
|
+
KEY_TYPE => POptionalType.new(PTypeType::DEFAULT),
|
2525
|
+
KEY_VALUE => PAnyType::DEFAULT
|
2526
|
+
})
|
2517
2527
|
end
|
2518
2528
|
|
2519
2529
|
attr_reader :element_type
|
@@ -2574,7 +2584,8 @@ class PArrayType < PCollectionType
|
|
2574
2584
|
def instance?(o, guard = nil)
|
2575
2585
|
# The inferred type of a class derived from Array is either Runtime or Object. It's not assignable to the Array type.
|
2576
2586
|
return false unless o.instance_of?(Array)
|
2577
|
-
return false unless o.all? {|element| @element_type.instance?(element, guard) }
|
2587
|
+
return false unless o.all? { |element| @element_type.instance?(element, guard) }
|
2588
|
+
|
2578
2589
|
size_t = size_type
|
2579
2590
|
size_t.nil? || size_t.instance?(o.size, guard)
|
2580
2591
|
end
|
@@ -2587,7 +2598,6 @@ class PArrayType < PCollectionType
|
|
2587
2598
|
#
|
2588
2599
|
def self.new_function(type)
|
2589
2600
|
@new_function ||= Puppet::Functions.create_loaded_function(:new_array, type.loader) do
|
2590
|
-
|
2591
2601
|
dispatch :to_array do
|
2592
2602
|
param 'Variant[Array,Hash,Binary,Iterable]', :from
|
2593
2603
|
optional_param 'Boolean[false]', :wrap
|
@@ -2636,7 +2646,8 @@ class PArrayType < PCollectionType
|
|
2636
2646
|
# Array is assignable if o is an Array and o's element type is assignable, or if o is a Tuple
|
2637
2647
|
# @api private
|
2638
2648
|
def _assignable?(o, guard)
|
2639
|
-
|
2649
|
+
case o
|
2650
|
+
when PTupleType
|
2640
2651
|
o_types = o.types
|
2641
2652
|
size_s = size_type || DEFAULT_SIZE
|
2642
2653
|
size_o = o.size_type
|
@@ -2645,7 +2656,7 @@ class PArrayType < PCollectionType
|
|
2645
2656
|
size_o = PIntegerType.new(type_count, type_count)
|
2646
2657
|
end
|
2647
2658
|
size_s.assignable?(size_o) && o_types.all? { |ot| @element_type.assignable?(ot, guard) }
|
2648
|
-
|
2659
|
+
when PArrayType
|
2649
2660
|
super && @element_type.assignable?(o.element_type, guard)
|
2650
2661
|
else
|
2651
2662
|
false
|
@@ -2656,18 +2667,16 @@ end
|
|
2656
2667
|
# @api public
|
2657
2668
|
#
|
2658
2669
|
class PHashType < PCollectionType
|
2659
|
-
|
2660
2670
|
def self.register_ptype(loader, ir)
|
2661
2671
|
create_ptype(loader, ir, 'CollectionType',
|
2662
|
-
|
2663
|
-
|
2664
|
-
|
2665
|
-
|
2666
|
-
|
2667
|
-
|
2668
|
-
|
2669
|
-
|
2670
|
-
)
|
2672
|
+
'key_type' => {
|
2673
|
+
KEY_TYPE => POptionalType.new(PTypeType::DEFAULT),
|
2674
|
+
KEY_VALUE => PAnyType::DEFAULT
|
2675
|
+
},
|
2676
|
+
'value_type' => {
|
2677
|
+
KEY_TYPE => POptionalType.new(PTypeType::DEFAULT),
|
2678
|
+
KEY_VALUE => PAnyType::DEFAULT
|
2679
|
+
})
|
2671
2680
|
end
|
2672
2681
|
|
2673
2682
|
attr_accessor :key_type, :value_type
|
@@ -2691,9 +2700,9 @@ class PHashType < PCollectionType
|
|
2691
2700
|
|
2692
2701
|
def element_type
|
2693
2702
|
if Puppet[:strict] != :off
|
2694
|
-
#TRANSLATOR 'Puppet::Pops::Types::PHashType#element_type' and '#value_type' are class and method names and should not be translated
|
2703
|
+
# TRANSLATOR 'Puppet::Pops::Types::PHashType#element_type' and '#value_type' are class and method names and should not be translated
|
2695
2704
|
Puppet.warn_once('deprecations', 'Puppet::Pops::Types::PHashType#element_type',
|
2696
|
-
|
2705
|
+
_('Puppet::Pops::Types::PHashType#element_type is deprecated, use #value_type instead'))
|
2697
2706
|
end
|
2698
2707
|
@value_type
|
2699
2708
|
end
|
@@ -2727,7 +2736,8 @@ class PHashType < PCollectionType
|
|
2727
2736
|
def instance?(o, guard = nil)
|
2728
2737
|
# The inferred type of a class derived from Hash is either Runtime or Object. It's not assignable to the Hash type.
|
2729
2738
|
return false unless o.instance_of?(Hash)
|
2730
|
-
|
2739
|
+
|
2740
|
+
if o.keys.all? { |key| @key_type.instance?(key, guard) } && o.values.all? { |value| @value_type.instance?(value, guard) }
|
2731
2741
|
size_t = size_type
|
2732
2742
|
size_t.nil? || size_t.instance?(o.size, guard)
|
2733
2743
|
else
|
@@ -2763,8 +2773,9 @@ class PHashType < PCollectionType
|
|
2763
2773
|
|
2764
2774
|
def self.array_as_hash(value)
|
2765
2775
|
return value unless value.is_a?(Array)
|
2776
|
+
|
2766
2777
|
result = {}
|
2767
|
-
value.each_with_index {|v, idx| result[idx] = array_as_hash(v) }
|
2778
|
+
value.each_with_index { |v, idx| result[idx] = array_as_hash(v) }
|
2768
2779
|
result
|
2769
2780
|
end
|
2770
2781
|
|
@@ -2784,21 +2795,22 @@ class PHashType < PCollectionType
|
|
2784
2795
|
end
|
2785
2796
|
|
2786
2797
|
dispatch :from_tuples do
|
2787
|
-
param 'KeyValueArray',
|
2798
|
+
param 'KeyValueArray', :from
|
2788
2799
|
end
|
2789
2800
|
|
2790
2801
|
dispatch :from_array do
|
2791
|
-
param 'Any',
|
2802
|
+
param 'Any', :from
|
2792
2803
|
end
|
2793
2804
|
|
2794
2805
|
def from_tuples(tuple_array)
|
2795
|
-
|
2806
|
+
tuple_array.to_h
|
2796
2807
|
end
|
2797
2808
|
|
2798
2809
|
def from_tree(tuple_array, build_option = nil)
|
2799
2810
|
if build_option.nil?
|
2800
2811
|
return from_tuples(tuple_array)
|
2801
2812
|
end
|
2813
|
+
|
2802
2814
|
# only remaining possible options is 'tree' or 'hash_tree'
|
2803
2815
|
|
2804
2816
|
all_hashes = build_option == 'hash_tree'
|
@@ -2811,13 +2823,13 @@ class PHashType < PCollectionType
|
|
2811
2823
|
# An array must be changed to a hash first as this is the root
|
2812
2824
|
# (Cannot return an array from a Hash.new)
|
2813
2825
|
if value.is_a?(Array)
|
2814
|
-
value.each_with_index {|v, idx| result[idx] = v }
|
2826
|
+
value.each_with_index { |v, idx| result[idx] = v }
|
2815
2827
|
else
|
2816
2828
|
result.merge!(value)
|
2817
2829
|
end
|
2818
2830
|
else
|
2819
|
-
r = path[0..-2].reduce(result) {|memo, idx| (memo.is_a?(Array) || memo.has_key?(idx)) ? memo[idx] : memo[idx] = {}}
|
2820
|
-
r[path[-1]]= (all_hashes ? PHashType.array_as_hash(value) : value)
|
2831
|
+
r = path[0..-2].reduce(result) { |memo, idx| (memo.is_a?(Array) || memo.has_key?(idx)) ? memo[idx] : memo[idx] = {} }
|
2832
|
+
r[path[-1]] = (all_hashes ? PHashType.array_as_hash(value) : value)
|
2821
2833
|
end
|
2822
2834
|
end
|
2823
2835
|
result
|
@@ -2829,9 +2841,10 @@ class PHashType < PCollectionType
|
|
2829
2841
|
if from.size == 0
|
2830
2842
|
{}
|
2831
2843
|
else
|
2832
|
-
unless from.size
|
2844
|
+
unless from.size.even?
|
2833
2845
|
raise TypeConversionError.new(_('odd number of arguments for Hash'))
|
2834
2846
|
end
|
2847
|
+
|
2835
2848
|
Hash[*from]
|
2836
2849
|
end
|
2837
2850
|
when Hash
|
@@ -2849,7 +2862,7 @@ class PHashType < PCollectionType
|
|
2849
2862
|
end
|
2850
2863
|
|
2851
2864
|
DEFAULT = PHashType.new(nil, nil)
|
2852
|
-
KEY_PAIR_TUPLE_SIZE = PIntegerType.new(2,2)
|
2865
|
+
KEY_PAIR_TUPLE_SIZE = PIntegerType.new(2, 2)
|
2853
2866
|
DEFAULT_KEY_PAIR_TUPLE = PTupleType.new([PUnitType::DEFAULT, PUnitType::DEFAULT], KEY_PAIR_TUPLE_SIZE)
|
2854
2867
|
EMPTY = PHashType.new(PUnitType::DEFAULT, PUnitType::DEFAULT, PIntegerType.new(0, 0))
|
2855
2868
|
|
@@ -2863,6 +2876,7 @@ class PHashType < PCollectionType
|
|
2863
2876
|
size_s = size_type
|
2864
2877
|
return true if (size_s.nil? || size_s.from == 0) && o.is_the_empty_hash?
|
2865
2878
|
return false unless @key_type.assignable?(o.key_type, guard) && @value_type.assignable?(o.value_type, guard)
|
2879
|
+
|
2866
2880
|
super
|
2867
2881
|
when PStructType
|
2868
2882
|
# hash must accept String as key type
|
@@ -2870,7 +2884,7 @@ class PHashType < PCollectionType
|
|
2870
2884
|
# hash must accept the size of the struct
|
2871
2885
|
o_elements = o.elements
|
2872
2886
|
(size_type || DEFAULT_SIZE).instance?(o_elements.size, guard) &&
|
2873
|
-
|
2887
|
+
o_elements.all? { |e| @key_type.instance?(e.name, guard) && @value_type.assignable?(e.value_type, guard) }
|
2874
2888
|
else
|
2875
2889
|
false
|
2876
2890
|
end
|
@@ -2995,6 +3009,7 @@ class PVariantType < PAnyType
|
|
2995
3009
|
@types.reduce(-1) do |memo, type|
|
2996
3010
|
ri = type.really_instance?(o, guard)
|
2997
3011
|
break ri if ri > 0
|
3012
|
+
|
2998
3013
|
ri > memo ? ri : memo
|
2999
3014
|
end
|
3000
3015
|
end
|
@@ -3018,6 +3033,7 @@ class PVariantType < PAnyType
|
|
3018
3033
|
return super unless o.is_a?(PVariantType)
|
3019
3034
|
# If empty, all Variant types match irrespective of the types they hold (including being empty)
|
3020
3035
|
return true if types.empty?
|
3036
|
+
|
3021
3037
|
# Since this variant is not empty, an empty Variant cannot match, because it matches nothing
|
3022
3038
|
# otherwise all types in o must be assignable to this
|
3023
3039
|
!o.types.empty? && o.types.all? { |vt| super(vt, guard) }
|
@@ -3034,11 +3050,11 @@ class PVariantType < PAnyType
|
|
3034
3050
|
# @api private
|
3035
3051
|
def swap_not_undefs(array)
|
3036
3052
|
if array.size > 1
|
3037
|
-
parts = array.partition {|t| t.is_a?(PNotUndefType) }
|
3053
|
+
parts = array.partition { |t| t.is_a?(PNotUndefType) }
|
3038
3054
|
not_undefs = parts[0]
|
3039
3055
|
if not_undefs.size > 1
|
3040
3056
|
others = parts[1]
|
3041
|
-
others <<
|
3057
|
+
others << PNotUndefType.new(PVariantType.maybe_create(not_undefs.map { |not_undef| not_undef.type }).normalize)
|
3042
3058
|
array = others
|
3043
3059
|
end
|
3044
3060
|
end
|
@@ -3049,25 +3065,25 @@ class PVariantType < PAnyType
|
|
3049
3065
|
def merge_enums(array)
|
3050
3066
|
# Merge case sensitive enums and strings
|
3051
3067
|
if array.size > 1
|
3052
|
-
parts = array.partition {|t| t.is_a?(PEnumType) && !t.values.empty? && !t.case_insensitive? || t.is_a?(PStringType) && !t.value.nil? }
|
3068
|
+
parts = array.partition { |t| t.is_a?(PEnumType) && !t.values.empty? && !t.case_insensitive? || t.is_a?(PStringType) && !t.value.nil? }
|
3053
3069
|
enums = parts[0]
|
3054
3070
|
if enums.size > 1
|
3055
3071
|
others = parts[1]
|
3056
|
-
others <<
|
3072
|
+
others << PEnumType.new(enums.map { |enum| enum.is_a?(PStringType) ? enum.value : enum.values }.flatten.uniq)
|
3057
3073
|
array = others
|
3058
3074
|
end
|
3059
3075
|
end
|
3060
3076
|
|
3061
3077
|
# Merge case insensitive enums
|
3062
3078
|
if array.size > 1
|
3063
|
-
parts = array.partition {|t| t.is_a?(PEnumType) && !t.values.empty? && t.case_insensitive? }
|
3079
|
+
parts = array.partition { |t| t.is_a?(PEnumType) && !t.values.empty? && t.case_insensitive? }
|
3064
3080
|
enums = parts[0]
|
3065
3081
|
if enums.size > 1
|
3066
3082
|
others = parts[1]
|
3067
3083
|
values = []
|
3068
|
-
enums.each { |enum| enum.values.each { |value| values << value.downcase }}
|
3084
|
+
enums.each { |enum| enum.values.each { |value| values << value.downcase } }
|
3069
3085
|
values.uniq!
|
3070
|
-
others <<
|
3086
|
+
others << PEnumType.new(values, true)
|
3071
3087
|
array = others
|
3072
3088
|
end
|
3073
3089
|
end
|
@@ -3077,11 +3093,11 @@ class PVariantType < PAnyType
|
|
3077
3093
|
# @api private
|
3078
3094
|
def merge_patterns(array)
|
3079
3095
|
if array.size > 1
|
3080
|
-
parts = array.partition {|t| t.is_a?(PPatternType) }
|
3096
|
+
parts = array.partition { |t| t.is_a?(PPatternType) }
|
3081
3097
|
patterns = parts[0]
|
3082
3098
|
if patterns.size > 1
|
3083
3099
|
others = parts[1]
|
3084
|
-
others <<
|
3100
|
+
others << PPatternType.new(patterns.map { |pattern| pattern.patterns }.flatten.uniq)
|
3085
3101
|
array = others
|
3086
3102
|
end
|
3087
3103
|
end
|
@@ -3091,7 +3107,7 @@ class PVariantType < PAnyType
|
|
3091
3107
|
# @api private
|
3092
3108
|
def merge_numbers(clazz, array)
|
3093
3109
|
if array.size > 1
|
3094
|
-
parts = array.partition {|t| t.is_a?(clazz) }
|
3110
|
+
parts = array.partition { |t| t.is_a?(clazz) }
|
3095
3111
|
ranges = parts[0]
|
3096
3112
|
array = merge_ranges(ranges) + parts[1] if ranges.size > 1
|
3097
3113
|
end
|
@@ -3100,7 +3116,7 @@ class PVariantType < PAnyType
|
|
3100
3116
|
|
3101
3117
|
def merge_version_ranges(array)
|
3102
3118
|
if array.size > 1
|
3103
|
-
parts = array.partition {|t| t.is_a?(PSemVerType) }
|
3119
|
+
parts = array.partition { |t| t.is_a?(PSemVerType) }
|
3104
3120
|
ranges = parts[0]
|
3105
3121
|
array = [PSemVerType.new(ranges.map(&:ranges).flatten)] + parts[1] if ranges.size > 1
|
3106
3122
|
end
|
@@ -3143,6 +3159,7 @@ class PCatalogEntryType < PAnyType
|
|
3143
3159
|
end
|
3144
3160
|
|
3145
3161
|
protected
|
3162
|
+
|
3146
3163
|
# @api private
|
3147
3164
|
def _assignable?(o, guard)
|
3148
3165
|
o.is_a?(PCatalogEntryType)
|
@@ -3157,11 +3174,10 @@ class PClassType < PCatalogEntryType
|
|
3157
3174
|
|
3158
3175
|
def self.register_ptype(loader, ir)
|
3159
3176
|
create_ptype(loader, ir, 'CatalogEntryType',
|
3160
|
-
|
3161
|
-
|
3162
|
-
|
3163
|
-
|
3164
|
-
)
|
3177
|
+
'class_name' => {
|
3178
|
+
KEY_TYPE => POptionalType.new(PStringType::NON_EMPTY),
|
3179
|
+
KEY_VALUE => nil
|
3180
|
+
})
|
3165
3181
|
end
|
3166
3182
|
|
3167
3183
|
def initialize(class_name)
|
@@ -3171,6 +3187,7 @@ class PClassType < PCatalogEntryType
|
|
3171
3187
|
def hash
|
3172
3188
|
11 ^ @class_name.hash
|
3173
3189
|
end
|
3190
|
+
|
3174
3191
|
def eql?(o)
|
3175
3192
|
self.class == o.class && @class_name == o.class_name
|
3176
3193
|
end
|
@@ -3184,6 +3201,7 @@ class PClassType < PCatalogEntryType
|
|
3184
3201
|
return false unless o.is_a?(PClassType)
|
3185
3202
|
# Class = Class[name}, Class[name] != Class
|
3186
3203
|
return true if @class_name.nil?
|
3204
|
+
|
3187
3205
|
# Class[name] = Class[name]
|
3188
3206
|
@class_name == o.class_name
|
3189
3207
|
end
|
@@ -3192,23 +3210,20 @@ end
|
|
3192
3210
|
# For backward compatibility
|
3193
3211
|
PHostClassType = PClassType
|
3194
3212
|
|
3195
|
-
|
3196
3213
|
# Represents a Resource Type in the Puppet Language
|
3197
3214
|
# @api public
|
3198
3215
|
#
|
3199
3216
|
class PResourceType < PCatalogEntryType
|
3200
|
-
|
3201
3217
|
def self.register_ptype(loader, ir)
|
3202
3218
|
create_ptype(loader, ir, 'CatalogEntryType',
|
3203
|
-
|
3204
|
-
|
3205
|
-
|
3206
|
-
|
3207
|
-
|
3208
|
-
|
3209
|
-
|
3210
|
-
|
3211
|
-
)
|
3219
|
+
'type_name' => {
|
3220
|
+
KEY_TYPE => POptionalType.new(PStringType::NON_EMPTY),
|
3221
|
+
KEY_VALUE => nil
|
3222
|
+
},
|
3223
|
+
'title' => {
|
3224
|
+
KEY_TYPE => POptionalType.new(PStringType::NON_EMPTY),
|
3225
|
+
KEY_VALUE => nil
|
3226
|
+
})
|
3212
3227
|
end
|
3213
3228
|
|
3214
3229
|
attr_reader :type_name, :title, :downcased_name
|
@@ -3242,22 +3257,20 @@ end
|
|
3242
3257
|
# @api public
|
3243
3258
|
#
|
3244
3259
|
class POptionalType < PTypeWithContainedType
|
3245
|
-
|
3246
3260
|
def self.register_ptype(loader, ir)
|
3247
3261
|
create_ptype(loader, ir, 'AnyType',
|
3248
|
-
|
3249
|
-
|
3250
|
-
|
3251
|
-
|
3252
|
-
)
|
3262
|
+
'type' => {
|
3263
|
+
KEY_TYPE => POptionalType.new(PTypeType::DEFAULT),
|
3264
|
+
KEY_VALUE => nil
|
3265
|
+
})
|
3253
3266
|
end
|
3254
3267
|
|
3255
3268
|
def optional_type
|
3256
3269
|
@type
|
3257
3270
|
end
|
3258
3271
|
|
3259
|
-
def kind_of_callable?(optional=true, guard = nil)
|
3260
|
-
|
3272
|
+
def kind_of_callable?(optional = true, guard = nil)
|
3273
|
+
optional && !@type.nil? && @type.kind_of_callable?(optional, guard)
|
3261
3274
|
end
|
3262
3275
|
|
3263
3276
|
def instance?(o, guard = nil)
|
@@ -3268,16 +3281,14 @@ class POptionalType < PTypeWithContainedType
|
|
3268
3281
|
n = super
|
3269
3282
|
if n.type.nil?
|
3270
3283
|
n
|
3284
|
+
elsif n.type.is_a?(PNotUndefType)
|
3285
|
+
POptionalType.new(n.type.type).normalize
|
3286
|
+
# No point in having an NotUndef in an Optional
|
3287
|
+
elsif n.type.assignable?(PUndefType::DEFAULT)
|
3288
|
+
# THe type is Optional anyway, so it can be stripped of
|
3289
|
+
n.type
|
3271
3290
|
else
|
3272
|
-
|
3273
|
-
# No point in having an NotUndef in an Optional
|
3274
|
-
POptionalType.new(n.type.type).normalize
|
3275
|
-
elsif n.type.assignable?(PUndefType::DEFAULT)
|
3276
|
-
# THe type is Optional anyway, so it can be stripped of
|
3277
|
-
n.type
|
3278
|
-
else
|
3279
|
-
n
|
3280
|
-
end
|
3291
|
+
n
|
3281
3292
|
end
|
3282
3293
|
end
|
3283
3294
|
|
@@ -3293,6 +3304,7 @@ class POptionalType < PTypeWithContainedType
|
|
3293
3304
|
def _assignable?(o, guard)
|
3294
3305
|
return true if o.is_a?(PUndefType)
|
3295
3306
|
return true if @type.nil?
|
3307
|
+
|
3296
3308
|
if o.is_a?(POptionalType)
|
3297
3309
|
@type.assignable?(o.optional_type, guard)
|
3298
3310
|
else
|
@@ -3302,7 +3314,6 @@ class POptionalType < PTypeWithContainedType
|
|
3302
3314
|
end
|
3303
3315
|
|
3304
3316
|
class PTypeReferenceType < PAnyType
|
3305
|
-
|
3306
3317
|
def self.register_ptype(loader, ir)
|
3307
3318
|
create_ptype(loader, ir, 'AnyType', 'type_string' => PStringType::NON_EMPTY)
|
3308
3319
|
end
|
@@ -3351,16 +3362,14 @@ end
|
|
3351
3362
|
#
|
3352
3363
|
# @api public
|
3353
3364
|
class PTypeAliasType < PAnyType
|
3354
|
-
|
3355
3365
|
def self.register_ptype(loader, ir)
|
3356
3366
|
create_ptype(loader, ir, 'AnyType',
|
3357
|
-
|
3358
|
-
|
3359
|
-
|
3360
|
-
|
3361
|
-
|
3362
|
-
|
3363
|
-
)
|
3367
|
+
'name' => PStringType::NON_EMPTY,
|
3368
|
+
'type_expr' => PAnyType::DEFAULT,
|
3369
|
+
'resolved_type' => {
|
3370
|
+
KEY_TYPE => POptionalType.new(PTypeType::DEFAULT),
|
3371
|
+
KEY_VALUE => nil
|
3372
|
+
})
|
3364
3373
|
end
|
3365
3374
|
|
3366
3375
|
attr_reader :loader, :name
|
@@ -3391,6 +3400,7 @@ class PTypeAliasType < PAnyType
|
|
3391
3400
|
# @raise [Puppet::Error] unless the type has been resolved prior to calling this method
|
3392
3401
|
def resolved_type
|
3393
3402
|
raise Puppet::Error, "Reference to unresolved type #{@name}" unless @resolved_type
|
3403
|
+
|
3394
3404
|
@resolved_type
|
3395
3405
|
end
|
3396
3406
|
|
@@ -3402,7 +3412,7 @@ class PTypeAliasType < PAnyType
|
|
3402
3412
|
resolved_type.check_self_recursion(originator) unless originator.equal?(self)
|
3403
3413
|
end
|
3404
3414
|
|
3405
|
-
def kind_of_callable?(optional=true, guard = nil)
|
3415
|
+
def kind_of_callable?(optional = true, guard = nil)
|
3406
3416
|
guarded_recursion(guard, false) { |g| resolved_type.kind_of_callable?(optional, g) }
|
3407
3417
|
end
|
3408
3418
|
|
@@ -3453,6 +3463,7 @@ class PTypeAliasType < PAnyType
|
|
3453
3463
|
|
3454
3464
|
def set_self_recursion_status
|
3455
3465
|
return if @self_recursion || @resolved_type.is_a?(PTypeReferenceType)
|
3466
|
+
|
3456
3467
|
@self_recursion = true
|
3457
3468
|
guard = RecursionGuard.new
|
3458
3469
|
accept(NoopTypeAcceptor::INSTANCE, guard)
|
@@ -3490,6 +3501,7 @@ class PTypeAliasType < PAnyType
|
|
3490
3501
|
unless real_type_asserter.other_type_detected?
|
3491
3502
|
raise ArgumentError, "Type alias '#{name}' cannot be resolved to a real type"
|
3492
3503
|
end
|
3504
|
+
|
3493
3505
|
@self_recursion = guard.recursive_this?(self)
|
3494
3506
|
# All aliases involved must re-check status since this alias is now resolved
|
3495
3507
|
if @self_recursion
|
@@ -3587,6 +3599,7 @@ class PTypeAliasType < PAnyType
|
|
3587
3599
|
resolved_types = @resolved_type.types
|
3588
3600
|
real_types = resolved_types.select do |type|
|
3589
3601
|
next false if type == self
|
3602
|
+
|
3590
3603
|
real_type_asserter = AssertOtherTypeAcceptor.new
|
3591
3604
|
type.accept(real_type_asserter, RecursionGuard.new)
|
3592
3605
|
real_type_asserter.other_type_detected?
|