puppet 6.11.1-x86-mingw32 → 6.16.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CODEOWNERS +3 -8
- data/CONTRIBUTING.md +7 -13
- data/Gemfile +1 -0
- data/Gemfile.lock +39 -36
- data/README.md +17 -24
- data/ext/build_defaults.yaml +1 -0
- data/ext/project_data.yaml +1 -1
- data/ext/windows/service/daemon.rb +25 -20
- data/lib/puppet.rb +52 -13
- data/lib/puppet/agent.rb +20 -14
- data/lib/puppet/application/agent.rb +12 -14
- data/lib/puppet/application/describe.rb +7 -5
- data/lib/puppet/application/device.rb +2 -2
- data/lib/puppet/application/filebucket.rb +19 -15
- data/lib/puppet/application/plugin.rb +1 -0
- data/lib/puppet/application/resource.rb +1 -1
- data/lib/puppet/application/ssl.rb +4 -4
- data/lib/puppet/concurrent.rb +2 -0
- data/lib/puppet/concurrent/lock.rb +16 -0
- data/lib/puppet/concurrent/synchronized.rb +15 -0
- data/lib/puppet/concurrent/thread_local_singleton.rb +14 -0
- data/lib/puppet/configurer.rb +85 -83
- data/lib/puppet/configurer/plugin_handler.rb +10 -1
- data/lib/puppet/context/trusted_information.rb +14 -8
- data/lib/puppet/daemon.rb +13 -27
- data/lib/puppet/defaults.rb +158 -40
- data/lib/puppet/environments.rb +30 -20
- data/lib/puppet/error.rb +9 -1
- data/lib/puppet/face/facts.rb +8 -5
- data/lib/puppet/face/help.rb +29 -3
- data/lib/puppet/face/module/search.rb +5 -0
- data/lib/puppet/face/plugin.rb +2 -2
- data/lib/puppet/file_serving/http_metadata.rb +1 -1
- data/lib/puppet/file_system/file_impl.rb +13 -9
- data/lib/puppet/file_system/memory_file.rb +6 -0
- data/lib/puppet/file_system/memory_impl.rb +13 -0
- data/lib/puppet/file_system/uniquefile.rb +4 -0
- data/lib/puppet/file_system/windows.rb +7 -10
- data/lib/puppet/forge.rb +3 -3
- data/lib/puppet/forge/errors.rb +2 -2
- data/lib/puppet/forge/repository.rb +31 -86
- data/lib/puppet/functions/call.rb +1 -1
- data/lib/puppet/functions/camelcase.rb +2 -2
- data/lib/puppet/functions/epp.rb +4 -4
- data/lib/puppet/functions/eyaml_lookup_key.rb +13 -8
- data/lib/puppet/functions/filter.rb +1 -0
- data/lib/puppet/functions/find_file.rb +9 -9
- data/lib/puppet/functions/find_template.rb +63 -0
- data/lib/puppet/functions/inline_epp.rb +5 -5
- data/lib/puppet/functions/reduce.rb +2 -4
- data/lib/puppet/http.rb +7 -0
- data/lib/puppet/http/client.rb +341 -54
- data/lib/puppet/http/errors.rb +2 -0
- data/lib/puppet/http/external_client.rb +90 -0
- data/lib/puppet/http/redirector.rb +34 -0
- data/lib/puppet/http/resolver.rb +57 -1
- data/lib/puppet/http/resolver/server_list.rb +98 -0
- data/lib/puppet/http/resolver/settings.rb +23 -2
- data/lib/puppet/http/resolver/srv.rb +36 -4
- data/lib/puppet/http/response.rb +68 -1
- data/lib/puppet/http/retry_after_handler.rb +39 -0
- data/lib/puppet/http/service.rb +179 -3
- data/lib/puppet/http/service/ca.rb +84 -21
- data/lib/puppet/http/service/compiler.rb +319 -0
- data/lib/puppet/http/service/file_server.rb +206 -0
- data/lib/puppet/http/service/report.rb +66 -0
- data/lib/puppet/http/session.rb +106 -31
- data/lib/puppet/indirector/catalog/compiler.rb +10 -0
- data/lib/puppet/indirector/catalog/rest.rb +34 -0
- data/lib/puppet/indirector/facts/rest.rb +42 -0
- data/lib/puppet/indirector/file_bucket_file/file.rb +1 -1
- data/lib/puppet/indirector/file_bucket_file/rest.rb +48 -0
- data/lib/puppet/indirector/file_content/http.rb +5 -0
- data/lib/puppet/indirector/file_content/rest.rb +30 -0
- data/lib/puppet/indirector/file_metadata/http.rb +4 -4
- data/lib/puppet/indirector/file_metadata/rest.rb +52 -0
- data/lib/puppet/indirector/json.rb +1 -1
- data/lib/puppet/indirector/msgpack.rb +1 -1
- data/lib/puppet/indirector/node/rest.rb +24 -0
- data/lib/puppet/indirector/report/rest.rb +19 -0
- data/lib/puppet/indirector/report/yaml.rb +23 -0
- data/lib/puppet/indirector/rest.rb +12 -0
- data/lib/puppet/indirector/status/rest.rb +18 -0
- data/lib/puppet/loaders.rb +6 -0
- data/lib/puppet/metatype/manager.rb +80 -80
- data/lib/puppet/network/http/base_pool.rb +19 -1
- data/lib/puppet/network/http/compression.rb +7 -0
- data/lib/puppet/network/http/connection.rb +6 -0
- data/lib/puppet/network/http/connection_adapter.rb +182 -0
- data/lib/puppet/network/http/nocache_pool.rb +2 -0
- data/lib/puppet/network/http/pool.rb +13 -6
- data/lib/puppet/network/http_pool.rb +2 -1
- data/lib/puppet/node/environment.rb +24 -8
- data/lib/puppet/pal/catalog_compiler.rb +5 -0
- data/lib/puppet/pal/pal_impl.rb +9 -29
- data/lib/puppet/parser/ast/pops_bridge.rb +6 -11
- data/lib/puppet/parser/compiler.rb +42 -32
- data/lib/puppet/parser/functions.rb +18 -13
- data/lib/puppet/parser/functions/epp.rb +3 -3
- data/lib/puppet/parser/functions/filter.rb +1 -0
- data/lib/puppet/parser/functions/inline_epp.rb +5 -5
- data/lib/puppet/pops/evaluator/access_operator.rb +2 -2
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +1 -1
- data/lib/puppet/pops/evaluator/runtime3_support.rb +1 -1
- data/lib/puppet/pops/loader/puppet_plan_instantiator.rb +12 -3
- data/lib/puppet/pops/loaders.rb +7 -5
- data/lib/puppet/pops/lookup/invocation.rb +10 -3
- data/lib/puppet/pops/model/pn_transformer.rb +5 -9
- data/lib/puppet/pops/parser/evaluating_parser.rb +8 -11
- data/lib/puppet/pops/serialization/json_path.rb +3 -3
- data/lib/puppet/pops/time/timespan.rb +3 -5
- data/lib/puppet/pops/types/p_object_type_extension.rb +10 -0
- data/lib/puppet/pops/types/string_converter.rb +6 -9
- data/lib/puppet/pops/types/type_calculator.rb +30 -10
- data/lib/puppet/pops/types/type_formatter.rb +9 -11
- data/lib/puppet/pops/types/type_parser.rb +3 -3
- data/lib/puppet/pops/validation/checker4_0.rb +1 -1
- data/lib/puppet/pops/validation/tasks_checker.rb +5 -1
- data/lib/puppet/provider/aix_object.rb +4 -2
- data/lib/puppet/provider/group/aix.rb +1 -0
- data/lib/puppet/provider/group/groupadd.rb +57 -24
- data/lib/puppet/provider/group/windows_adsi.rb +3 -3
- data/lib/puppet/provider/package/aix.rb +17 -2
- data/lib/puppet/provider/package/apt.rb +78 -4
- data/lib/puppet/provider/package/dnfmodule.rb +69 -15
- data/lib/puppet/provider/package/dpkg.rb +14 -7
- data/lib/puppet/provider/package/fink.rb +20 -3
- data/lib/puppet/provider/package/gem.rb +41 -7
- data/lib/puppet/provider/package/openbsd.rb +13 -1
- data/lib/puppet/provider/package/pacman.rb +2 -5
- data/lib/puppet/provider/package/pip.rb +143 -48
- data/lib/puppet/provider/package/pip3.rb +0 -2
- data/lib/puppet/provider/package/pkg.rb +18 -5
- data/lib/puppet/provider/package/pkgdmg.rb +1 -1
- data/lib/puppet/provider/package/pkgng.rb +16 -4
- data/lib/puppet/provider/package/portage.rb +5 -5
- data/lib/puppet/provider/package/puppet_gem.rb +6 -2
- data/lib/puppet/provider/package/rpm.rb +6 -213
- data/lib/puppet/provider/package/yum.rb +108 -24
- data/lib/puppet/provider/package/zypper.rb +59 -1
- data/lib/puppet/provider/package_targetable.rb +5 -4
- data/lib/puppet/provider/service/systemd.rb +23 -5
- data/lib/puppet/provider/user/aix.rb +1 -0
- data/lib/puppet/provider/user/directoryservice.rb +30 -5
- data/lib/puppet/provider/user/hpux.rb +1 -1
- data/lib/puppet/provider/user/useradd.rb +11 -8
- data/lib/puppet/reports/http.rb +13 -9
- data/lib/puppet/reports/store.rb +1 -1
- data/lib/puppet/resource/type_collection.rb +20 -16
- data/lib/puppet/runtime.rb +32 -1
- data/lib/puppet/settings.rb +4 -0
- data/lib/puppet/settings/http_extra_headers_setting.rb +25 -0
- data/lib/puppet/ssl.rb +1 -0
- data/lib/puppet/ssl/certificate.rb +2 -1
- data/lib/puppet/ssl/host.rb +4 -4
- data/lib/puppet/ssl/oids.rb +1 -0
- data/lib/puppet/ssl/ssl_provider.rb +20 -0
- data/lib/puppet/ssl/state_machine.rb +81 -35
- data/lib/puppet/ssl/verifier_adapter.rb +9 -1
- data/lib/puppet/test/test_helper.rb +7 -1
- data/lib/puppet/transaction.rb +33 -11
- data/lib/puppet/transaction/report.rb +2 -2
- data/lib/puppet/transaction/resource_harness.rb +1 -1
- data/lib/puppet/type.rb +7 -2
- data/lib/puppet/type/file.rb +13 -0
- data/lib/puppet/type/file/data_sync.rb +5 -1
- data/lib/puppet/type/file/source.rb +49 -58
- data/lib/puppet/type/group.rb +5 -4
- data/lib/puppet/type/package.rb +102 -10
- data/lib/puppet/type/service.rb +6 -8
- data/lib/puppet/type/user.rb +6 -30
- data/lib/puppet/util.rb +34 -11
- data/lib/puppet/util/at_fork.rb +1 -1
- data/lib/puppet/util/autoload.rb +4 -18
- data/lib/puppet/util/instance_loader.rb +14 -10
- data/lib/puppet/util/log/destinations.rb +2 -11
- data/lib/puppet/util/logging.rb +30 -18
- data/lib/puppet/util/package/version/debian.rb +175 -0
- data/lib/puppet/util/package/version/gem.rb +15 -0
- data/lib/puppet/util/package/version/pip.rb +167 -0
- data/lib/puppet/util/package/version/range.rb +53 -0
- data/lib/puppet/util/package/version/range/eq.rb +14 -0
- data/lib/puppet/util/package/version/range/gt.rb +14 -0
- data/lib/puppet/util/package/version/range/gt_eq.rb +14 -0
- data/lib/puppet/util/package/version/range/lt.rb +14 -0
- data/lib/puppet/util/package/version/range/lt_eq.rb +14 -0
- data/lib/puppet/util/package/version/range/min_max.rb +21 -0
- data/lib/puppet/util/package/version/range/simple.rb +11 -0
- data/lib/puppet/util/package/version/rpm.rb +73 -0
- data/lib/puppet/util/pidlock.rb +36 -10
- data/lib/puppet/util/platform.rb +5 -0
- data/lib/puppet/util/plist.rb +6 -0
- data/lib/puppet/util/rpm_compare.rb +193 -0
- data/lib/puppet/util/storage.rb +0 -1
- data/lib/puppet/util/windows/adsi.rb +50 -20
- data/lib/puppet/util/windows/process.rb +15 -14
- data/lib/puppet/util/windows/security.rb +1 -0
- data/lib/puppet/util/windows/sid.rb +3 -3
- data/lib/puppet/util/yaml.rb +1 -1
- data/lib/puppet/version.rb +1 -1
- data/lib/puppet/x509/cert_provider.rb +9 -5
- data/locales/puppet.pot +640 -521
- data/man/man5/puppet.conf.5 +88 -9
- data/man/man8/puppet-agent.8 +6 -6
- 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 +2 -2
- 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 +17 -2
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +6 -3
- data/man/man8/puppet-key.8 +1 -1
- data/man/man8/puppet-lookup.8 +1 -1
- data/man/man8/puppet-man.8 +1 -1
- data/man/man8/puppet-module.8 +4 -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 +2 -2
- data/man/man8/puppet-status.8 +1 -1
- data/man/man8/puppet.8 +2 -2
- data/spec/fixtures/ssl/unknown-127.0.0.1-key.pem +67 -0
- data/spec/fixtures/ssl/unknown-127.0.0.1.pem +48 -0
- data/spec/fixtures/ssl/unknown-ca-key.pem +67 -0
- data/spec/fixtures/ssl/unknown-ca.pem +59 -0
- data/spec/fixtures/unit/forge/bacula.json +76 -0
- data/spec/fixtures/unit/provider/package/dnfmodule/{dnf-module-list-installed.txt → dnf-module-list.txt} +8 -0
- data/spec/fixtures/unit/provider/package/pkgng/pkg.version +2 -0
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-subscription-manager.txt +9 -0
- data/spec/fixtures/unit/provider/package/zypper/zypper-search-uninstalled.out +13 -0
- data/spec/fixtures/unit/provider/service/systemd/list_unit_files_services +9 -0
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_fetch_if_not_on_the_local_disk.yml +1 -102
- 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 +1 -106
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_update_if_content_differs_on_disk.yml +1 -106
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_mtime_is_older_on_disk.yml +1 -102
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_no_header_specified.yml +1 -98
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_not_on_the_local_disk.yml +1 -102
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_not_update_if_mtime_is_newer_on_disk.yml +1 -102
- data/spec/integration/application/agent_spec.rb +394 -0
- data/spec/integration/application/apply_spec.rb +132 -3
- data/spec/integration/application/filebucket_spec.rb +190 -0
- data/spec/integration/application/plugin_spec.rb +73 -0
- data/spec/integration/configurer_spec.rb +26 -7
- data/spec/integration/http/client_spec.rb +154 -0
- data/spec/integration/indirector/facts/facter_spec.rb +4 -0
- data/spec/integration/indirector/report/yaml.rb +83 -0
- data/spec/integration/module_tool/forge_spec.rb +51 -0
- data/spec/integration/network/http_pool_spec.rb +76 -20
- data/spec/integration/node/environment_spec.rb +15 -0
- data/spec/integration/util/windows/adsi_spec.rb +6 -1
- data/spec/lib/puppet/test_ca.rb +2 -2
- data/spec/lib/puppet_spec/https.rb +20 -9
- data/spec/lib/puppet_spec/puppetserver.rb +119 -0
- data/spec/shared_contexts/https.rb +29 -0
- data/spec/spec_helper.rb +6 -2
- data/spec/unit/agent_spec.rb +80 -26
- data/spec/unit/application/agent_spec.rb +9 -5
- data/spec/unit/application/apply_spec.rb +2 -12
- data/spec/unit/application/describe_spec.rb +88 -50
- data/spec/unit/application/device_spec.rb +2 -2
- data/spec/unit/application/filebucket_spec.rb +22 -2
- data/spec/unit/application/resource_spec.rb +2 -2
- data/spec/unit/concurrent/lock_spec.rb +29 -0
- data/spec/unit/configurer/fact_handler_spec.rb +0 -4
- data/spec/unit/configurer/plugin_handler_spec.rb +36 -19
- data/spec/unit/configurer_spec.rb +400 -406
- data/spec/unit/context/trusted_information_spec.rb +17 -0
- data/spec/unit/daemon_spec.rb +5 -64
- data/spec/unit/defaults_spec.rb +38 -4
- data/spec/unit/environments_spec.rb +65 -28
- data/spec/unit/face/facts_spec.rb +24 -20
- data/spec/unit/face/module/search_spec.rb +17 -0
- data/spec/unit/face/plugin_spec.rb +12 -10
- data/spec/unit/file_system/uniquefile_spec.rb +11 -0
- data/spec/unit/file_system_spec.rb +26 -2
- data/spec/unit/forge/errors_spec.rb +1 -1
- data/spec/unit/forge/forge_spec.rb +12 -54
- data/spec/unit/forge/module_release_spec.rb +19 -6
- data/spec/unit/forge/repository_spec.rb +63 -157
- data/spec/unit/forge_spec.rb +46 -116
- data/spec/unit/functions/find_template_spec.rb +69 -0
- data/spec/unit/functions/lookup_spec.rb +13 -0
- data/spec/unit/http/client_spec.rb +395 -27
- data/spec/unit/http/external_client_spec.rb +201 -0
- data/spec/unit/http/resolver_spec.rb +81 -12
- data/spec/unit/http/response_spec.rb +69 -0
- data/spec/unit/http/service/ca_spec.rb +100 -7
- data/spec/unit/http/service/compiler_spec.rb +627 -0
- data/spec/unit/http/service/file_server_spec.rb +308 -0
- data/spec/unit/http/service/report_spec.rb +118 -0
- data/spec/unit/http/service_spec.rb +117 -4
- data/spec/unit/http/session_spec.rb +237 -19
- data/spec/unit/indirector/catalog/compiler_spec.rb +47 -29
- data/spec/unit/indirector/catalog/rest_spec.rb +59 -2
- data/spec/unit/indirector/facts/rest_spec.rb +79 -24
- data/spec/unit/indirector/file_bucket_file/rest_spec.rb +82 -2
- data/spec/unit/indirector/file_content/rest_spec.rb +53 -2
- data/spec/unit/indirector/file_metadata/http_spec.rb +167 -0
- data/spec/unit/indirector/file_metadata/rest_spec.rb +110 -2
- data/spec/unit/indirector/node/rest_spec.rb +57 -2
- data/spec/unit/indirector/report/rest_spec.rb +58 -51
- data/spec/unit/indirector/resource/ral_spec.rb +7 -8
- data/spec/unit/indirector/rest_spec.rb +13 -0
- data/spec/unit/indirector/status/rest_spec.rb +43 -2
- data/spec/unit/network/http/connection_spec.rb +549 -176
- data/spec/unit/network/http/nocache_pool_spec.rb +25 -3
- data/spec/unit/network/http/pool_spec.rb +89 -11
- data/spec/unit/network/http_pool_spec.rb +63 -57
- data/spec/unit/network/http_spec.rb +1 -1
- data/spec/unit/node/environment_spec.rb +16 -0
- data/spec/unit/node/facts_spec.rb +2 -1
- data/spec/unit/node_spec.rb +7 -4
- data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +8 -3
- data/spec/unit/pops/serialization/to_from_hr_spec.rb +6 -1
- data/spec/unit/pops/validator/validator_spec.rb +7 -2
- data/spec/unit/provider/aix_object_spec.rb +16 -2
- data/spec/unit/provider/group/groupadd_spec.rb +181 -56
- data/spec/unit/provider/group/windows_adsi_spec.rb +43 -10
- data/spec/unit/provider/package/aix_spec.rb +29 -0
- data/spec/unit/provider/package/apt_spec.rb +43 -2
- data/spec/unit/provider/package/aptitude_spec.rb +1 -0
- data/spec/unit/provider/package/dnfmodule_spec.rb +76 -15
- data/spec/unit/provider/package/dpkg_spec.rb +28 -6
- data/spec/unit/provider/package/gem_spec.rb +40 -0
- data/spec/unit/provider/package/openbsd_spec.rb +17 -0
- data/spec/unit/provider/package/pacman_spec.rb +6 -21
- data/spec/unit/provider/package/pip_spec.rb +68 -19
- data/spec/unit/provider/package/pkg_spec.rb +15 -1
- data/spec/unit/provider/package/pkgdmg_spec.rb +1 -1
- data/spec/unit/provider/package/pkgng_spec.rb +38 -0
- data/spec/unit/provider/package/portage_spec.rb +9 -4
- data/spec/unit/provider/package/puppet_gem_spec.rb +8 -0
- data/spec/unit/provider/package/rpm_spec.rb +0 -212
- data/spec/unit/provider/package/yum_spec.rb +292 -0
- data/spec/unit/provider/package/zypper_spec.rb +84 -0
- data/spec/unit/provider/package_targetable_spec.rb +60 -0
- data/spec/unit/provider/service/init_spec.rb +1 -0
- data/spec/unit/provider/service/openbsd_spec.rb +9 -0
- data/spec/unit/provider/service/openwrt_spec.rb +1 -0
- data/spec/unit/provider/service/redhat_spec.rb +9 -0
- data/spec/unit/provider/service/systemd_spec.rb +92 -12
- data/spec/unit/provider/user/directoryservice_spec.rb +41 -0
- data/spec/unit/provider/user/hpux_spec.rb +2 -2
- data/spec/unit/provider/user/useradd_spec.rb +21 -8
- data/spec/unit/provider/user/windows_adsi_spec.rb +3 -3
- data/spec/unit/puppet_pal_2pec.rb +0 -26
- data/spec/unit/puppet_pal_catalog_spec.rb +46 -0
- data/spec/unit/puppet_spec.rb +47 -0
- data/spec/unit/reports/http_spec.rb +70 -52
- data/spec/unit/settings/autosign_setting_spec.rb +1 -1
- data/spec/unit/settings/http_extra_headers_spec.rb +64 -0
- data/spec/unit/ssl/certificate_spec.rb +7 -0
- data/spec/unit/ssl/host_spec.rb +4 -2
- data/spec/unit/ssl/oids_spec.rb +1 -0
- data/spec/unit/ssl/ssl_provider_spec.rb +71 -0
- data/spec/unit/ssl/state_machine_spec.rb +99 -13
- data/spec/unit/transaction/persistence_spec.rb +1 -10
- data/spec/unit/transaction/report_spec.rb +4 -0
- data/spec/unit/transaction_spec.rb +45 -1
- data/spec/unit/type/file/content_spec.rb +9 -3
- data/spec/unit/type/file/ensure_spec.rb +1 -2
- data/spec/unit/type/file/source_spec.rb +86 -35
- data/spec/unit/type/package_spec.rb +8 -0
- data/spec/unit/type/service_spec.rb +9 -8
- data/spec/unit/type/user_spec.rb +1 -2
- data/spec/unit/util/at_fork_spec.rb +3 -2
- data/spec/unit/util/autoload_spec.rb +2 -1
- data/spec/unit/util/log/destinations_spec.rb +1 -29
- data/spec/unit/util/log_spec.rb +0 -138
- data/spec/unit/util/logging_spec.rb +200 -0
- data/spec/unit/util/package/version/debian_spec.rb +83 -0
- data/spec/unit/util/package/version/pip_spec.rb +464 -0
- data/spec/unit/util/package/version/range_spec.rb +175 -0
- data/spec/unit/util/package/version/rpm_spec.rb +121 -0
- data/spec/unit/util/pidlock_spec.rb +112 -42
- data/spec/unit/util/plist_spec.rb +20 -0
- data/spec/unit/util/rpm_compare_spec.rb +196 -0
- data/spec/unit/util/storage_spec.rb +1 -8
- data/spec/unit/util/windows/adsi_spec.rb +55 -4
- data/spec/unit/util/windows/sid_spec.rb +2 -2
- data/spec/unit/x509/cert_provider_spec.rb +24 -4
- data/tasks/generate_cert_fixtures.rake +15 -1
- data/tasks/manpages.rake +6 -35
- metadata +92 -12
- data/COMMITTERS.md +0 -244
- data/spec/integration/faces/plugin_spec.rb +0 -61
- data/spec/lib/puppet_spec/validators.rb +0 -37
@@ -0,0 +1,627 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
require 'spec_helper'
|
3
|
+
require 'webmock/rspec'
|
4
|
+
require 'puppet/http'
|
5
|
+
|
6
|
+
describe Puppet::HTTP::Service::Compiler do
|
7
|
+
let(:ssl_context) { Puppet::SSL::SSLContext.new }
|
8
|
+
let(:client) { Puppet::HTTP::Client.new(ssl_context: ssl_context) }
|
9
|
+
let(:subject) { client.create_session.route_to(:puppet) }
|
10
|
+
let(:environment) { 'testing' }
|
11
|
+
let(:certname) { 'ziggy' }
|
12
|
+
let(:node) { Puppet::Node.new(certname) }
|
13
|
+
let(:facts) { Puppet::Node::Facts.new(certname) }
|
14
|
+
let(:catalog) { Puppet::Resource::Catalog.new(certname) }
|
15
|
+
let(:status) { Puppet::Status.new }
|
16
|
+
let(:formatter) { Puppet::Network::FormatHandler.format(:json) }
|
17
|
+
|
18
|
+
before :each do
|
19
|
+
Puppet[:server] = 'compiler.example.com'
|
20
|
+
Puppet[:masterport] = 8140
|
21
|
+
|
22
|
+
Puppet::Node::Facts.indirection.terminus_class = :memory
|
23
|
+
end
|
24
|
+
|
25
|
+
context 'when making requests' do
|
26
|
+
let(:uri) {"https://compiler.example.com:8140/puppet/v3/catalog/ziggy?environment=testing"}
|
27
|
+
|
28
|
+
it 'includes default HTTP headers' do
|
29
|
+
stub_request(:post, uri).with do |request|
|
30
|
+
expect(request.headers).to include({'X-Puppet-Version' => /./, 'User-Agent' => /./})
|
31
|
+
expect(request.headers).to_not include('X-Puppet-Profiling')
|
32
|
+
end.to_return(body: formatter.render(catalog), headers: {'Content-Type' => formatter.mime })
|
33
|
+
|
34
|
+
subject.post_catalog(certname, environment: environment, facts: facts)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
context 'when routing to the compiler service' do
|
39
|
+
it 'defaults the server and port based on settings' do
|
40
|
+
Puppet[:server] = 'compiler2.example.com'
|
41
|
+
Puppet[:masterport] = 8141
|
42
|
+
|
43
|
+
stub_request(:post, "https://compiler2.example.com:8141/puppet/v3/catalog/ziggy?environment=testing")
|
44
|
+
.to_return(body: formatter.render(catalog), headers: {'Content-Type' => formatter.mime })
|
45
|
+
|
46
|
+
subject.post_catalog(certname, environment: environment, facts: facts)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
context 'when posting for a catalog' do
|
51
|
+
let(:uri) { %r{/puppet/v3/catalog/ziggy} }
|
52
|
+
let(:catalog_response) { { body: formatter.render(catalog), headers: {'Content-Type' => formatter.mime } } }
|
53
|
+
|
54
|
+
it 'includes puppet headers set via the :http_extra_headers and :profile settings' do
|
55
|
+
stub_request(:post, uri).with(headers: {'Example-Header' => 'real-thing', 'another' => 'thing', 'X-Puppet-Profiling' => 'true'}).
|
56
|
+
to_return(body: formatter.render(catalog), headers: {'Content-Type' => formatter.mime })
|
57
|
+
|
58
|
+
Puppet[:http_extra_headers] = 'Example-Header:real-thing,another:thing'
|
59
|
+
Puppet[:profile] = true
|
60
|
+
|
61
|
+
subject.post_catalog(certname, environment: environment, facts: facts)
|
62
|
+
end
|
63
|
+
|
64
|
+
it 'submits facts as application/json by default' do
|
65
|
+
stub_request(:post, uri)
|
66
|
+
.with(body: hash_including("facts_format" => /application\/json/))
|
67
|
+
.to_return(**catalog_response)
|
68
|
+
|
69
|
+
subject.post_catalog(certname, environment: environment, facts: facts)
|
70
|
+
end
|
71
|
+
|
72
|
+
it 'submits facts as pson if set as the preferred format' do
|
73
|
+
Puppet[:preferred_serialization_format] = "pson"
|
74
|
+
|
75
|
+
stub_request(:post, uri)
|
76
|
+
.with(body: hash_including("facts_format" => /pson/))
|
77
|
+
.to_return(**catalog_response)
|
78
|
+
|
79
|
+
subject.post_catalog(certname, environment: environment, facts: facts)
|
80
|
+
end
|
81
|
+
|
82
|
+
it 'includes environment as a query parameter AND in the POST body' do
|
83
|
+
stub_request(:post, uri)
|
84
|
+
.with(query: {"environment" => "outerspace"},
|
85
|
+
body: hash_including("environment" => 'outerspace'))
|
86
|
+
.to_return(**catalog_response)
|
87
|
+
|
88
|
+
subject.post_catalog(certname, environment: 'outerspace', facts: facts)
|
89
|
+
end
|
90
|
+
|
91
|
+
it 'includes configured_environment' do
|
92
|
+
stub_request(:post, uri)
|
93
|
+
.with(body: hash_including("configured_environment" => 'agent_specified'))
|
94
|
+
.to_return(**catalog_response)
|
95
|
+
|
96
|
+
subject.post_catalog(certname, environment: 'production', facts: facts, configured_environment: 'agent_specified')
|
97
|
+
end
|
98
|
+
|
99
|
+
it 'includes transaction_uuid' do
|
100
|
+
uuid = "ec3d2844-b236-4287-b0ad-632fbb4d1ff0"
|
101
|
+
|
102
|
+
stub_request(:post, uri)
|
103
|
+
.with(body: hash_including("transaction_uuid" => uuid))
|
104
|
+
.to_return(**catalog_response)
|
105
|
+
|
106
|
+
subject.post_catalog(certname, environment: 'production', facts: facts, transaction_uuid: uuid)
|
107
|
+
end
|
108
|
+
|
109
|
+
it 'includes job_uuid' do
|
110
|
+
uuid = "3dd13eec-1b6b-4b5d-867b-148193e0593e"
|
111
|
+
|
112
|
+
stub_request(:post, uri)
|
113
|
+
.with(body: hash_including("job_uuid" => uuid))
|
114
|
+
.to_return(**catalog_response)
|
115
|
+
|
116
|
+
subject.post_catalog(certname, environment: 'production', facts: facts, job_uuid: uuid)
|
117
|
+
end
|
118
|
+
|
119
|
+
it 'includes static_catalog' do
|
120
|
+
stub_request(:post, uri)
|
121
|
+
.with(body: hash_including("static_catalog" => "false"))
|
122
|
+
.to_return(**catalog_response)
|
123
|
+
|
124
|
+
subject.post_catalog(certname, environment: 'production', facts: facts, static_catalog: false)
|
125
|
+
end
|
126
|
+
|
127
|
+
it 'includes dot-separated list of checksum_types' do
|
128
|
+
stub_request(:post, uri)
|
129
|
+
.with(body: hash_including("checksum_type" => "sha256.sha384"))
|
130
|
+
.to_return(**catalog_response)
|
131
|
+
|
132
|
+
subject.post_catalog(certname, environment: 'production', facts: facts, checksum_type: %w[sha256 sha384])
|
133
|
+
end
|
134
|
+
|
135
|
+
it 'returns a deserialized catalog' do
|
136
|
+
stub_request(:post, uri)
|
137
|
+
.to_return(**catalog_response)
|
138
|
+
|
139
|
+
_, cat = subject.post_catalog(certname, environment: 'production', facts: facts)
|
140
|
+
expect(cat).to be_a(Puppet::Resource::Catalog)
|
141
|
+
expect(cat.name).to eq(certname)
|
142
|
+
end
|
143
|
+
|
144
|
+
it 'returns the request response' do
|
145
|
+
stub_request(:post, uri)
|
146
|
+
.to_return(**catalog_response)
|
147
|
+
|
148
|
+
resp, _ = subject.post_catalog(certname, environment: 'production', facts: facts)
|
149
|
+
expect(resp).to be_a(Puppet::HTTP::Response)
|
150
|
+
end
|
151
|
+
|
152
|
+
it 'raises a response error if unsuccessful' do
|
153
|
+
stub_request(:post, uri)
|
154
|
+
.to_return(status: [500, "Server Error"])
|
155
|
+
|
156
|
+
expect {
|
157
|
+
subject.post_catalog(certname, environment: 'production', facts: facts)
|
158
|
+
}.to raise_error do |err|
|
159
|
+
expect(err).to be_an_instance_of(Puppet::HTTP::ResponseError)
|
160
|
+
expect(err.message).to eq('Server Error')
|
161
|
+
expect(err.response.code).to eq(500)
|
162
|
+
end
|
163
|
+
end
|
164
|
+
|
165
|
+
it 'raises a protocol error if the content-type header is missing' do
|
166
|
+
stub_request(:post, uri)
|
167
|
+
.to_return(body: "content-type is missing")
|
168
|
+
|
169
|
+
expect {
|
170
|
+
subject.post_catalog(certname, environment: 'production', facts: facts)
|
171
|
+
}.to raise_error(Puppet::HTTP::ProtocolError, /No content type in http response; cannot parse/)
|
172
|
+
end
|
173
|
+
|
174
|
+
it 'raises a serialization error if the content is invalid' do
|
175
|
+
stub_request(:post, uri)
|
176
|
+
.to_return(body: "this isn't valid JSON", headers: {'Content-Type' => 'application/json'})
|
177
|
+
|
178
|
+
expect {
|
179
|
+
subject.post_catalog(certname, environment: 'production', facts: facts)
|
180
|
+
}.to raise_error(Puppet::HTTP::SerializationError, /Failed to deserialize Puppet::Resource::Catalog from json/)
|
181
|
+
end
|
182
|
+
|
183
|
+
context 'serializing facts' do
|
184
|
+
facts_with_special_characters = [
|
185
|
+
{ :hash => { 'afact' => 'a+b' }, :encoded => 'a%2Bb' },
|
186
|
+
{ :hash => { 'afact' => 'a b' }, :encoded => 'a%20b' },
|
187
|
+
{ :hash => { 'afact' => 'a&b' }, :encoded => 'a%26b' },
|
188
|
+
{ :hash => { 'afact' => 'a*b' }, :encoded => 'a%2Ab' },
|
189
|
+
{ :hash => { 'afact' => 'a=b' }, :encoded => 'a%3Db' },
|
190
|
+
# different UTF-8 widths
|
191
|
+
# 1-byte A
|
192
|
+
# 2-byte ۿ - http://www.fileformat.info/info/unicode/char/06ff/index.htm - 0xDB 0xBF / 219 191
|
193
|
+
# 3-byte ᚠ - http://www.fileformat.info/info/unicode/char/16A0/index.htm - 0xE1 0x9A 0xA0 / 225 154 160
|
194
|
+
# 4-byte 𠜎 - http://www.fileformat.info/info/unicode/char/2070E/index.htm - 0xF0 0xA0 0x9C 0x8E / 240 160 156 142
|
195
|
+
{ :hash => { 'afact' => "A\u06FF\u16A0\u{2070E}" }, :encoded => 'A%DB%BF%E1%9A%A0%F0%A0%9C%8E' },
|
196
|
+
]
|
197
|
+
|
198
|
+
facts_with_special_characters.each do |test_fact|
|
199
|
+
it "escapes special characters #{test_fact[:hash]}" do
|
200
|
+
facts = Puppet::Node::Facts.new(certname, test_fact[:hash])
|
201
|
+
Puppet::Node::Facts.indirection.save(facts)
|
202
|
+
|
203
|
+
stub_request(:post, uri)
|
204
|
+
.with(body: hash_including("facts" => /#{test_fact[:encoded]}/))
|
205
|
+
.to_return(**catalog_response)
|
206
|
+
|
207
|
+
subject.post_catalog(certname, environment: environment, facts: facts)
|
208
|
+
end
|
209
|
+
end
|
210
|
+
end
|
211
|
+
end
|
212
|
+
|
213
|
+
context 'when getting a node' do
|
214
|
+
let(:uri) { %r{/puppet/v3/node/ziggy} }
|
215
|
+
let(:node_response) { { body: formatter.render(node), headers: {'Content-Type' => formatter.mime } } }
|
216
|
+
|
217
|
+
it 'includes custom headers set via the :http_extra_headers and :profile settings' do
|
218
|
+
stub_request(:get, uri).with(headers: {'Example-Header' => 'real-thing', 'another' => 'thing', 'X-Puppet-Profiling' => 'true'}).
|
219
|
+
to_return(**node_response)
|
220
|
+
|
221
|
+
Puppet[:http_extra_headers] = 'Example-Header:real-thing,another:thing'
|
222
|
+
Puppet[:profile] = true
|
223
|
+
|
224
|
+
subject.get_node(certname, environment: 'production')
|
225
|
+
end
|
226
|
+
|
227
|
+
it 'includes environment' do
|
228
|
+
stub_request(:get, uri)
|
229
|
+
.with(query: hash_including("environment" => "outerspace"))
|
230
|
+
.to_return(**node_response)
|
231
|
+
|
232
|
+
subject.get_node(certname, environment: 'outerspace')
|
233
|
+
end
|
234
|
+
|
235
|
+
it 'includes configured_environment' do
|
236
|
+
stub_request(:get, uri)
|
237
|
+
.with(query: hash_including("configured_environment" => 'agent_specified'))
|
238
|
+
.to_return(**node_response)
|
239
|
+
|
240
|
+
subject.get_node(certname, environment: 'production', configured_environment: 'agent_specified')
|
241
|
+
end
|
242
|
+
|
243
|
+
it 'includes transaction_uuid' do
|
244
|
+
uuid = "ec3d2844-b236-4287-b0ad-632fbb4d1ff0"
|
245
|
+
|
246
|
+
stub_request(:get, uri)
|
247
|
+
.with(query: hash_including("transaction_uuid" => uuid))
|
248
|
+
.to_return(**node_response)
|
249
|
+
|
250
|
+
subject.get_node(certname, environment: 'production', transaction_uuid: uuid)
|
251
|
+
end
|
252
|
+
|
253
|
+
it 'returns a deserialized node' do
|
254
|
+
stub_request(:get, uri)
|
255
|
+
.to_return(**node_response)
|
256
|
+
|
257
|
+
_, n = subject.get_node(certname, environment: 'production')
|
258
|
+
expect(n).to be_a(Puppet::Node)
|
259
|
+
expect(n.name).to eq(certname)
|
260
|
+
end
|
261
|
+
|
262
|
+
it 'returns the request response' do
|
263
|
+
stub_request(:get, uri)
|
264
|
+
.to_return(**node_response)
|
265
|
+
|
266
|
+
resp, _ = subject.get_node(certname, environment: 'production')
|
267
|
+
expect(resp).to be_a(Puppet::HTTP::Response)
|
268
|
+
end
|
269
|
+
|
270
|
+
it 'raises a response error if unsuccessful' do
|
271
|
+
stub_request(:get, uri)
|
272
|
+
.to_return(status: [500, "Server Error"])
|
273
|
+
|
274
|
+
expect {
|
275
|
+
subject.get_node(certname, environment: 'production')
|
276
|
+
}.to raise_error do |err|
|
277
|
+
expect(err).to be_an_instance_of(Puppet::HTTP::ResponseError)
|
278
|
+
expect(err.message).to eq('Server Error')
|
279
|
+
expect(err.response.code).to eq(500)
|
280
|
+
end
|
281
|
+
end
|
282
|
+
|
283
|
+
it 'raises a protocol error if the content-type header is missing' do
|
284
|
+
stub_request(:get, uri)
|
285
|
+
.to_return(body: "content-type is missing")
|
286
|
+
|
287
|
+
expect {
|
288
|
+
subject.get_node(certname, environment: 'production')
|
289
|
+
}.to raise_error(Puppet::HTTP::ProtocolError, /No content type in http response; cannot parse/)
|
290
|
+
end
|
291
|
+
|
292
|
+
it 'raises a serialization error if the content is invalid' do
|
293
|
+
stub_request(:get, uri)
|
294
|
+
.to_return(body: "this isn't valid JSON", headers: {'Content-Type' => 'application/json'})
|
295
|
+
|
296
|
+
expect {
|
297
|
+
subject.get_node(certname, environment: 'production')
|
298
|
+
}.to raise_error(Puppet::HTTP::SerializationError, /Failed to deserialize Puppet::Node from json/)
|
299
|
+
end
|
300
|
+
end
|
301
|
+
|
302
|
+
context 'when getting facts' do
|
303
|
+
let(:uri) { %r{/puppet/v3/facts/ziggy} }
|
304
|
+
let(:facts_response) { { body: formatter.render(facts), headers: {'Content-Type' => formatter.mime } } }
|
305
|
+
|
306
|
+
it 'includes environment' do
|
307
|
+
stub_request(:get, uri)
|
308
|
+
.with(query: hash_including("environment" => "outerspace"))
|
309
|
+
.to_return(**facts_response)
|
310
|
+
|
311
|
+
subject.get_facts(certname, environment: 'outerspace')
|
312
|
+
end
|
313
|
+
|
314
|
+
it 'returns a deserialized facts object' do
|
315
|
+
stub_request(:get, uri)
|
316
|
+
.to_return(**facts_response)
|
317
|
+
|
318
|
+
_, n = subject.get_facts(certname, environment: 'production')
|
319
|
+
expect(n).to be_a(Puppet::Node::Facts)
|
320
|
+
expect(n.name).to eq(certname)
|
321
|
+
end
|
322
|
+
|
323
|
+
it 'returns the request response' do
|
324
|
+
stub_request(:get, uri)
|
325
|
+
.to_return(**facts_response)
|
326
|
+
|
327
|
+
resp, _ = subject.get_facts(certname, environment: 'production')
|
328
|
+
expect(resp).to be_a(Puppet::HTTP::Response)
|
329
|
+
end
|
330
|
+
|
331
|
+
it 'raises a response error if unsuccessful' do
|
332
|
+
stub_request(:get, uri)
|
333
|
+
.to_return(status: [500, "Server Error"])
|
334
|
+
|
335
|
+
expect {
|
336
|
+
subject.get_facts(certname, environment: 'production')
|
337
|
+
}.to raise_error do |err|
|
338
|
+
expect(err).to be_an_instance_of(Puppet::HTTP::ResponseError)
|
339
|
+
expect(err.message).to eq('Server Error')
|
340
|
+
expect(err.response.code).to eq(500)
|
341
|
+
end
|
342
|
+
end
|
343
|
+
|
344
|
+
it 'raises a protocol error if the content-type header is missing' do
|
345
|
+
stub_request(:get, uri)
|
346
|
+
.to_return(body: "content-type is missing")
|
347
|
+
|
348
|
+
expect {
|
349
|
+
subject.get_facts(certname, environment: 'production')
|
350
|
+
}.to raise_error(Puppet::HTTP::ProtocolError, /No content type in http response; cannot parse/)
|
351
|
+
end
|
352
|
+
|
353
|
+
it 'raises a serialization error if the content is invalid' do
|
354
|
+
stub_request(:get, uri)
|
355
|
+
.to_return(body: "this isn't valid JSON", headers: {'Content-Type' => 'application/json'})
|
356
|
+
|
357
|
+
expect {
|
358
|
+
subject.get_facts(certname, environment: 'production')
|
359
|
+
}.to raise_error(Puppet::HTTP::SerializationError, /Failed to deserialize Puppet::Node::Facts from json/)
|
360
|
+
end
|
361
|
+
end
|
362
|
+
|
363
|
+
context 'when putting facts' do
|
364
|
+
let(:uri) { %r{/puppet/v3/facts/ziggy} }
|
365
|
+
|
366
|
+
it 'includes custom headers set the :http_extra_headers and :profile settings' do
|
367
|
+
stub_request(:put, uri).with(headers: {'Example-Header' => 'real-thing', 'another' => 'thing', 'X-Puppet-Profiling' => 'true'})
|
368
|
+
|
369
|
+
Puppet[:http_extra_headers] = 'Example-Header:real-thing,another:thing'
|
370
|
+
Puppet[:profile] = true
|
371
|
+
|
372
|
+
subject.put_facts(certname, environment: environment, facts: facts)
|
373
|
+
end
|
374
|
+
|
375
|
+
it 'serializes facts in the body' do
|
376
|
+
facts = Puppet::Node::Facts.new(certname, { 'domain' => 'zork'})
|
377
|
+
Puppet::Node::Facts.indirection.save(facts)
|
378
|
+
|
379
|
+
stub_request(:put, uri)
|
380
|
+
.with(body: hash_including("name" => "ziggy", "values" => {"domain" => "zork"}))
|
381
|
+
|
382
|
+
subject.put_facts(certname, environment: environment, facts: facts)
|
383
|
+
end
|
384
|
+
|
385
|
+
it 'includes environment' do
|
386
|
+
stub_request(:put, uri)
|
387
|
+
.with(query: {"environment" => "outerspace"})
|
388
|
+
|
389
|
+
subject.put_facts(certname, environment: 'outerspace', facts: facts)
|
390
|
+
end
|
391
|
+
|
392
|
+
it 'returns the request response' do
|
393
|
+
# the REST API returns the filename, good grief
|
394
|
+
stub_request(:put, uri)
|
395
|
+
.to_return(status: 200, body: "/opt/puppetlabs/server/data/puppetserver/yaml/facts/#{certname}.yaml")
|
396
|
+
|
397
|
+
expect(subject.put_facts(certname, environment: environment, facts: facts)).to be_a(Puppet::HTTP::Response)
|
398
|
+
end
|
399
|
+
|
400
|
+
it 'raises a response error if unsuccessful' do
|
401
|
+
stub_request(:put, uri)
|
402
|
+
.to_return(status: [500, "Server Error"])
|
403
|
+
|
404
|
+
expect {
|
405
|
+
subject.put_facts(certname, environment: environment, facts: facts)
|
406
|
+
}.to raise_error do |err|
|
407
|
+
expect(err).to be_an_instance_of(Puppet::HTTP::ResponseError)
|
408
|
+
expect(err.message).to eq('Server Error')
|
409
|
+
expect(err.response.code).to eq(500)
|
410
|
+
end
|
411
|
+
end
|
412
|
+
|
413
|
+
it 'raises a serialization error if the report cannot be serialized' do
|
414
|
+
invalid_facts = Puppet::Node::Facts.new(certname, {'invalid_utf8_sequence' => "\xE2\x82".force_encoding('binary')})
|
415
|
+
expect {
|
416
|
+
subject.put_facts(certname, environment: 'production', facts: invalid_facts)
|
417
|
+
}.to raise_error(Puppet::HTTP::SerializationError, /Failed to serialize Puppet::Node::Facts to json: "\\xE2" from ASCII-8BIT to UTF-8/)
|
418
|
+
end
|
419
|
+
end
|
420
|
+
|
421
|
+
context 'when getting status' do
|
422
|
+
let(:uri) { %r{/puppet/v3/status/ziggy} }
|
423
|
+
let(:status_response) { { body: formatter.render(status), headers: {'Content-Type' => formatter.mime } } }
|
424
|
+
|
425
|
+
it 'always sends production' do
|
426
|
+
stub_request(:get, uri)
|
427
|
+
.with(query: hash_including("environment" => "production"))
|
428
|
+
.to_return(**status_response)
|
429
|
+
|
430
|
+
subject.get_status(certname)
|
431
|
+
end
|
432
|
+
|
433
|
+
it 'returns a deserialized status' do
|
434
|
+
stub_request(:get, uri)
|
435
|
+
.to_return(**status_response)
|
436
|
+
|
437
|
+
_, s = subject.get_status(certname)
|
438
|
+
expect(s).to be_a(Puppet::Status)
|
439
|
+
expect(s.status).to eq("is_alive" => true)
|
440
|
+
end
|
441
|
+
|
442
|
+
it 'returns the request response' do
|
443
|
+
stub_request(:get, uri)
|
444
|
+
.to_return(**status_response)
|
445
|
+
|
446
|
+
resp, _ = subject.get_status(certname)
|
447
|
+
expect(resp).to be_a(Puppet::HTTP::Response)
|
448
|
+
end
|
449
|
+
|
450
|
+
it 'raises a response error if unsuccessful' do
|
451
|
+
stub_request(:get, uri)
|
452
|
+
.to_return(status: [500, "Server Error"])
|
453
|
+
|
454
|
+
expect {
|
455
|
+
subject.get_status(certname)
|
456
|
+
}.to raise_error do |err|
|
457
|
+
expect(err).to be_an_instance_of(Puppet::HTTP::ResponseError)
|
458
|
+
expect(err.message).to eq('Server Error')
|
459
|
+
expect(err.response.code).to eq(500)
|
460
|
+
end
|
461
|
+
end
|
462
|
+
|
463
|
+
it 'raises a protocol error if the content-type header is missing' do
|
464
|
+
stub_request(:get, uri)
|
465
|
+
.to_return(body: "content-type is missing")
|
466
|
+
|
467
|
+
expect {
|
468
|
+
subject.get_status(certname)
|
469
|
+
}.to raise_error(Puppet::HTTP::ProtocolError, /No content type in http response; cannot parse/)
|
470
|
+
end
|
471
|
+
|
472
|
+
it 'raises a serialization error if the content is invalid' do
|
473
|
+
stub_request(:get, uri)
|
474
|
+
.to_return(body: "this isn't valid JSON", headers: {'Content-Type' => 'application/json'})
|
475
|
+
|
476
|
+
expect {
|
477
|
+
subject.get_status(certname)
|
478
|
+
}.to raise_error(Puppet::HTTP::SerializationError, /Failed to deserialize Puppet::Status from json/)
|
479
|
+
end
|
480
|
+
end
|
481
|
+
|
482
|
+
context 'filebucket' do
|
483
|
+
let(:filebucket_file) { Puppet::FileBucket::File.new('file to store') }
|
484
|
+
let(:formatter) { Puppet::Network::FormatHandler.format(:binary) }
|
485
|
+
let(:path) { "md5/4aabe1257043bd03ce4c3319c155bc55" }
|
486
|
+
let(:uri) { %r{/puppet/v3/file_bucket_file/#{path}} }
|
487
|
+
|
488
|
+
context 'when getting a file' do
|
489
|
+
let(:status_response) { { body: formatter.render(filebucket_file), headers: {'Content-Type' => 'application/octet-stream' }}}
|
490
|
+
|
491
|
+
it 'includes default HTTP headers' do
|
492
|
+
stub_request(:get, uri).with do |request|
|
493
|
+
expect(request.headers).to include({
|
494
|
+
'X-Puppet-Version' => /./,
|
495
|
+
'User-Agent' => /./,
|
496
|
+
'Accept' => 'application/octet-stream'
|
497
|
+
})
|
498
|
+
expect(request.headers).to_not include('X-Puppet-Profiling')
|
499
|
+
end.to_return(**status_response)
|
500
|
+
|
501
|
+
subject.get_filebucket_file(path, environment: 'production')
|
502
|
+
end
|
503
|
+
|
504
|
+
it 'always the environment as a parameter' do
|
505
|
+
stub_request(:get, uri).with(query: hash_including('environment' => 'production')).to_return(**status_response)
|
506
|
+
|
507
|
+
subject.get_filebucket_file(path, environment: 'production')
|
508
|
+
end
|
509
|
+
|
510
|
+
{bucket_path: 'path', diff_with: '4aabe1257043bd0', list_all: 'true', fromdate: '20200404', todate: '20200404'}.each do |param, val|
|
511
|
+
it "includes #{param} as a parameter in the request if #{param} is set" do
|
512
|
+
stub_request(:get, uri).with(query: hash_including(param => val)).to_return(**status_response)
|
513
|
+
|
514
|
+
options = { param => val }
|
515
|
+
subject.get_filebucket_file(path, environment: 'production', **options)
|
516
|
+
end
|
517
|
+
end
|
518
|
+
|
519
|
+
it "doesn't include :diff_with as a query param if :bucket_path is nil" do
|
520
|
+
stub_request(:get, uri).with do |request|
|
521
|
+
expect(request.uri.query).not_to match(/diff_with/)
|
522
|
+
end.to_return(**status_response)
|
523
|
+
|
524
|
+
subject.get_filebucket_file(path, environment: 'production', diff_with: nil)
|
525
|
+
end
|
526
|
+
|
527
|
+
it 'returns a deserialized response' do
|
528
|
+
stub_request(:get, uri)
|
529
|
+
.to_return(**status_response)
|
530
|
+
|
531
|
+
_, s = subject.get_filebucket_file(path, environment: 'production')
|
532
|
+
expect(s).to be_a(Puppet::FileBucket::File)
|
533
|
+
expect(s.contents).to eq('file to store')
|
534
|
+
end
|
535
|
+
|
536
|
+
it 'returns the request response' do
|
537
|
+
stub_request(:get, uri)
|
538
|
+
.to_return(**status_response)
|
539
|
+
|
540
|
+
resp, _ = subject.get_filebucket_file(path, environment: 'production')
|
541
|
+
expect(resp).to be_a(Puppet::HTTP::Response)
|
542
|
+
end
|
543
|
+
end
|
544
|
+
|
545
|
+
context 'when putting a file' do
|
546
|
+
let(:status_response) { { status: 200, body: '' } }
|
547
|
+
|
548
|
+
it 'includes default HTTP headers' do
|
549
|
+
stub_request(:put, uri).with do |request|
|
550
|
+
expect(request.headers).to include({
|
551
|
+
'X-Puppet-Version' => /./,
|
552
|
+
'User-Agent' => /./,
|
553
|
+
'Accept' => 'application/octet-stream',
|
554
|
+
'Content-Type' => 'application/octet-stream'
|
555
|
+
})
|
556
|
+
expect(request.headers).to_not include('X-Puppet-Profiling')
|
557
|
+
end.to_return(**status_response)
|
558
|
+
|
559
|
+
subject.put_filebucket_file(path, body: filebucket_file.contents, environment: 'production')
|
560
|
+
end
|
561
|
+
|
562
|
+
it 'always the environment as a parameter' do
|
563
|
+
stub_request(:put, uri).with(query: hash_including('environment' => 'production')).to_return(**status_response)
|
564
|
+
|
565
|
+
subject.put_filebucket_file(path, body: filebucket_file.contents, environment: 'production')
|
566
|
+
end
|
567
|
+
|
568
|
+
it 'sends the file contents as the request body' do
|
569
|
+
stub_request(:put, uri).with(body: filebucket_file.contents).to_return(**status_response)
|
570
|
+
|
571
|
+
subject.put_filebucket_file(path, body: filebucket_file.contents, environment: 'production')
|
572
|
+
end
|
573
|
+
|
574
|
+
it 'returns the request response' do
|
575
|
+
stub_request(:put, uri)
|
576
|
+
.to_return(**status_response)
|
577
|
+
|
578
|
+
s = subject.put_filebucket_file(path, body: filebucket_file.contents, environment: 'production')
|
579
|
+
expect(s).to be_a(Puppet::HTTP::Response)
|
580
|
+
end
|
581
|
+
end
|
582
|
+
|
583
|
+
context 'when heading a file' do
|
584
|
+
let(:status_response) {{ status: 200 }}
|
585
|
+
|
586
|
+
it 'includes default HTTP headers' do
|
587
|
+
stub_request(:head, uri).with do |request|
|
588
|
+
expect(request.headers).to include({
|
589
|
+
'X-Puppet-Version' => /./,
|
590
|
+
'User-Agent' => /./,
|
591
|
+
'Accept' => 'application/octet-stream',
|
592
|
+
})
|
593
|
+
expect(request.headers).to_not include('X-Puppet-Profiling')
|
594
|
+
end.to_return(**status_response)
|
595
|
+
|
596
|
+
subject.head_filebucket_file(path, environment: 'production')
|
597
|
+
end
|
598
|
+
|
599
|
+
it 'always the environment as a parameter' do
|
600
|
+
stub_request(:head, uri).with(query: hash_including('environment' => 'production')).to_return(**status_response)
|
601
|
+
|
602
|
+
subject.head_filebucket_file(path, environment: 'production')
|
603
|
+
end
|
604
|
+
|
605
|
+
it "includes :bucket_path as a parameter in the request if :bucket_path is set" do
|
606
|
+
stub_request(:head, uri).with(query: hash_including(:bucket_path => 'some/path')).to_return(**status_response)
|
607
|
+
|
608
|
+
subject.head_filebucket_file(path, environment: 'production', bucket_path: 'some/path')
|
609
|
+
end
|
610
|
+
|
611
|
+
it "doesn't include :bucket_path as a query param if :bucket_path is nil" do
|
612
|
+
stub_request(:head, uri).with do |request|
|
613
|
+
expect(request.uri.query).not_to match(/bucket_path/)
|
614
|
+
end.to_return(**status_response)
|
615
|
+
|
616
|
+
subject.head_filebucket_file(path, environment: 'production', bucket_path: nil)
|
617
|
+
end
|
618
|
+
|
619
|
+
it "returns the request response" do
|
620
|
+
stub_request(:head, uri).with(query: hash_including(:bucket_path => 'some/path')).to_return(**status_response)
|
621
|
+
|
622
|
+
resp = subject.head_filebucket_file(path, environment: 'production', bucket_path: 'some/path')
|
623
|
+
expect(resp).to be_a(Puppet::HTTP::Response)
|
624
|
+
end
|
625
|
+
end
|
626
|
+
end
|
627
|
+
end
|