puppet-retrospec 0.8.1 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -0
- data/CHANGELOG.md +4 -0
- data/Gemfile +2 -1
- data/Gemfile.lock +121 -0
- data/README.md +3 -0
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/lib/retrospec-puppet.rb +3 -0
- data/lib/retrospec/{conditional.rb → plugins/v1/plugin/conditional.rb} +1 -1
- data/lib/retrospec/plugins/v1/plugin/helpers.rb +32 -0
- data/lib/retrospec/plugins/v1/plugin/puppet.rb +248 -0
- data/lib/retrospec/{puppet_module.rb → plugins/v1/plugin/puppet_module.rb} +0 -0
- data/lib/retrospec/{resource.rb → plugins/v1/plugin/resource.rb} +1 -1
- data/lib/retrospec/{spec_object.rb → plugins/v1/plugin/spec_object.rb} +17 -18
- data/lib/retrospec/plugins/v1/plugin/template_helpers.rb +72 -0
- data/lib/retrospec/{templates → plugins/v1/plugin/templates}/clone-hook +1 -1
- data/lib/retrospec/{type_code.rb → plugins/v1/plugin/type_code.rb} +2 -2
- data/lib/retrospec/{variable_store.rb → plugins/v1/plugin/variable_store.rb} +1 -1
- data/lib/retrospec/plugins/v1/plugin/version.rb +5 -0
- data/puppet-retrospec.gemspec +529 -18
- data/spec/fixtures/modules/concat/CHANGELOG.md +257 -0
- data/spec/fixtures/modules/concat/CONTRIBUTING.md +220 -0
- data/spec/fixtures/modules/concat/Gemfile +50 -0
- data/spec/fixtures/modules/concat/LICENSE +14 -0
- data/spec/fixtures/modules/concat/README.md +283 -0
- data/spec/fixtures/modules/concat/Rakefile +10 -0
- data/spec/fixtures/modules/concat/checksums.json +54 -0
- data/spec/fixtures/modules/concat/files/concatfragments.rb +153 -0
- data/spec/fixtures/modules/concat/lib/facter/concat_basedir.rb +11 -0
- data/spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_getparam.rb +35 -0
- data/spec/fixtures/modules/concat/lib/puppet/parser/functions/concat_is_bool.rb +22 -0
- data/spec/fixtures/modules/concat/manifests/fragment.pp +133 -0
- data/spec/fixtures/modules/concat/manifests/init.pp +268 -0
- data/spec/fixtures/modules/concat/manifests/setup.pp +64 -0
- data/spec/fixtures/modules/concat/metadata.json +110 -0
- data/spec/fixtures/modules/concat/spec/acceptance/backup_spec.rb +115 -0
- data/spec/fixtures/modules/concat/spec/acceptance/concat_spec.rb +217 -0
- data/spec/fixtures/modules/concat/spec/acceptance/deprecation_warnings_spec.rb +238 -0
- data/spec/fixtures/modules/concat/spec/acceptance/empty_spec.rb +23 -0
- data/spec/fixtures/modules/concat/spec/acceptance/fragment_source_spec.rb +157 -0
- data/spec/fixtures/modules/concat/spec/acceptance/fragments_are_always_replaced_spec.rb +139 -0
- data/spec/fixtures/modules/concat/spec/acceptance/newline_spec.rb +67 -0
- data/spec/fixtures/modules/concat/spec/acceptance/nodesets/aix-71-vcloud.yml +19 -0
- data/spec/fixtures/modules/concat/spec/acceptance/nodesets/centos-59-x64.yml +10 -0
- data/spec/fixtures/modules/concat/spec/acceptance/nodesets/centos-64-x64-pe.yml +12 -0
- data/spec/fixtures/modules/concat/spec/acceptance/nodesets/centos-64-x64.yml +10 -0
- data/spec/fixtures/modules/concat/spec/acceptance/nodesets/centos-65-x64.yml +10 -0
- data/spec/fixtures/modules/concat/spec/acceptance/nodesets/debian-607-x64.yml +10 -0
- data/spec/fixtures/modules/concat/spec/acceptance/nodesets/debian-70rc1-x64.yml +10 -0
- data/spec/fixtures/modules/concat/spec/acceptance/nodesets/debian-73-x64.yml +11 -0
- data/spec/fixtures/modules/concat/spec/acceptance/nodesets/default.yml +10 -0
- data/spec/fixtures/modules/concat/spec/acceptance/nodesets/fedora-18-x64.yml +10 -0
- data/spec/fixtures/modules/concat/spec/acceptance/nodesets/sles-11-x64.yml +10 -0
- data/spec/fixtures/modules/concat/spec/acceptance/nodesets/sles-11sp1-x64.yml +10 -0
- data/spec/fixtures/modules/concat/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml +10 -0
- data/spec/fixtures/modules/concat/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml +10 -0
- data/spec/fixtures/modules/concat/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml +11 -0
- data/spec/fixtures/modules/concat/spec/acceptance/order_spec.rb +123 -0
- data/spec/fixtures/modules/concat/spec/acceptance/quoted_paths_spec.rb +42 -0
- data/spec/fixtures/modules/concat/spec/acceptance/replace_spec.rb +262 -0
- data/spec/fixtures/modules/concat/spec/acceptance/specinfra_stubs.rb +19 -0
- data/spec/fixtures/modules/concat/spec/acceptance/symbolic_name_spec.rb +35 -0
- data/spec/fixtures/modules/concat/spec/acceptance/validation_spec.rb +35 -0
- data/spec/fixtures/modules/concat/spec/acceptance/warn_spec.rb +104 -0
- data/spec/fixtures/modules/concat/spec/spec.opts +6 -0
- data/spec/fixtures/modules/concat/spec/spec_helper.rb +1 -0
- data/spec/fixtures/modules/concat/spec/spec_helper_acceptance.rb +61 -0
- data/spec/fixtures/modules/concat/spec/unit/classes/concat_setup_spec.rb +98 -0
- data/spec/fixtures/modules/concat/spec/unit/defines/concat_fragment_spec.rb +330 -0
- data/spec/fixtures/modules/concat/spec/unit/defines/concat_spec.rb +415 -0
- data/spec/fixtures/modules/concat/spec/unit/facts/concat_basedir_spec.rb +18 -0
- data/spec/fixtures/modules/concat/tests/fragment.pp +19 -0
- data/spec/fixtures/modules/concat/tests/init.pp +7 -0
- data/spec/fixtures/modules/staging/Gemfile +7 -0
- data/spec/fixtures/modules/staging/LICENSE +11 -0
- data/spec/fixtures/modules/staging/README.md +70 -0
- data/spec/fixtures/modules/staging/Rakefile +1 -0
- data/spec/fixtures/modules/staging/Vagrantfile +29 -0
- data/spec/fixtures/modules/staging/checksums.json +37 -0
- data/spec/fixtures/modules/staging/docs/deploy.html +113 -0
- data/spec/fixtures/modules/staging/docs/extract.html +176 -0
- data/spec/fixtures/modules/staging/docs/file.html +178 -0
- data/spec/fixtures/modules/staging/docs/init.html +87 -0
- data/spec/fixtures/modules/staging/files/sample +1 -0
- data/spec/fixtures/modules/staging/files/sample.tar.bz2 +0 -0
- data/spec/fixtures/modules/staging/files/sample.tar.gz +0 -0
- data/spec/fixtures/modules/staging/lib/facter/staging_http_get.rb +29 -0
- data/spec/fixtures/modules/staging/lib/facter/staging_windir.rb +11 -0
- data/spec/fixtures/modules/staging/lib/puppet/parser/functions/scope_defaults.rb +17 -0
- data/spec/fixtures/modules/staging/lib/puppet/parser/functions/staging_parse.rb +36 -0
- data/spec/fixtures/modules/staging/manifests/.init.pp.swp +0 -0
- data/spec/fixtures/modules/staging/manifests/deploy.pp +42 -0
- data/spec/fixtures/modules/staging/manifests/extract.pp +109 -0
- data/spec/fixtures/modules/staging/manifests/file.pp +125 -0
- data/spec/fixtures/modules/staging/manifests/init.pp +31 -0
- data/spec/fixtures/modules/staging/manifests/params.pp +33 -0
- data/spec/fixtures/modules/staging/metadata.json +106 -0
- data/spec/fixtures/modules/staging/spec/defines/staging_deploy_spec.rb +27 -0
- data/spec/fixtures/modules/staging/spec/defines/staging_extract_spec.rb +104 -0
- data/spec/fixtures/modules/staging/spec/defines/staging_file_spec.rb +163 -0
- data/spec/fixtures/modules/staging/spec/fixtures/hiera.yaml +7 -0
- data/spec/fixtures/modules/staging/spec/spec_helper.rb +29 -0
- data/spec/fixtures/modules/staging/spec/unit/puppet/parser/functions/scope_defaults_spec.rb +45 -0
- data/spec/fixtures/modules/staging/spec/unit/puppet/parser/functions/staging_parse_spec.rb +51 -0
- data/spec/fixtures/modules/staging/tests/deploy.pp +4 -0
- data/spec/fixtures/modules/staging/tests/extract.pp +25 -0
- data/spec/fixtures/modules/staging/tests/file.pp +17 -0
- data/spec/fixtures/modules/staging/tests/init.pp +1 -0
- data/spec/fixtures/modules/staging/tests/scope_defaults.pp +7 -0
- data/spec/fixtures/modules/staging/tests/staging_parse.pp +12 -0
- data/spec/fixtures/modules/stdlib/CHANGELOG.md +515 -0
- data/spec/fixtures/modules/stdlib/CONTRIBUTING.md +220 -0
- data/spec/fixtures/modules/stdlib/Gemfile +51 -0
- data/spec/fixtures/modules/stdlib/LICENSE +19 -0
- data/spec/fixtures/modules/stdlib/README.markdown +1042 -0
- data/spec/fixtures/modules/stdlib/README_DEVELOPER.markdown +35 -0
- data/spec/fixtures/modules/stdlib/README_SPECS.markdown +7 -0
- data/spec/fixtures/modules/stdlib/RELEASE_PROCESS.markdown +24 -0
- data/spec/fixtures/modules/stdlib/Rakefile +18 -0
- data/spec/fixtures/modules/stdlib/checksums.json +381 -0
- data/spec/fixtures/modules/stdlib/lib/facter/facter_dot_d.rb +202 -0
- data/spec/fixtures/modules/stdlib/lib/facter/pe_version.rb +53 -0
- data/spec/fixtures/modules/stdlib/lib/facter/puppet_vardir.rb +26 -0
- data/spec/fixtures/modules/stdlib/lib/facter/root_home.rb +32 -0
- data/spec/fixtures/modules/stdlib/lib/facter/util/puppet_settings.rb +21 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/functions/type_of.rb +17 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/abs.rb +36 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/any2array.rb +33 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/assert_private.rb +29 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/base64.rb +37 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/basename.rb +34 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/bool2num.rb +26 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/bool2str.rb +27 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/camelcase.rb +33 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/capitalize.rb +33 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/ceiling.rb +25 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/chomp.rb +34 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/chop.rb +36 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/concat.rb +41 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/count.rb +22 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/deep_merge.rb +44 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/defined_with_params.rb +35 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/delete.rb +49 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/delete_at.rb +49 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/delete_undef_values.rb +34 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/delete_values.rb +26 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/difference.rb +36 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/dirname.rb +21 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/downcase.rb +32 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/empty.rb +27 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/ensure_packages.rb +35 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/ensure_resource.rb +46 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/flatten.rb +33 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/floor.rb +25 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/fqdn_rand_string.rb +34 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/fqdn_rotate.rb +57 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/get_module_path.rb +17 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/getparam.rb +35 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/getvar.rb +29 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/grep.rb +33 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/has_interface_with.rb +68 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/has_ip_address.rb +25 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/has_ip_network.rb +25 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/has_key.rb +28 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/hash.rb +41 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/intersection.rb +34 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/is_array.rb +22 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/is_bool.rb +22 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/is_domain_name.rb +54 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/is_float.rb +30 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/is_function_available.rb +26 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/is_hash.rb +22 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/is_integer.rb +45 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/is_ip_address.rb +32 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/is_mac_address.rb +27 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/is_numeric.rb +75 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/is_string.rb +26 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/join.rb +41 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/join_keys_to_values.rb +47 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/keys.rb +26 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/loadyaml.rb +20 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/lstrip.rb +32 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/max.rb +21 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/member.rb +62 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/merge.rb +34 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/min.rb +21 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/num2bool.rb +43 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/parsejson.rb +24 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/parseyaml.rb +24 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/pick.rb +29 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/pick_default.rb +35 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/prefix.rb +52 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/private.rb +17 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/pw_hash.rb +56 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/range.rb +88 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/reject.rb +31 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/reverse.rb +27 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/rstrip.rb +31 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/shuffle.rb +45 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/size.rb +48 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/sort.rb +27 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/squeeze.rb +36 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/str2bool.rb +46 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/str2saltedsha512.rb +32 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/strftime.rb +107 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/strip.rb +38 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/suffix.rb +45 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/swapcase.rb +38 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/time.rb +49 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/to_bytes.rb +31 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/type.rb +19 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/type3x.rb +51 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/union.rb +34 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/unique.rb +50 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/upcase.rb +45 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/uriescape.rb +34 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/validate_absolute_path.rb +69 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/validate_array.rb +33 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/validate_augeas.rb +83 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/validate_bool.rb +34 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb +63 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/validate_hash.rb +33 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/validate_integer.rb +131 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/validate_ipv4_address.rb +48 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/validate_ipv6_address.rb +49 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/validate_numeric.rb +93 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/validate_re.rb +40 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/validate_slength.rb +71 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/validate_string.rb +38 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/values.rb +39 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/values_at.rb +99 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/parser/functions/zip.rb +39 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/provider/file_line/ruby.rb +97 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/type/anchor.rb +46 -0
- data/spec/fixtures/modules/stdlib/lib/puppet/type/file_line.rb +91 -0
- data/spec/fixtures/modules/stdlib/manifests/init.pp +20 -0
- data/spec/fixtures/modules/stdlib/manifests/stages.pp +43 -0
- data/spec/fixtures/modules/stdlib/metadata.json +113 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/abs_spec.rb +30 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/any2array_spec.rb +49 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/base64_spec.rb +18 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/bool2num_spec.rb +34 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/build_csv.rb +83 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/capitalize_spec.rb +33 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/ceiling_spec.rb +39 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/chomp_spec.rb +21 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/chop_spec.rb +45 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/concat_spec.rb +40 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/count_spec.rb +30 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/deep_merge_spec.rb +20 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/defined_with_params_spec.rb +22 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/delete_at_spec.rb +19 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/delete_spec.rb +19 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/delete_undef_values_spec.rb +19 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/delete_values_spec.rb +25 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/difference_spec.rb +26 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/dirname_spec.rb +42 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/downcase_spec.rb +39 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/empty_spec.rb +39 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/ensure_packages_spec.rb +22 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/ensure_resource_spec.rb +22 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/flatten_spec.rb +39 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/floor_spec.rb +39 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/fqdn_rand_string_spec.rb +60 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/fqdn_rotate_spec.rb +47 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/get_module_path_spec.rb +27 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/getparam_spec.rb +24 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/getvar_spec.rb +26 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/grep_spec.rb +26 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/has_interface_with_spec.rb +54 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/has_ip_address_spec.rb +33 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/has_ip_network_spec.rb +33 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/has_key_spec.rb +41 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/hash_spec.rb +26 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/intersection_spec.rb +27 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/is_array_spec.rb +67 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/is_bool_spec.rb +81 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/is_domain_name_spec.rb +83 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/is_float_spec.rb +86 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/is_function_available_spec.rb +58 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/is_hash_spec.rb +63 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/is_integer_spec.rb +95 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/is_ip_address_spec.rb +80 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/is_mac_address_spec.rb +38 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/is_numeric_spec.rb +95 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/is_string_spec.rb +102 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/join_keys_to_values_spec.rb +24 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/join_spec.rb +26 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/keys_spec.rb +23 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/loadyaml_spec.rb +33 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/lstrip_spec.rb +34 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/max_spec.rb +20 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/member_spec.rb +54 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/merge_spec.rb +23 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/min_spec.rb +20 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/nodesets/centos-59-x64.yml +10 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/nodesets/centos-6-vcloud.yml +15 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/nodesets/centos-64-x64-pe.yml +12 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/nodesets/centos-64-x64.yml +10 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/nodesets/centos-65-x64.yml +10 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/nodesets/default.yml +10 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/nodesets/fedora-18-x64.yml +10 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/nodesets/sles-11-x64.yml +10 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml +10 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml +10 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml +11 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/nodesets/windows-2003-i386.yml +26 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/nodesets/windows-2003-x86_64.yml +26 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/nodesets/windows-2008-x86_64.yml +26 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/nodesets/windows-2008r2-x86_64.yml +26 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/nodesets/windows-2012-x86_64.yml +26 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/nodesets/windows-2012r2-x86_64.yml +26 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/num2bool_spec.rb +76 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/parsejson_spec.rb +34 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/parseyaml_spec.rb +35 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/pick_default_spec.rb +54 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/pick_spec.rb +44 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/prefix_spec.rb +42 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/pw_hash_spec.rb +34 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/range_spec.rb +36 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/reject_spec.rb +42 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/reverse_spec.rb +23 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/rstrip_spec.rb +34 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/shuffle_spec.rb +34 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/size_spec.rb +55 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/sort_spec.rb +34 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/squeeze_spec.rb +47 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/str2bool_spec.rb +31 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/str2saltedsha512_spec.rb +22 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/strftime_spec.rb +22 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/strip_spec.rb +34 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/suffix_spec.rb +42 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/swapcase_spec.rb +22 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/time_spec.rb +36 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/to_bytes_spec.rb +27 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/type_spec.rb +37 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/union_spec.rb +24 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/unique_spec.rb +33 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/unsupported_spec.rb +11 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/upcase_spec.rb +33 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/uriescape_spec.rb +23 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/validate_absolute_path_spec.rb +31 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/validate_array_spec.rb +37 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/validate_augeas_spec.rb +63 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/validate_bool_spec.rb +37 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/validate_cmd_spec.rb +52 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/validate_hash_spec.rb +37 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/validate_ipv4_address_spec.rb +31 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/validate_ipv6_address_spec.rb +31 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/validate_re_spec.rb +47 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/validate_slength_spec.rb +72 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/validate_string_spec.rb +36 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/values_at_spec.rb +73 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/values_spec.rb +35 -0
- data/spec/fixtures/modules/stdlib/spec/acceptance/zip_spec.rb +86 -0
- data/spec/fixtures/modules/stdlib/spec/classes/anchor_spec.rb +30 -0
- data/spec/fixtures/modules/stdlib/spec/functions/abs_spec.rb +25 -0
- data/spec/fixtures/modules/stdlib/spec/functions/any2array_spec.rb +55 -0
- data/spec/fixtures/modules/stdlib/spec/functions/assert_private_spec.rb +55 -0
- data/spec/fixtures/modules/stdlib/spec/functions/base64_spec.rb +34 -0
- data/spec/fixtures/modules/stdlib/spec/functions/bool2num_spec.rb +38 -0
- data/spec/fixtures/modules/stdlib/spec/functions/capitalize_spec.rb +28 -0
- data/spec/fixtures/modules/stdlib/spec/functions/ceiling_spec.rb +39 -0
- data/spec/fixtures/modules/stdlib/spec/functions/chomp_spec.rb +28 -0
- data/spec/fixtures/modules/stdlib/spec/functions/chop_spec.rb +28 -0
- data/spec/fixtures/modules/stdlib/spec/functions/concat_spec.rb +50 -0
- data/spec/fixtures/modules/stdlib/spec/functions/count_spec.rb +31 -0
- data/spec/fixtures/modules/stdlib/spec/functions/deep_merge_spec.rb +105 -0
- data/spec/fixtures/modules/stdlib/spec/functions/defined_with_params_spec.rb +37 -0
- data/spec/fixtures/modules/stdlib/spec/functions/delete_at_spec.rb +25 -0
- data/spec/fixtures/modules/stdlib/spec/functions/delete_spec.rb +61 -0
- data/spec/fixtures/modules/stdlib/spec/functions/delete_undef_values_spec.rb +41 -0
- data/spec/fixtures/modules/stdlib/spec/functions/delete_values_spec.rb +36 -0
- data/spec/fixtures/modules/stdlib/spec/functions/difference_spec.rb +19 -0
- data/spec/fixtures/modules/stdlib/spec/functions/dirname_spec.rb +38 -0
- data/spec/fixtures/modules/stdlib/spec/functions/downcase_spec.rb +33 -0
- data/spec/fixtures/modules/stdlib/spec/functions/empty_spec.rb +32 -0
- data/spec/fixtures/modules/stdlib/spec/functions/ensure_packages_spec.rb +81 -0
- data/spec/fixtures/modules/stdlib/spec/functions/ensure_resource_spec.rb +113 -0
- data/spec/fixtures/modules/stdlib/spec/functions/flatten_spec.rb +27 -0
- data/spec/fixtures/modules/stdlib/spec/functions/floor_spec.rb +39 -0
- data/spec/fixtures/modules/stdlib/spec/functions/fqdn_rand_string_spec.rb +91 -0
- data/spec/fixtures/modules/stdlib/spec/functions/fqdn_rotate_spec.rb +60 -0
- data/spec/fixtures/modules/stdlib/spec/functions/get_module_path_spec.rb +46 -0
- data/spec/fixtures/modules/stdlib/spec/functions/getparam_spec.rb +76 -0
- data/spec/fixtures/modules/stdlib/spec/functions/getvar_spec.rb +37 -0
- data/spec/fixtures/modules/stdlib/spec/functions/grep_spec.rb +19 -0
- data/spec/fixtures/modules/stdlib/spec/functions/has_interface_with_spec.rb +64 -0
- data/spec/fixtures/modules/stdlib/spec/functions/has_ip_address_spec.rb +39 -0
- data/spec/fixtures/modules/stdlib/spec/functions/has_ip_network_spec.rb +36 -0
- data/spec/fixtures/modules/stdlib/spec/functions/has_key_spec.rb +42 -0
- data/spec/fixtures/modules/stdlib/spec/functions/hash_spec.rb +19 -0
- data/spec/fixtures/modules/stdlib/spec/functions/intersection_spec.rb +19 -0
- data/spec/fixtures/modules/stdlib/spec/functions/is_array_spec.rb +29 -0
- data/spec/fixtures/modules/stdlib/spec/functions/is_bool_spec.rb +44 -0
- data/spec/fixtures/modules/stdlib/spec/functions/is_domain_name_spec.rb +81 -0
- data/spec/fixtures/modules/stdlib/spec/functions/is_float_spec.rb +33 -0
- data/spec/fixtures/modules/stdlib/spec/functions/is_function_available.rb +31 -0
- data/spec/fixtures/modules/stdlib/spec/functions/is_hash_spec.rb +29 -0
- data/spec/fixtures/modules/stdlib/spec/functions/is_integer_spec.rb +69 -0
- data/spec/fixtures/modules/stdlib/spec/functions/is_ip_address_spec.rb +39 -0
- data/spec/fixtures/modules/stdlib/spec/functions/is_mac_address_spec.rb +29 -0
- data/spec/fixtures/modules/stdlib/spec/functions/is_numeric_spec.rb +119 -0
- data/spec/fixtures/modules/stdlib/spec/functions/is_string_spec.rb +34 -0
- data/spec/fixtures/modules/stdlib/spec/functions/join_keys_to_values_spec.rb +40 -0
- data/spec/fixtures/modules/stdlib/spec/functions/join_spec.rb +19 -0
- data/spec/fixtures/modules/stdlib/spec/functions/keys_spec.rb +21 -0
- data/spec/fixtures/modules/stdlib/spec/functions/loadyaml_spec.rb +25 -0
- data/spec/fixtures/modules/stdlib/spec/functions/lstrip_spec.rb +28 -0
- data/spec/fixtures/modules/stdlib/spec/functions/max_spec.rb +27 -0
- data/spec/fixtures/modules/stdlib/spec/functions/member_spec.rb +34 -0
- data/spec/fixtures/modules/stdlib/spec/functions/merge_spec.rb +52 -0
- data/spec/fixtures/modules/stdlib/spec/functions/min_spec.rb +27 -0
- data/spec/fixtures/modules/stdlib/spec/functions/num2bool_spec.rb +67 -0
- data/spec/fixtures/modules/stdlib/spec/functions/parsejson_spec.rb +22 -0
- data/spec/fixtures/modules/stdlib/spec/functions/parseyaml_spec.rb +24 -0
- data/spec/fixtures/modules/stdlib/spec/functions/pick_default_spec.rb +58 -0
- data/spec/fixtures/modules/stdlib/spec/functions/pick_spec.rb +34 -0
- data/spec/fixtures/modules/stdlib/spec/functions/prefix_spec.rb +33 -0
- data/spec/fixtures/modules/stdlib/spec/functions/private_spec.rb +60 -0
- data/spec/fixtures/modules/stdlib/spec/functions/pw_hash_spec.rb +96 -0
- data/spec/fixtures/modules/stdlib/spec/functions/range_spec.rb +86 -0
- data/spec/fixtures/modules/stdlib/spec/functions/reject_spec.rb +20 -0
- data/spec/fixtures/modules/stdlib/spec/functions/reverse_spec.rb +28 -0
- data/spec/fixtures/modules/stdlib/spec/functions/rstrip_spec.rb +33 -0
- data/spec/fixtures/modules/stdlib/spec/functions/shuffle_spec.rb +33 -0
- data/spec/fixtures/modules/stdlib/spec/functions/size_spec.rb +24 -0
- data/spec/fixtures/modules/stdlib/spec/functions/sort_spec.rb +24 -0
- data/spec/fixtures/modules/stdlib/spec/functions/squeeze_spec.rb +24 -0
- data/spec/fixtures/modules/stdlib/spec/functions/str2bool_spec.rb +31 -0
- data/spec/fixtures/modules/stdlib/spec/functions/str2saltedsha512_spec.rb +45 -0
- data/spec/fixtures/modules/stdlib/spec/functions/strftime_spec.rb +29 -0
- data/spec/fixtures/modules/stdlib/spec/functions/strip_spec.rb +27 -0
- data/spec/fixtures/modules/stdlib/spec/functions/suffix_spec.rb +27 -0
- data/spec/fixtures/modules/stdlib/spec/functions/swapcase_spec.rb +28 -0
- data/spec/fixtures/modules/stdlib/spec/functions/time_spec.rb +29 -0
- data/spec/fixtures/modules/stdlib/spec/functions/to_bytes_spec.rb +83 -0
- data/spec/fixtures/modules/stdlib/spec/functions/type3x_spec.rb +43 -0
- data/spec/fixtures/modules/stdlib/spec/functions/type_spec.rb +44 -0
- data/spec/fixtures/modules/stdlib/spec/functions/union_spec.rb +19 -0
- data/spec/fixtures/modules/stdlib/spec/functions/unique_spec.rb +33 -0
- data/spec/fixtures/modules/stdlib/spec/functions/upcase_spec.rb +58 -0
- data/spec/fixtures/modules/stdlib/spec/functions/uriescape_spec.rb +40 -0
- data/spec/fixtures/modules/stdlib/spec/functions/validate_absolute_path_spec.rb +104 -0
- data/spec/fixtures/modules/stdlib/spec/functions/validate_array_spec.rb +38 -0
- data/spec/fixtures/modules/stdlib/spec/functions/validate_augeas_spec.rb +103 -0
- data/spec/fixtures/modules/stdlib/spec/functions/validate_bool_spec.rb +51 -0
- data/spec/fixtures/modules/stdlib/spec/functions/validate_cmd_spec.rb +85 -0
- data/spec/fixtures/modules/stdlib/spec/functions/validate_hash_spec.rb +43 -0
- data/spec/fixtures/modules/stdlib/spec/functions/validate_integer_spec.rb +219 -0
- data/spec/fixtures/modules/stdlib/spec/functions/validate_ipv4_address_spec.rb +64 -0
- data/spec/fixtures/modules/stdlib/spec/functions/validate_ipv6_address_spec.rb +67 -0
- data/spec/fixtures/modules/stdlib/spec/functions/validate_numeric_spec.rb +217 -0
- data/spec/fixtures/modules/stdlib/spec/functions/validate_re_spec.rb +77 -0
- data/spec/fixtures/modules/stdlib/spec/functions/validate_slength_spec.rb +67 -0
- data/spec/fixtures/modules/stdlib/spec/functions/validate_string_spec.rb +60 -0
- data/spec/fixtures/modules/stdlib/spec/functions/values_at_spec.rb +38 -0
- data/spec/fixtures/modules/stdlib/spec/functions/values_spec.rb +31 -0
- data/spec/fixtures/modules/stdlib/spec/functions/zip_spec.rb +31 -0
- data/spec/fixtures/modules/stdlib/spec/lib/puppet_spec/compiler.rb +47 -0
- data/spec/fixtures/modules/stdlib/spec/lib/puppet_spec/database.rb +30 -0
- data/spec/fixtures/modules/stdlib/spec/lib/puppet_spec/files.rb +61 -0
- data/spec/fixtures/modules/stdlib/spec/lib/puppet_spec/fixtures.rb +29 -0
- data/spec/fixtures/modules/stdlib/spec/lib/puppet_spec/matchers.rb +121 -0
- data/spec/fixtures/modules/stdlib/spec/lib/puppet_spec/modules.rb +27 -0
- data/spec/fixtures/modules/stdlib/spec/lib/puppet_spec/pops.rb +17 -0
- data/spec/fixtures/modules/stdlib/spec/lib/puppet_spec/scope.rb +15 -0
- data/spec/fixtures/modules/stdlib/spec/lib/puppet_spec/settings.rb +16 -0
- data/spec/fixtures/modules/stdlib/spec/lib/puppet_spec/verbose.rb +10 -0
- data/spec/fixtures/modules/stdlib/spec/monkey_patches/alias_should_to_must.rb +9 -0
- data/spec/fixtures/modules/stdlib/spec/monkey_patches/publicize_methods.rb +11 -0
- data/spec/fixtures/modules/stdlib/spec/spec.opts +6 -0
- data/spec/fixtures/modules/stdlib/spec/spec_helper.rb +34 -0
- data/spec/fixtures/modules/stdlib/spec/spec_helper_acceptance.rb +50 -0
- data/spec/fixtures/modules/stdlib/spec/unit/facter/facter_dot_d_spec.rb +32 -0
- data/spec/fixtures/modules/stdlib/spec/unit/facter/pe_version_spec.rb +76 -0
- data/spec/fixtures/modules/stdlib/spec/unit/facter/root_home_spec.rb +52 -0
- data/spec/fixtures/modules/stdlib/spec/unit/facter/util/puppet_settings_spec.rb +36 -0
- data/spec/fixtures/modules/stdlib/spec/unit/puppet/functions/type_of_spec.rb +33 -0
- data/spec/fixtures/modules/stdlib/spec/unit/puppet/parser/functions/basename_spec.rb +46 -0
- data/spec/fixtures/modules/stdlib/spec/unit/puppet/parser/functions/bool2str_spec.rb +46 -0
- data/spec/fixtures/modules/stdlib/spec/unit/puppet/parser/functions/camelcase_spec.rb +24 -0
- data/spec/fixtures/modules/stdlib/spec/unit/puppet/provider/file_line/ruby_spec.rb +277 -0
- data/spec/fixtures/modules/stdlib/spec/unit/puppet/type/anchor_spec.rb +11 -0
- data/spec/fixtures/modules/stdlib/spec/unit/puppet/type/file_line_spec.rb +70 -0
- data/spec/fixtures/modules/stdlib/tests/file_line.pp +9 -0
- data/spec/fixtures/modules/stdlib/tests/has_interface_with.pp +10 -0
- data/spec/fixtures/modules/stdlib/tests/has_ip_address.pp +3 -0
- data/spec/fixtures/modules/stdlib/tests/has_ip_network.pp +4 -0
- data/spec/fixtures/modules/stdlib/tests/init.pp +1 -0
- data/spec/fixtures/modules/tomcat/.gitignore +8 -0
- data/spec/fixtures/modules/tomcat/.puppet-lint.rc +8 -0
- data/spec/fixtures/modules/tomcat/.travis.yml +14 -0
- data/spec/fixtures/modules/tomcat/CHANGELOG.md +94 -0
- data/spec/fixtures/modules/tomcat/CONTRIBUTING.md +220 -0
- data/spec/fixtures/modules/tomcat/LICENSE +15 -0
- data/spec/fixtures/modules/tomcat/README.markdown +75 -0
- data/spec/fixtures/modules/tomcat/README.md +812 -0
- data/spec/fixtures/modules/tomcat/Vagrantfile +95 -0
- data/spec/fixtures/modules/tomcat/checksums.json +67 -0
- data/spec/fixtures/modules/tomcat/examples/default_install_from_package.pp +13 -0
- data/spec/fixtures/modules/tomcat/examples/default_install_from_source.pp +9 -0
- data/spec/fixtures/modules/tomcat/examples/instance_with_context.pp +20 -0
- data/spec/fixtures/modules/tomcat/examples/instance_with_listener.pp +18 -0
- data/spec/fixtures/modules/tomcat/examples/instance_with_realm.pp +20 -0
- data/spec/fixtures/modules/tomcat/examples/instance_with_role_and_user.pp +23 -0
- data/spec/fixtures/modules/tomcat/examples/jsvc_install_from_source.pp +37 -0
- data/spec/fixtures/modules/tomcat/examples/multiple_instances.pp +38 -0
- data/spec/fixtures/modules/tomcat/manifests/config/server.pp +78 -0
- data/spec/fixtures/modules/tomcat/manifests/config/server/connector.pp +95 -0
- data/spec/fixtures/modules/tomcat/manifests/config/server/context.pp +102 -0
- data/spec/fixtures/modules/tomcat/manifests/config/server/engine.pp +109 -0
- data/spec/fixtures/modules/tomcat/manifests/config/server/host.pp +79 -0
- data/spec/fixtures/modules/tomcat/manifests/config/server/listener.pp +98 -0
- data/spec/fixtures/modules/tomcat/manifests/config/server/realm.pp +104 -0
- data/spec/fixtures/modules/tomcat/manifests/config/server/service.pp +54 -0
- data/spec/fixtures/modules/tomcat/manifests/config/server/tomcat_users.pp +97 -0
- data/spec/fixtures/modules/tomcat/manifests/config/server/valve.pp +77 -0
- data/spec/fixtures/modules/tomcat/manifests/init.pp +71 -0
- data/spec/fixtures/modules/tomcat/manifests/instance.pp +88 -0
- data/spec/fixtures/modules/tomcat/manifests/instance/package.pp +26 -0
- data/spec/fixtures/modules/tomcat/manifests/instance/source.pp +46 -0
- data/spec/fixtures/modules/tomcat/manifests/params.pp +13 -0
- data/spec/fixtures/modules/tomcat/manifests/service.pp +160 -0
- data/spec/fixtures/modules/tomcat/manifests/setenv/entry.pp +52 -0
- data/spec/fixtures/modules/tomcat/manifests/war.pp +80 -0
- data/spec/fixtures/modules/tomcat/metadata.json +74 -0
- data/spec/spec_helper.rb +1 -1
- data/spec/unit/plugin_spec.rb +21 -0
- data/spec/unit/puppet-retrospec_spec.rb +36 -29
- data/spec/unit/resource_spec.rb +0 -1
- data/spec/unit/type_code_spec.rb +0 -1
- metadata +540 -18
- data/bin/retrospec +0 -29
- data/lib/retrospec.rb +0 -205
- data/lib/retrospec/exceptions.rb +0 -4
- data/lib/retrospec/helpers.rb +0 -157
- data/lib/retrospec/version.rb +0 -3
@@ -0,0 +1,54 @@
|
|
1
|
+
#
|
2
|
+
# is_domain_name.rb
|
3
|
+
#
|
4
|
+
|
5
|
+
module Puppet::Parser::Functions
|
6
|
+
newfunction(:is_domain_name, :type => :rvalue, :doc => <<-EOS
|
7
|
+
Returns true if the string passed to this function is a syntactically correct domain name.
|
8
|
+
EOS
|
9
|
+
) do |arguments|
|
10
|
+
|
11
|
+
if (arguments.size != 1) then
|
12
|
+
raise(Puppet::ParseError, "is_domain_name(): Wrong number of arguments "+
|
13
|
+
"given #{arguments.size} for 1")
|
14
|
+
end
|
15
|
+
|
16
|
+
# Only allow string types
|
17
|
+
return false unless arguments[0].is_a?(String)
|
18
|
+
|
19
|
+
domain = arguments[0].dup
|
20
|
+
|
21
|
+
# Limits (rfc1035, 3.1)
|
22
|
+
domain_max_length=255
|
23
|
+
label_min_length=1
|
24
|
+
label_max_length=63
|
25
|
+
|
26
|
+
# Allow ".", it is the top level domain
|
27
|
+
return true if domain == '.'
|
28
|
+
|
29
|
+
# Remove the final dot, if present.
|
30
|
+
domain.chomp!('.')
|
31
|
+
|
32
|
+
# Check the whole domain
|
33
|
+
return false if domain.empty?
|
34
|
+
return false if domain.length > domain_max_length
|
35
|
+
|
36
|
+
# The top level domain must be alphabetic if there are multiple labels.
|
37
|
+
# See rfc1123, 2.1
|
38
|
+
return false if domain.include? '.' and not /\.[A-Za-z]+$/.match(domain)
|
39
|
+
|
40
|
+
# Check each label in the domain
|
41
|
+
labels = domain.split('.')
|
42
|
+
vlabels = labels.each do |label|
|
43
|
+
break if label.length < label_min_length
|
44
|
+
break if label.length > label_max_length
|
45
|
+
break if label[-1..-1] == '-'
|
46
|
+
break if label[0..0] == '-'
|
47
|
+
break unless /^[a-z\d-]+$/i.match(label)
|
48
|
+
end
|
49
|
+
return vlabels == labels
|
50
|
+
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
# vim: set ts=2 sw=2 et :
|
@@ -0,0 +1,30 @@
|
|
1
|
+
#
|
2
|
+
# is_float.rb
|
3
|
+
#
|
4
|
+
|
5
|
+
module Puppet::Parser::Functions
|
6
|
+
newfunction(:is_float, :type => :rvalue, :doc => <<-EOS
|
7
|
+
Returns true if the variable passed to this function is a float.
|
8
|
+
EOS
|
9
|
+
) do |arguments|
|
10
|
+
|
11
|
+
if (arguments.size != 1) then
|
12
|
+
raise(Puppet::ParseError, "is_float(): Wrong number of arguments "+
|
13
|
+
"given #{arguments.size} for 1")
|
14
|
+
end
|
15
|
+
|
16
|
+
value = arguments[0]
|
17
|
+
|
18
|
+
# Only allow Numeric or String types
|
19
|
+
return false unless value.is_a?(Numeric) or value.is_a?(String)
|
20
|
+
|
21
|
+
if value != value.to_f.to_s and !value.is_a? Float then
|
22
|
+
return false
|
23
|
+
else
|
24
|
+
return true
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
# vim: set ts=2 sw=2 et :
|
@@ -0,0 +1,26 @@
|
|
1
|
+
#
|
2
|
+
# is_function_available.rb
|
3
|
+
#
|
4
|
+
|
5
|
+
module Puppet::Parser::Functions
|
6
|
+
newfunction(:is_function_available, :type => :rvalue, :doc => <<-EOS
|
7
|
+
This function accepts a string as an argument, determines whether the
|
8
|
+
Puppet runtime has access to a function by that name. It returns a
|
9
|
+
true if the function exists, false if not.
|
10
|
+
EOS
|
11
|
+
) do |arguments|
|
12
|
+
|
13
|
+
if (arguments.size != 1) then
|
14
|
+
raise(Puppet::ParseError, "is_function_available?(): Wrong number of arguments "+
|
15
|
+
"given #{arguments.size} for 1")
|
16
|
+
end
|
17
|
+
|
18
|
+
# Only allow String types
|
19
|
+
return false unless arguments[0].is_a?(String)
|
20
|
+
|
21
|
+
function = Puppet::Parser::Functions.function(arguments[0].to_sym)
|
22
|
+
function.is_a?(String) and not function.empty?
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
# vim: set ts=2 sw=2 et :
|
@@ -0,0 +1,22 @@
|
|
1
|
+
#
|
2
|
+
# is_hash.rb
|
3
|
+
#
|
4
|
+
|
5
|
+
module Puppet::Parser::Functions
|
6
|
+
newfunction(:is_hash, :type => :rvalue, :doc => <<-EOS
|
7
|
+
Returns true if the variable passed to this function is a hash.
|
8
|
+
EOS
|
9
|
+
) do |arguments|
|
10
|
+
|
11
|
+
raise(Puppet::ParseError, "is_hash(): Wrong number of arguments " +
|
12
|
+
"given (#{arguments.size} for 1)") if arguments.size != 1
|
13
|
+
|
14
|
+
type = arguments[0]
|
15
|
+
|
16
|
+
result = type.is_a?(Hash)
|
17
|
+
|
18
|
+
return result
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
# vim: set ts=2 sw=2 et :
|
@@ -0,0 +1,45 @@
|
|
1
|
+
#
|
2
|
+
# is_integer.rb
|
3
|
+
#
|
4
|
+
|
5
|
+
module Puppet::Parser::Functions
|
6
|
+
newfunction(:is_integer, :type => :rvalue, :doc => <<-EOS
|
7
|
+
Returns true if the variable passed to this function is an Integer or
|
8
|
+
a decimal (base 10) integer in String form. The string may
|
9
|
+
start with a '-' (minus). A value of '0' is allowed, but a leading '0' digit may not
|
10
|
+
be followed by other digits as this indicates that the value is octal (base 8).
|
11
|
+
|
12
|
+
If given any other argument `false` is returned.
|
13
|
+
EOS
|
14
|
+
) do |arguments|
|
15
|
+
|
16
|
+
if (arguments.size != 1) then
|
17
|
+
raise(Puppet::ParseError, "is_integer(): Wrong number of arguments "+
|
18
|
+
"given #{arguments.size} for 1")
|
19
|
+
end
|
20
|
+
|
21
|
+
value = arguments[0]
|
22
|
+
|
23
|
+
# Regex is taken from the lexer of puppet
|
24
|
+
# puppet/pops/parser/lexer.rb but modified to match also
|
25
|
+
# negative values and disallow numbers prefixed with multiple
|
26
|
+
# 0's
|
27
|
+
#
|
28
|
+
# TODO these parameter should be a constant but I'm not sure
|
29
|
+
# if there is no risk to declare it inside of the module
|
30
|
+
# Puppet::Parser::Functions
|
31
|
+
|
32
|
+
# Integer numbers like
|
33
|
+
# -1234568981273
|
34
|
+
# 47291
|
35
|
+
numeric = %r{^-?(?:(?:[1-9]\d*)|0)$}
|
36
|
+
|
37
|
+
if value.is_a? Integer or (value.is_a? String and value.match numeric)
|
38
|
+
return true
|
39
|
+
else
|
40
|
+
return false
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
# vim: set ts=2 sw=2 et :
|
@@ -0,0 +1,32 @@
|
|
1
|
+
#
|
2
|
+
# is_ip_address.rb
|
3
|
+
#
|
4
|
+
|
5
|
+
module Puppet::Parser::Functions
|
6
|
+
newfunction(:is_ip_address, :type => :rvalue, :doc => <<-EOS
|
7
|
+
Returns true if the string passed to this function is a valid IP address.
|
8
|
+
EOS
|
9
|
+
) do |arguments|
|
10
|
+
|
11
|
+
require 'ipaddr'
|
12
|
+
|
13
|
+
if (arguments.size != 1) then
|
14
|
+
raise(Puppet::ParseError, "is_ip_address(): Wrong number of arguments "+
|
15
|
+
"given #{arguments.size} for 1")
|
16
|
+
end
|
17
|
+
|
18
|
+
begin
|
19
|
+
ip = IPAddr.new(arguments[0])
|
20
|
+
rescue ArgumentError
|
21
|
+
return false
|
22
|
+
end
|
23
|
+
|
24
|
+
if ip.ipv4? or ip.ipv6? then
|
25
|
+
return true
|
26
|
+
else
|
27
|
+
return false
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
# vim: set ts=2 sw=2 et :
|
@@ -0,0 +1,27 @@
|
|
1
|
+
#
|
2
|
+
# is_mac_address.rb
|
3
|
+
#
|
4
|
+
|
5
|
+
module Puppet::Parser::Functions
|
6
|
+
newfunction(:is_mac_address, :type => :rvalue, :doc => <<-EOS
|
7
|
+
Returns true if the string passed to this function is a valid mac address.
|
8
|
+
EOS
|
9
|
+
) do |arguments|
|
10
|
+
|
11
|
+
if (arguments.size != 1) then
|
12
|
+
raise(Puppet::ParseError, "is_mac_address(): Wrong number of arguments "+
|
13
|
+
"given #{arguments.size} for 1")
|
14
|
+
end
|
15
|
+
|
16
|
+
mac = arguments[0]
|
17
|
+
|
18
|
+
if /^[a-fA-F0-9]{1,2}:[a-fA-F0-9]{1,2}:[a-fA-F0-9]{1,2}:[a-fA-F0-9]{1,2}:[a-fA-F0-9]{1,2}:[a-fA-F0-9]{1,2}$/.match(mac) then
|
19
|
+
return true
|
20
|
+
else
|
21
|
+
return false
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
# vim: set ts=2 sw=2 et :
|
@@ -0,0 +1,75 @@
|
|
1
|
+
#
|
2
|
+
# is_numeric.rb
|
3
|
+
#
|
4
|
+
|
5
|
+
module Puppet::Parser::Functions
|
6
|
+
newfunction(:is_numeric, :type => :rvalue, :doc => <<-EOS
|
7
|
+
Returns true if the given argument is a Numeric (Integer or Float),
|
8
|
+
or a String containing either a valid integer in decimal base 10 form, or
|
9
|
+
a valid floating point string representation.
|
10
|
+
|
11
|
+
The function recognizes only decimal (base 10) integers and float but not
|
12
|
+
integers in hex (base 16) or octal (base 8) form.
|
13
|
+
|
14
|
+
The string representation may start with a '-' (minus). If a decimal '.' is used,
|
15
|
+
it must be followed by at least one digit.
|
16
|
+
|
17
|
+
Valid examples:
|
18
|
+
|
19
|
+
77435
|
20
|
+
10e-12
|
21
|
+
-8475
|
22
|
+
0.2343
|
23
|
+
-23.561e3
|
24
|
+
EOS
|
25
|
+
) do |arguments|
|
26
|
+
|
27
|
+
if (arguments.size != 1) then
|
28
|
+
raise(Puppet::ParseError, "is_numeric(): Wrong number of arguments "+
|
29
|
+
"given #{arguments.size} for 1")
|
30
|
+
end
|
31
|
+
|
32
|
+
value = arguments[0]
|
33
|
+
|
34
|
+
# Regex is taken from the lexer of puppet
|
35
|
+
# puppet/pops/parser/lexer.rb but modified to match also
|
36
|
+
# negative values and disallow invalid octal numbers or
|
37
|
+
# numbers prefixed with multiple 0's (except in hex numbers)
|
38
|
+
#
|
39
|
+
# TODO these parameters should be constants but I'm not sure
|
40
|
+
# if there is no risk to declare them inside of the module
|
41
|
+
# Puppet::Parser::Functions
|
42
|
+
|
43
|
+
# TODO decide if this should be used
|
44
|
+
# HEX numbers like
|
45
|
+
# 0xaa230F
|
46
|
+
# 0X1234009C
|
47
|
+
# 0x0012
|
48
|
+
# -12FcD
|
49
|
+
#numeric_hex = %r{^-?0[xX][0-9A-Fa-f]+$}
|
50
|
+
|
51
|
+
# TODO decide if this should be used
|
52
|
+
# OCTAL numbers like
|
53
|
+
# 01234567
|
54
|
+
# -045372
|
55
|
+
#numeric_oct = %r{^-?0[1-7][0-7]*$}
|
56
|
+
|
57
|
+
# Integer/Float numbers like
|
58
|
+
# -0.1234568981273
|
59
|
+
# 47291
|
60
|
+
# 42.12345e-12
|
61
|
+
numeric = %r{^-?(?:(?:[1-9]\d*)|0)(?:\.\d+)?(?:[eE]-?\d+)?$}
|
62
|
+
|
63
|
+
if value.is_a? Numeric or (value.is_a? String and (
|
64
|
+
value.match(numeric) #or
|
65
|
+
# value.match(numeric_hex) or
|
66
|
+
# value.match(numeric_oct)
|
67
|
+
))
|
68
|
+
return true
|
69
|
+
else
|
70
|
+
return false
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
# vim: set ts=2 sw=2 et :
|
@@ -0,0 +1,26 @@
|
|
1
|
+
#
|
2
|
+
# is_string.rb
|
3
|
+
#
|
4
|
+
|
5
|
+
module Puppet::Parser::Functions
|
6
|
+
newfunction(:is_string, :type => :rvalue, :doc => <<-EOS
|
7
|
+
Returns true if the variable passed to this function is a string.
|
8
|
+
EOS
|
9
|
+
) do |arguments|
|
10
|
+
|
11
|
+
raise(Puppet::ParseError, "is_string(): Wrong number of arguments " +
|
12
|
+
"given (#{arguments.size} for 1)") if arguments.size < 1
|
13
|
+
|
14
|
+
type = arguments[0]
|
15
|
+
|
16
|
+
result = type.is_a?(String)
|
17
|
+
|
18
|
+
if result and (type == type.to_f.to_s or type == type.to_i.to_s) then
|
19
|
+
return false
|
20
|
+
end
|
21
|
+
|
22
|
+
return result
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
# vim: set ts=2 sw=2 et :
|
@@ -0,0 +1,41 @@
|
|
1
|
+
#
|
2
|
+
# join.rb
|
3
|
+
#
|
4
|
+
|
5
|
+
module Puppet::Parser::Functions
|
6
|
+
newfunction(:join, :type => :rvalue, :doc => <<-EOS
|
7
|
+
This function joins an array into a string using a separator.
|
8
|
+
|
9
|
+
*Examples:*
|
10
|
+
|
11
|
+
join(['a','b','c'], ",")
|
12
|
+
|
13
|
+
Would result in: "a,b,c"
|
14
|
+
EOS
|
15
|
+
) do |arguments|
|
16
|
+
|
17
|
+
# Technically we support two arguments but only first is mandatory ...
|
18
|
+
raise(Puppet::ParseError, "join(): Wrong number of arguments " +
|
19
|
+
"given (#{arguments.size} for 1)") if arguments.size < 1
|
20
|
+
|
21
|
+
array = arguments[0]
|
22
|
+
|
23
|
+
unless array.is_a?(Array)
|
24
|
+
raise(Puppet::ParseError, 'join(): Requires array to work with')
|
25
|
+
end
|
26
|
+
|
27
|
+
suffix = arguments[1] if arguments[1]
|
28
|
+
|
29
|
+
if suffix
|
30
|
+
unless suffix.is_a?(String)
|
31
|
+
raise(Puppet::ParseError, 'join(): Requires string to work with')
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
result = suffix ? array.join(suffix) : array.join
|
36
|
+
|
37
|
+
return result
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
# vim: set ts=2 sw=2 et :
|
@@ -0,0 +1,47 @@
|
|
1
|
+
#
|
2
|
+
# join.rb
|
3
|
+
#
|
4
|
+
|
5
|
+
module Puppet::Parser::Functions
|
6
|
+
newfunction(:join_keys_to_values, :type => :rvalue, :doc => <<-EOS
|
7
|
+
This function joins each key of a hash to that key's corresponding value with a
|
8
|
+
separator. Keys and values are cast to strings. The return value is an array in
|
9
|
+
which each element is one joined key/value pair.
|
10
|
+
|
11
|
+
*Examples:*
|
12
|
+
|
13
|
+
join_keys_to_values({'a'=>1,'b'=>2}, " is ")
|
14
|
+
|
15
|
+
Would result in: ["a is 1","b is 2"]
|
16
|
+
EOS
|
17
|
+
) do |arguments|
|
18
|
+
|
19
|
+
# Validate the number of arguments.
|
20
|
+
if arguments.size != 2
|
21
|
+
raise(Puppet::ParseError, "join_keys_to_values(): Takes exactly two " +
|
22
|
+
"arguments, but #{arguments.size} given.")
|
23
|
+
end
|
24
|
+
|
25
|
+
# Validate the first argument.
|
26
|
+
hash = arguments[0]
|
27
|
+
if not hash.is_a?(Hash)
|
28
|
+
raise(TypeError, "join_keys_to_values(): The first argument must be a " +
|
29
|
+
"hash, but a #{hash.class} was given.")
|
30
|
+
end
|
31
|
+
|
32
|
+
# Validate the second argument.
|
33
|
+
separator = arguments[1]
|
34
|
+
if not separator.is_a?(String)
|
35
|
+
raise(TypeError, "join_keys_to_values(): The second argument must be a " +
|
36
|
+
"string, but a #{separator.class} was given.")
|
37
|
+
end
|
38
|
+
|
39
|
+
# Join the keys to their values.
|
40
|
+
hash.map do |k,v|
|
41
|
+
String(k) + separator + String(v)
|
42
|
+
end
|
43
|
+
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
# vim: set ts=2 sw=2 et :
|
@@ -0,0 +1,26 @@
|
|
1
|
+
#
|
2
|
+
# keys.rb
|
3
|
+
#
|
4
|
+
|
5
|
+
module Puppet::Parser::Functions
|
6
|
+
newfunction(:keys, :type => :rvalue, :doc => <<-EOS
|
7
|
+
Returns the keys of a hash as an array.
|
8
|
+
EOS
|
9
|
+
) do |arguments|
|
10
|
+
|
11
|
+
raise(Puppet::ParseError, "keys(): Wrong number of arguments " +
|
12
|
+
"given (#{arguments.size} for 1)") if arguments.size < 1
|
13
|
+
|
14
|
+
hash = arguments[0]
|
15
|
+
|
16
|
+
unless hash.is_a?(Hash)
|
17
|
+
raise(Puppet::ParseError, 'keys(): Requires hash to work with')
|
18
|
+
end
|
19
|
+
|
20
|
+
result = hash.keys
|
21
|
+
|
22
|
+
return result
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
# vim: set ts=2 sw=2 et :
|