puppet 2.7.26 → 3.0.0.rc4
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- data/CHANGELOG +533 -204
- data/Gemfile +8 -24
- data/Gemfile.lock +44 -0
- data/LICENSE +1 -1
- data/README.md +2 -2
- data/README_DEVELOPER.md +18 -210
- data/Rakefile +30 -47
- data/bin/puppet +5 -3
- data/conf/auth.conf +3 -3
- data/{ext → conf}/osx/PackageInfo.plist +0 -0
- data/{ext → conf}/osx/createpackage.sh +0 -0
- data/conf/osx/preflight +24 -0
- data/conf/redhat/client.init +8 -8
- data/{ext/redhat/puppet.spec.erb → conf/redhat/puppet.spec} +29 -46
- data/conf/redhat/queue.init +105 -0
- data/conf/redhat/rundir-perms.patch +13 -13
- data/conf/redhat/server.init +4 -4
- data/conf/solaris/pkginfo +1 -1
- data/conf/suse/puppet.spec +8 -3
- data/conf/windows/eventlog/puppetres.dll +0 -0
- data/ext/emacs/puppet-mode.el +204 -150
- data/ext/nagios/naggen +1 -1
- data/ext/puppet-test +1 -1
- data/ext/puppetlisten/puppetlisten.rb +1 -2
- data/ext/puppetlisten/puppetrun.rb +1 -2
- data/ext/rack/files/config.ru +21 -3
- data/ext/regexp_nodes/environment/development +2 -0
- data/ext/regexp_nodes/parameters/{environment → service}/prod +0 -0
- data/ext/regexp_nodes/parameters/{environment → service}/qa +0 -0
- data/ext/regexp_nodes/parameters/service/sandbox +1 -0
- data/ext/regexp_nodes/regexp_nodes.rb +115 -59
- data/ext/upload_facts.rb +0 -1
- data/install.rb +10 -10
- data/lib/puppet.rb +49 -24
- data/lib/puppet/agent.rb +40 -16
- data/lib/puppet/agent/disabler.rb +53 -0
- data/lib/puppet/agent/locker.rb +18 -24
- data/lib/puppet/application.rb +93 -72
- data/lib/puppet/application/agent.rb +29 -47
- data/lib/puppet/application/apply.rb +40 -39
- data/lib/puppet/application/cert.rb +9 -11
- data/lib/puppet/application/certificate.rb +7 -2
- data/lib/puppet/application/certificate_request.rb +3 -0
- data/lib/puppet/application/certificate_revocation_list.rb +3 -0
- data/lib/puppet/application/describe.rb +1 -3
- data/lib/puppet/application/device.rb +15 -16
- data/lib/puppet/application/doc.rb +12 -11
- data/lib/puppet/application/face_base.rb +9 -13
- data/lib/puppet/application/filebucket.rb +2 -8
- data/lib/puppet/application/inspect.rb +3 -6
- data/lib/puppet/application/instrumentation_data.rb +3 -0
- data/lib/puppet/application/instrumentation_listener.rb +3 -0
- data/lib/puppet/application/instrumentation_probe.rb +3 -0
- data/lib/puppet/application/kick.rb +2 -8
- data/lib/puppet/application/master.rb +9 -15
- data/lib/puppet/application/module.rb +0 -7
- data/lib/puppet/application/queue.rb +7 -6
- data/lib/puppet/application/resource.rb +1 -5
- data/lib/puppet/application/resource_type.rb +3 -0
- data/lib/puppet/application/secret_agent.rb +3 -0
- data/lib/puppet/configurer.rb +87 -88
- data/lib/puppet/configurer/downloader.rb +8 -23
- data/lib/puppet/configurer/fact_handler.rb +5 -17
- data/lib/puppet/configurer/plugin_handler.rb +4 -23
- data/lib/puppet/daemon.rb +24 -6
- data/lib/puppet/data_binding.rb +11 -0
- data/lib/puppet/defaults.rb +1058 -518
- data/lib/puppet/error.rb +31 -25
- data/lib/puppet/external/dot.rb +1 -1
- data/lib/puppet/external/nagios/base.rb +8 -4
- data/lib/puppet/face/ca.rb +1 -1
- data/lib/puppet/face/catalog.rb +1 -2
- data/lib/puppet/face/certificate.rb +12 -0
- data/lib/puppet/face/config.rb +3 -0
- data/lib/puppet/face/help.rb +92 -28
- data/lib/puppet/face/help/action.erb +36 -3
- data/lib/puppet/face/help/face.erb +35 -3
- data/lib/puppet/face/help/global.erb +8 -12
- data/lib/puppet/face/help/man.erb +20 -2
- data/lib/puppet/face/instrumentation_data.rb +1 -0
- data/lib/puppet/face/instrumentation_listener.rb +1 -0
- data/lib/puppet/face/instrumentation_probe.rb +1 -0
- data/lib/puppet/face/module.rb +2 -0
- data/lib/puppet/face/module/build.rb +32 -6
- data/lib/puppet/face/module/changes.rb +1 -0
- data/lib/puppet/face/module/generate.rb +1 -0
- data/lib/puppet/face/module/install.rb +10 -41
- data/lib/puppet/face/module/list.rb +2 -19
- data/lib/puppet/face/module/search.rb +12 -6
- data/lib/puppet/face/module/uninstall.rb +3 -18
- data/lib/puppet/face/module/upgrade.rb +2 -9
- data/lib/puppet/face/node/clean.rb +25 -27
- data/lib/puppet/face/report.rb +2 -4
- data/lib/puppet/face/resource.rb +1 -1
- data/lib/puppet/feature/base.rb +9 -3
- data/lib/puppet/feature/rails.rb +18 -0
- data/lib/puppet/feature/rdoc1.rb +16 -0
- data/lib/puppet/file_bucket/dipper.rb +3 -2
- data/lib/puppet/file_serving/base.rb +4 -8
- data/lib/puppet/file_serving/configuration.rb +1 -12
- data/lib/puppet/file_serving/configuration/parser.rb +1 -1
- data/lib/puppet/file_serving/metadata.rb +0 -14
- data/lib/puppet/file_serving/mount/plugins.rb +10 -1
- data/lib/puppet/file_serving/terminus_selector.rb +15 -13
- data/lib/puppet/forge.rb +29 -13
- data/lib/puppet/forge/cache.rb +1 -1
- data/lib/puppet/forge/errors.rb +69 -0
- data/lib/puppet/forge/repository.rb +84 -21
- data/lib/puppet/indirector/catalog/active_record.rb +2 -12
- data/lib/puppet/indirector/catalog/compiler.rb +8 -18
- data/lib/puppet/indirector/catalog/json.rb +6 -0
- data/lib/puppet/indirector/catalog/static_compiler.rb +3 -2
- data/lib/puppet/indirector/certificate/rest.rb +1 -0
- data/lib/puppet/indirector/certificate_status/file.rb +0 -5
- data/lib/puppet/indirector/data_binding/hiera.rb +6 -0
- data/lib/puppet/indirector/data_binding/none.rb +5 -0
- data/lib/puppet/indirector/exec.rb +8 -18
- data/lib/puppet/indirector/face.rb +5 -4
- data/lib/puppet/indirector/facts/facter.rb +6 -33
- data/lib/puppet/indirector/facts/network_device.rb +0 -1
- data/lib/puppet/indirector/file_bucket_file/file.rb +0 -4
- data/lib/puppet/indirector/file_bucket_file/selector.rb +0 -4
- data/lib/puppet/indirector/file_content/rest.rb +2 -0
- data/lib/puppet/indirector/hiera.rb +69 -0
- data/lib/puppet/indirector/indirection.rb +20 -26
- data/lib/puppet/indirector/json.rb +76 -0
- data/lib/puppet/indirector/ldap.rb +3 -2
- data/lib/puppet/indirector/node/active_record.rb +1 -0
- data/lib/puppet/indirector/node/exec.rb +9 -0
- data/lib/puppet/indirector/node/ldap.rb +6 -3
- data/lib/puppet/indirector/node/plain.rb +1 -0
- data/lib/puppet/indirector/none.rb +9 -0
- data/lib/puppet/indirector/queue.rb +1 -2
- data/lib/puppet/indirector/report/processor.rb +2 -3
- data/lib/puppet/indirector/report/rest.rb +1 -7
- data/lib/puppet/indirector/request.rb +80 -18
- data/lib/puppet/indirector/resource/active_record.rb +0 -3
- data/lib/puppet/indirector/resource/ral.rb +0 -4
- data/lib/puppet/indirector/resource/rest.rb +0 -9
- data/lib/puppet/indirector/resource/store_configs.rb +0 -3
- data/lib/puppet/indirector/resource_type/parser.rb +30 -1
- data/lib/puppet/indirector/rest.rb +103 -126
- data/lib/puppet/indirector/run/local.rb +0 -4
- data/lib/puppet/indirector/run/rest.rb +0 -6
- data/lib/puppet/indirector/terminus.rb +0 -20
- data/lib/puppet/indirector/yaml.rb +11 -5
- data/lib/puppet/interface.rb +6 -14
- data/lib/puppet/interface/action.rb +21 -3
- data/lib/puppet/interface/action_builder.rb +5 -0
- data/lib/puppet/interface/action_manager.rb +1 -1
- data/lib/puppet/interface/documentation.rb +12 -0
- data/lib/puppet/interface/face_collection.rb +1 -1
- data/lib/puppet/interface/option.rb +19 -3
- data/lib/puppet/interface/option_manager.rb +27 -9
- data/lib/puppet/metatype/manager.rb +1 -0
- data/lib/puppet/module.rb +40 -83
- data/lib/puppet/module_tool.rb +42 -5
- data/lib/puppet/module_tool/applications/builder.rb +1 -1
- data/lib/puppet/module_tool/applications/installer.rb +11 -11
- data/lib/puppet/module_tool/applications/searcher.rb +15 -2
- data/lib/puppet/module_tool/applications/unpacker.rb +4 -8
- data/lib/puppet/module_tool/applications/upgrader.rb +6 -5
- data/lib/puppet/module_tool/errors/base.rb +1 -1
- data/lib/puppet/module_tool/errors/installer.rb +24 -4
- data/lib/puppet/module_tool/install_directory.rb +41 -0
- data/lib/puppet/module_tool/metadata.rb +4 -4
- data/lib/puppet/module_tool/shared_behaviors.rb +6 -6
- data/lib/puppet/network/auth_config_parser.rb +81 -0
- data/lib/puppet/network/authconfig.rb +49 -147
- data/lib/puppet/network/authorization.rb +20 -62
- data/lib/puppet/network/authstore.rb +43 -27
- data/lib/puppet/network/formats.rb +10 -20
- data/lib/puppet/network/http/api/v1.rb +1 -1
- data/lib/puppet/network/http/connection.rb +184 -0
- data/lib/puppet/network/http/handler.rb +4 -14
- data/lib/puppet/network/http/mongrel.rb +5 -25
- data/lib/puppet/network/http/rack.rb +2 -34
- data/lib/puppet/network/http/rack/httphandler.rb +0 -3
- data/lib/puppet/network/http/rack/rest.rb +2 -7
- data/lib/puppet/network/http/webrick.rb +9 -32
- data/lib/puppet/network/http_pool.rb +10 -48
- data/lib/puppet/network/resolver.rb +85 -0
- data/lib/puppet/network/rights.rb +33 -89
- data/lib/puppet/network/server.rb +14 -43
- data/lib/puppet/node.rb +13 -11
- data/lib/puppet/node/environment.rb +29 -12
- data/lib/puppet/node/facts.rb +13 -38
- data/lib/puppet/parameter.rb +0 -21
- data/lib/puppet/parameter/package_options.rb +26 -0
- data/lib/puppet/parser/ast.rb +2 -13
- data/lib/puppet/parser/ast/function.rb +0 -2
- data/lib/puppet/parser/ast/leaf.rb +12 -22
- data/lib/puppet/parser/ast/resource.rb +3 -10
- data/lib/puppet/parser/ast/resource_defaults.rb +1 -1
- data/lib/puppet/parser/ast/resource_override.rb +1 -4
- data/lib/puppet/parser/ast/resourceparam.rb +4 -7
- data/lib/puppet/parser/ast/selector.rb +7 -1
- data/lib/puppet/parser/ast/vardef.rb +0 -2
- data/lib/puppet/parser/collector.rb +2 -1
- data/lib/puppet/parser/compiler.rb +43 -46
- data/lib/puppet/parser/files.rb +15 -20
- data/lib/puppet/parser/functions.rb +8 -39
- data/lib/puppet/parser/functions/extlookup.rb +8 -8
- data/lib/puppet/parser/functions/file.rb +18 -18
- data/lib/puppet/parser/functions/fqdn_rand.rb +2 -2
- data/lib/puppet/parser/functions/generate.rb +3 -3
- data/lib/puppet/parser/functions/include.rb +6 -1
- data/lib/puppet/parser/functions/require.rb +16 -21
- data/lib/puppet/parser/functions/shellquote.rb +29 -21
- data/lib/puppet/parser/functions/versioncmp.rb +2 -5
- data/lib/puppet/parser/grammar.ra +44 -14
- data/lib/puppet/parser/lexer.rb +101 -169
- data/lib/puppet/parser/parser.rb +1103 -1014
- data/lib/puppet/parser/parser_support.rb +10 -61
- data/lib/puppet/parser/relationship.rb +1 -3
- data/lib/puppet/parser/resource.rb +21 -56
- data/lib/puppet/parser/scope.rb +138 -165
- data/lib/puppet/parser/templatewrapper.rb +25 -20
- data/lib/puppet/parser/type_loader.rb +33 -67
- data/lib/puppet/parser/yaml_trimmer.rb +1 -1
- data/lib/puppet/property.rb +5 -4
- data/lib/puppet/provider.rb +133 -28
- data/lib/puppet/provider/augeas/augeas.rb +66 -6
- data/lib/puppet/provider/command.rb +25 -0
- data/lib/puppet/provider/cron/crontab.rb +1 -1
- data/lib/puppet/provider/exec.rb +14 -9
- data/lib/puppet/provider/exec/posix.rb +1 -1
- data/lib/puppet/provider/exec/windows.rb +2 -3
- data/lib/puppet/provider/file/windows.rb +29 -10
- data/lib/puppet/provider/group/groupadd.rb +3 -2
- data/lib/puppet/provider/group/ldap.rb +1 -1
- data/lib/puppet/provider/group/windows_adsi.rb +1 -1
- data/lib/puppet/provider/host/parsed.rb +1 -1
- data/lib/puppet/provider/ldap.rb +1 -5
- data/lib/puppet/provider/mount/parsed.rb +3 -3
- data/lib/puppet/provider/nameservice.rb +22 -22
- data/lib/puppet/provider/nameservice/directoryservice.rb +58 -121
- data/lib/puppet/provider/package/apt.rb +8 -11
- data/lib/puppet/provider/package/blastwave.rb +3 -3
- data/lib/puppet/provider/package/dpkg.rb +1 -1
- data/lib/puppet/provider/package/freebsd.rb +2 -2
- data/lib/puppet/provider/package/gem.rb +1 -1
- data/lib/puppet/provider/package/macports.rb +11 -9
- data/lib/puppet/provider/package/msi.rb +37 -32
- data/lib/puppet/provider/package/openbsd.rb +1 -1
- data/lib/puppet/provider/package/pacman.rb +69 -6
- data/lib/puppet/provider/package/pkg.rb +126 -75
- data/lib/puppet/provider/package/pkgin.rb +60 -0
- data/lib/puppet/provider/package/pkgutil.rb +32 -20
- data/lib/puppet/provider/package/portage.rb +2 -2
- data/lib/puppet/provider/package/sun.rb +83 -116
- data/lib/puppet/provider/package/sunfreeware.rb +1 -1
- data/lib/puppet/provider/package/up2date.rb +2 -3
- data/lib/puppet/provider/package/windows.rb +130 -0
- data/lib/puppet/provider/package/windows/exe_package.rb +70 -0
- data/lib/puppet/provider/package/windows/msi_package.rb +62 -0
- data/lib/puppet/provider/package/windows/package.rb +79 -0
- data/lib/puppet/provider/scheduled_task/win32_taskscheduler.rb +2 -2
- data/lib/puppet/provider/service/base.rb +1 -0
- data/lib/puppet/provider/service/bsd.rb +7 -5
- data/lib/puppet/provider/service/daemontools.rb +1 -1
- data/lib/puppet/provider/service/debian.rb +1 -1
- data/lib/puppet/provider/service/freebsd.rb +9 -9
- data/lib/puppet/provider/service/launchd.rb +7 -11
- data/lib/puppet/provider/service/redhat.rb +2 -2
- data/lib/puppet/provider/service/runit.rb +9 -2
- data/lib/puppet/provider/service/smf.rb +14 -2
- data/lib/puppet/provider/service/systemd.rb +3 -3
- data/lib/puppet/provider/service/upstart.rb +6 -6
- data/lib/puppet/provider/ssh_authorized_key/parsed.rb +1 -0
- data/lib/puppet/provider/user/user_role_add.rb +1 -1
- data/lib/puppet/provider/user/useradd.rb +3 -8
- data/lib/puppet/provider/user/windows_adsi.rb +1 -12
- data/lib/puppet/provider/zfs/{solaris.rb → zfs.rb} +16 -5
- data/lib/puppet/provider/zone/solaris.rb +10 -13
- data/lib/puppet/provider/zpool/{solaris.rb → zpool.rb} +11 -4
- data/lib/puppet/rails.rb +6 -4
- data/lib/puppet/rails/database/schema.rb +9 -4
- data/lib/puppet/rails/inventory_node.rb +13 -26
- data/lib/puppet/reference/configuration.rb +1 -2
- data/lib/puppet/reference/metaparameter.rb +1 -2
- data/lib/puppet/reports/http.rb +9 -10
- data/lib/puppet/reports/rrdgraph.rb +2 -2
- data/lib/puppet/reports/store.rb +1 -2
- data/lib/puppet/reports/tagmail.rb +6 -6
- data/lib/puppet/resource.rb +69 -64
- data/lib/puppet/resource/catalog.rb +11 -60
- data/lib/puppet/resource/status.rb +6 -32
- data/lib/puppet/resource/type.rb +94 -34
- data/lib/puppet/resource/type_collection.rb +17 -8
- data/lib/puppet/run.rb +4 -26
- data/lib/puppet/settings.rb +1315 -0
- data/lib/puppet/settings/base_setting.rb +163 -0
- data/lib/puppet/{util/settings → settings}/boolean_setting.rb +7 -3
- data/lib/puppet/settings/directory_setting.rb +7 -0
- data/lib/puppet/settings/errors.rb +11 -0
- data/lib/puppet/{util/settings → settings}/file_setting.rb +4 -20
- data/lib/puppet/settings/path_setting.rb +10 -0
- data/lib/puppet/settings/string_setting.rb +12 -0
- data/lib/puppet/simple_graph.rb +2 -5
- data/lib/puppet/ssl/base.rb +2 -2
- data/lib/puppet/ssl/certificate_authority.rb +4 -5
- data/lib/puppet/ssl/certificate_authority/interface.rb +5 -7
- data/lib/puppet/ssl/certificate_factory.rb +1 -2
- data/lib/puppet/ssl/certificate_request.rb +2 -2
- data/lib/puppet/ssl/certificate_revocation_list.rb +53 -30
- data/lib/puppet/ssl/configuration.rb +32 -0
- data/lib/puppet/ssl/host.rb +9 -37
- data/lib/puppet/status.rb +2 -6
- data/lib/puppet/test/test_helper.rb +58 -25
- data/lib/puppet/transaction.rb +6 -9
- data/lib/puppet/transaction/event.rb +13 -24
- data/lib/puppet/transaction/event_manager.rb +1 -1
- data/lib/puppet/transaction/report.rb +2 -41
- data/lib/puppet/transaction/resource_harness.rb +2 -3
- data/lib/puppet/type.rb +18 -191
- data/lib/puppet/type/augeas.rb +1 -1
- data/lib/puppet/type/cron.rb +1 -1
- data/lib/puppet/type/exec.rb +6 -4
- data/lib/puppet/type/file.rb +33 -44
- data/lib/puppet/type/file/content.rb +13 -9
- data/lib/puppet/type/file/ensure.rb +1 -1
- data/lib/puppet/type/file/mode.rb +1 -1
- data/lib/puppet/type/file/selcontext.rb +2 -6
- data/lib/puppet/type/file/source.rb +8 -4
- data/lib/puppet/type/filebucket.rb +3 -2
- data/lib/puppet/type/mount.rb +1 -11
- data/lib/puppet/type/package.rb +40 -23
- data/lib/puppet/type/schedule.rb +127 -21
- data/lib/puppet/type/scheduled_task.rb +1 -1
- data/lib/puppet/type/service.rb +2 -3
- data/lib/puppet/type/tidy.rb +8 -17
- data/lib/puppet/type/yumrepo.rb +35 -7
- data/lib/puppet/type/zfs.rb +4 -0
- data/lib/puppet/type/zone.rb +48 -38
- data/lib/puppet/util.rb +178 -249
- data/lib/puppet/util/adsi.rb +23 -25
- data/lib/puppet/util/autoload.rb +184 -114
- data/lib/puppet/util/backups.rb +3 -2
- data/lib/puppet/util/colors.rb +0 -1
- data/lib/puppet/util/command_line.rb +42 -104
- data/lib/puppet/util/command_line/puppet_option_parser.rb +89 -0
- data/lib/puppet/util/command_line/trollop.rb +824 -0
- data/lib/puppet/util/config_timeout.rb +24 -0
- data/lib/puppet/util/constant_inflector.rb +15 -7
- data/lib/puppet/util/diff.rb +2 -2
- data/lib/puppet/util/docs.rb +1 -2
- data/lib/puppet/util/errors.rb +3 -4
- data/lib/puppet/util/execution.rb +239 -14
- data/lib/puppet/util/execution_stub.rb +2 -2
- data/lib/puppet/util/feature.rb +2 -4
- data/lib/puppet/util/fileparsing.rb +1 -1
- data/lib/puppet/util/filetype.rb +12 -10
- data/lib/puppet/util/json_lockfile.rb +41 -0
- data/lib/puppet/util/ldap/connection.rb +4 -7
- data/lib/puppet/util/lockfile.rb +62 -0
- data/lib/puppet/util/log.rb +16 -20
- data/lib/puppet/util/log/destinations.rb +12 -27
- data/lib/puppet/util/logging.rb +95 -3
- data/lib/puppet/util/metric.rb +0 -6
- data/lib/puppet/util/monkey_patches.rb +101 -82
- data/lib/puppet/util/monkey_patches/lines.rb +13 -0
- data/lib/puppet/util/network_device/cisco/device.rb +2 -2
- data/lib/puppet/util/network_device/config.rb +1 -0
- data/lib/puppet/util/network_device/transport.rb +2 -0
- data/lib/puppet/util/pidlock.rb +13 -77
- data/lib/puppet/util/platform.rb +0 -7
- data/lib/puppet/util/posix.rb +10 -0
- data/lib/puppet/util/rdoc.rb +12 -8
- data/lib/puppet/util/reference.rb +3 -3
- data/lib/puppet/util/rubygems.rb +55 -0
- data/lib/puppet/util/run_mode.rb +7 -16
- data/lib/puppet/util/selinux.rb +36 -31
- data/lib/puppet/util/storage.rb +14 -19
- data/lib/puppet/util/suidmanager.rb +27 -2
- data/lib/puppet/util/windows.rb +9 -6
- data/lib/puppet/util/windows/error.rb +1 -1
- data/lib/puppet/util/windows/process.rb +3 -3
- data/lib/puppet/util/windows/registry.rb +36 -0
- data/lib/puppet/util/windows/security.rb +46 -9
- data/lib/puppet/util/windows/user.rb +2 -65
- data/lib/puppet/util/zaml.rb +47 -91
- data/lib/puppet/version.rb +1 -1
- data/man/man5/puppet.conf.5 +97 -69
- data/man/man8/puppet-agent.8 +5 -6
- data/man/man8/puppet-apply.8 +7 -3
- data/man/man8/puppet-ca.8 +5 -17
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-cert.8 +1 -1
- data/man/man8/puppet-certificate.8 +3 -9
- data/man/man8/puppet-certificate_request.8 +1 -1
- data/man/man8/puppet-certificate_revocation_list.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 +7 -1
- data/man/man8/puppet-facts.8 +1 -1
- data/man/man8/puppet-file.8 +1 -1
- data/man/man8/puppet-filebucket.8 +1 -1
- data/man/man8/puppet-help.8 +2 -5
- data/man/man8/puppet-inspect.8 +1 -1
- data/man/man8/puppet-instrumentation_data.8 +1 -1
- data/man/man8/puppet-instrumentation_listener.8 +1 -1
- data/man/man8/puppet-instrumentation_probe.8 +1 -1
- data/man/man8/puppet-key.8 +1 -1
- data/man/man8/puppet-kick.8 +1 -1
- data/man/man8/puppet-man.8 +1 -1
- data/man/man8/puppet-master.8 +1 -1
- data/man/man8/puppet-module.8 +19 -50
- data/man/man8/puppet-node.8 +2 -5
- data/man/man8/puppet-parser.8 +7 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-queue.8 +1 -1
- data/man/man8/puppet-report.8 +2 -3
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-resource_type.8 +1 -1
- data/man/man8/puppet-secret_agent.8 +1 -1
- data/man/man8/puppet-status.8 +1 -1
- data/man/man8/puppet.8 +1 -1
- data/spec/fixtures/unit/indirector/hiera/global.yaml +10 -0
- data/{test/data/providers/cron/crontab_sample_records.yaml → spec/fixtures/unit/provider/cron/crontab/single_line.yaml} +0 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris10 +1 -1
- data/spec/fixtures/unit/provider/package/pkg/{dummy_solaris11 → dummy_solaris11.ifo.installed} +0 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.ifo.known +1 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.installed +1 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.known +1 -0
- data/spec/fixtures/unit/provider/package/pkg/publisher +2 -2
- data/spec/fixtures/unit/provider/package/pkg/simple +2 -4
- data/spec/fixtures/unit/provider/package/pkg/solaris11 +2 -12
- data/spec/fixtures/unit/provider/package/sun/dummy.server +12 -0
- data/spec/fixtures/unit/provider/package/sun/simple +24 -0
- data/spec/fixtures/unit/provider/service/smf/svcs.out +3 -0
- data/{test/data/types/sshkey/1 → spec/fixtures/unit/provider/sshkey/parsed/sample} +0 -0
- data/spec/fixtures/unit/provider/zfs/zfs/zfs-list.out +2 -0
- data/spec/fixtures/unit/provider/zpool/zpool/zpool-list.out +2 -0
- data/spec/integration/application/apply_spec.rb +1 -1
- data/spec/integration/application/doc_spec.rb +3 -2
- data/spec/integration/configurer_spec.rb +1 -1
- data/spec/integration/defaults_spec.rb +21 -51
- data/spec/{unit/face → integration/faces}/ca_spec.rb +89 -130
- data/spec/integration/faces/documentation_spec.rb +36 -29
- data/spec/integration/file_serving/content_spec.rb +1 -2
- data/spec/integration/file_serving/fileset_spec.rb +1 -1
- data/spec/integration/file_serving/metadata_spec.rb +1 -2
- data/spec/integration/file_serving/terminus_helper_spec.rb +1 -1
- data/spec/integration/indirector/catalog/compiler_spec.rb +1 -2
- data/spec/integration/indirector/catalog/queue_spec.rb +3 -3
- data/spec/integration/indirector/direct_file_server_spec.rb +14 -10
- data/spec/integration/indirector/facts/facter_spec.rb +22 -0
- data/spec/integration/indirector/file_content/file_server_spec.rb +1 -1
- data/spec/integration/indirector/file_metadata/file_server_spec.rb +1 -1
- data/spec/integration/indirector/node/ldap_spec.rb +1 -1
- data/spec/integration/network/authconfig_spec.rb +238 -0
- data/spec/integration/network/formats_spec.rb +2 -4
- data/spec/integration/network/server/mongrel_spec.rb +2 -10
- data/spec/integration/network/server/webrick_spec.rb +1 -1
- data/spec/integration/node/environment_spec.rb +1 -1
- data/spec/integration/node/facts_spec.rb +2 -2
- data/spec/integration/node_spec.rb +2 -15
- data/spec/integration/parser/collector_spec.rb +2 -2
- data/spec/integration/parser/compiler_spec.rb +38 -10
- data/spec/integration/parser/functions/require_spec.rb +1 -1
- data/spec/integration/parser/functions_spec.rb +1 -1
- data/spec/integration/parser/parser_spec.rb +1 -1
- data/spec/integration/parser/ruby_manifest_spec.rb +1 -1
- data/spec/integration/parser/scope_spec.rb +608 -0
- data/spec/integration/provider/mailalias/aliases_spec.rb +1 -1
- data/spec/integration/provider/mount_spec.rb +1 -0
- data/spec/integration/provider/package_spec.rb +3 -3
- data/spec/integration/provider/service/init_spec.rb +2 -2
- data/spec/integration/provider/ssh_authorized_key_spec.rb +1 -1
- data/spec/integration/reference/providers_spec.rb +1 -1
- data/spec/integration/reports_spec.rb +1 -1
- data/spec/integration/resource/catalog_spec.rb +1 -2
- data/spec/integration/resource/type_collection_spec.rb +1 -1
- data/spec/integration/ssl/certificate_authority_spec.rb +1 -1
- data/spec/integration/ssl/certificate_request_spec.rb +1 -1
- data/spec/integration/ssl/certificate_revocation_list_spec.rb +1 -1
- data/spec/integration/ssl/host_spec.rb +1 -1
- data/spec/integration/transaction/report_spec.rb +1 -1
- data/spec/integration/transaction_spec.rb +2 -2
- data/spec/integration/type/exec_spec.rb +1 -1
- data/spec/integration/type/file_spec.rb +140 -158
- data/spec/integration/type/package_spec.rb +6 -2
- data/spec/integration/type/tidy_spec.rb +1 -1
- data/spec/integration/type_spec.rb +1 -1
- data/spec/integration/util/autoload_spec.rb +8 -14
- data/spec/integration/util/feature_spec.rb +1 -1
- data/spec/integration/util/rdoc/parser_spec.rb +11 -9
- data/spec/integration/util/settings_spec.rb +19 -6
- data/spec/integration/util/windows/security_spec.rb +23 -3
- data/spec/integration/util_spec.rb +3 -3
- data/spec/lib/puppet/indirector/indirector_testing/json.rb +6 -0
- data/spec/lib/puppet/indirector_testing.rb +27 -0
- data/spec/lib/puppet_spec/compiler.rb +2 -2
- data/spec/lib/puppet_spec/database.rb +1 -1
- data/spec/lib/puppet_spec/files.rb +4 -4
- data/spec/lib/puppet_spec/matchers.rb +26 -24
- data/spec/lib/puppet_spec/modules.rb +1 -1
- data/spec/lib/puppet_spec/settings.rb +16 -0
- data/spec/shared_behaviours/file_server_terminus.rb +2 -2
- data/spec/shared_behaviours/file_serving.rb +10 -15
- data/spec/shared_behaviours/file_serving_model.rb +2 -6
- data/spec/shared_contexts/platform.rb +0 -8
- data/spec/spec_helper.rb +14 -15
- data/spec/unit/agent/disabler_spec.rb +64 -0
- data/spec/unit/agent/locker_spec.rb +31 -36
- data/spec/unit/agent_spec.rb +79 -26
- data/spec/unit/application/agent_spec.rb +66 -39
- data/spec/unit/application/apply_spec.rb +46 -36
- data/spec/unit/application/cert_spec.rb +1 -5
- data/spec/unit/application/certificate_spec.rb +1 -1
- data/spec/unit/application/config_spec.rb +1 -1
- data/spec/unit/application/describe_spec.rb +1 -5
- data/spec/unit/application/device_spec.rb +22 -12
- data/spec/unit/application/doc_spec.rb +37 -69
- data/spec/unit/application/face_base_spec.rb +10 -6
- data/spec/unit/application/facts_spec.rb +3 -3
- data/spec/unit/application/filebucket_spec.rb +7 -18
- data/spec/unit/application/indirection_base_spec.rb +11 -5
- data/spec/unit/application/inspect_spec.rb +3 -2
- data/spec/unit/application/kick_spec.rb +6 -22
- data/spec/unit/application/master_spec.rb +15 -39
- data/spec/unit/application/queue_spec.rb +2 -6
- data/spec/unit/application/resource_spec.rb +15 -12
- data/spec/unit/application/secret_agent_spec.rb +1 -1
- data/spec/unit/application_spec.rb +110 -123
- data/spec/unit/configurer/downloader_spec.rb +5 -5
- data/spec/unit/configurer/fact_handler_spec.rb +1 -40
- data/spec/unit/configurer/plugin_handler_spec.rb +11 -96
- data/spec/unit/configurer_spec.rb +61 -59
- data/spec/unit/daemon_spec.rb +26 -19
- data/spec/unit/data_binding_spec.rb +11 -0
- data/spec/unit/dsl/resource_api_spec.rb +2 -2
- data/spec/unit/dsl/resource_type_api_spec.rb +1 -1
- data/spec/unit/face/catalog_spec.rb +1 -1
- data/spec/unit/face/certificate_request_spec.rb +1 -1
- data/spec/unit/face/certificate_revocation_list_spec.rb +1 -1
- data/spec/unit/face/certificate_spec.rb +18 -1
- data/spec/unit/face/config_spec.rb +8 -1
- data/spec/unit/face/facts_spec.rb +1 -1
- data/spec/unit/face/file_spec.rb +1 -1
- data/spec/unit/face/help_spec.rb +39 -22
- data/spec/unit/face/instrumentation_data_spec.rb +1 -1
- data/spec/unit/face/instrumentation_listener_spec.rb +1 -1
- data/spec/unit/face/instrumentation_probe_spec.rb +1 -1
- data/spec/unit/face/key_spec.rb +1 -1
- data/spec/unit/face/module/build_spec.rb +68 -0
- data/spec/unit/face/module/install_spec.rb +46 -31
- data/spec/unit/face/module/list_spec.rb +18 -21
- data/spec/unit/face/module/search_spec.rb +87 -49
- data/spec/unit/face/module/uninstall_spec.rb +4 -4
- data/spec/unit/face/node_spec.rb +3 -3
- data/spec/unit/face/plugin_spec.rb +1 -1
- data/spec/unit/face/report_spec.rb +1 -1
- data/spec/unit/face/resource_spec.rb +1 -1
- data/spec/unit/face/resource_type_spec.rb +1 -1
- data/spec/unit/face/secret_agent_spec.rb +1 -1
- data/spec/unit/file_bucket/dipper_spec.rb +1 -1
- data/spec/unit/file_bucket/file_spec.rb +1 -1
- data/spec/unit/file_serving/base_spec.rb +1 -1
- data/spec/unit/file_serving/configuration/parser_spec.rb +1 -1
- data/spec/unit/file_serving/configuration_spec.rb +7 -21
- data/spec/unit/file_serving/content_spec.rb +1 -1
- data/spec/unit/file_serving/fileset_spec.rb +13 -13
- data/spec/unit/file_serving/metadata_spec.rb +29 -47
- data/spec/unit/file_serving/mount/file_spec.rb +1 -1
- data/spec/unit/file_serving/mount/modules_spec.rb +1 -1
- data/spec/unit/file_serving/mount/plugins_spec.rb +17 -4
- data/spec/unit/file_serving/mount_spec.rb +1 -1
- data/spec/unit/file_serving/terminus_helper_spec.rb +1 -1
- data/spec/unit/file_serving/terminus_selector_spec.rb +5 -5
- data/spec/unit/forge/errors_spec.rb +42 -0
- data/spec/unit/forge/repository_spec.rb +108 -31
- data/spec/unit/forge_spec.rb +17 -23
- data/spec/unit/indirector/active_record_spec.rb +1 -1
- data/spec/unit/indirector/catalog/active_record_spec.rb +11 -49
- data/spec/unit/indirector/catalog/compiler_spec.rb +18 -45
- data/spec/unit/indirector/catalog/json_spec.rb +12 -0
- data/spec/unit/indirector/catalog/queue_spec.rb +1 -1
- data/spec/unit/indirector/catalog/rest_spec.rb +1 -1
- data/spec/unit/indirector/catalog/store_configs_spec.rb +1 -1
- data/spec/unit/indirector/catalog/yaml_spec.rb +1 -1
- data/spec/unit/indirector/certificate/ca_spec.rb +5 -6
- data/spec/unit/indirector/certificate/file_spec.rb +5 -6
- data/spec/unit/indirector/certificate/rest_spec.rb +6 -2
- data/spec/unit/indirector/certificate_request/ca_spec.rb +3 -3
- data/spec/unit/indirector/certificate_request/file_spec.rb +3 -3
- data/spec/unit/indirector/certificate_request/rest_spec.rb +1 -1
- data/spec/unit/indirector/certificate_revocation_list/ca_spec.rb +3 -4
- data/spec/unit/indirector/certificate_revocation_list/file_spec.rb +4 -3
- data/spec/unit/indirector/certificate_revocation_list/rest_spec.rb +1 -1
- data/spec/unit/indirector/certificate_status/file_spec.rb +41 -31
- data/spec/unit/indirector/certificate_status/rest_spec.rb +1 -1
- data/spec/unit/indirector/code_spec.rb +1 -1
- data/spec/unit/indirector/data_binding/hiera_spec.rb +21 -0
- data/spec/unit/indirector/data_binding/none_spec.rb +28 -0
- data/spec/unit/indirector/direct_file_server_spec.rb +2 -2
- data/spec/unit/indirector/envelope_spec.rb +1 -1
- data/spec/unit/indirector/exec_spec.rb +1 -1
- data/spec/unit/indirector/face_spec.rb +1 -1
- data/spec/unit/indirector/facts/active_record_spec.rb +1 -1
- data/spec/unit/indirector/facts/couch_spec.rb +3 -3
- data/spec/unit/indirector/facts/facter_spec.rb +13 -20
- data/spec/unit/indirector/facts/inventory_active_record_spec.rb +2 -2
- data/spec/unit/indirector/facts/inventory_service_spec.rb +2 -3
- data/spec/unit/indirector/facts/network_device_spec.rb +2 -9
- data/spec/unit/indirector/facts/rest_spec.rb +1 -1
- data/spec/unit/indirector/facts/store_configs_spec.rb +1 -1
- data/spec/unit/indirector/facts/yaml_spec.rb +2 -2
- data/spec/unit/indirector/file_bucket_file/file_spec.rb +2 -2
- data/spec/unit/indirector/file_bucket_file/rest_spec.rb +1 -1
- data/spec/unit/indirector/file_content/file_server_spec.rb +1 -1
- data/spec/unit/indirector/file_content/file_spec.rb +1 -1
- data/spec/unit/indirector/file_content/rest_spec.rb +7 -3
- data/spec/unit/indirector/file_metadata/file_server_spec.rb +1 -1
- data/spec/unit/indirector/file_metadata/file_spec.rb +3 -3
- data/spec/unit/indirector/file_metadata/rest_spec.rb +1 -1
- data/spec/unit/indirector/file_server_spec.rb +1 -1
- data/spec/unit/indirector/hiera_spec.rb +149 -0
- data/spec/unit/indirector/indirection_spec.rb +10 -29
- data/spec/unit/indirector/instrumentation_data/local_spec.rb +1 -1
- data/spec/unit/indirector/instrumentation_data/rest_spec.rb +1 -1
- data/spec/unit/indirector/instrumentation_listener/local_spec.rb +1 -1
- data/spec/unit/indirector/instrumentation_listener/rest_spec.rb +1 -1
- data/spec/unit/indirector/instrumentation_probe/local_spec.rb +1 -1
- data/spec/unit/indirector/instrumentation_probe/rest_spec.rb +1 -1
- data/spec/unit/indirector/json_spec.rb +193 -0
- data/spec/unit/indirector/key/ca_spec.rb +5 -6
- data/spec/unit/indirector/key/file_spec.rb +10 -12
- data/spec/unit/indirector/ldap_spec.rb +3 -3
- data/spec/unit/indirector/memory_spec.rb +1 -1
- data/spec/unit/indirector/node/active_record_spec.rb +11 -7
- data/spec/unit/indirector/node/exec_spec.rb +12 -5
- data/spec/unit/indirector/node/ldap_spec.rb +173 -194
- data/spec/unit/indirector/node/memory_spec.rb +1 -1
- data/spec/unit/indirector/node/plain_spec.rb +16 -8
- data/spec/unit/indirector/node/rest_spec.rb +1 -1
- data/spec/unit/indirector/node/store_configs_spec.rb +1 -1
- data/spec/unit/indirector/node/yaml_spec.rb +1 -1
- data/spec/unit/indirector/none_spec.rb +33 -0
- data/spec/unit/indirector/plain_spec.rb +1 -1
- data/spec/unit/indirector/queue_spec.rb +1 -1
- data/spec/unit/indirector/report/processor_spec.rb +4 -4
- data/spec/unit/indirector/report/rest_spec.rb +3 -46
- data/spec/unit/indirector/report/yaml_spec.rb +3 -12
- data/spec/unit/indirector/request_spec.rb +238 -61
- data/spec/unit/indirector/resource/active_record_spec.rb +2 -2
- data/spec/unit/indirector/resource/ral_spec.rb +2 -2
- data/spec/unit/indirector/resource/rest_spec.rb +1 -1
- data/spec/unit/indirector/resource/store_configs_spec.rb +1 -1
- data/spec/unit/indirector/resource_type/parser_spec.rb +153 -53
- data/spec/unit/indirector/resource_type/rest_spec.rb +1 -1
- data/spec/unit/indirector/rest_spec.rb +350 -361
- data/spec/unit/indirector/run/local_spec.rb +2 -2
- data/spec/unit/indirector/run/rest_spec.rb +1 -1
- data/spec/unit/indirector/ssl_file_spec.rb +12 -10
- data/spec/unit/indirector/status/rest_spec.rb +1 -1
- data/spec/unit/indirector/store_configs_spec.rb +1 -1
- data/spec/unit/indirector/terminus_spec.rb +1 -46
- data/spec/unit/indirector/yaml_spec.rb +36 -36
- data/spec/unit/indirector_spec.rb +1 -1
- data/spec/unit/interface/action_builder_spec.rb +1 -1
- data/spec/unit/interface/action_manager_spec.rb +1 -1
- data/spec/unit/interface/action_spec.rb +1 -1
- data/spec/unit/interface/documentation_spec.rb +3 -2
- data/spec/unit/interface/face_collection_spec.rb +19 -9
- data/spec/unit/interface/option_builder_spec.rb +9 -1
- data/spec/unit/interface/option_spec.rb +8 -0
- data/spec/unit/interface_spec.rb +49 -11
- data/spec/unit/module_spec.rb +95 -303
- data/spec/unit/module_tool/application_spec.rb +6 -6
- data/spec/unit/module_tool/applications/installer_spec.rb +131 -69
- data/spec/unit/module_tool/applications/searcher_spec.rb +37 -0
- data/spec/unit/module_tool/applications/uninstaller_spec.rb +27 -19
- data/spec/unit/module_tool/applications/unpacker_spec.rb +4 -10
- data/spec/unit/module_tool/applications/upgrader_spec.rb +1 -4
- data/spec/unit/module_tool/install_directory_spec.rb +70 -0
- data/spec/unit/module_tool_spec.rb +132 -1
- data/spec/unit/network/auth_config_parser_spec.rb +101 -0
- data/spec/unit/network/authconfig_spec.rb +54 -272
- data/spec/unit/network/authorization_spec.rb +20 -0
- data/spec/unit/network/authstore_spec.rb +17 -15
- data/spec/unit/network/format_handler_spec.rb +3 -3
- data/spec/unit/network/format_spec.rb +1 -1
- data/spec/unit/network/formats_spec.rb +28 -37
- data/spec/unit/network/http/api/v1_spec.rb +3 -3
- data/spec/unit/network/http/compression_spec.rb +3 -3
- data/spec/unit/network/http/connection_spec.rb +244 -0
- data/spec/unit/network/http/handler_spec.rb +4 -20
- data/spec/unit/network/http/mongrel/rest_spec.rb +12 -31
- data/spec/unit/network/http/mongrel_spec.rb +7 -37
- data/spec/unit/network/http/rack/rest_spec.rb +10 -44
- data/spec/unit/network/http/rack_spec.rb +2 -59
- data/spec/unit/network/http/webrick/rest_spec.rb +14 -4
- data/spec/unit/network/http/webrick_spec.rb +129 -193
- data/spec/unit/network/http_pool_spec.rb +6 -115
- data/spec/unit/network/http_spec.rb +1 -1
- data/spec/unit/network/resolver_spec.rb +207 -0
- data/spec/unit/network/rights_spec.rb +15 -115
- data/spec/unit/network/server_spec.rb +58 -166
- data/spec/unit/node/environment_spec.rb +7 -7
- data/spec/unit/node/facts_spec.rb +15 -30
- data/spec/unit/node_spec.rb +14 -26
- data/spec/unit/other/selinux_spec.rb +1 -1
- data/spec/unit/parameter/package_options_spec.rb +44 -0
- data/spec/unit/parameter/path_spec.rb +1 -1
- data/spec/unit/parameter/value_collection_spec.rb +1 -1
- data/spec/unit/parameter/value_spec.rb +1 -1
- data/spec/unit/parameter_spec.rb +1 -1
- data/spec/unit/parser/ast/arithmetic_operator_spec.rb +4 -2
- data/spec/unit/parser/ast/astarray_spec.rb +4 -2
- data/spec/unit/parser/ast/asthash_spec.rb +4 -2
- data/spec/unit/parser/ast/boolean_operator_spec.rb +4 -2
- data/spec/unit/parser/ast/casestatement_spec.rb +9 -5
- data/spec/unit/parser/ast/collection_spec.rb +2 -2
- data/spec/unit/parser/ast/collexpr_spec.rb +4 -2
- data/spec/unit/parser/ast/comparison_operator_spec.rb +5 -2
- data/spec/unit/parser/ast/definition_spec.rb +1 -1
- data/spec/unit/parser/ast/function_spec.rb +3 -3
- data/spec/unit/parser/ast/hostclass_spec.rb +1 -1
- data/spec/unit/parser/ast/ifstatement_spec.rb +4 -2
- data/spec/unit/parser/ast/in_operator_spec.rb +4 -2
- data/spec/unit/parser/ast/leaf_spec.rb +66 -39
- data/spec/unit/parser/ast/match_operator_spec.rb +4 -2
- data/spec/unit/parser/ast/minus_spec.rb +4 -2
- data/spec/unit/parser/ast/node_spec.rb +1 -1
- data/spec/unit/parser/ast/nop_spec.rb +1 -1
- data/spec/unit/parser/ast/not_spec.rb +4 -2
- data/spec/unit/parser/ast/relationship_spec.rb +2 -2
- data/spec/unit/parser/ast/resource_defaults_spec.rb +2 -2
- data/spec/unit/parser/ast/resource_override_spec.rb +2 -2
- data/spec/unit/parser/ast/resource_reference_spec.rb +5 -3
- data/spec/unit/parser/ast/resource_spec.rb +5 -32
- data/spec/unit/parser/ast/selector_spec.rb +56 -106
- data/spec/unit/parser/ast/vardef_spec.rb +4 -2
- data/spec/unit/parser/ast_spec.rb +22 -51
- data/spec/unit/parser/collector_spec.rb +2 -2
- data/spec/unit/parser/compiler_spec.rb +89 -42
- data/spec/unit/parser/files_spec.rb +81 -10
- data/spec/unit/parser/functions/create_resources_spec.rb +5 -4
- data/spec/unit/parser/functions/defined_spec.rb +2 -2
- data/spec/unit/parser/functions/extlookup_spec.rb +9 -8
- data/spec/unit/parser/functions/fail_spec.rb +28 -0
- data/spec/unit/parser/functions/file_spec.rb +55 -0
- data/spec/unit/parser/functions/fqdn_rand_spec.rb +6 -12
- data/spec/unit/parser/functions/generate_spec.rb +54 -3
- data/spec/unit/parser/functions/include_spec.rb +19 -2
- data/spec/unit/parser/functions/inline_template_spec.rb +9 -20
- data/spec/unit/parser/functions/realize_spec.rb +4 -4
- data/spec/unit/parser/functions/regsubst_spec.rb +4 -2
- data/spec/unit/parser/functions/require_spec.rb +5 -14
- data/spec/unit/parser/functions/search_spec.rb +23 -0
- data/spec/unit/parser/functions/shellquote_spec.rb +31 -38
- data/spec/unit/parser/functions/split_spec.rb +4 -2
- data/spec/unit/parser/functions/sprintf_spec.rb +4 -2
- data/spec/unit/parser/functions/tag_spec.rb +4 -3
- data/spec/unit/parser/functions/template_spec.rb +45 -27
- data/spec/unit/parser/functions/versioncmp_spec.rb +4 -2
- data/spec/unit/parser/functions_spec.rb +14 -22
- data/spec/unit/parser/lexer_spec.rb +10 -134
- data/spec/unit/parser/parser_spec.rb +126 -35
- data/spec/unit/parser/relationship_spec.rb +1 -25
- data/spec/unit/parser/resource_spec.rb +15 -79
- data/spec/unit/parser/scope_spec.rb +175 -602
- data/spec/unit/parser/templatewrapper_spec.rb +8 -25
- data/spec/unit/parser/type_loader_spec.rb +37 -21
- data/spec/unit/property/ensure_spec.rb +1 -1
- data/spec/unit/property/keyvalue_spec.rb +1 -1
- data/spec/unit/property/list_spec.rb +1 -1
- data/spec/unit/property/ordered_list_spec.rb +1 -1
- data/spec/unit/property_spec.rb +1 -1
- data/spec/unit/{puppet/provider → provider}/README.markdown +0 -0
- data/spec/unit/provider/augeas/augeas_spec.rb +88 -1
- data/spec/unit/provider/cisco_spec.rb +1 -1
- data/spec/unit/provider/command_spec.rb +62 -0
- data/spec/unit/provider/confine/exists_spec.rb +8 -1
- data/spec/unit/provider/confine/false_spec.rb +1 -1
- data/spec/unit/provider/confine/feature_spec.rb +1 -1
- data/spec/unit/provider/confine/true_spec.rb +1 -1
- data/spec/unit/provider/confine/variable_spec.rb +1 -1
- data/spec/unit/provider/confine_collection_spec.rb +1 -1
- data/spec/unit/provider/confine_spec.rb +1 -1
- data/spec/unit/provider/confiner_spec.rb +1 -1
- data/spec/unit/provider/cron/crontab_spec.rb +116 -0
- data/spec/unit/provider/exec/posix_spec.rb +99 -12
- data/spec/unit/provider/exec/shell_spec.rb +1 -1
- data/spec/unit/provider/exec/windows_spec.rb +1 -1
- data/spec/unit/provider/exec_spec.rb +1 -1
- data/spec/unit/provider/file/posix_spec.rb +1 -1
- data/spec/unit/provider/file/windows_spec.rb +30 -30
- data/spec/unit/provider/group/groupadd_spec.rb +31 -37
- data/spec/unit/provider/group/ldap_spec.rb +1 -1
- data/spec/unit/provider/group/pw_spec.rb +1 -1
- data/spec/unit/provider/group/windows_adsi_spec.rb +2 -2
- data/spec/unit/provider/host/parsed_spec.rb +1 -1
- data/spec/unit/provider/interface/cisco_spec.rb +1 -1
- data/spec/unit/provider/ldap_spec.rb +1 -1
- data/spec/unit/provider/macauthorization_spec.rb +1 -1
- data/spec/unit/provider/mcx/mcxcontent_spec.rb +1 -1
- data/spec/unit/provider/mount/parsed_spec.rb +18 -12
- data/spec/unit/provider/mount_spec.rb +1 -1
- data/spec/unit/provider/naginator_spec.rb +1 -1
- data/spec/unit/provider/nameservice/directoryservice_spec.rb +9 -29
- data/spec/unit/provider/network_device_spec.rb +1 -1
- data/spec/unit/provider/package/aix_spec.rb +1 -1
- data/spec/unit/provider/package/appdmg_spec.rb +1 -1
- data/spec/unit/provider/package/apt_spec.rb +1 -1
- data/spec/unit/provider/package/aptitude_spec.rb +38 -0
- data/spec/unit/provider/package/aptrpm_spec.rb +39 -0
- data/spec/unit/provider/package/dpkg_spec.rb +4 -4
- data/spec/unit/provider/package/freebsd_spec.rb +3 -3
- data/spec/unit/provider/package/gem_spec.rb +1 -1
- data/spec/unit/provider/package/hpux_spec.rb +1 -1
- data/spec/unit/provider/package/macports_spec.rb +27 -10
- data/spec/unit/provider/package/msi_spec.rb +29 -14
- data/spec/unit/provider/package/nim_spec.rb +1 -1
- data/spec/unit/provider/package/openbsd_spec.rb +3 -3
- data/spec/unit/provider/package/pacman_spec.rb +109 -81
- data/spec/unit/provider/package/pip_spec.rb +1 -1
- data/spec/unit/provider/package/pkg_spec.rb +205 -97
- data/spec/unit/provider/package/pkgdmg_spec.rb +1 -1
- data/spec/unit/provider/package/pkgin_spec.rb +176 -0
- data/spec/unit/provider/package/pkgutil_spec.rb +64 -10
- data/spec/unit/provider/package/rpm_spec.rb +58 -0
- data/spec/unit/provider/package/sun_spec.rb +122 -0
- data/spec/unit/provider/package/up2date_spec.rb +24 -0
- data/spec/unit/provider/package/windows/exe_package_spec.rb +99 -0
- data/spec/unit/provider/package/windows/msi_package_spec.rb +115 -0
- data/spec/unit/provider/package/windows/package_spec.rb +126 -0
- data/spec/unit/provider/package/windows_spec.rb +255 -0
- data/spec/unit/provider/package/yum_spec.rb +1 -1
- data/spec/unit/provider/package/zypper_spec.rb +1 -1
- data/spec/unit/provider/parsedfile_spec.rb +1 -1
- data/spec/unit/provider/scheduled_task/win32_taskscheduler_spec.rb +12 -15
- data/spec/unit/provider/selboolean_spec.rb +1 -1
- data/spec/unit/provider/selmodule-example.pp +0 -0
- data/spec/unit/provider/selmodule_spec.rb +1 -1
- data/spec/unit/provider/service/base_spec.rb +77 -0
- data/spec/unit/provider/service/daemontools_spec.rb +1 -1
- data/spec/unit/provider/service/debian_spec.rb +1 -1
- data/spec/unit/provider/service/freebsd_spec.rb +1 -1
- data/spec/unit/provider/service/gentoo_spec.rb +1 -1
- data/spec/unit/provider/service/init_spec.rb +1 -1
- data/spec/unit/provider/service/launchd_spec.rb +0 -17
- data/spec/unit/provider/service/redhat_spec.rb +12 -3
- data/spec/unit/provider/service/runit_spec.rb +2 -1
- data/spec/unit/provider/service/smf_spec.rb +16 -1
- data/spec/unit/provider/service/src_spec.rb +6 -6
- data/spec/unit/provider/service/systemd_spec.rb +18 -1
- data/spec/unit/provider/service/upstart_spec.rb +12 -7
- data/spec/unit/provider/service/windows_spec.rb +1 -1
- data/spec/unit/provider/ssh_authorized_key/parsed_spec.rb +1 -1
- data/spec/unit/provider/sshkey/parsed_spec.rb +42 -12
- data/spec/unit/provider/user/hpux_spec.rb +1 -1
- data/spec/unit/provider/user/ldap_spec.rb +9 -23
- data/spec/unit/provider/user/pw_spec.rb +1 -1
- data/spec/unit/provider/user/user_role_add_spec.rb +5 -2
- data/spec/unit/provider/user/useradd_spec.rb +118 -146
- data/spec/unit/provider/user/windows_adsi_spec.rb +2 -24
- data/spec/unit/provider/vlan/cisco_spec.rb +1 -1
- data/spec/unit/provider/zfs/zfs_spec.rb +106 -0
- data/spec/unit/provider/zone/solaris_spec.rb +56 -34
- data/spec/unit/provider/zpool/zpool_spec.rb +213 -0
- data/spec/unit/provider_spec.rb +621 -16
- data/spec/unit/puppet_spec.rb +21 -9
- data/spec/unit/rails/host_spec.rb +1 -1
- data/spec/unit/rails/param_value_spec.rb +1 -1
- data/spec/unit/rails/resource_spec.rb +1 -1
- data/spec/unit/rails_spec.rb +70 -70
- data/spec/unit/relationship_spec.rb +1 -1
- data/spec/unit/reports/http_spec.rb +48 -15
- data/spec/unit/reports/rrdgraph_spec.rb +1 -1
- data/spec/unit/reports/store_spec.rb +1 -1
- data/spec/unit/reports/tagmail_spec.rb +1 -1
- data/spec/unit/reports_spec.rb +1 -1
- data/spec/unit/resource/catalog_spec.rb +8 -175
- data/spec/unit/resource/status_spec.rb +2 -2
- data/spec/unit/resource/type_collection_helper_spec.rb +1 -1
- data/spec/unit/resource/type_collection_spec.rb +72 -45
- data/spec/unit/resource/type_spec.rb +31 -33
- data/spec/unit/resource_spec.rb +163 -98
- data/spec/unit/run_spec.rb +7 -23
- data/spec/unit/settings/directory_setting_spec.rb +32 -0
- data/spec/unit/{util/settings → settings}/file_setting_spec.rb +14 -23
- data/spec/unit/settings/path_setting_spec.rb +30 -0
- data/spec/unit/settings/string_setting_spec.rb +75 -0
- data/spec/unit/settings_spec.rb +1583 -0
- data/spec/unit/simple_graph_spec.rb +19 -5
- data/spec/unit/ssl/base_spec.rb +2 -2
- data/spec/unit/ssl/certificate_authority/interface_spec.rb +7 -7
- data/spec/unit/ssl/certificate_authority_spec.rb +27 -53
- data/spec/unit/ssl/certificate_factory_spec.rb +1 -1
- data/spec/unit/ssl/certificate_request_spec.rb +2 -4
- data/spec/unit/ssl/certificate_revocation_list_spec.rb +3 -3
- data/spec/unit/ssl/certificate_spec.rb +1 -1
- data/spec/unit/ssl/configuration_spec.rb +60 -0
- data/spec/unit/ssl/host_spec.rb +37 -89
- data/spec/unit/ssl/inventory_spec.rb +13 -20
- data/spec/unit/ssl/key_spec.rb +11 -9
- data/spec/unit/status_spec.rb +1 -7
- data/spec/unit/transaction/event_manager_spec.rb +1 -1
- data/spec/unit/transaction/event_spec.rb +6 -6
- data/spec/unit/transaction/report_spec.rb +1 -1
- data/spec/unit/transaction/resource_harness_spec.rb +2 -2
- data/spec/unit/transaction_spec.rb +8 -8
- data/spec/unit/{puppet/type → type}/README.markdown +0 -0
- data/spec/unit/type/augeas_spec.rb +2 -2
- data/spec/unit/type/component_spec.rb +1 -1
- data/spec/unit/type/computer_spec.rb +1 -1
- data/spec/unit/type/cron_spec.rb +1 -1
- data/spec/unit/type/exec_spec.rb +40 -12
- data/spec/unit/type/file/checksum_spec.rb +1 -1
- data/spec/unit/type/file/content_spec.rb +9 -6
- data/spec/unit/type/file/ctime_spec.rb +1 -1
- data/spec/unit/type/file/ensure_spec.rb +1 -1
- data/spec/unit/type/file/group_spec.rb +1 -1
- data/spec/unit/type/file/mode_spec.rb +1 -1
- data/spec/unit/type/file/mtime_spec.rb +1 -1
- data/spec/unit/type/file/owner_spec.rb +1 -1
- data/spec/unit/type/file/selinux_spec.rb +1 -1
- data/spec/unit/type/file/source_spec.rb +14 -13
- data/spec/unit/type/file/type_spec.rb +1 -1
- data/spec/unit/type/file_spec.rb +39 -87
- data/spec/unit/type/filebucket_spec.rb +1 -1
- data/spec/unit/type/group_spec.rb +5 -5
- data/spec/unit/type/host_spec.rb +1 -1
- data/spec/unit/type/interface_spec.rb +1 -1
- data/spec/unit/type/macauthorization_spec.rb +1 -1
- data/spec/unit/type/mailalias_spec.rb +21 -0
- data/spec/unit/type/maillist_spec.rb +1 -1
- data/spec/unit/type/mcx_spec.rb +1 -1
- data/spec/unit/type/mount_spec.rb +2 -2
- data/spec/unit/type/nagios_spec.rb +1 -1
- data/spec/unit/type/noop_metaparam_spec.rb +3 -3
- data/spec/unit/type/package_spec.rb +1 -1
- data/spec/unit/type/resources_spec.rb +2 -2
- data/spec/unit/type/schedule_spec.rb +297 -39
- data/spec/unit/type/scheduled_task_spec.rb +3 -3
- data/spec/unit/type/selboolean_spec.rb +1 -1
- data/spec/unit/type/selmodule_spec.rb +1 -1
- data/spec/unit/type/service_spec.rb +1 -1
- data/spec/unit/type/ssh_authorized_key_spec.rb +3 -3
- data/spec/unit/type/sshkey_spec.rb +1 -1
- data/spec/unit/type/stage_spec.rb +1 -1
- data/spec/unit/type/tidy_spec.rb +1 -1
- data/spec/unit/type/user_spec.rb +1 -1
- data/spec/unit/type/vlan_spec.rb +1 -1
- data/spec/unit/type/whit_spec.rb +1 -1
- data/spec/unit/type/yumrepo_spec.rb +243 -0
- data/spec/unit/type/zfs_spec.rb +8 -6
- data/spec/unit/type/zone_spec.rb +41 -36
- data/spec/unit/type/zpool_spec.rb +1 -1
- data/spec/unit/type_spec.rb +180 -31
- data/spec/unit/util/adsi_spec.rb +8 -23
- data/spec/unit/util/autoload_spec.rb +181 -45
- data/spec/unit/util/backups_spec.rb +1 -1
- data/spec/unit/util/cache_accumulator_spec.rb +1 -1
- data/spec/unit/util/cacher_spec.rb +1 -1
- data/spec/unit/util/checksums_spec.rb +1 -1
- data/spec/unit/util/command_line_spec.rb +114 -108
- data/spec/unit/util/command_line_utils/puppet_option_parser_spec.rb +129 -0
- data/spec/unit/util/config_timeout_spec.rb +57 -0
- data/spec/unit/util/constant_inflector_spec.rb +13 -23
- data/spec/unit/util/diff_spec.rb +5 -4
- data/spec/unit/util/errors_spec.rb +1 -1
- data/spec/unit/util/execution_spec.rb +532 -28
- data/spec/unit/util/execution_stub_spec.rb +4 -4
- data/spec/unit/util/feature_spec.rb +12 -13
- data/spec/unit/util/filetype_spec.rb +9 -9
- data/spec/unit/util/inline_docs_spec.rb +1 -1
- data/spec/unit/util/instrumentation/data_spec.rb +1 -1
- data/spec/unit/util/instrumentation/indirection_probe_spec.rb +1 -1
- data/spec/unit/util/instrumentation/instrumentable_spec.rb +1 -1
- data/spec/unit/util/instrumentation/listener_spec.rb +1 -1
- data/spec/unit/util/instrumentation_spec.rb +1 -1
- data/spec/unit/util/json_lockfile_spec.rb +29 -0
- data/spec/unit/util/ldap/connection_spec.rb +11 -15
- data/spec/unit/util/ldap/generator_spec.rb +1 -1
- data/spec/unit/util/ldap/manager_spec.rb +14 -23
- data/spec/unit/util/loadedfile_spec.rb +1 -1
- data/spec/unit/util/lockfile_spec.rb +76 -0
- data/spec/unit/util/log/destinations_spec.rb +11 -28
- data/spec/unit/util/log_spec.rb +6 -6
- data/spec/unit/util/logging_spec.rb +43 -11
- data/spec/unit/util/metric_spec.rb +4 -3
- data/spec/unit/util/monkey_patches/lines_spec.rb +83 -0
- data/spec/unit/util/monkey_patches_spec.rb +91 -28
- data/spec/unit/util/nagios_maker_spec.rb +1 -1
- data/spec/unit/util/network_device/cisco/device_spec.rb +3 -3
- data/spec/unit/util/network_device/cisco/facts_spec.rb +1 -1
- data/spec/unit/util/network_device/cisco/interface_spec.rb +1 -1
- data/spec/unit/util/network_device/config_spec.rb +1 -1
- data/spec/unit/util/network_device/ipcalc_spec.rb +1 -1
- data/spec/unit/util/network_device/transport/base_spec.rb +1 -1
- data/spec/unit/util/network_device/transport/ssh_spec.rb +2 -2
- data/spec/unit/util/network_device/transport/telnet_spec.rb +1 -1
- data/spec/unit/util/network_device_spec.rb +1 -1
- data/spec/unit/util/package_spec.rb +1 -1
- data/spec/unit/util/pidlock_spec.rb +179 -0
- data/spec/unit/util/posix_spec.rb +2 -2
- data/spec/unit/util/pson_spec.rb +23 -9
- data/spec/unit/util/queue/stomp_spec.rb +10 -13
- data/spec/unit/util/queue_spec.rb +2 -2
- data/spec/unit/util/rdoc/parser_spec.rb +11 -9
- data/spec/unit/util/rdoc_spec.rb +9 -3
- data/spec/unit/util/reference_serializer_spec.rb +1 -1
- data/spec/unit/util/reference_spec.rb +1 -1
- data/spec/unit/util/resource_template_spec.rb +1 -1
- data/spec/unit/util/retryaction_spec.rb +1 -1
- data/spec/unit/util/rubygems_spec.rb +66 -0
- data/spec/unit/util/run_mode_spec.rb +4 -9
- data/spec/unit/util/selinux_spec.rb +33 -25
- data/spec/unit/util/storage_spec.rb +2 -18
- data/spec/unit/util/suidmanager_spec.rb +11 -4
- data/spec/unit/util/symbolic_file_mode_spec.rb +1 -1
- data/spec/unit/util/tagging_spec.rb +1 -1
- data/spec/unit/util/terminal_spec.rb +1 -1
- data/spec/unit/util/user_attr_spec.rb +1 -1
- data/spec/unit/util/warnings_spec.rb +1 -1
- data/spec/unit/util/windows/registry_spec.rb +86 -0
- data/spec/unit/util/zaml_spec.rb +30 -146
- data/spec/unit/util_spec.rb +148 -440
- data/spec/watchr.rb +6 -2
- data/tasks/rake/apple.rake +176 -0
- data/tasks/rake/gem.rake +6 -5
- data/tasks/rake/manpages.rake +8 -1
- data/tasks/rake/metrics.rake +11 -3
- data/tasks/rake/parser.rake +5 -0
- data/{ext/osx → tasks/rake/templates}/prototype.plist.erb +0 -0
- metadata +293 -580
- data/bin/filebucket +0 -7
- data/bin/pi +0 -5
- data/bin/puppetca +0 -4
- data/bin/puppetd +0 -4
- data/bin/puppetdoc +0 -4
- data/bin/puppetmasterd +0 -4
- data/bin/puppetqd +0 -4
- data/bin/puppetrun +0 -5
- data/bin/ralsh +0 -4
- data/ext/build_defaults.yaml +0 -19
- data/ext/debian/README.Debian +0 -8
- data/ext/debian/README.source +0 -2
- data/ext/debian/TODO.Debian +0 -1
- data/ext/debian/changelog.erb +0 -1104
- data/ext/debian/compat +0 -1
- data/ext/debian/control +0 -142
- data/ext/debian/copyright +0 -361
- data/ext/debian/docs +0 -1
- data/ext/debian/fileserver.conf +0 -17
- data/ext/debian/puppet-common.dirs +0 -8
- data/ext/debian/puppet-common.install +0 -3
- data/ext/debian/puppet-common.lintian-overrides +0 -7
- data/ext/debian/puppet-common.manpages +0 -2
- data/ext/debian/puppet-common.postinst +0 -35
- data/ext/debian/puppet-common.postrm +0 -32
- data/ext/debian/puppet-el.dirs +0 -1
- data/ext/debian/puppet-el.emacsen-install +0 -25
- data/ext/debian/puppet-el.emacsen-remove +0 -11
- data/ext/debian/puppet-el.emacsen-startup +0 -9
- data/ext/debian/puppet-el.install +0 -1
- data/ext/debian/puppet-testsuite.install +0 -3
- data/ext/debian/puppet-testsuite.lintian-overrides +0 -4
- data/ext/debian/puppet.NEWS +0 -86
- data/ext/debian/puppet.conf +0 -14
- data/ext/debian/puppet.default +0 -7
- data/ext/debian/puppet.dirs +0 -1
- data/ext/debian/puppet.init +0 -118
- data/ext/debian/puppet.install +0 -4
- data/ext/debian/puppet.lintian-overrides +0 -3
- data/ext/debian/puppet.logrotate +0 -11
- data/ext/debian/puppet.manpages +0 -36
- data/ext/debian/puppet.postinst +0 -20
- data/ext/debian/puppet.postrm +0 -20
- data/ext/debian/puppet.preinst +0 -20
- data/ext/debian/puppetmaster-common.install +0 -5
- data/ext/debian/puppetmaster-common.manpages +0 -5
- data/ext/debian/puppetmaster-common.puppetqd.default +0 -27
- data/ext/debian/puppetmaster-common.puppetqd.init +0 -84
- data/ext/debian/puppetmaster-passenger.dirs +0 -4
- data/ext/debian/puppetmaster-passenger.postinst +0 -66
- data/ext/debian/puppetmaster-passenger.postrm +0 -33
- data/ext/debian/puppetmaster.NEWS +0 -13
- data/ext/debian/puppetmaster.README.debian +0 -16
- data/ext/debian/puppetmaster.default +0 -38
- data/ext/debian/puppetmaster.dirs +0 -1
- data/ext/debian/puppetmaster.init +0 -158
- data/ext/debian/puppetmaster.install +0 -1
- data/ext/debian/puppetmaster.lintian-overrides +0 -3
- data/ext/debian/puppetmaster.manpages +0 -1
- data/ext/debian/puppetmaster.postinst +0 -20
- data/ext/debian/puppetmaster.postrm +0 -5
- data/ext/debian/puppetmaster.preinst +0 -22
- data/ext/debian/rules +0 -127
- data/ext/debian/source/format +0 -1
- data/ext/debian/source/options +0 -1
- data/ext/debian/vim-puppet.README.Debian +0 -13
- data/ext/debian/vim-puppet.dirs +0 -3
- data/ext/debian/vim-puppet.yaml +0 -5
- data/ext/debian/watch +0 -2
- data/ext/osx/file_mapping.yaml +0 -38
- data/ext/osx/preflight.erb +0 -37
- data/ext/packaging/Gemfile +0 -8
- data/ext/packaging/Gemfile.lock +0 -28
- data/ext/packaging/LICENSE +0 -17
- data/ext/packaging/README-Solaris.md +0 -117
- data/ext/packaging/README.md +0 -1074
- data/ext/packaging/lib/packaging.rb +0 -21
- data/ext/packaging/lib/packaging/config.rb +0 -277
- data/ext/packaging/lib/packaging/config/params.rb +0 -175
- data/ext/packaging/lib/packaging/tar.rb +0 -186
- data/ext/packaging/lib/packaging/util.rb +0 -44
- data/ext/packaging/lib/packaging/util/date.rb +0 -15
- data/ext/packaging/lib/packaging/util/file.rb +0 -60
- data/ext/packaging/lib/packaging/util/jira.rb +0 -83
- data/ext/packaging/lib/packaging/util/net.rb +0 -16
- data/ext/packaging/lib/packaging/util/rake_utils.rb +0 -57
- data/ext/packaging/lib/packaging/util/serialization.rb +0 -19
- data/ext/packaging/lib/packaging/util/tool.rb +0 -30
- data/ext/packaging/lib/packaging/util/version.rb +0 -300
- data/ext/packaging/packaging.rake +0 -50
- data/ext/packaging/spec/fixtures/config/ext/build_defaults.yaml +0 -2
- data/ext/packaging/spec/fixtures/config/ext/project_data.yaml +0 -2
- data/ext/packaging/spec/fixtures/config/params.yaml +0 -2
- data/ext/packaging/spec/fixtures/util/pre_tasks.yaml +0 -4
- data/ext/packaging/spec/lib/packaging/config_spec.rb +0 -330
- data/ext/packaging/spec/lib/packaging/tar_spec.rb +0 -122
- data/ext/packaging/spec/lib/packaging/util/file_spec.rb +0 -48
- data/ext/packaging/spec/lib/packaging/util/jira_spec.rb +0 -50
- data/ext/packaging/spec/lib/packaging/util/net_spec.rb +0 -23
- data/ext/packaging/spec/lib/packaging/util/rake_utils_spec.rb +0 -70
- data/ext/packaging/spec/lib/packaging/util/version_spec.rb +0 -67
- data/ext/packaging/spec/lib/packaging_spec.rb +0 -19
- data/ext/packaging/spec/spec_helper.rb +0 -22
- data/ext/packaging/spec/tasks/00_utils_spec.rb +0 -248
- data/ext/packaging/static_artifacts/PackageInfo.plist +0 -3
- data/ext/packaging/tasks/00_utils.rake +0 -402
- data/ext/packaging/tasks/30_metrics.rake +0 -33
- data/ext/packaging/tasks/apple.rake +0 -267
- data/ext/packaging/tasks/build.rake +0 -12
- data/ext/packaging/tasks/clean.rake +0 -5
- data/ext/packaging/tasks/deb.rake +0 -127
- data/ext/packaging/tasks/deb_repos.rake +0 -128
- data/ext/packaging/tasks/doc.rake +0 -20
- data/ext/packaging/tasks/fetch.rake +0 -58
- data/ext/packaging/tasks/gem.rake +0 -158
- data/ext/packaging/tasks/ips.rake +0 -122
- data/ext/packaging/tasks/jenkins.rake +0 -360
- data/ext/packaging/tasks/jenkins_dynamic.rake +0 -123
- data/ext/packaging/tasks/load_extras.rake +0 -21
- data/ext/packaging/tasks/mock.rake +0 -290
- data/ext/packaging/tasks/pe_deb.rake +0 -12
- data/ext/packaging/tasks/pe_remote.rake +0 -41
- data/ext/packaging/tasks/pe_rpm.rake +0 -13
- data/ext/packaging/tasks/pe_ship.rake +0 -179
- data/ext/packaging/tasks/pe_sign.rake +0 -47
- data/ext/packaging/tasks/pe_tar.rake +0 -5
- data/ext/packaging/tasks/release.rake +0 -91
- data/ext/packaging/tasks/remote_build.rake +0 -158
- data/ext/packaging/tasks/retrieve.rake +0 -45
- data/ext/packaging/tasks/rpm.rake +0 -71
- data/ext/packaging/tasks/rpm_repos.rake +0 -139
- data/ext/packaging/tasks/ship.rake +0 -192
- data/ext/packaging/tasks/sign.rake +0 -164
- data/ext/packaging/tasks/tag.rake +0 -8
- data/ext/packaging/tasks/tar.rake +0 -34
- data/ext/packaging/tasks/tickets.rake +0 -449
- data/ext/packaging/tasks/update.rake +0 -16
- data/ext/packaging/tasks/vendor_gems.rake +0 -110
- data/ext/packaging/tasks/version.rake +0 -33
- data/ext/packaging/tasks/z_data_dump.rake +0 -65
- data/ext/packaging/templates/README +0 -1
- data/ext/packaging/templates/downstream.xml.erb +0 -45
- data/ext/packaging/templates/packaging.xml.erb +0 -330
- data/ext/packaging/templates/repo.xml.erb +0 -106
- data/ext/project_data.yaml +0 -24
- data/lib/puppet/file_system.rb +0 -3
- data/lib/puppet/file_system/path_pattern.rb +0 -97
- data/lib/puppet/indirector/certificate/disabled_ca.rb +0 -22
- data/lib/puppet/indirector/certificate_request/disabled_ca.rb +0 -22
- data/lib/puppet/indirector/certificate_revocation_list/disabled_ca.rb +0 -22
- data/lib/puppet/indirector/errors.rb +0 -5
- data/lib/puppet/indirector/inventory/yaml.rb +0 -81
- data/lib/puppet/indirector/key/disabled_ca.rb +0 -22
- data/lib/puppet/indirector/resource/validator.rb +0 -8
- data/lib/puppet/network/handler.rb +0 -50
- data/lib/puppet/network/handler/ca.rb +0 -61
- data/lib/puppet/network/handler/filebucket.rb +0 -53
- data/lib/puppet/network/handler/fileserver.rb +0 -732
- data/lib/puppet/network/handler/master.rb +0 -87
- data/lib/puppet/network/handler/report.rb +0 -82
- data/lib/puppet/network/handler/runner.rb +0 -33
- data/lib/puppet/network/handler/status.rb +0 -18
- data/lib/puppet/network/http/rack/xmlrpc.rb +0 -65
- data/lib/puppet/network/http_server.rb +0 -3
- data/lib/puppet/network/http_server/mongrel.rb +0 -129
- data/lib/puppet/network/rest_authconfig.rb +0 -102
- data/lib/puppet/network/rest_authorization.rb +0 -23
- data/lib/puppet/network/xmlrpc/processor.rb +0 -86
- data/lib/puppet/network/xmlrpc/server.rb +0 -19
- data/lib/puppet/network/xmlrpc/webrick_servlet.rb +0 -114
- data/lib/puppet/node/inventory.rb +0 -7
- data/lib/puppet/reference/network.rb +0 -39
- data/lib/puppet/transportable.rb +0 -248
- data/lib/puppet/util/autoload/file_cache.rb +0 -92
- data/lib/puppet/util/file_locking.rb +0 -47
- data/lib/puppet/util/settings.rb +0 -926
- data/lib/puppet/util/settings/setting.rb +0 -94
- data/lib/puppet/util/windows/sid.rb +0 -96
- data/lib/puppet/vendor.rb +0 -55
- data/lib/puppet/vendor/load_safe_yaml.rb +0 -1
- data/lib/puppet/vendor/require_vendored.rb +0 -4
- data/lib/puppet/vendor/safe_yaml/CHANGES.md +0 -104
- data/lib/puppet/vendor/safe_yaml/Gemfile +0 -11
- data/lib/puppet/vendor/safe_yaml/LICENSE.txt +0 -22
- data/lib/puppet/vendor/safe_yaml/README.md +0 -179
- data/lib/puppet/vendor/safe_yaml/Rakefile +0 -6
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml.rb +0 -253
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/deep.rb +0 -34
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/date.rb +0 -27
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/hexadecimal.rb +0 -12
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/sexagesimal.rb +0 -26
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/psych_handler.rb +0 -92
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/psych_resolver.rb +0 -52
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/resolver.rb +0 -94
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/safe_to_ruby_visitor.rb +0 -17
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_hack.rb +0 -36
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_node_monkeypatch.rb +0 -43
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_resolver.rb +0 -38
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform.rb +0 -41
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_boolean.rb +0 -21
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_date.rb +0 -11
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_float.rb +0 -33
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_integer.rb +0 -25
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_nil.rb +0 -18
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_symbol.rb +0 -13
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/transformation_map.rb +0 -47
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/version.rb +0 -3
- data/lib/puppet/vendor/safe_yaml/run_specs_all_ruby_versions.sh +0 -21
- data/lib/puppet/vendor/safe_yaml/safe_yaml.gemspec +0 -18
- data/lib/puppet/vendor/safe_yaml/spec/exploit.1.9.2.yaml +0 -2
- data/lib/puppet/vendor/safe_yaml/spec/exploit.1.9.3.yaml +0 -2
- data/lib/puppet/vendor/safe_yaml/spec/psych_resolver_spec.rb +0 -10
- data/lib/puppet/vendor/safe_yaml/spec/resolver_specs.rb +0 -250
- data/lib/puppet/vendor/safe_yaml/spec/safe_yaml_spec.rb +0 -702
- data/lib/puppet/vendor/safe_yaml/spec/spec_helper.rb +0 -18
- data/lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb +0 -29
- data/lib/puppet/vendor/safe_yaml/spec/syck_resolver_spec.rb +0 -10
- data/lib/puppet/vendor/safe_yaml/spec/transform/base64_spec.rb +0 -11
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_date_spec.rb +0 -34
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_float_spec.rb +0 -42
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_integer_spec.rb +0 -59
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_symbol_spec.rb +0 -49
- data/man/man8/filebucket.8 +0 -81
- data/man/man8/pi.8 +0 -51
- data/man/man8/puppetca.8 +0 -97
- data/man/man8/puppetd.8 +0 -154
- data/man/man8/puppetdoc.8 +0 -113
- data/man/man8/puppetmasterd.8 +0 -78
- data/man/man8/puppetqd.8 +0 -55
- data/man/man8/puppetrun.8 +0 -127
- data/man/man8/ralsh.8 +0 -84
- data/spec/integration/network/handler_spec.rb +0 -24
- data/spec/integration/network/rest_authconfig_spec.rb +0 -164
- data/spec/integration/util/file_locking_spec.rb +0 -56
- data/spec/unit/agent_backward_compatibility_spec.rb +0 -152
- data/spec/unit/file_system/path_pattern_spec.rb +0 -139
- data/spec/unit/indirector/catalog/static_compiler_spec.rb +0 -194
- data/spec/unit/indirector/certificate/disabled_ca_spec.rb +0 -33
- data/spec/unit/indirector/certificate_request/disabled_ca_spec.rb +0 -33
- data/spec/unit/indirector/certificate_revocation_list/disabled_ca_spec.rb +0 -33
- data/spec/unit/indirector/inventory/yaml_spec.rb +0 -220
- data/spec/unit/indirector/key/disabled_ca_spec.rb +0 -33
- data/spec/unit/network/handler/ca_spec.rb +0 -87
- data/spec/unit/network/handler/fileserver_spec.rb +0 -201
- data/spec/unit/network/http/mongrel/xmlrpc_spec.rb +0 -0
- data/spec/unit/network/http/rack/xmlrpc_spec.rb +0 -155
- data/spec/unit/network/http/webrick/xmlrpc_spec.rb +0 -0
- data/spec/unit/network/rest_authconfig_spec.rb +0 -142
- data/spec/unit/other/transbucket_spec.rb +0 -184
- data/spec/unit/other/transobject_spec.rb +0 -111
- data/spec/unit/provider/zfs/solaris_spec.rb +0 -99
- data/spec/unit/provider/zpool/solaris_spec.rb +0 -208
- data/spec/unit/transportable_spec.rb +0 -0
- data/spec/unit/util/autoload/file_cache_spec.rb +0 -158
- data/spec/unit/util/file_locking_spec.rb +0 -159
- data/spec/unit/util/settings_spec.rb +0 -1088
- data/spec/unit/util/windows/sid_spec.rb +0 -100
- data/test/README +0 -24
- data/test/Rakefile +0 -96
- data/test/data/failers/badclassnoparam +0 -10
- data/test/data/failers/badclassparam +0 -10
- data/test/data/failers/badcompnoparam +0 -9
- data/test/data/failers/badcompparam +0 -9
- data/test/data/failers/badtypeparam +0 -3
- data/test/data/failers/noobjectrvalue +0 -1
- data/test/data/providers/cron/crontab.allthree +0 -17
- data/test/data/providers/cron/crontab.envNcomment +0 -12
- data/test/data/providers/cron/crontab.envNname +0 -11
- data/test/data/providers/cron/crontab.multirecords +0 -12
- data/test/data/providers/cron/crontab_collections.yaml +0 -44
- data/test/data/providers/cron/crontab_multiple_with_env.yaml +0 -54
- data/test/data/providers/cron/examples/freebsd +0 -2
- data/test/data/providers/cron/examples/one +0 -14
- data/test/data/providers/cron/examples/openbsd +0 -20
- data/test/data/providers/host/parsed/valid_hosts +0 -19
- data/test/data/providers/mailalias/aliases/test1 +0 -28
- data/test/data/providers/mount/parsed/aix.mount +0 -7
- data/test/data/providers/mount/parsed/darwin.mount +0 -6
- data/test/data/providers/mount/parsed/hpux.mount +0 -17
- data/test/data/providers/mount/parsed/linux.mount +0 -5
- data/test/data/providers/mount/parsed/solaris.mount +0 -6
- data/test/data/providers/package/testpackages.yaml +0 -65
- data/test/data/providers/ssh_authorized_key/parsed/authorized_keys +0 -7
- data/test/data/providers/ssh_authorized_key/parsed/authorized_keys1 +0 -3
- data/test/data/providers/ssh_authorized_key/parsed/authorized_keys2 +0 -1
- data/test/data/reports/1.yaml +0 -108
- data/test/data/reports/2.yaml +0 -108
- data/test/data/reports/tagmail_failers.conf +0 -3
- data/test/data/reports/tagmail_passers.conf +0 -30
- data/test/data/snippets/aliastest.pp +0 -16
- data/test/data/snippets/append.pp +0 -11
- data/test/data/snippets/argumentdefaults +0 -14
- data/test/data/snippets/arithmetic_expression.pp +0 -8
- data/test/data/snippets/arraytrailingcomma.pp +0 -3
- data/test/data/snippets/casestatement.pp +0 -65
- data/test/data/snippets/classheirarchy.pp +0 -15
- data/test/data/snippets/classincludes.pp +0 -17
- data/test/data/snippets/classpathtest +0 -11
- data/test/data/snippets/collection.pp +0 -10
- data/test/data/snippets/collection_override.pp +0 -8
- data/test/data/snippets/collection_within_virtual_definitions.pp +0 -20
- data/test/data/snippets/componentmetaparams.pp +0 -11
- data/test/data/snippets/componentrequire.pp +0 -8
- data/test/data/snippets/deepclassheirarchy.pp +0 -23
- data/test/data/snippets/defineoverrides.pp +0 -17
- data/test/data/snippets/emptyclass.pp +0 -9
- data/test/data/snippets/emptyexec.pp +0 -3
- data/test/data/snippets/emptyifelse.pp +0 -9
- data/test/data/snippets/falsevalues.pp +0 -3
- data/test/data/snippets/filecreate +0 -11
- data/test/data/snippets/fqdefinition.pp +0 -5
- data/test/data/snippets/fqparents.pp +0 -11
- data/test/data/snippets/funccomma.pp +0 -5
- data/test/data/snippets/hash.pp +0 -33
- data/test/data/snippets/ifexpression.pp +0 -12
- data/test/data/snippets/implicititeration +0 -15
- data/test/data/snippets/multilinecomments.pp +0 -10
- data/test/data/snippets/multipleclass.pp +0 -9
- data/test/data/snippets/multipleinstances +0 -7
- data/test/data/snippets/multisubs.pp +0 -13
- data/test/data/snippets/namevartest +0 -9
- data/test/data/snippets/scopetest +0 -13
- data/test/data/snippets/selectorvalues.pp +0 -49
- data/test/data/snippets/simpledefaults +0 -5
- data/test/data/snippets/simpleselector +0 -38
- data/test/data/snippets/singleary.pp +0 -19
- data/test/data/snippets/singlequote.pp +0 -11
- data/test/data/snippets/singleselector.pp +0 -22
- data/test/data/snippets/subclass_name_duplication.pp +0 -11
- data/test/data/snippets/tag.pp +0 -9
- data/test/data/snippets/tagged.pp +0 -35
- data/test/data/snippets/virtualresources.pp +0 -14
- data/test/data/types/hosts/1 +0 -3
- data/test/data/types/hosts/2 +0 -13
- data/test/data/types/hosts/solaris +0 -5
- data/test/data/types/mailalias/file1 +0 -183
- data/test/data/types/mount/freebsd.fstab +0 -7
- data/test/data/types/mount/linux.fstab +0 -12
- data/test/data/types/mount/solaris.fstab +0 -12
- data/test/data/types/port/1 +0 -533
- data/test/data/types/port/darwin +0 -11866
- data/test/data/types/ssh_authorized_key/1 +0 -2
- data/test/data/types/yumrepos/fedora-devel.repo +0 -26
- data/test/data/types/yumrepos/fedora.repo +0 -9
- data/test/language/ast.rb +0 -90
- data/test/language/ast/variable.rb +0 -25
- data/test/language/functions.rb +0 -540
- data/test/language/parser.rb +0 -739
- data/test/language/scope.rb +0 -261
- data/test/language/snippets.rb +0 -512
- data/test/language/transportable.rb +0 -87
- data/test/lib/puppettest.rb +0 -307
- data/test/lib/puppettest/certificates.rb +0 -74
- data/test/lib/puppettest/exetest.rb +0 -125
- data/test/lib/puppettest/fakes.rb +0 -199
- data/test/lib/puppettest/fileparsing.rb +0 -28
- data/test/lib/puppettest/filetesting.rb +0 -221
- data/test/lib/puppettest/parsertesting.rb +0 -424
- data/test/lib/puppettest/railstesting.rb +0 -18
- data/test/lib/puppettest/reporttesting.rb +0 -16
- data/test/lib/puppettest/resourcetesting.rb +0 -54
- data/test/lib/puppettest/runnable_test.rb +0 -43
- data/test/lib/puppettest/servertest.rb +0 -77
- data/test/lib/puppettest/support.rb +0 -8
- data/test/lib/puppettest/support/assertions.rb +0 -69
- data/test/lib/puppettest/support/helpers.rb +0 -18
- data/test/lib/puppettest/support/resources.rb +0 -31
- data/test/lib/puppettest/support/utils.rb +0 -141
- data/test/lib/puppettest/testcase.rb +0 -24
- data/test/lib/rake/puppet_test_loader.rb +0 -14
- data/test/lib/rake/puppet_testtask.rb +0 -19
- data/test/lib/stubba.rb +0 -2
- data/test/network/authconfig.rb +0 -69
- data/test/network/authorization.rb +0 -138
- data/test/network/authstore.rb +0 -538
- data/test/network/client_request.rb +0 -38
- data/test/network/handler/fileserver.rb +0 -1266
- data/test/network/handler/master.rb +0 -93
- data/test/network/handler/report.rb +0 -47
- data/test/network/handler/runner.rb +0 -20
- data/test/network/rights.rb +0 -40
- data/test/network/xmlrpc/processor.rb +0 -79
- data/test/network/xmlrpc/server.rb +0 -26
- data/test/network/xmlrpc/webrick_servlet.rb +0 -35
- data/test/other/provider.rb +0 -90
- data/test/other/puppet.rb +0 -85
- data/test/other/relationships.rb +0 -91
- data/test/other/report.rb +0 -135
- data/test/other/transactions.rb +0 -395
- data/test/puppet/defaults.rb +0 -65
- data/test/rails/rails.rb +0 -24
- data/test/rails/railsparameter.rb +0 -80
- data/test/ral/manager/attributes.rb +0 -296
- data/test/ral/manager/instances.rb +0 -88
- data/test/ral/manager/manager.rb +0 -50
- data/test/ral/manager/provider.rb +0 -84
- data/test/ral/manager/type.rb +0 -361
- data/test/ral/providers/cron/crontab.rb +0 -652
- data/test/ral/providers/group.rb +0 -242
- data/test/ral/providers/host/parsed.rb +0 -32
- data/test/ral/providers/mailalias/aliases.rb +0 -55
- data/test/ral/providers/nameservice.rb +0 -32
- data/test/ral/providers/package.rb +0 -245
- data/test/ral/providers/package/aptitude.rb +0 -83
- data/test/ral/providers/package/aptrpm.rb +0 -100
- data/test/ral/providers/parsedfile.rb +0 -695
- data/test/ral/providers/port/parsed.rb +0 -232
- data/test/ral/providers/provider.rb +0 -529
- data/test/ral/providers/service/base.rb +0 -76
- data/test/ral/providers/sshkey/parsed.rb +0 -112
- data/test/ral/providers/user.rb +0 -586
- data/test/ral/providers/user/useradd.rb +0 -233
- data/test/ral/type/cron.rb +0 -505
- data/test/ral/type/exec.rb +0 -717
- data/test/ral/type/file.rb +0 -912
- data/test/ral/type/file/target.rb +0 -346
- data/test/ral/type/fileignoresource.rb +0 -265
- data/test/ral/type/filesources.rb +0 -446
- data/test/ral/type/host.rb +0 -180
- data/test/ral/type/mailalias.rb +0 -45
- data/test/ral/type/port.rb +0 -147
- data/test/ral/type/resources.rb +0 -104
- data/test/ral/type/service.rb +0 -38
- data/test/ral/type/sshkey.rb +0 -148
- data/test/ral/type/user.rb +0 -167
- data/test/ral/type/yumrepo.rb +0 -116
- data/test/ral/type/zone.rb +0 -447
- data/test/test +0 -241
- data/test/util/classgen.rb +0 -241
- data/test/util/execution.rb +0 -33
- data/test/util/fileparsing.rb +0 -721
- data/test/util/inifile.rb +0 -138
- data/test/util/instance_loader.rb +0 -52
- data/test/util/log.rb +0 -219
- data/test/util/metrics.rb +0 -72
- data/test/util/package.rb +0 -25
- data/test/util/pidlock.rb +0 -125
- data/test/util/settings.rb +0 -773
- data/test/util/storage.rb +0 -81
- data/test/util/subclass_loader.rb +0 -89
- data/test/util/utiltest.rb +0 -223
@@ -1,38 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../lib/puppettest')
|
4
|
-
|
5
|
-
require 'puppettest'
|
6
|
-
|
7
|
-
require 'puppet/network/client_request'
|
8
|
-
|
9
|
-
class TestClientRequest < Test::Unit::TestCase
|
10
|
-
include PuppetTest
|
11
|
-
|
12
|
-
def test_initialize
|
13
|
-
req = nil
|
14
|
-
assert_nothing_raised do
|
15
|
-
req = Puppet::Network::ClientRequest.new("name", "ip", false)
|
16
|
-
end
|
17
|
-
|
18
|
-
assert_equal("name", req.name, "host name was not set correctly")
|
19
|
-
assert_equal("ip", req.ip, "host ip was not set correctly")
|
20
|
-
assert_equal(false, req.authenticated, "host auth was not set correctly")
|
21
|
-
assert(! req.authenticated, "host was incorrectly considered authenticated")
|
22
|
-
|
23
|
-
req.authenticated = true
|
24
|
-
assert(req.authenticated, "host was not considered authenticated")
|
25
|
-
|
26
|
-
assert_raise(ArgumentError) do
|
27
|
-
req.call
|
28
|
-
end
|
29
|
-
|
30
|
-
req.handler = "yay"
|
31
|
-
req.method = "foo"
|
32
|
-
assert_equal("yay.foo", req.call, "call was not built correctly")
|
33
|
-
|
34
|
-
assert_equal("name(ip)", req.to_s, "request string not correct")
|
35
|
-
end
|
36
|
-
end
|
37
|
-
|
38
|
-
|
@@ -1,1266 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../../lib/puppettest')
|
4
|
-
|
5
|
-
require 'puppettest'
|
6
|
-
require 'puppet/network/handler/fileserver'
|
7
|
-
|
8
|
-
class TestFileServer < Test::Unit::TestCase
|
9
|
-
include PuppetTest
|
10
|
-
|
11
|
-
def mkmount(path = nil)
|
12
|
-
mount = nil
|
13
|
-
name = "yaytest"
|
14
|
-
base = path || tempfile
|
15
|
-
Dir.mkdir(base) unless FileTest.exists?(base)
|
16
|
-
# Create a test file
|
17
|
-
File.open(File.join(base, "file"), "w") { |f| f.puts "bazoo" }
|
18
|
-
assert_nothing_raised {
|
19
|
-
mount = Puppet::Network::Handler.fileserver::Mount.new(name, base)
|
20
|
-
}
|
21
|
-
|
22
|
-
mount
|
23
|
-
end
|
24
|
-
# make a simple file source
|
25
|
-
def mktestdir
|
26
|
-
testdir = File.join(tmpdir, "remotefilecopytesting")
|
27
|
-
@@tmpfiles << testdir
|
28
|
-
|
29
|
-
# create a tmpfile
|
30
|
-
pattern = "tmpfile"
|
31
|
-
tmpfile = File.join(testdir, pattern)
|
32
|
-
assert_nothing_raised {
|
33
|
-
Dir.mkdir(testdir)
|
34
|
-
File.open(tmpfile, "w") { |f|
|
35
|
-
3.times { f.puts rand(100) }
|
36
|
-
}
|
37
|
-
}
|
38
|
-
|
39
|
-
[testdir, %r{#{pattern}}, tmpfile]
|
40
|
-
end
|
41
|
-
|
42
|
-
# make a bunch of random test files
|
43
|
-
def mktestfiles(testdir)
|
44
|
-
@@tmpfiles << testdir
|
45
|
-
assert_nothing_raised {
|
46
|
-
files = %w{a b c d e}.collect { |l|
|
47
|
-
name = File.join(testdir, "file#{l}")
|
48
|
-
File.open(name, "w") { |f|
|
49
|
-
f.puts rand(100)
|
50
|
-
}
|
51
|
-
|
52
|
-
name
|
53
|
-
}
|
54
|
-
|
55
|
-
return files
|
56
|
-
}
|
57
|
-
end
|
58
|
-
|
59
|
-
def assert_describe(base, file, server)
|
60
|
-
file = File.basename(file)
|
61
|
-
assert_nothing_raised {
|
62
|
-
desc = server.describe(base + file)
|
63
|
-
assert(desc, "Got no description for #{file}")
|
64
|
-
assert(desc != "", "Got no description for #{file}")
|
65
|
-
assert_match(/^\d+/, desc, "Got invalid description #{desc}")
|
66
|
-
}
|
67
|
-
end
|
68
|
-
|
69
|
-
# test for invalid names
|
70
|
-
def test_namefailures
|
71
|
-
server = nil
|
72
|
-
assert_nothing_raised {
|
73
|
-
|
74
|
-
server = Puppet::Network::Handler.fileserver.new(
|
75
|
-
|
76
|
-
:Local => true,
|
77
|
-
|
78
|
-
:Config => false
|
79
|
-
)
|
80
|
-
}
|
81
|
-
|
82
|
-
[" ", "=" "+", "&", "#", "*"].each do |char|
|
83
|
-
assert_raise(Puppet::Network::Handler::FileServerError, "'#{char}' did not throw a failure in fileserver module names") {
|
84
|
-
server.mount("/tmp", "invalid#{char}name")
|
85
|
-
}
|
86
|
-
end
|
87
|
-
end
|
88
|
-
|
89
|
-
# verify that listing the root behaves as expected
|
90
|
-
def test_listroot
|
91
|
-
server = nil
|
92
|
-
testdir, pattern, tmpfile = mktestdir
|
93
|
-
|
94
|
-
file = nil
|
95
|
-
checks = Puppet::Network::Handler.fileserver::CHECKPARAMS
|
96
|
-
|
97
|
-
# and make our fileserver
|
98
|
-
assert_nothing_raised {
|
99
|
-
|
100
|
-
server = Puppet::Network::Handler.fileserver.new(
|
101
|
-
|
102
|
-
:Local => true,
|
103
|
-
|
104
|
-
:Config => false
|
105
|
-
)
|
106
|
-
}
|
107
|
-
|
108
|
-
# mount the testdir
|
109
|
-
assert_nothing_raised {
|
110
|
-
server.mount(testdir, "test")
|
111
|
-
}
|
112
|
-
|
113
|
-
# and verify different iterations of 'root' return the same value
|
114
|
-
list = nil
|
115
|
-
assert_nothing_raised {
|
116
|
-
list = server.list("/test/", :manage, true, false)
|
117
|
-
}
|
118
|
-
|
119
|
-
assert(list =~ pattern)
|
120
|
-
|
121
|
-
assert_nothing_raised {
|
122
|
-
list = server.list("/test", :manage, true, false)
|
123
|
-
}
|
124
|
-
assert(list =~ pattern)
|
125
|
-
|
126
|
-
end
|
127
|
-
|
128
|
-
# test listing individual files
|
129
|
-
def test_getfilelist
|
130
|
-
server = nil
|
131
|
-
testdir, pattern, tmpfile = mktestdir
|
132
|
-
|
133
|
-
file = nil
|
134
|
-
|
135
|
-
assert_nothing_raised {
|
136
|
-
|
137
|
-
server = Puppet::Network::Handler.fileserver.new(
|
138
|
-
|
139
|
-
:Local => true,
|
140
|
-
|
141
|
-
:Config => false
|
142
|
-
)
|
143
|
-
}
|
144
|
-
|
145
|
-
assert_nothing_raised {
|
146
|
-
server.mount(testdir, "test")
|
147
|
-
}
|
148
|
-
|
149
|
-
# get our listing
|
150
|
-
list = nil
|
151
|
-
sfile = "/test/tmpfile"
|
152
|
-
assert_nothing_raised {
|
153
|
-
list = server.list(sfile, :manage, true, false)
|
154
|
-
}
|
155
|
-
|
156
|
-
output = "/\tfile"
|
157
|
-
|
158
|
-
# verify it got listed as a file
|
159
|
-
assert_equal(output, list)
|
160
|
-
|
161
|
-
# verify we got all fields
|
162
|
-
assert(list !~ /\t\t/)
|
163
|
-
|
164
|
-
# verify that we didn't get the directory itself
|
165
|
-
list.split("\n").each { |line|
|
166
|
-
assert(line !~ %r{remotefile})
|
167
|
-
}
|
168
|
-
|
169
|
-
# and then verify that the contents match
|
170
|
-
contents = File.read(tmpfile)
|
171
|
-
|
172
|
-
ret = nil
|
173
|
-
assert_nothing_raised {
|
174
|
-
ret = server.retrieve(sfile)
|
175
|
-
}
|
176
|
-
|
177
|
-
assert_equal(contents, ret)
|
178
|
-
end
|
179
|
-
|
180
|
-
# check that the fileserver is seeing newly created files
|
181
|
-
def test_seenewfiles
|
182
|
-
server = nil
|
183
|
-
testdir, pattern, tmpfile = mktestdir
|
184
|
-
|
185
|
-
|
186
|
-
newfile = File.join(testdir, "newfile")
|
187
|
-
|
188
|
-
# go through the whole schtick again...
|
189
|
-
file = nil
|
190
|
-
checks = Puppet::Network::Handler.fileserver::CHECKPARAMS
|
191
|
-
|
192
|
-
assert_nothing_raised {
|
193
|
-
|
194
|
-
server = Puppet::Network::Handler.fileserver.new(
|
195
|
-
|
196
|
-
:Local => true,
|
197
|
-
|
198
|
-
:Config => false
|
199
|
-
)
|
200
|
-
}
|
201
|
-
|
202
|
-
assert_nothing_raised {
|
203
|
-
server.mount(testdir, "test")
|
204
|
-
}
|
205
|
-
|
206
|
-
list = nil
|
207
|
-
sfile = "/test/"
|
208
|
-
assert_nothing_raised {
|
209
|
-
list = server.list(sfile, :manage, true, false)
|
210
|
-
}
|
211
|
-
|
212
|
-
# create the new file
|
213
|
-
File.open(newfile, "w") { |f|
|
214
|
-
3.times { f.puts rand(100) }
|
215
|
-
}
|
216
|
-
|
217
|
-
newlist = nil
|
218
|
-
assert_nothing_raised {
|
219
|
-
newlist = server.list(sfile, :manage, true, false)
|
220
|
-
}
|
221
|
-
|
222
|
-
# verify the list has changed
|
223
|
-
assert(list != newlist)
|
224
|
-
|
225
|
-
# and verify that we are specifically seeing the new file
|
226
|
-
assert(newlist =~ /newfile/)
|
227
|
-
end
|
228
|
-
|
229
|
-
# verify we can mount /, which is what local file servers will
|
230
|
-
# normally do
|
231
|
-
def test_mountroot
|
232
|
-
server = nil
|
233
|
-
assert_nothing_raised {
|
234
|
-
|
235
|
-
server = Puppet::Network::Handler.fileserver.new(
|
236
|
-
|
237
|
-
:Local => true,
|
238
|
-
|
239
|
-
:Config => false
|
240
|
-
)
|
241
|
-
}
|
242
|
-
|
243
|
-
assert_nothing_raised {
|
244
|
-
server.mount("/", "root")
|
245
|
-
}
|
246
|
-
|
247
|
-
testdir, pattern, tmpfile = mktestdir
|
248
|
-
|
249
|
-
list = nil
|
250
|
-
assert_nothing_raised {
|
251
|
-
list = server.list("/root/#{testdir}", :manage, true, false)
|
252
|
-
}
|
253
|
-
|
254
|
-
assert(list =~ pattern)
|
255
|
-
assert_nothing_raised {
|
256
|
-
list = server.list("/root#{testdir}", :manage, true, false)
|
257
|
-
}
|
258
|
-
|
259
|
-
assert(list =~ pattern)
|
260
|
-
end
|
261
|
-
|
262
|
-
# verify that we're correctly recursing the right number of levels
|
263
|
-
def test_recursionlevels
|
264
|
-
server = nil
|
265
|
-
assert_nothing_raised {
|
266
|
-
|
267
|
-
server = Puppet::Network::Handler.fileserver.new(
|
268
|
-
|
269
|
-
:Local => true,
|
270
|
-
|
271
|
-
:Config => false
|
272
|
-
)
|
273
|
-
}
|
274
|
-
|
275
|
-
# make our deep recursion
|
276
|
-
basedir = File.join(tmpdir, "recurseremotetesting")
|
277
|
-
testdir = "#{basedir}/with/some/sub/directories/for/the/purposes/of/testing"
|
278
|
-
oldfile = File.join(testdir, "oldfile")
|
279
|
-
assert_nothing_raised {
|
280
|
-
system("mkdir -p #{testdir}")
|
281
|
-
File.open(oldfile, "w") { |f|
|
282
|
-
3.times { f.puts rand(100) }
|
283
|
-
}
|
284
|
-
@@tmpfiles << basedir
|
285
|
-
}
|
286
|
-
|
287
|
-
assert_nothing_raised {
|
288
|
-
server.mount(basedir, "test")
|
289
|
-
}
|
290
|
-
|
291
|
-
# get our list
|
292
|
-
list = nil
|
293
|
-
assert_nothing_raised {
|
294
|
-
list = server.list("/test/with", :manage, false, false)
|
295
|
-
}
|
296
|
-
|
297
|
-
# make sure we only got one line, since we're not recursing
|
298
|
-
assert(list !~ /\n/)
|
299
|
-
|
300
|
-
# for each level of recursion, make sure we get the right list
|
301
|
-
[0, 1, 2].each { |num|
|
302
|
-
assert_nothing_raised {
|
303
|
-
list = server.list("/test/with", :manage, num, false)
|
304
|
-
}
|
305
|
-
|
306
|
-
count = 0
|
307
|
-
while list =~ /\n/
|
308
|
-
list.sub!(/\n/, '')
|
309
|
-
count += 1
|
310
|
-
end
|
311
|
-
assert_equal(num, count)
|
312
|
-
}
|
313
|
-
end
|
314
|
-
|
315
|
-
# verify that we're not seeing the dir we ask for; i.e., that our
|
316
|
-
# list is relative to that dir, not it's parent dir
|
317
|
-
def test_listedpath
|
318
|
-
server = nil
|
319
|
-
assert_nothing_raised {
|
320
|
-
|
321
|
-
server = Puppet::Network::Handler.fileserver.new(
|
322
|
-
|
323
|
-
:Local => true,
|
324
|
-
|
325
|
-
:Config => false
|
326
|
-
)
|
327
|
-
}
|
328
|
-
|
329
|
-
|
330
|
-
# create a deep dir
|
331
|
-
basedir = tempfile
|
332
|
-
testdir = "#{basedir}/with/some/sub/directories/for/testing"
|
333
|
-
oldfile = File.join(testdir, "oldfile")
|
334
|
-
assert_nothing_raised {
|
335
|
-
system("mkdir -p #{testdir}")
|
336
|
-
File.open(oldfile, "w") { |f|
|
337
|
-
3.times { f.puts rand(100) }
|
338
|
-
}
|
339
|
-
@@tmpfiles << basedir
|
340
|
-
}
|
341
|
-
|
342
|
-
# mounty mounty
|
343
|
-
assert_nothing_raised {
|
344
|
-
server.mount(basedir, "localhost")
|
345
|
-
}
|
346
|
-
|
347
|
-
list = nil
|
348
|
-
# and then check a few dirs
|
349
|
-
assert_nothing_raised {
|
350
|
-
list = server.list("/localhost/with", :manage, false, false)
|
351
|
-
}
|
352
|
-
|
353
|
-
assert(list !~ /with/)
|
354
|
-
|
355
|
-
assert_nothing_raised {
|
356
|
-
list = server.list("/localhost/with/some/sub", :manage, true, false)
|
357
|
-
}
|
358
|
-
|
359
|
-
assert(list !~ /sub/)
|
360
|
-
end
|
361
|
-
|
362
|
-
# test many dirs, not necessarily very deep
|
363
|
-
def test_widelists
|
364
|
-
server = nil
|
365
|
-
assert_nothing_raised {
|
366
|
-
|
367
|
-
server = Puppet::Network::Handler.fileserver.new(
|
368
|
-
|
369
|
-
:Local => true,
|
370
|
-
|
371
|
-
:Config => false
|
372
|
-
)
|
373
|
-
}
|
374
|
-
|
375
|
-
basedir = tempfile
|
376
|
-
dirs = %w{a set of directories}
|
377
|
-
assert_nothing_raised {
|
378
|
-
Dir.mkdir(basedir)
|
379
|
-
dirs.each { |dir|
|
380
|
-
Dir.mkdir(File.join(basedir, dir))
|
381
|
-
}
|
382
|
-
@@tmpfiles << basedir
|
383
|
-
}
|
384
|
-
|
385
|
-
assert_nothing_raised {
|
386
|
-
server.mount(basedir, "localhost")
|
387
|
-
}
|
388
|
-
|
389
|
-
list = nil
|
390
|
-
assert_nothing_raised {
|
391
|
-
list = server.list("/localhost/", :manage, 1, false)
|
392
|
-
}
|
393
|
-
assert_instance_of(String, list, "Server returned %s instead of string")
|
394
|
-
list = list.split("\n")
|
395
|
-
|
396
|
-
assert_equal(dirs.length + 1, list.length)
|
397
|
-
end
|
398
|
-
|
399
|
-
# verify that 'describe' works as advertised
|
400
|
-
def test_describe
|
401
|
-
server = nil
|
402
|
-
testdir = tstdir
|
403
|
-
files = mktestfiles(testdir)
|
404
|
-
|
405
|
-
file = nil
|
406
|
-
checks = Puppet::Network::Handler.fileserver::CHECKPARAMS
|
407
|
-
|
408
|
-
assert_nothing_raised {
|
409
|
-
|
410
|
-
server = Puppet::Network::Handler.fileserver.new(
|
411
|
-
|
412
|
-
:Local => true,
|
413
|
-
|
414
|
-
:Config => false
|
415
|
-
)
|
416
|
-
}
|
417
|
-
|
418
|
-
assert_nothing_raised {
|
419
|
-
server.mount(testdir, "test")
|
420
|
-
}
|
421
|
-
|
422
|
-
# get our list
|
423
|
-
list = nil
|
424
|
-
sfile = "/test/"
|
425
|
-
assert_nothing_raised {
|
426
|
-
list = server.list(sfile, :manage, true, false)
|
427
|
-
}
|
428
|
-
|
429
|
-
# and describe each file in the list
|
430
|
-
assert_nothing_raised {
|
431
|
-
list.split("\n").each { |line|
|
432
|
-
file, type = line.split("\t")
|
433
|
-
|
434
|
-
desc = server.describe(sfile + file)
|
435
|
-
}
|
436
|
-
}
|
437
|
-
|
438
|
-
# and then make sure we can describe everything that we know is there
|
439
|
-
files.each { |file|
|
440
|
-
assert_describe(sfile, file, server)
|
441
|
-
}
|
442
|
-
|
443
|
-
# And then describe some files that we know aren't there
|
444
|
-
retval = nil
|
445
|
-
assert_nothing_raised("Describing non-existent files raised an error") {
|
446
|
-
retval = server.describe(sfile + "noexisties")
|
447
|
-
}
|
448
|
-
|
449
|
-
assert_equal("", retval, "Description of non-existent files returned a value")
|
450
|
-
|
451
|
-
# Now try to describe some sources that don't even exist
|
452
|
-
retval = nil
|
453
|
-
|
454
|
-
assert_raise(
|
455
|
-
Puppet::Network::Handler::FileServerError,
|
456
|
-
|
457
|
-
"Describing non-existent mount did not raise an error") {
|
458
|
-
retval = server.describe("/notmounted/noexisties")
|
459
|
-
}
|
460
|
-
|
461
|
-
assert_nil(retval, "Description of non-existent mounts returned a value")
|
462
|
-
end
|
463
|
-
|
464
|
-
def test_describe_does_not_fail_when_mount_does_not_find_file
|
465
|
-
server = Puppet::Network::Handler.fileserver.new(:Local => true, :Config => false)
|
466
|
-
|
467
|
-
assert_nothing_raised("Failed when describing missing plugins") do
|
468
|
-
server.describe "/plugins"
|
469
|
-
end
|
470
|
-
end
|
471
|
-
|
472
|
-
# test that our config file is parsing and working as planned
|
473
|
-
def test_configfile
|
474
|
-
server = nil
|
475
|
-
basedir = File.join(tmpdir, "fileserverconfigfiletesting")
|
476
|
-
@@tmpfiles << basedir
|
477
|
-
|
478
|
-
# make some dirs for mounting
|
479
|
-
Dir.mkdir(basedir)
|
480
|
-
mounts = {}
|
481
|
-
%w{thing thus the-se those}.each { |dir|
|
482
|
-
path = File.join(basedir, dir)
|
483
|
-
Dir.mkdir(path)
|
484
|
-
mounts[dir] = mktestfiles(path)
|
485
|
-
|
486
|
-
}
|
487
|
-
|
488
|
-
# create an example file with each of them
|
489
|
-
conffile = tempfile
|
490
|
-
@@tmpfiles << conffile
|
491
|
-
|
492
|
-
File.open(conffile, "w") { |f|
|
493
|
-
f.print "# a test config file
|
494
|
-
|
495
|
-
[thing]
|
496
|
-
path #{basedir}/thing
|
497
|
-
allow 192.168.0.*
|
498
|
-
|
499
|
-
[thus]
|
500
|
-
path #{basedir}/thus
|
501
|
-
allow *.madstop.com, *.kanies.com
|
502
|
-
deny *.sub.madstop.com
|
503
|
-
|
504
|
-
[the-se]
|
505
|
-
path #{basedir}/the-se
|
506
|
-
|
507
|
-
[those]
|
508
|
-
path #{basedir}/those
|
509
|
-
|
510
|
-
"
|
511
|
-
}
|
512
|
-
|
513
|
-
|
514
|
-
# create a server with the file
|
515
|
-
assert_nothing_raised {
|
516
|
-
|
517
|
-
server = Puppet::Network::Handler.fileserver.new(
|
518
|
-
|
519
|
-
:Local => false,
|
520
|
-
|
521
|
-
:Config => conffile
|
522
|
-
)
|
523
|
-
}
|
524
|
-
|
525
|
-
list = nil
|
526
|
-
# run through once with no host/ip info, to verify everything is working
|
527
|
-
mounts.each { |mount, files|
|
528
|
-
mount = "/#{mount}/"
|
529
|
-
assert_nothing_raised {
|
530
|
-
list = server.list(mount, :manage, true, false)
|
531
|
-
}
|
532
|
-
|
533
|
-
assert_nothing_raised {
|
534
|
-
list.split("\n").each { |line|
|
535
|
-
file, type = line.split("\t")
|
536
|
-
|
537
|
-
desc = server.describe(mount + file)
|
538
|
-
}
|
539
|
-
}
|
540
|
-
|
541
|
-
files.each { |f|
|
542
|
-
assert_describe(mount, f, server)
|
543
|
-
}
|
544
|
-
}
|
545
|
-
|
546
|
-
# now let's check that things are being correctly forbidden
|
547
|
-
# this is just a map of names and expected results
|
548
|
-
{
|
549
|
-
"thing" => {
|
550
|
-
:deny => [
|
551
|
-
["hostname.com", "192.168.1.0"],
|
552
|
-
["hostname.com", "192.158.0.0"]
|
553
|
-
],
|
554
|
-
:allow => [
|
555
|
-
["hostname.com", "192.168.0.0"],
|
556
|
-
["hostname.com", "192.168.0.245"],
|
557
|
-
]
|
558
|
-
},
|
559
|
-
"thus" => {
|
560
|
-
:deny => [
|
561
|
-
["hostname.com", "192.168.1.0"],
|
562
|
-
["name.sub.madstop.com", "192.158.0.0"]
|
563
|
-
],
|
564
|
-
:allow => [
|
565
|
-
["luke.kanies.com", "192.168.0.0"],
|
566
|
-
["luke.madstop.com", "192.168.0.245"],
|
567
|
-
]
|
568
|
-
}
|
569
|
-
}.each { |mount, hash|
|
570
|
-
mount = "/#{mount}/"
|
571
|
-
|
572
|
-
# run through the map
|
573
|
-
hash.each { |type, ary|
|
574
|
-
ary.each { |sub|
|
575
|
-
host, ip = sub
|
576
|
-
|
577
|
-
case type
|
578
|
-
when :deny
|
579
|
-
|
580
|
-
assert_raise(
|
581
|
-
Puppet::AuthorizationError,
|
582
|
-
|
583
|
-
"Host #{host}, ip #{ip}, allowed #{mount}") {
|
584
|
-
list = server.list(mount, :manage, true, false, host, ip)
|
585
|
-
}
|
586
|
-
when :allow
|
587
|
-
assert_nothing_raised("Host #{host}, ip #{ip}, denied #{mount}") {
|
588
|
-
list = server.list(mount, :manage, true, false, host, ip)
|
589
|
-
}
|
590
|
-
end
|
591
|
-
}
|
592
|
-
}
|
593
|
-
}
|
594
|
-
|
595
|
-
end
|
596
|
-
|
597
|
-
# Test that we smoothly handle invalid config files
|
598
|
-
def test_configfailures
|
599
|
-
# create an example file with each of them
|
600
|
-
conffile = tempfile
|
601
|
-
|
602
|
-
invalidmounts = {
|
603
|
-
"noexist" => "[noexist]
|
604
|
-
path /this/path/does/not/exist
|
605
|
-
allow 192.168.0.*
|
606
|
-
"
|
607
|
-
}
|
608
|
-
|
609
|
-
invalidconfigs = [
|
610
|
-
"[not valid]
|
611
|
-
path /this/path/does/not/exist
|
612
|
-
allow 192.168.0.*
|
613
|
-
",
|
614
|
-
"[valid]
|
615
|
-
invalidstatement
|
616
|
-
path /etc
|
617
|
-
allow 192.168.0.*
|
618
|
-
",
|
619
|
-
"[valid]
|
620
|
-
allow 192.168.0.*
|
621
|
-
"
|
622
|
-
]
|
623
|
-
|
624
|
-
invalidmounts.each { |mount, text|
|
625
|
-
File.open(conffile, "w") { |f|
|
626
|
-
f.print text
|
627
|
-
}
|
628
|
-
|
629
|
-
|
630
|
-
# create a server with the file
|
631
|
-
server = nil
|
632
|
-
assert_nothing_raised {
|
633
|
-
|
634
|
-
server = Puppet::Network::Handler.fileserver.new(
|
635
|
-
|
636
|
-
:Local => true,
|
637
|
-
|
638
|
-
:Config => conffile
|
639
|
-
)
|
640
|
-
}
|
641
|
-
|
642
|
-
|
643
|
-
assert_raise(
|
644
|
-
Puppet::Network::Handler::FileServerError,
|
645
|
-
|
646
|
-
"Invalid mount was mounted") {
|
647
|
-
server.list(mount, :manage)
|
648
|
-
}
|
649
|
-
}
|
650
|
-
|
651
|
-
invalidconfigs.each_with_index { |text, i|
|
652
|
-
File.open(conffile, "w") { |f|
|
653
|
-
f.print text
|
654
|
-
}
|
655
|
-
|
656
|
-
|
657
|
-
# create a server with the file
|
658
|
-
server = nil
|
659
|
-
|
660
|
-
assert_raise(
|
661
|
-
Puppet::Network::Handler::FileServerError,
|
662
|
-
|
663
|
-
"Invalid config #{i} did not raise error") {
|
664
|
-
|
665
|
-
server = Puppet::Network::Handler.fileserver.new(
|
666
|
-
|
667
|
-
:Local => true,
|
668
|
-
|
669
|
-
:Config => conffile
|
670
|
-
)
|
671
|
-
}
|
672
|
-
}
|
673
|
-
end
|
674
|
-
|
675
|
-
# verify we reread the config file when it changes
|
676
|
-
def test_filereread
|
677
|
-
server = nil
|
678
|
-
|
679
|
-
conffile = tempfile
|
680
|
-
dir = tstdir
|
681
|
-
|
682
|
-
files = mktestfiles(dir)
|
683
|
-
File.open(conffile, "w") { |f|
|
684
|
-
f.print "# a test config file
|
685
|
-
|
686
|
-
[thing]
|
687
|
-
path #{dir}
|
688
|
-
allow test1.domain.com
|
689
|
-
"
|
690
|
-
}
|
691
|
-
|
692
|
-
# Reset the timeout, so we reload faster
|
693
|
-
Puppet[:filetimeout] = 0.5
|
694
|
-
|
695
|
-
# start our server with a fast timeout
|
696
|
-
assert_nothing_raised {
|
697
|
-
|
698
|
-
server = Puppet::Network::Handler.fileserver.new(
|
699
|
-
|
700
|
-
:Local => false,
|
701
|
-
|
702
|
-
:Config => conffile
|
703
|
-
)
|
704
|
-
}
|
705
|
-
|
706
|
-
list = nil
|
707
|
-
assert_nothing_raised {
|
708
|
-
|
709
|
-
list = server.list(
|
710
|
-
"/thing/", :manage, false, false,
|
711
|
-
|
712
|
-
"test1.domain.com", "127.0.0.1")
|
713
|
-
}
|
714
|
-
assert(list != "", "List returned nothing in rereard test")
|
715
|
-
|
716
|
-
assert_raise(Puppet::AuthorizationError, "List allowed invalid host") {
|
717
|
-
list = server.list("/thing/", :manage, false, false, "test2.domain.com", "127.0.0.1")
|
718
|
-
}
|
719
|
-
|
720
|
-
sleep 1
|
721
|
-
File.open(conffile, "w") { |f|
|
722
|
-
f.print "# a test config file
|
723
|
-
|
724
|
-
[thing]
|
725
|
-
path #{dir}
|
726
|
-
allow test2.domain.com
|
727
|
-
"
|
728
|
-
}
|
729
|
-
|
730
|
-
assert_raise(Puppet::AuthorizationError, "List allowed invalid host") {
|
731
|
-
list = server.list("/thing/", :manage, false, false, "test1.domain.com", "127.0.0.1")
|
732
|
-
}
|
733
|
-
|
734
|
-
assert_nothing_raised {
|
735
|
-
list = server.list("/thing/", :manage, false, false, "test2.domain.com", "127.0.0.1")
|
736
|
-
}
|
737
|
-
|
738
|
-
assert(list != "", "List returned nothing in rereard test")
|
739
|
-
|
740
|
-
list = nil
|
741
|
-
end
|
742
|
-
|
743
|
-
# Verify that we get converted to the right kind of string
|
744
|
-
def test_mountstring
|
745
|
-
mount = nil
|
746
|
-
name = "yaytest"
|
747
|
-
path = tmpdir
|
748
|
-
assert_nothing_raised {
|
749
|
-
mount = Puppet::Network::Handler.fileserver::Mount.new(name, path)
|
750
|
-
}
|
751
|
-
|
752
|
-
assert_equal("mount[#{name}]", mount.to_s)
|
753
|
-
end
|
754
|
-
|
755
|
-
def test_servinglinks
|
756
|
-
# Disable the checking, so changes propagate immediately.
|
757
|
-
Puppet[:filetimeout] = -5
|
758
|
-
server = nil
|
759
|
-
source = tempfile
|
760
|
-
file = File.join(source, "file")
|
761
|
-
link = File.join(source, "link")
|
762
|
-
Dir.mkdir(source)
|
763
|
-
File.open(file, "w") { |f| f.puts "yay" }
|
764
|
-
File.symlink(file, link)
|
765
|
-
assert_nothing_raised {
|
766
|
-
|
767
|
-
server = Puppet::Network::Handler.fileserver.new(
|
768
|
-
|
769
|
-
:Local => true,
|
770
|
-
|
771
|
-
:Config => false
|
772
|
-
)
|
773
|
-
}
|
774
|
-
|
775
|
-
assert_nothing_raised {
|
776
|
-
server.mount(source, "mount")
|
777
|
-
}
|
778
|
-
|
779
|
-
# First describe the link when following
|
780
|
-
results = {}
|
781
|
-
assert_nothing_raised {
|
782
|
-
server.describe("/mount/link", :follow).split("\t").zip(
|
783
|
-
Puppet::Network::Handler.fileserver::CHECKPARAMS
|
784
|
-
).each { |v,p| results[p] = v }
|
785
|
-
}
|
786
|
-
|
787
|
-
assert_equal("file", results[:type])
|
788
|
-
|
789
|
-
# Then not
|
790
|
-
results = {}
|
791
|
-
assert_nothing_raised {
|
792
|
-
server.describe("/mount/link", :manage).split("\t").zip(
|
793
|
-
Puppet::Network::Handler.fileserver::CHECKPARAMS
|
794
|
-
).each { |v,p| results[p] = v }
|
795
|
-
}
|
796
|
-
|
797
|
-
assert_equal("link", results[:type])
|
798
|
-
|
799
|
-
results.each { |p,v|
|
800
|
-
assert(v, "#{p} has no value")
|
801
|
-
assert(v != "", "#{p} has no value")
|
802
|
-
}
|
803
|
-
end
|
804
|
-
|
805
|
-
# Test that substitution patterns in the path are exapanded
|
806
|
-
# properly. Disabled, because it was testing too much of the process
|
807
|
-
# and in a non-portable way. This is a thorough enough test that it should
|
808
|
-
# be kept, but it should be done in a way that is clearly portable (e.g.,
|
809
|
-
# no md5 sums of file paths).
|
810
|
-
def test_host_specific
|
811
|
-
client1 = "client1.example.com"
|
812
|
-
client2 = "client2.example.com"
|
813
|
-
ip = "127.0.0.1"
|
814
|
-
|
815
|
-
# Setup a directory hierarchy for the tests
|
816
|
-
fsdir = File.join(tmpdir, "host-specific")
|
817
|
-
@@tmpfiles << fsdir
|
818
|
-
hostdir = File.join(fsdir, "host")
|
819
|
-
fqdndir = File.join(fsdir, "fqdn")
|
820
|
-
client1_hostdir = File.join(hostdir, "client1")
|
821
|
-
client2_fqdndir = File.join(fqdndir, client2)
|
822
|
-
contents = {
|
823
|
-
client1_hostdir => "client1\n",
|
824
|
-
client2_fqdndir => client2 + "\n"
|
825
|
-
}
|
826
|
-
[fsdir, hostdir, fqdndir, client1_hostdir, client2_fqdndir].each { |d| Dir.mkdir(d) }
|
827
|
-
|
828
|
-
[client1_hostdir, client2_fqdndir].each do |d|
|
829
|
-
File.open(File.join(d, "file.txt"), "w") do |f|
|
830
|
-
f.print contents[d]
|
831
|
-
end
|
832
|
-
end
|
833
|
-
conffile = tempfile
|
834
|
-
File.open(conffile, "w") do |f|
|
835
|
-
f.print("
|
836
|
-
[host]
|
837
|
-
path #{hostdir}/%h
|
838
|
-
allow *
|
839
|
-
[fqdn]
|
840
|
-
path #{fqdndir}/%H
|
841
|
-
allow *
|
842
|
-
")
|
843
|
-
end
|
844
|
-
|
845
|
-
server = nil
|
846
|
-
assert_nothing_raised {
|
847
|
-
|
848
|
-
server = Puppet::Network::Handler.fileserver.new(
|
849
|
-
|
850
|
-
:Local => true,
|
851
|
-
|
852
|
-
:Config => conffile
|
853
|
-
)
|
854
|
-
}
|
855
|
-
|
856
|
-
# check that list returns the correct thing for the two clients
|
857
|
-
list = nil
|
858
|
-
sfile = "/host/file.txt"
|
859
|
-
assert_nothing_raised {
|
860
|
-
list = server.list(sfile, :manage, true, false, client1, ip)
|
861
|
-
}
|
862
|
-
assert_equal("/\tfile", list)
|
863
|
-
assert_nothing_raised {
|
864
|
-
list = server.list(sfile, :manage, true, false, client2, ip)
|
865
|
-
}
|
866
|
-
assert_equal("", list)
|
867
|
-
|
868
|
-
sfile = "/fqdn/file.txt"
|
869
|
-
assert_nothing_raised {
|
870
|
-
list = server.list(sfile, :manage, true, false, client1, ip)
|
871
|
-
}
|
872
|
-
assert_equal("", list)
|
873
|
-
assert_nothing_raised {
|
874
|
-
list = server.list(sfile, :manage, true, false, client2, ip)
|
875
|
-
}
|
876
|
-
assert_equal("/\tfile", list)
|
877
|
-
|
878
|
-
# check describe
|
879
|
-
sfile = "/host/file.txt"
|
880
|
-
assert_nothing_raised {
|
881
|
-
list = server.describe(sfile, :manage, client1, ip).split("\t")
|
882
|
-
}
|
883
|
-
assert_equal(5, list.size)
|
884
|
-
assert_equal("file", list[1])
|
885
|
-
md5 = Digest::MD5.hexdigest(contents[client1_hostdir])
|
886
|
-
assert_equal("{md5}#{md5}", list[4])
|
887
|
-
|
888
|
-
assert_nothing_raised {
|
889
|
-
list = server.describe(sfile, :manage, client2, ip).split("\t")
|
890
|
-
}
|
891
|
-
assert_equal([], list)
|
892
|
-
|
893
|
-
sfile = "/fqdn/file.txt"
|
894
|
-
assert_nothing_raised {
|
895
|
-
list = server.describe(sfile, :manage, client1, ip).split("\t")
|
896
|
-
}
|
897
|
-
assert_equal([], list)
|
898
|
-
|
899
|
-
assert_nothing_raised {
|
900
|
-
list = server.describe(sfile, :manage, client2, ip).split("\t")
|
901
|
-
}
|
902
|
-
assert_equal(5, list.size)
|
903
|
-
assert_equal("file", list[1])
|
904
|
-
md5 = Digest::MD5.hexdigest(contents[client2_fqdndir])
|
905
|
-
assert_equal("{md5}#{md5}", list[4])
|
906
|
-
|
907
|
-
# Check retrieve
|
908
|
-
sfile = "/host/file.txt"
|
909
|
-
assert_nothing_raised {
|
910
|
-
list = server.retrieve(sfile, :manage, client1, ip).chomp
|
911
|
-
}
|
912
|
-
assert_equal(contents[client1_hostdir].chomp, list)
|
913
|
-
|
914
|
-
assert_nothing_raised {
|
915
|
-
list = server.retrieve(sfile, :manage, client2, ip).chomp
|
916
|
-
}
|
917
|
-
assert_equal("", list)
|
918
|
-
|
919
|
-
sfile = "/fqdn/file.txt"
|
920
|
-
assert_nothing_raised {
|
921
|
-
list = server.retrieve(sfile, :manage, client1, ip).chomp
|
922
|
-
}
|
923
|
-
assert_equal("", list)
|
924
|
-
|
925
|
-
assert_nothing_raised {
|
926
|
-
list = server.retrieve(sfile, :manage, client2, ip).chomp
|
927
|
-
}
|
928
|
-
assert_equal(contents[client2_fqdndir].chomp, list)
|
929
|
-
end
|
930
|
-
|
931
|
-
# Make sure the 'subdir' method in Mount works.
|
932
|
-
def test_mount_subdir
|
933
|
-
mount = nil
|
934
|
-
base = tempfile
|
935
|
-
Dir.mkdir(base)
|
936
|
-
subdir = File.join(base, "subdir")
|
937
|
-
Dir.mkdir(subdir)
|
938
|
-
[base, subdir].each do |d|
|
939
|
-
File.open(File.join(d, "file"), "w") { |f| f.puts "bazoo" }
|
940
|
-
end
|
941
|
-
mount = mkmount(base)
|
942
|
-
|
943
|
-
assert_equal(base, mount.subdir, "Did not default to base path")
|
944
|
-
assert_equal(subdir, mount.subdir("subdir"), "Did not default to base path")
|
945
|
-
end
|
946
|
-
|
947
|
-
# Make sure mounts get correctly marked expandable or not, depending on
|
948
|
-
# the path.
|
949
|
-
def test_expandable
|
950
|
-
name = "yaytest"
|
951
|
-
dir = tempfile
|
952
|
-
Dir.mkdir(dir)
|
953
|
-
|
954
|
-
mount = mkmount
|
955
|
-
assert_nothing_raised {
|
956
|
-
mount.path = dir
|
957
|
-
}
|
958
|
-
|
959
|
-
assert(! mount.expandable?, "Mount incorrectly called expandable")
|
960
|
-
|
961
|
-
assert_nothing_raised {
|
962
|
-
mount.path = "/dir/a%a"
|
963
|
-
}
|
964
|
-
assert(mount.expandable?, "Mount not called expandable")
|
965
|
-
|
966
|
-
# This isn't a valid replacement pattern, so it should throw an error
|
967
|
-
# because the dir doesn't exist
|
968
|
-
assert_raise(Puppet::Network::Handler::FileServerError) {
|
969
|
-
mount.path = "/dir/a%"
|
970
|
-
}
|
971
|
-
|
972
|
-
# Now send it back to a normal path
|
973
|
-
assert_nothing_raised {
|
974
|
-
mount.path = dir
|
975
|
-
}
|
976
|
-
# Make sure it got reverted
|
977
|
-
assert(! mount.expandable?, "Mount incorrectly called expandable")
|
978
|
-
|
979
|
-
|
980
|
-
end
|
981
|
-
|
982
|
-
def test_mount_expand
|
983
|
-
mount = mkmount
|
984
|
-
|
985
|
-
check = proc do |client, pattern, repl|
|
986
|
-
path = "/my/#{pattern}/file"
|
987
|
-
assert_equal("/my/#{repl}/file", mount.expand(path, client))
|
988
|
-
end
|
989
|
-
|
990
|
-
# Do a round of checks with a fake client
|
991
|
-
client = "host.domain.com"
|
992
|
-
{"%h" => "host", # Short name
|
993
|
-
"%H" => client, # Full name
|
994
|
-
"%d" => "domain.com", # domain
|
995
|
-
"%%" => "%", # escape
|
996
|
-
"%o" => "%o" # other
|
997
|
-
}.each do |pat, repl|
|
998
|
-
result = check.call(client, pat, repl)
|
999
|
-
end
|
1000
|
-
|
1001
|
-
# Now, check that they use Facter info
|
1002
|
-
client = nil
|
1003
|
-
Facter.stubs(:value).with { |v| v.to_s == "hostname" }.returns("myhost")
|
1004
|
-
Facter.stubs(:value).with { |v| v.to_s == "domain" }.returns("mydomain.com")
|
1005
|
-
|
1006
|
-
|
1007
|
-
Facter.stubs(:to_hash).returns(
|
1008
|
-
{
|
1009
|
-
:ipaddress => "127.0.0.1",
|
1010
|
-
:hostname => "myhost",
|
1011
|
-
:domain => "mydomain.com",
|
1012
|
-
|
1013
|
-
})
|
1014
|
-
|
1015
|
-
|
1016
|
-
{"%h" => "myhost", # Short name
|
1017
|
-
"%H" => "myhost.mydomain.com", # Full name
|
1018
|
-
"%d" => "mydomain.com", # domain
|
1019
|
-
"%%" => "%", # escape
|
1020
|
-
"%o" => "%o" # other
|
1021
|
-
}.each do |pat, repl|
|
1022
|
-
check.call(client, pat, repl)
|
1023
|
-
end
|
1024
|
-
|
1025
|
-
end
|
1026
|
-
|
1027
|
-
# Test that the fileserver expands the %h and %d things.
|
1028
|
-
def test_fileserver_expansion
|
1029
|
-
server = nil
|
1030
|
-
assert_nothing_raised {
|
1031
|
-
|
1032
|
-
server = Puppet::Network::Handler.fileserver.new(
|
1033
|
-
|
1034
|
-
:Local => true,
|
1035
|
-
|
1036
|
-
:Config => false
|
1037
|
-
)
|
1038
|
-
}
|
1039
|
-
|
1040
|
-
dir = tempfile
|
1041
|
-
|
1042
|
-
# When mocks attack, part 2
|
1043
|
-
kernel_fact = Facter.value(:kernel)
|
1044
|
-
|
1045
|
-
ip = '127.0.0.1'
|
1046
|
-
|
1047
|
-
|
1048
|
-
Facter.stubs(:to_hash).returns(
|
1049
|
-
{
|
1050
|
-
:kernel => kernel_fact,
|
1051
|
-
:ipaddress => "127.0.0.1",
|
1052
|
-
:hostname => "myhost",
|
1053
|
-
:domain => "mydomain.com",
|
1054
|
-
|
1055
|
-
})
|
1056
|
-
|
1057
|
-
Dir.mkdir(dir)
|
1058
|
-
host = "myhost.mydomain.com"
|
1059
|
-
{
|
1060
|
-
"%H" => "myhost.mydomain.com", "%h" => "myhost", "%d" => "mydomain.com"
|
1061
|
-
}.each do |pattern, string|
|
1062
|
-
file = File.join(dir, string)
|
1063
|
-
mount = File.join(dir, pattern)
|
1064
|
-
File.open(file, "w") do |f| f.puts "yayness: #{string}" end
|
1065
|
-
name = "name"
|
1066
|
-
obj = nil
|
1067
|
-
assert_nothing_raised {
|
1068
|
-
obj = server.mount(mount, name)
|
1069
|
-
}
|
1070
|
-
obj.allow "*"
|
1071
|
-
|
1072
|
-
ret = nil
|
1073
|
-
assert_nothing_raised do
|
1074
|
-
ret = server.list("/name", :manage, false, false, host, ip)
|
1075
|
-
end
|
1076
|
-
|
1077
|
-
assert_equal("/\tfile", ret)
|
1078
|
-
|
1079
|
-
assert_nothing_raised do
|
1080
|
-
ret = server.describe("/name", :manage, host, ip)
|
1081
|
-
end
|
1082
|
-
assert(ret =~ /\tfile\t/, "Did not get valid a description (#{ret.inspect})")
|
1083
|
-
|
1084
|
-
assert_nothing_raised do
|
1085
|
-
ret = server.retrieve("/name", :manage, host, ip)
|
1086
|
-
end
|
1087
|
-
|
1088
|
-
assert_equal(ret, File.read(file))
|
1089
|
-
|
1090
|
-
server.umount(name)
|
1091
|
-
|
1092
|
-
File.unlink(file)
|
1093
|
-
end
|
1094
|
-
end
|
1095
|
-
|
1096
|
-
# Test the default modules fileserving
|
1097
|
-
def test_modules_default
|
1098
|
-
moddir = tempfile
|
1099
|
-
Dir.mkdir(moddir)
|
1100
|
-
mounts = {}
|
1101
|
-
Puppet[:modulepath] = moddir
|
1102
|
-
|
1103
|
-
%w{green red}.each do |name|
|
1104
|
-
path = File::join(moddir, name, Puppet::Module::FILES)
|
1105
|
-
FileUtils::mkdir_p(path)
|
1106
|
-
if name == "green"
|
1107
|
-
file = File::join(path, "test.txt")
|
1108
|
-
File::open(file, "w") { |f| f.print name }
|
1109
|
-
end
|
1110
|
-
end
|
1111
|
-
|
1112
|
-
# We changed modulepath, so we have to clear the environment cache to
|
1113
|
-
# refresh it
|
1114
|
-
Puppet::Node::Environment.current.modules = nil
|
1115
|
-
|
1116
|
-
mods = %w{green red}.map do |name|
|
1117
|
-
Puppet::Module::find(name)
|
1118
|
-
end
|
1119
|
-
|
1120
|
-
conffile = tempfile
|
1121
|
-
|
1122
|
-
File.open(conffile, "w") { |f| f.puts "# a test config file" }
|
1123
|
-
|
1124
|
-
# create a server with the file
|
1125
|
-
server = nil
|
1126
|
-
assert_nothing_raised {
|
1127
|
-
|
1128
|
-
server = Puppet::Network::Handler::FileServer.new(
|
1129
|
-
|
1130
|
-
:Local => false ,
|
1131
|
-
|
1132
|
-
:Config => conffile
|
1133
|
-
)
|
1134
|
-
}
|
1135
|
-
|
1136
|
-
mods.each do |mod|
|
1137
|
-
mount = "/#{mod.name}/"
|
1138
|
-
list = nil
|
1139
|
-
assert_nothing_raised {
|
1140
|
-
list = server.list(mount, :manage, true, false)
|
1141
|
-
}
|
1142
|
-
list = list.split("\n")
|
1143
|
-
if mod.name == "green"
|
1144
|
-
assert_equal(2, list.size)
|
1145
|
-
assert_equal("/\tdirectory", list[0])
|
1146
|
-
assert_equal("/test.txt\tfile", list[1])
|
1147
|
-
else
|
1148
|
-
assert_equal(1, list.size)
|
1149
|
-
assert_equal("/\tdirectory", list[0])
|
1150
|
-
end
|
1151
|
-
|
1152
|
-
assert_nothing_raised("Host 'allow' denied #{mount}") {
|
1153
|
-
server.list(mount, :manage, true, false, 'allow.example.com', "192.168.0.1")
|
1154
|
-
}
|
1155
|
-
end
|
1156
|
-
end
|
1157
|
-
|
1158
|
-
# Test that configuring deny/allow for modules works
|
1159
|
-
def test_modules_config
|
1160
|
-
moddir = tempfile
|
1161
|
-
Dir.mkdir(moddir)
|
1162
|
-
mounts = {}
|
1163
|
-
Puppet[:modulepath] = moddir
|
1164
|
-
|
1165
|
-
path = File::join(moddir, "amod", Puppet::Module::FILES)
|
1166
|
-
file = File::join(path, "test.txt")
|
1167
|
-
FileUtils::mkdir_p(path)
|
1168
|
-
File::open(file, "w") { |f| f.print "Howdy" }
|
1169
|
-
|
1170
|
-
mod = Puppet::Module::find("amod")
|
1171
|
-
|
1172
|
-
conffile = tempfile
|
1173
|
-
@@tmpfiles << conffile
|
1174
|
-
|
1175
|
-
File.open(conffile, "w") { |f|
|
1176
|
-
f.print "# a test config file
|
1177
|
-
[modules]
|
1178
|
-
path #{basedir}/thing
|
1179
|
-
allow 192.168.0.*
|
1180
|
-
"
|
1181
|
-
}
|
1182
|
-
|
1183
|
-
# create a server with the file
|
1184
|
-
server = nil
|
1185
|
-
assert_nothing_raised {
|
1186
|
-
|
1187
|
-
server = Puppet::Network::Handler::FileServer.new(
|
1188
|
-
|
1189
|
-
:Local => false,
|
1190
|
-
|
1191
|
-
:Config => conffile
|
1192
|
-
)
|
1193
|
-
}
|
1194
|
-
|
1195
|
-
list = nil
|
1196
|
-
mount = "/#{mod.name}/"
|
1197
|
-
assert_nothing_raised {
|
1198
|
-
list = server.list(mount, :manage, true, false)
|
1199
|
-
}
|
1200
|
-
|
1201
|
-
assert_nothing_raised {
|
1202
|
-
list.split("\n").each { |line|
|
1203
|
-
file, type = line.split("\t")
|
1204
|
-
server.describe(mount + file)
|
1205
|
-
}
|
1206
|
-
}
|
1207
|
-
|
1208
|
-
assert_describe(mount, file, server)
|
1209
|
-
|
1210
|
-
# now let's check that things are being correctly forbidden
|
1211
|
-
|
1212
|
-
assert_raise(
|
1213
|
-
Puppet::AuthorizationError,
|
1214
|
-
|
1215
|
-
"Host 'deny' allowed #{mount}") {
|
1216
|
-
server.list(mount, :manage, true, false, 'deny.example.com', "192.168.1.1")
|
1217
|
-
}
|
1218
|
-
assert_nothing_raised("Host 'allow' denied #{mount}") {
|
1219
|
-
server.list(mount, :manage, true, false, 'allow.example.com', "192.168.0.1")
|
1220
|
-
}
|
1221
|
-
end
|
1222
|
-
|
1223
|
-
# Make sure we successfully throw errors -- someone ran into this with
|
1224
|
-
# 0.22.4.
|
1225
|
-
def test_failures
|
1226
|
-
# create a server with the file
|
1227
|
-
server = nil
|
1228
|
-
|
1229
|
-
config = tempfile
|
1230
|
-
[
|
1231
|
-
"[this is invalid]\nallow one.two.com", # invalid name
|
1232
|
-
"[valid]\nallow *.testing something.com", # invalid allow
|
1233
|
-
"[valid]\nallow one.two.com\ndeny *.testing something.com", # invalid deny
|
1234
|
-
].each do |failer|
|
1235
|
-
File.open(config, "w") { |f| f.puts failer }
|
1236
|
-
assert_raise(Puppet::Network::Handler::FileServerError, "Did not fail on #{failer.inspect}") {
|
1237
|
-
|
1238
|
-
server = Puppet::Network::Handler::FileServer.new(
|
1239
|
-
|
1240
|
-
:Local => false,
|
1241
|
-
|
1242
|
-
:Config => config
|
1243
|
-
)
|
1244
|
-
}
|
1245
|
-
end
|
1246
|
-
end
|
1247
|
-
|
1248
|
-
def test_can_start_without_configuration
|
1249
|
-
Puppet[:fileserverconfig] = tempfile
|
1250
|
-
assert_nothing_raised("Could not create fileserver when configuration is absent") do
|
1251
|
-
server = Puppet::Network::Handler::FileServer.new(
|
1252
|
-
:Local => false
|
1253
|
-
)
|
1254
|
-
end
|
1255
|
-
end
|
1256
|
-
|
1257
|
-
def test_creates_default_mounts_when_no_configuration_is_available
|
1258
|
-
Puppet[:fileserverconfig] = tempfile
|
1259
|
-
server = Puppet::Network::Handler::FileServer.new(:Local => false)
|
1260
|
-
|
1261
|
-
assert(server.mounted?("plugins"), "Did not create default plugins mount when missing configuration file")
|
1262
|
-
assert(server.mounted?("modules"), "Did not create default modules mount when missing configuration file")
|
1263
|
-
end
|
1264
|
-
end
|
1265
|
-
|
1266
|
-
|