Revert "CentOS 9: Disable unit tests dependent on puppet-postgresql"

This reverts commit c81789d4c7.

Reason for revert:
puppet-postgresql 8.1.0 was released and now the module supports RHEL 9
(and CentOS 9 effectively).

Note:
This change adds the service_provider fact in test fact data because
it is required by puppet-postgresql.

Depends-on: https://review.opendev.org/850705
Change-Id: I49370fa9c9fab9b95e8f7217c8cc63a9ec55e347
This commit is contained in:
Takashi Kajinami 2022-07-24 00:47:29 +09:00
parent 43bdf0163c
commit b127278fba
1 changed files with 4 additions and 6 deletions

View File

@ -35,15 +35,13 @@ describe 'mistral::db::postgresql' do
context "on #{os}" do
let (:facts) do
facts.merge(OSDefaults.get_facts({
:os_workers => 8,
:concat_basedir => '/var/lib/puppet/concat'
# puppet-postgresql requires the service_provider fact provided by
# puppetlabs-postgresql.
:service_provider => 'systemd'
}))
end
# TODO(tkajinam): Remove this once puppet-postgresql supports CentOS 9
unless facts[:osfamily] == 'RedHat' and facts[:operatingsystemmajrelease].to_i >= 9
it_configures 'mistral::db::postgresql'
end
it_configures 'mistral::db::postgresql'
end
end