2016-09-20 00:29:00 -04:00
|
|
|
#
|
|
|
|
# Copyright (C) 2016 Red Hat Inc. <licensing@redhat.com>
|
|
|
|
#
|
|
|
|
# Author: Ade Lee <alee@redhat.com>
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License. You may obtain
|
|
|
|
# a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
#
|
|
|
|
# Unit tests for barbican::db::postgresql class
|
|
|
|
#
|
2015-10-01 08:12:28 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'barbican::db::postgresql' do
|
|
|
|
|
2016-04-30 09:27:58 +08:00
|
|
|
shared_examples_for 'barbican::db::postgresql' do
|
|
|
|
let :req_params do
|
2020-05-17 21:11:41 +09:00
|
|
|
{ :password => 'barbicanpass' }
|
2016-04-30 09:27:58 +08:00
|
|
|
end
|
2015-10-01 08:12:28 -04:00
|
|
|
|
2016-04-30 09:27:58 +08:00
|
|
|
let :pre_condition do
|
|
|
|
'include postgresql::server'
|
2015-10-01 08:12:28 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'with only required parameters' do
|
|
|
|
let :params do
|
|
|
|
req_params
|
|
|
|
end
|
|
|
|
|
2020-10-10 09:31:12 +08:00
|
|
|
it { is_expected.to contain_class('barbican::deps') }
|
|
|
|
|
2020-05-17 21:11:41 +09:00
|
|
|
it { is_expected.to contain_openstacklib__db__postgresql('barbican').with(
|
|
|
|
:user => 'barbican',
|
|
|
|
:password => 'barbicanpass',
|
|
|
|
:dbname => 'barbican',
|
|
|
|
:encoding => nil,
|
|
|
|
:privileges => 'ALL',
|
2015-10-01 08:12:28 -04:00
|
|
|
)}
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2016-04-30 09:27:58 +08:00
|
|
|
on_supported_os({
|
|
|
|
:supported_os => OSDefaults.get_supported_os
|
|
|
|
}).each do |os,facts|
|
|
|
|
context "on #{os}" do
|
|
|
|
let (:facts) do
|
|
|
|
facts.merge(OSDefaults.get_facts({
|
2022-07-24 00:21:17 +09:00
|
|
|
# puppet-postgresql requires the service_provider fact provided by
|
|
|
|
# puppetlabs-postgresql.
|
|
|
|
:service_provider => 'systemd'
|
2016-04-30 09:27:58 +08:00
|
|
|
}))
|
2015-10-01 08:12:28 -04:00
|
|
|
end
|
|
|
|
|
2022-07-24 00:21:17 +09:00
|
|
|
it_configures 'barbican::db::postgresql'
|
2015-10-01 08:12:28 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|