puppet-vitrage/spec/acceptance/vitrage_wsgi_apache_spec.rb
ZhongShengping 097e08656c Fix ci
vitrage service error[1]. add a temporary python2-cotyledon package
to solve this problem.

[1]http://logs.openstack.org/34/558434/1/check/puppet-openstack-beaker-centos-7/0b83005/logs/syslog.txt.gz#_Apr_04_08_37_38

Change-Id: I1bb3489acf1f591eefbad91bdbb666b21a53238a
2018-04-10 00:56:43 +00:00

49 lines
1.1 KiB
Ruby

require 'spec_helper_acceptance'
describe 'basic vitrage' do
context 'default parameters' do
it 'should work with no errors' do
pp= <<-EOS
include ::openstack_integration
include ::openstack_integration::repos
include ::openstack_integration::rabbitmq
include ::openstack_integration::mysql
include ::openstack_integration::keystone
case $::osfamily {
'Debian': {
warning('Vitrage is not yet packaged on Ubuntu systems.')
}
'RedHat': {
package { 'python-setproctitle':
ensure => present,
}
package { 'python2-cotyledon':
ensure => present,
}
include ::openstack_integration::vitrage
}
default: {
fail("Unsupported osfamily (${::osfamily})")
}
}
EOS
# Run it twice and test for idempotency
apply_manifest(pp, :catch_failures => true)
apply_manifest(pp, :catch_changes => true)
end
if os[:family].casecmp('RedHat') == 0
describe port(8999) do
it { is_expected.to be_listening }
end
end
end
end