Sha256: 4054e411652c583b748480e1da44015d187811e759f98c6f600929cf79c26590

Contents?: true

Size: 926 Bytes

Versions: 47

Compression:

Stored size: 926 Bytes

Contents

# Configures validation suitable for 4.0
#
class Puppet::Pops::Validation::ValidatorFactory_4_0 < Puppet::Pops::Validation::Factory
  Issues = Puppet::Pops::Issues

  # Produces the checker to use
  def checker diagnostic_producer
    Puppet::Pops::Validation::Checker4_0.new(diagnostic_producer)
  end

  # Produces the label provider to use
  def label_provider
    Puppet::Pops::Model::ModelLabelProvider.new()
  end

  # Produces the severity producer to use
  def severity_producer
    p = super

    # Configure each issue that should **not** be an error
    #
    # Validate as per the current runtime configuration
    p[Issues::RT_NO_STORECONFIGS_EXPORT]    = Puppet[:storeconfigs] ? :ignore : :warning
    p[Issues::RT_NO_STORECONFIGS]           = Puppet[:storeconfigs] ? :ignore : :warning

    p[Issues::NAME_WITH_HYPHEN]             = :error
    p[Issues::EMPTY_RESOURCE_SPECIALIZATION] = :ignore
    p
  end
end

Version data entries

47 entries across 47 versions & 2 rubygems

Version Path
puppet-3.7.2-x64-mingw32 lib/puppet/pops/validation/validator_factory_4_0.rb
puppet-3.7.1 lib/puppet/pops/validation/validator_factory_4_0.rb
puppet-3.7.1-x86-mingw32 lib/puppet/pops/validation/validator_factory_4_0.rb
puppet-3.7.1-x64-mingw32 lib/puppet/pops/validation/validator_factory_4_0.rb
puppet-3.7.0 lib/puppet/pops/validation/validator_factory_4_0.rb
puppet-3.7.0-x86-mingw32 lib/puppet/pops/validation/validator_factory_4_0.rb
puppet-3.7.0-x64-mingw32 lib/puppet/pops/validation/validator_factory_4_0.rb