puppet-zaqar/spec/acceptance/zaqar_swift_spec.rb
Mohammed Naser 462dd20b37 Remove MongoDB integration and transform to using POI resources
This patch removes MongoDB beaker tests as this is not a well
tested use-case and sticks to the Swift/SQLalchemy configuration
which is well tested.  It switches Beaker to use the same resources
in integration.

Depends-On: Ic1a4ea20ef65a832a986964fb61e80c4738740b5
Change-Id: I9796a7bb2f25a2df53a1aeeb2814a91ca2c2cbec
2018-02-02 13:16:11 -05:00

31 lines
738 B
Ruby

require 'spec_helper_acceptance'
describe 'swift zaqar' do
context 'default parameters' do
it 'zaqar with swift should work with no errors' do
pp= <<-EOS
include ::openstack_integration
include ::openstack_integration::repos
include ::openstack_integration::mysql
include ::openstack_integration::keystone
include ::openstack_integration::swift
include ::openstack_integration::memcached
include ::openstack_integration::zaqar
EOS
# Run it twice and test for idempotency
apply_manifest(pp, :catch_failures => true)
apply_manifest(pp, :catch_changes => true)
end
describe port(8888) do
it { is_expected.to be_listening }
end
end
end