0c5c09066b
Change-Id: I96b482bfb371daa31f7a32aa6d3abb6e110c7b03
38 lines
927 B
Ruby
38 lines
927 B
Ruby
require 'spec_helper_acceptance'
|
|
|
|
describe 'basic neutron' 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
|
|
include ::openstack_integration::neutron
|
|
EOS
|
|
|
|
|
|
# Run it twice and test for idempotency
|
|
apply_manifest(pp, :catch_failures => true)
|
|
apply_manifest(pp, :catch_changes => true)
|
|
end
|
|
|
|
describe port(9696) do
|
|
it { is_expected.to be_listening }
|
|
end
|
|
|
|
describe 'test Neutron OVS agent bridges' do
|
|
it 'should list OVS bridges' do
|
|
shell("ovs-vsctl show") do |r|
|
|
expect(r.stdout).to match(/br-int/)
|
|
expect(r.stdout).to match(/br-tun/)
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|