acceptance: test OVS bridge listing

This beaker test makes sure that Neutron creates the bridges (br-int and
br-tun) during the installation workflow.

Change-Id: Ieffc2038086c879e981e3f66f4734e476faac550
This commit is contained in:
Emilien Macchi 2015-06-16 08:35:07 -04:00
parent e9e5e38906
commit b2336b4549

View File

@ -128,5 +128,14 @@ describe 'basic neutron' do
apply_manifest(pp, :catch_changes => true)
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