Use validate_legacy

This changes all the puppet 3 validate_* functions
to use the validate_legacy function.

The validate_legacy function has been available since
about three years but require Puppet >= 4.4.0 and since
there is Puppet 4.10.12 as latest we should assume people
are running a fairly new Puppet 4 version.

This is the first step to then remove all validate function
calls and use proper types for parameter as described in spec [1].

[1] https://review.openstack.org/#/c/568929/

Change-Id: I041af9f00d9463e35a53d1979cf03697cdf41376
This commit is contained in:
Tobias Urdin 2019-02-23 22:32:56 +01:00
parent bf4076a01f
commit 39bd0df71e
3 changed files with 5 additions and 5 deletions

View File

@ -136,8 +136,8 @@ define oslo::db(
if !is_service_default($connection) {
validate_re($connection,
'^(sqlite|mysql(\+pymysql)?|postgresql(\+psycopg2)?|mongodb):\/\/(\S+:\S+@\S+\/\S+)?')
validate_legacy(Oslo::Dbconn, 'validate_re', $connection,
['^(sqlite|mysql(\+pymysql)?|postgresql(\+psycopg2)?|mongodb):\/\/(\S+:\S+@\S+\/\S+)?'])
if $manage_backend_package {
case $connection {

View File

@ -137,7 +137,7 @@ define oslo::log(
if is_service_default($default_log_levels) {
$default_log_levels_real = $default_log_levels
} else {
validate_hash($default_log_levels)
validate_legacy(Hash, 'validate_hash', $default_log_levels)
$default_log_levels_real = join(sort(join_keys_to_values($default_log_levels, '=')), ',')
}

View File

@ -157,7 +157,7 @@ describe 'oslo::db' do
{ :connection => 'foo://db:db@localhost/db', }
end
it_raises 'a Puppet::Error', /validate_re/
it { should raise_error(Puppet::Error) }
end
context 'with incorrect pymysql database_connection string' do
@ -165,7 +165,7 @@ describe 'oslo::db' do
{ :connection => 'foo+pymysql://db:db@localhost/db', }
end
it_raises 'a Puppet::Error', /validate_re/
it { should raise_error(Puppet::Error) }
end
end