d6f2b865ef
Depends-on: https://review.opendev.org/#/c/747935/
Change-Id: I7fccb5c4fc29a3c5a2d864d9ac7df3d2d181faac
(cherry picked from commit ecce3cb65a
)
30 lines
718 B
Ruby
30 lines
718 B
Ruby
require 'spec_helper_acceptance'
|
|
|
|
describe 'basic trove' do
|
|
|
|
context 'default parameters' do
|
|
|
|
it 'should work with no errors' do
|
|
pp= <<-EOS
|
|
include openstack_integration
|
|
include openstack_integration::repos
|
|
include openstack_integration::apache
|
|
include openstack_integration::rabbitmq
|
|
include openstack_integration::mysql
|
|
include openstack_integration::keystone
|
|
include openstack_integration::trove
|
|
EOS
|
|
|
|
|
|
# Run it twice and test for idempotency
|
|
apply_manifest(pp, :catch_failures => true)
|
|
apply_manifest(pp, :catch_changes => true)
|
|
end
|
|
|
|
describe port(8779) do
|
|
it { is_expected.to be_listening.with('tcp') }
|
|
end
|
|
|
|
end
|
|
end
|