d8098793ea
This fixes the missing notifications so that the httpd service is properly restarted after config files are updated. This also realigns package resources for separate dasobhards to the global install phase because these packages should be installed before config phase. Related-Bug: #2048037 Change-Id: I8331c6c528391401c57b450be6bf75829179a9f8
91 lines
2.4 KiB
Ruby
91 lines
2.4 KiB
Ruby
#
|
|
# Copyright (C) 2018 Binero
|
|
#
|
|
# Author: Tobias Urdin <tobias.urdin@binero.se>
|
|
#
|
|
# 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.
|
|
|
|
require 'spec_helper'
|
|
|
|
describe 'horizon::dashboard' do
|
|
# NOTE(tobasco): Intentionally set to uppercase to make sure
|
|
# it's corrected to lowercase in the code.
|
|
let (:title) { 'HeAt' }
|
|
|
|
shared_examples 'horizon::dashboard' do
|
|
context 'with default' do
|
|
it { should contain_package(platform_params[:heat_dashboard_package_name]).with(
|
|
:ensure => 'installed',
|
|
:tag => ['horizon-package']
|
|
)}
|
|
end
|
|
|
|
context 'with absent' do
|
|
let :params do
|
|
{
|
|
:ensure => 'absent',
|
|
}
|
|
end
|
|
|
|
it { should contain_package(platform_params[:heat_dashboard_package_name]).with(
|
|
:ensure => 'absent',
|
|
:tag => ['horizon-package']
|
|
)}
|
|
end
|
|
end
|
|
|
|
shared_examples 'horizon::dashboard on Debian' do
|
|
context 'with default' do
|
|
it { should contain_package('python3-heat-dashboard').with(
|
|
:ensure => 'installed',
|
|
:tag => ['horizon-package']
|
|
)}
|
|
end
|
|
end
|
|
|
|
shared_examples 'horizon::dashboard on Ubuntu' do
|
|
context 'with default' do
|
|
it { should contain_package('python3-heat-dashboard').with(
|
|
:ensure => 'installed',
|
|
:tag => ['horizon-package']
|
|
)}
|
|
end
|
|
end
|
|
|
|
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())
|
|
end
|
|
|
|
let(:platform_params) do
|
|
case facts[:os]['family']
|
|
when 'Debian'
|
|
{ :heat_dashboard_package_name => 'python3-heat-dashboard' }
|
|
when 'RedHat'
|
|
{ :heat_dashboard_package_name => 'openstack-heat-ui' }
|
|
end
|
|
end
|
|
|
|
it_behaves_like 'horizon::dashboard'
|
|
|
|
if facts[:os]['family'] == 'Debian'
|
|
it_behaves_like "horizon::dashboard on #{facts[:os]['name']}"
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|