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,13 @@
|
|
1
|
+
# Class: tomcat::params
|
2
|
+
#
|
3
|
+
# This class manages Tomcat parameters.
|
4
|
+
#
|
5
|
+
# Parameters:
|
6
|
+
# - $catalina_home is the root of the Tomcat installation.
|
7
|
+
# - The $user Tomcat runs as.
|
8
|
+
# - The $group Tomcat runs as.
|
9
|
+
class tomcat::params {
|
10
|
+
$catalina_home = '/opt/apache-tomcat'
|
11
|
+
$user = 'tomcat'
|
12
|
+
$group = 'tomcat'
|
13
|
+
}
|
@@ -0,0 +1,160 @@
|
|
1
|
+
# Definition: tomcat::service
|
2
|
+
#
|
3
|
+
# Service management for Tomcat.
|
4
|
+
#
|
5
|
+
# Parameters:
|
6
|
+
# - $catalina_home is the root of the Tomcat installation.
|
7
|
+
# - $catalina_base is the base directory for the Tomcat installation.
|
8
|
+
# - Whether or not to $use_jsvc for service management. Boolean defaulting to
|
9
|
+
# false. If both $use_jsvc and $use_init are false,
|
10
|
+
# $CATALINA_BASE/bin/catalina.sh start and $CATALIN/A_BASE/bin/catalina.sh
|
11
|
+
# stop are used for service management.
|
12
|
+
# - If using jsvc, optionally set java_home. Has no affect unless
|
13
|
+
# $use_jsvc = true.
|
14
|
+
# - $service_ensure is passed on to the service resource.
|
15
|
+
# - $service_enable specifies whether the tomcat service should be enabled on
|
16
|
+
# on boot. Valid options are 'true' or 'false'. Defaults to 'undef', will be
|
17
|
+
# programmatically set to 'true' if $use_init is true AND
|
18
|
+
# $service_ensure == 'running'
|
19
|
+
# - Whether or not to $use_init for service management. Boolean defaulting to
|
20
|
+
# false. If both $use_jsvc and $use_init are false,
|
21
|
+
# $CATALINA_BASE/bin/catalina.sh start and $CATALIN/A_BASE/bin/catalina.sh
|
22
|
+
# stop are used for service management.
|
23
|
+
# - The $service_name to use when $use_init is true.
|
24
|
+
# - The $start_command to use for the service
|
25
|
+
# - The $stop_command to use for the service
|
26
|
+
define tomcat::service (
|
27
|
+
$catalina_home = undef,
|
28
|
+
$catalina_base = undef,
|
29
|
+
$use_jsvc = false,
|
30
|
+
$java_home = undef,
|
31
|
+
$service_ensure = running,
|
32
|
+
$service_enable = undef,
|
33
|
+
$use_init = false,
|
34
|
+
$service_name = undef,
|
35
|
+
$start_command = undef,
|
36
|
+
$stop_command = undef,
|
37
|
+
) {
|
38
|
+
|
39
|
+
validate_bool($use_jsvc)
|
40
|
+
validate_bool($use_init)
|
41
|
+
|
42
|
+
if $use_jsvc and $use_init {
|
43
|
+
fail('Only one of $use_jsvc and $use_init can be set to true')
|
44
|
+
}
|
45
|
+
|
46
|
+
if $use_init and ! $service_name {
|
47
|
+
fail('$service_name must be specified when $use_init is set to true')
|
48
|
+
}
|
49
|
+
|
50
|
+
if $service_enable != undef and ! $use_init {
|
51
|
+
warning('$use_init must be set to true when $service_enable is set')
|
52
|
+
}
|
53
|
+
|
54
|
+
if $use_init and ($catalina_home or $catalina_base) {
|
55
|
+
warning('$catalina_home and $catalina_base have no affect when $use_init = true')
|
56
|
+
}
|
57
|
+
|
58
|
+
if $java_home and ! $use_jsvc {
|
59
|
+
warning('$java_home has no affect unless $use_jsvc = true')
|
60
|
+
}
|
61
|
+
|
62
|
+
if $java_home and $start_command {
|
63
|
+
warning('$java_home is used in the $start_command, so this may not work as planned')
|
64
|
+
}
|
65
|
+
|
66
|
+
if ! $catalina_home {
|
67
|
+
$_catalina_home = $::tomcat::catalina_home
|
68
|
+
} else {
|
69
|
+
$_catalina_home = $catalina_home
|
70
|
+
}
|
71
|
+
|
72
|
+
if ! $catalina_base {
|
73
|
+
$_catalina_base = $::tomcat::catalina_home
|
74
|
+
} else {
|
75
|
+
$_catalina_base = $catalina_base
|
76
|
+
}
|
77
|
+
|
78
|
+
if $use_jsvc {
|
79
|
+
if $java_home {
|
80
|
+
$_jsvc_home = "-home ${java_home} "
|
81
|
+
} else {
|
82
|
+
$_jsvc_home = undef
|
83
|
+
}
|
84
|
+
$_service_name = "tomcat-${name}"
|
85
|
+
$_hasstatus = false
|
86
|
+
$_hasrestart = false
|
87
|
+
$_start = $start_command ? {
|
88
|
+
undef => "export CATALINA_HOME=${_catalina_home}; export CATALINA_BASE=${_catalina_base};
|
89
|
+
\$CATALINA_BASE/bin/jsvc \
|
90
|
+
${_jsvc_home}-user ${::tomcat::user} \
|
91
|
+
-classpath \$CATALINA_BASE/bin/bootstrap.jar:\$CATALINA_BASE/bin/tomcat-juli.jar \
|
92
|
+
-outfile \$CATALINA_BASE/logs/catalina.out \
|
93
|
+
-errfile \$CATALINA_BASE/logs/catalina.err \
|
94
|
+
-pidfile \$CATALINA_BASE/logs/jsvc.pid \
|
95
|
+
-Dcatalina.home=\$CATALINA_HOME \
|
96
|
+
-Dcatalina.base=\$CATALINA_BASE \
|
97
|
+
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager \
|
98
|
+
-Djava.util.logging.config.file=\$CATALINA_BASE/conf/logging.properties \
|
99
|
+
org.apache.catalina.startup.Bootstrap",
|
100
|
+
default => $start_command,
|
101
|
+
}
|
102
|
+
$_stop = $stop_command ? {
|
103
|
+
undef => "export CATALINA_HOME=${_catalina_home}; export CATALINA_BASE=${_catalina_base};
|
104
|
+
\$CATALINA_BASE/bin/jsvc \
|
105
|
+
-pidfile \$CATALINA_BASE/logs/jsvc.pid \
|
106
|
+
-stop org.apache.catalina.startup.Bootstrap",
|
107
|
+
default => $stop_command,
|
108
|
+
}
|
109
|
+
$_status = "ps p `cat ${_catalina_base}/logs/jsvc.pid` > /dev/null"
|
110
|
+
$_provider = 'base'
|
111
|
+
} elsif $use_init {
|
112
|
+
$_service_name = $service_name
|
113
|
+
$_hasstatus = true
|
114
|
+
$_hasrestart = true
|
115
|
+
$_start = $start_command
|
116
|
+
$_stop = $stop_command
|
117
|
+
$_status = undef
|
118
|
+
$_provider = undef
|
119
|
+
} else {
|
120
|
+
$_service_name = "tomcat-${name}"
|
121
|
+
$_hasstatus = false
|
122
|
+
$_hasrestart = false
|
123
|
+
$_start = $start_command ? {
|
124
|
+
undef => "su -s /bin/bash -c '${_catalina_base}/bin/catalina.sh start' ${::tomcat::user}",
|
125
|
+
default => $start_command
|
126
|
+
}
|
127
|
+
$_stop = $stop_command ? {
|
128
|
+
undef => "su -s /bin/bash -c '${_catalina_base}/bin/catalina.sh stop' ${::tomcat::user}",
|
129
|
+
default => $stop_command
|
130
|
+
}
|
131
|
+
$_status = "ps aux | grep 'catalina.base=${_catalina_base} ' | grep -v grep"
|
132
|
+
$_provider = 'base'
|
133
|
+
}
|
134
|
+
|
135
|
+
if $use_init {
|
136
|
+
if $service_enable != undef {
|
137
|
+
validate_bool($service_enable)
|
138
|
+
$_service_enable = $service_enable
|
139
|
+
} else {
|
140
|
+
$_service_enable = $service_ensure ? {
|
141
|
+
'running' => true,
|
142
|
+
true => true,
|
143
|
+
default => undef,
|
144
|
+
}
|
145
|
+
}
|
146
|
+
} else {
|
147
|
+
$_service_enable = undef
|
148
|
+
}
|
149
|
+
|
150
|
+
service { $_service_name:
|
151
|
+
ensure => $service_ensure,
|
152
|
+
enable => $_service_enable,
|
153
|
+
hasstatus => $_hasstatus,
|
154
|
+
hasrestart => $_hasrestart,
|
155
|
+
start => $_start,
|
156
|
+
stop => $_stop,
|
157
|
+
status => $_status,
|
158
|
+
provider => $_provider,
|
159
|
+
}
|
160
|
+
}
|
@@ -0,0 +1,52 @@
|
|
1
|
+
# Definition tomcat::setenv::entry
|
2
|
+
#
|
3
|
+
# This define adds an entry to the setenv.sh script.
|
4
|
+
#
|
5
|
+
# Parameters:
|
6
|
+
# - $value is the value of the parameter you're setting
|
7
|
+
# - $ensure whether the fragment should be present or absent.
|
8
|
+
# - $config_file is the path to the config file to edit
|
9
|
+
# - $param is the parameter you're setting. Defaults to $name.
|
10
|
+
# - $quote_char is the optional character to quote the value with.
|
11
|
+
# - $order is the optional order to the param in the file. Defaults to 10
|
12
|
+
# - (Deprecated) $base_path is the path to create the setenv.sh script under. Should be
|
13
|
+
# either $catalina_base/bin or $catalina_home/bin.
|
14
|
+
define tomcat::setenv::entry (
|
15
|
+
$value,
|
16
|
+
$ensure = 'present',
|
17
|
+
$config_file = "${::tomcat::catalina_home}/bin/setenv.sh",
|
18
|
+
$param = $name,
|
19
|
+
$quote_char = undef,
|
20
|
+
# Deprecated
|
21
|
+
$base_path = undef,
|
22
|
+
$order = 10,
|
23
|
+
) {
|
24
|
+
|
25
|
+
if $base_path {
|
26
|
+
warning('The $base_path parameter is deprecated; please use $config_file instead')
|
27
|
+
$_config_file = "${base_path}/setenv.sh"
|
28
|
+
} else {
|
29
|
+
$_config_file = $config_file
|
30
|
+
}
|
31
|
+
|
32
|
+
if ! $quote_char {
|
33
|
+
$_quote_char = ''
|
34
|
+
} else {
|
35
|
+
$_quote_char = $quote_char
|
36
|
+
}
|
37
|
+
|
38
|
+
if ! defined(Concat[$_config_file]) {
|
39
|
+
concat { $_config_file:
|
40
|
+
owner => $::tomcat::user,
|
41
|
+
group => $::tomcat::group,
|
42
|
+
ensure_newline => true,
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
concat::fragment { "setenv-${name}":
|
47
|
+
ensure => $ensure,
|
48
|
+
target => $_config_file,
|
49
|
+
content => inline_template('export <%= @param %>=<%= @_quote_char %><%= Array(@value).join(" ") %><%= @_quote_char %>'),
|
50
|
+
order => $order,
|
51
|
+
}
|
52
|
+
}
|
@@ -0,0 +1,80 @@
|
|
1
|
+
# Definition: tomcat::war
|
2
|
+
#
|
3
|
+
# Manage deployment of WAR files.
|
4
|
+
#
|
5
|
+
# Parameters:
|
6
|
+
# - $catalina_base is the base directory for the Tomcat installation
|
7
|
+
# - $app_base is the path relative to $catalina_base to deploy the WAR to.
|
8
|
+
# Defaults to 'webapps'.
|
9
|
+
# - The $deployment_path can optionally be specified. Only one of $app_base and
|
10
|
+
# $deployment_path can be specified.
|
11
|
+
# - $war_ensure specifies whether you are trying to add or remove the WAR.
|
12
|
+
# Valid values are 'present', 'absent', 'true', and 'false'. Defaults to
|
13
|
+
# 'present'.
|
14
|
+
# _ Optionally specify a $war_name. Defaults to $name.
|
15
|
+
# - $war_purge is a boolean specifying whether or not to purge the exploded WAR
|
16
|
+
# directory. Defaults to true. Only applicable when $war_ensure is 'absent'
|
17
|
+
# or 'false'. Note: if tomcat is running and autodeploy is on, setting
|
18
|
+
# $war_purge to false won't stop tomcat from auto-undeploying exploded WARs.
|
19
|
+
# - $war_source is the source to deploy the WAR from. Currently supports
|
20
|
+
# http(s)://, puppet://, and ftp:// paths. $war_source must be specified
|
21
|
+
# unless $war_ensure is set to 'false' or 'absent'.
|
22
|
+
define tomcat::war(
|
23
|
+
$catalina_base = $::tomcat::catalina_home,
|
24
|
+
$app_base = undef,
|
25
|
+
$deployment_path = undef,
|
26
|
+
$war_ensure = 'present',
|
27
|
+
$war_name = undef,
|
28
|
+
$war_purge = true,
|
29
|
+
$war_source = undef,
|
30
|
+
) {
|
31
|
+
validate_re($war_ensure, '^(present|absent|true|false)$')
|
32
|
+
validate_bool($war_purge)
|
33
|
+
|
34
|
+
if $app_base and $deployment_path {
|
35
|
+
fail('Only one of $app_base and $deployment_path can be specified.')
|
36
|
+
}
|
37
|
+
|
38
|
+
if $war_name {
|
39
|
+
$_war_name = $war_name
|
40
|
+
} else {
|
41
|
+
$_war_name = $name
|
42
|
+
}
|
43
|
+
|
44
|
+
validate_re($_war_name, '\.war$')
|
45
|
+
|
46
|
+
if $deployment_path {
|
47
|
+
$_deployment_path = $deployment_path
|
48
|
+
} else {
|
49
|
+
if $app_base {
|
50
|
+
$_app_base = $app_base
|
51
|
+
} else {
|
52
|
+
$_app_base = 'webapps'
|
53
|
+
}
|
54
|
+
$_deployment_path = "${catalina_base}/${_app_base}"
|
55
|
+
}
|
56
|
+
|
57
|
+
if $war_ensure =~ /^(absent|false)$/ {
|
58
|
+
file { "${_deployment_path}/${_war_name}":
|
59
|
+
ensure => absent,
|
60
|
+
force => false,
|
61
|
+
}
|
62
|
+
if $war_purge {
|
63
|
+
$war_dir_name = regsubst($_war_name, '\.war$', '')
|
64
|
+
if $war_dir_name != '' {
|
65
|
+
file { "${_deployment_path}/${war_dir_name}":
|
66
|
+
ensure => absent,
|
67
|
+
force => true
|
68
|
+
}
|
69
|
+
}
|
70
|
+
}
|
71
|
+
} else {
|
72
|
+
if ! $war_source {
|
73
|
+
fail('$war_source must be specified if you aren\'t removing the WAR')
|
74
|
+
}
|
75
|
+
staging::file { $name:
|
76
|
+
source => $war_source,
|
77
|
+
target => "${_deployment_path}/${_war_name}",
|
78
|
+
}
|
79
|
+
}
|
80
|
+
}
|
@@ -0,0 +1,74 @@
|
|
1
|
+
{
|
2
|
+
"name": "puppetlabs-tomcat",
|
3
|
+
"version": "1.3.0",
|
4
|
+
"author": "puppetlabs",
|
5
|
+
"summary": "Installs, deploys, and configures Apache Tomcat web services.",
|
6
|
+
"license": "Apache 2.0",
|
7
|
+
"source": "http://github.com/puppetlabs/puppetlabs-tomcat",
|
8
|
+
"project_page": "https://github.com/puppetlabs/puppetlabs-tomcat",
|
9
|
+
"issues_url": "https://tickets.puppetlabs.com/browse/MODULES",
|
10
|
+
"dependencies": [
|
11
|
+
{"name":"puppetlabs/stdlib","version_requirement":">= 4.2.0 < 5.0.0"},
|
12
|
+
{"name":"puppetlabs/concat","version_requirement":">= 1.0.4 < 2.0.0"},
|
13
|
+
{"name":"nanliu/staging","version_requirement":">= 0.4.1 < 2.0.0"}
|
14
|
+
],
|
15
|
+
"operatingsystem_support": [
|
16
|
+
{
|
17
|
+
"operatingsystem": "RedHat",
|
18
|
+
"operatingsystemrelease": [
|
19
|
+
"5",
|
20
|
+
"6",
|
21
|
+
"7"
|
22
|
+
]
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"operatingsystem": "CentOS",
|
26
|
+
"operatingsystemrelease": [
|
27
|
+
"5",
|
28
|
+
"6",
|
29
|
+
"7"
|
30
|
+
]
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"operatingsystem": "OracleLinux",
|
34
|
+
"operatingsystemrelease": [
|
35
|
+
"5",
|
36
|
+
"6",
|
37
|
+
"7"
|
38
|
+
]
|
39
|
+
},
|
40
|
+
{
|
41
|
+
"operatingsystem": "Scientific",
|
42
|
+
"operatingsystemrelease": [
|
43
|
+
"5",
|
44
|
+
"6",
|
45
|
+
"7"
|
46
|
+
]
|
47
|
+
},
|
48
|
+
{
|
49
|
+
"operatingsystem": "Debian",
|
50
|
+
"operatingsystemrelease": [
|
51
|
+
"6",
|
52
|
+
"7"
|
53
|
+
]
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"operatingsystem": "Ubuntu",
|
57
|
+
"operatingsystemrelease": [
|
58
|
+
"10.04",
|
59
|
+
"12.04",
|
60
|
+
"14.04"
|
61
|
+
]
|
62
|
+
}
|
63
|
+
],
|
64
|
+
"requirements": [
|
65
|
+
{
|
66
|
+
"name": "pe",
|
67
|
+
"version_requirement": ">= 3.3.0 < 4.0.0"
|
68
|
+
},
|
69
|
+
{
|
70
|
+
"name": "puppet",
|
71
|
+
"version_requirement": "3.x"
|
72
|
+
}
|
73
|
+
]
|
74
|
+
}
|
data/spec/spec_helper.rb
CHANGED
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'retrospec'
|
3
|
+
|
4
|
+
describe "puppet" do
|
5
|
+
let(:plugin) do
|
6
|
+
Retrospec::Plugins::V1::Puppet.new('/tmp/testplugin_dir', {:name => 'testplugin', :config1 => 'test'})
|
7
|
+
end
|
8
|
+
|
9
|
+
it 'can show the version' do
|
10
|
+
expect(Retrospec::Puppet::VERSION).to eq('0.9.0')
|
11
|
+
end
|
12
|
+
|
13
|
+
it 'can get cli options' do
|
14
|
+
expect(Retrospec::Plugins::V1::Puppet.cli_options({})[:enable_future_parser]).to be false
|
15
|
+
end
|
16
|
+
|
17
|
+
|
18
|
+
it 'can get cli options' do
|
19
|
+
expect(Retrospec::Plugins::V1::Puppet.cli_options({'plugins::puppet::enable_future_parser' => true})[:enable_future_parser]).to be true
|
20
|
+
end
|
21
|
+
end
|
@@ -1,7 +1,5 @@
|
|
1
1
|
require 'spec_helper'
|
2
|
-
require 'retrospec'
|
3
2
|
require 'fakefs/safe'
|
4
|
-
require 'retrospec/helpers'
|
5
3
|
|
6
4
|
describe "puppet-retrospec" do
|
7
5
|
after :all do
|
@@ -23,19 +21,19 @@ describe "puppet-retrospec" do
|
|
23
21
|
end
|
24
22
|
|
25
23
|
it 'should run without errors using new' do
|
26
|
-
tomcat = Retrospec.new(@opts[:module_path], @opts)
|
27
|
-
expect(tomcat).to be_instance_of(Retrospec)
|
24
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], @opts)
|
25
|
+
expect(tomcat).to be_instance_of(Retrospec::Plugins::V1::Puppet)
|
28
26
|
end
|
29
27
|
|
30
28
|
it 'should set the parser to future' do
|
31
29
|
opts = {:module_path => @path, :enable_beaker_tests => false,
|
32
30
|
:enable_user_templates => false, :template_dir => nil, :enable_future_parser => true }
|
33
|
-
tomcat = Retrospec.new(opts[:module_path], opts)
|
34
|
-
expect(tomcat.
|
31
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(opts[:module_path], opts)
|
32
|
+
expect(tomcat.context.instance.future_parser).to eq(true)
|
35
33
|
end
|
36
34
|
|
37
35
|
it 'should create files without error' do
|
38
|
-
tomcat = Retrospec.new(@opts[:module_path], @opts)
|
36
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], @opts)
|
39
37
|
tomcat.create_files
|
40
38
|
expect(File.exists?(File.join(@path, 'Gemfile'))).to eq(true)
|
41
39
|
expect(File.exists?(File.join(@path, 'Rakefile'))).to eq(true)
|
@@ -48,7 +46,7 @@ describe "puppet-retrospec" do
|
|
48
46
|
|
49
47
|
it 'should create acceptance test files' do
|
50
48
|
@opts[:enable_beaker_tests] = true
|
51
|
-
tomcat = Retrospec.new(@opts[:module_path], @opts)
|
49
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], @opts)
|
52
50
|
spec_path = File.expand_path(File.join(@path, 'spec'))
|
53
51
|
tomcat.create_files
|
54
52
|
expect(File.exists?(File.join(spec_path, 'spec_helper_acceptance.rb'))).to eq(true)
|
@@ -62,7 +60,7 @@ describe "puppet-retrospec" do
|
|
62
60
|
it 'should not create acceptance test files' do
|
63
61
|
clean_up_spec_dir(@path)
|
64
62
|
@opts[:enable_beaker_tests] = false
|
65
|
-
tomcat = Retrospec.new(@opts[:module_path], @opts)
|
63
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], @opts)
|
66
64
|
spec_path = File.expand_path(File.join(@path, 'spec'))
|
67
65
|
tomcat.create_files
|
68
66
|
expect(File.exists?(File.join(spec_path, 'spec_helper_acceptance.rb'))).to eq(false)
|
@@ -73,7 +71,7 @@ describe "puppet-retrospec" do
|
|
73
71
|
end
|
74
72
|
|
75
73
|
it 'should create proper spec helper file' do
|
76
|
-
tomcat = Retrospec.new(@opts[:module_path], @opts)
|
74
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], @opts)
|
77
75
|
filepath = File.expand_path(File.join(@path, 'spec', 'spec_helper.rb'))
|
78
76
|
tomcat.safe_create_module_files
|
79
77
|
path = tomcat.module_path
|
@@ -81,19 +79,18 @@ describe "puppet-retrospec" do
|
|
81
79
|
end
|
82
80
|
|
83
81
|
it 'should create proper shared context file' do
|
84
|
-
tomcat = Retrospec.new(@opts[:module_path], @opts)
|
82
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], @opts)
|
85
83
|
filepath = File.expand_path(File.join(@path, 'spec', 'shared_contexts.rb'))
|
86
84
|
tomcat.safe_create_module_files
|
87
85
|
expect(File.exists?(filepath)).to eq(true)
|
88
86
|
end
|
89
87
|
|
90
88
|
it 'should produce hiera data' do
|
91
|
-
tomcat = Retrospec.new(@opts[:module_path], @opts)
|
89
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], @opts)
|
92
90
|
filepath = File.expand_path(File.join(@path, 'spec', 'shared_contexts.rb'))
|
93
91
|
tomcat.safe_create_module_files
|
94
92
|
path = tomcat.module_path
|
95
|
-
|
96
|
-
expect(tomcat.spec_object.all_hiera_data).to eq({"tomcat::catalina_home"=>nil,
|
93
|
+
expect(tomcat.context.all_hiera_data).to eq({"tomcat::catalina_home"=>nil,
|
97
94
|
"tomcat::user"=>nil,
|
98
95
|
"tomcat::group"=>nil,
|
99
96
|
"tomcat::install_from_source"=>nil,
|
@@ -109,7 +106,7 @@ describe "puppet-retrospec" do
|
|
109
106
|
it 'should create acceptance spec helper file' do
|
110
107
|
opts = {:module_path => @path, :enable_beaker_tests => true,
|
111
108
|
:template_dir => '/tmp/my_templates' }
|
112
|
-
tomcat = Retrospec.new(@opts[:module_path], opts)
|
109
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], opts)
|
113
110
|
filepath = File.expand_path(File.join(@path, 'spec', 'spec_helper_acceptance.rb'))
|
114
111
|
tomcat.safe_create_module_files
|
115
112
|
expect(File.exists?(filepath)).to eq(true)
|
@@ -119,7 +116,7 @@ describe "puppet-retrospec" do
|
|
119
116
|
opts = {:module_path => @path, :enable_beaker_tests => false,
|
120
117
|
:template_dir => '/tmp/my_templates' }
|
121
118
|
filepath = File.expand_path(File.join(@path, 'spec', 'spec_helper_acceptance.rb'))
|
122
|
-
tomcat = Retrospec.new(@opts[:module_path], opts)
|
119
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], opts)
|
123
120
|
tomcat.safe_create_module_files
|
124
121
|
expect(File.exists?(filepath)).to eq(false)
|
125
122
|
end
|
@@ -127,7 +124,7 @@ describe "puppet-retrospec" do
|
|
127
124
|
it 'should create 15 nodesets' do
|
128
125
|
opts = {:module_path => @path, :enable_beaker_tests => true,
|
129
126
|
:template_dir => '/tmp/my_templates' }
|
130
|
-
tomcat = Retrospec.new(@opts[:module_path], opts)
|
127
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], opts)
|
131
128
|
filepath = File.expand_path(File.join(@path, 'spec', 'acceptance', 'nodesets', 'default.yml'))
|
132
129
|
tomcat.safe_create_module_files
|
133
130
|
expect(File.exists?(filepath)).to eq(true)
|
@@ -135,14 +132,14 @@ describe "puppet-retrospec" do
|
|
135
132
|
end
|
136
133
|
|
137
134
|
it 'should create Gemfile file' do
|
138
|
-
tomcat = Retrospec.new(@opts[:module_path], @opts)
|
135
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], @opts)
|
139
136
|
filepath = File.expand_path(File.join(@path, 'Gemfile'))
|
140
137
|
tomcat.safe_create_module_files
|
141
138
|
expect(File.exists?(filepath)).to eq(true)
|
142
139
|
end
|
143
140
|
|
144
141
|
it 'should create Rakefile file' do
|
145
|
-
tomcat = Retrospec.new(@opts[:module_path], @opts)
|
142
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], @opts)
|
146
143
|
filepath = File.expand_path(File.join(@path, 'Rakefile'))
|
147
144
|
tomcat.safe_create_module_files
|
148
145
|
expect(File.exists?(filepath)).to eq(true)
|
@@ -151,22 +148,22 @@ describe "puppet-retrospec" do
|
|
151
148
|
it 'should create proper fixtures file' do
|
152
149
|
filepath = File.expand_path(File.join(@path,'.fixtures.yml'))
|
153
150
|
FileUtils.rm_f(filepath) # ensure we have a clean state
|
154
|
-
tomcat = Retrospec.new(@opts[:module_path], @opts)
|
151
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], @opts)
|
155
152
|
tomcat.safe_create_module_files
|
156
153
|
expect(File.exists?(filepath)).to eq(true)
|
157
154
|
end
|
158
155
|
|
159
156
|
it 'should not create any files when 0 resources exists' do
|
160
157
|
my_path = File.expand_path(File.join('spec', 'fixtures', 'fixture_modules', 'zero_resource_module'))
|
161
|
-
my_retro = Retrospec.new(my_path)
|
162
|
-
|
158
|
+
my_retro = Retrospec::Plugins::V1::Puppet.new(my_path)
|
159
|
+
my_retro.should_not_receive(:safe_create_file).with(anything,'resource_spec_file.erb')
|
163
160
|
end
|
164
161
|
|
165
162
|
it 'should create a file from a template' do
|
166
|
-
tomcat = Retrospec.new(@opts[:module_path], @opts)
|
163
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], @opts)
|
167
164
|
file_path = File.join(@path,'.fixtures.yml')
|
168
165
|
template_file = File.join(tomcat.template_dir,'module_files','.fixtures.yml')
|
169
|
-
tomcat.safe_create_template_file(file_path, template_file)
|
166
|
+
tomcat.safe_create_template_file(file_path, template_file, tomcat.context)
|
170
167
|
expect(File.exists?(file_path)).to eq(true)
|
171
168
|
end
|
172
169
|
|
@@ -177,14 +174,14 @@ describe "puppet-retrospec" do
|
|
177
174
|
type = double("type")
|
178
175
|
allow(type).to receive(:type).and_return(:hostclass)
|
179
176
|
allow(type).to receive(:name).and_return('tomcat::config::server::connector')
|
180
|
-
tomcat = Retrospec.new(@opts[:module_path], @opts)
|
177
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], @opts)
|
181
178
|
expect(tomcat.generate_file_path(type, true)).to eq("spec/acceptance/classes/config/server/connector_spec.rb")
|
182
179
|
end
|
183
180
|
it 'should generate a normal test path correctly' do
|
184
181
|
type = double("type")
|
185
182
|
allow(type).to receive(:type).and_return(:hostclass)
|
186
183
|
allow(type).to receive(:name).and_return('tomcat::config::server::connector')
|
187
|
-
tomcat = Retrospec.new(@opts[:module_path], @opts)
|
184
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], @opts)
|
188
185
|
expect(tomcat.generate_file_path(type, false)).to eq("spec/classes/config/server/connector_spec.rb")
|
189
186
|
end
|
190
187
|
end
|
@@ -194,7 +191,7 @@ describe "puppet-retrospec" do
|
|
194
191
|
type = double("type")
|
195
192
|
allow(type).to receive(:type).and_return(:definition)
|
196
193
|
allow(type).to receive(:name).and_return('tomcat::config::server::connector')
|
197
|
-
tomcat = Retrospec.new(@opts[:module_path], @opts)
|
194
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], @opts)
|
198
195
|
expect(tomcat.generate_file_path(type, true)).to eq("spec/acceptance/defines/config/server/connector_spec.rb")
|
199
196
|
end
|
200
197
|
|
@@ -202,14 +199,24 @@ describe "puppet-retrospec" do
|
|
202
199
|
type = double("type")
|
203
200
|
allow(type).to receive(:type).and_return(:definition)
|
204
201
|
allow(type).to receive(:name).and_return('tomcat::config::server::connector')
|
205
|
-
tomcat = Retrospec.new(@opts[:module_path], @opts)
|
202
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], @opts)
|
206
203
|
expect(tomcat.generate_file_path(type, false)).to eq("spec/defines/config/server/connector_spec.rb")
|
207
204
|
end
|
208
205
|
end
|
206
|
+
|
207
|
+
describe 'nodes' do
|
208
|
+
it 'should generate a normal test path correctly' do
|
209
|
+
type = double("type")
|
210
|
+
allow(type).to receive(:type).and_return(:node)
|
211
|
+
allow(type).to receive(:name).and_return('server1.example.com')
|
212
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], @opts)
|
213
|
+
expect(tomcat.generate_file_path(type, true)).to eq("spec/acceptance/hosts/server1.example.com_spec.rb")
|
214
|
+
end
|
215
|
+
end
|
209
216
|
end
|
210
217
|
|
211
218
|
it 'should generate a test file name correctly' do
|
212
|
-
tomcat = Retrospec.new(@opts[:module_path], @opts)
|
219
|
+
tomcat = Retrospec::Plugins::V1::Puppet.new(@opts[:module_path], @opts)
|
213
220
|
expect(tomcat.generate_file_name('tomcat::config::server::connector')).to eq('connector_spec.rb')
|
214
221
|
expect(tomcat.generate_file_name('tomcat')).to eq('tomcat_spec.rb')
|
215
222
|
expect(tomcat.generate_file_name('tomcat::config')).to eq('config_spec.rb')
|