Unit tests for HAproxy dual stack

Change-Id: I6a959609523bd7fa681cd86522a56fff7c92352b
This commit is contained in:
Emilien Macchi 2016-07-25 13:28:12 -04:00
parent 72453d6431
commit e32a36ae32
2 changed files with 74 additions and 0 deletions

View File

@ -2,6 +2,8 @@ fixtures:
repositories:
'firewall': 'git://github.com/puppetlabs/puppetlabs-firewall.git'
'stdlib': 'git://github.com/puppetlabs/puppetlabs-stdlib.git'
'haproxy': 'git://github.com/puppetlabs/puppetlabs-haproxy.git'
'concat': 'git://github.com/puppetlabs/puppetlabs-concat.git'
'midonet':
repo: 'git://github.com/midonet/puppet-midonet.git'
ref: 'v2015.06.7'

View File

@ -0,0 +1,72 @@
require 'spec_helper'
describe 'tripleo::haproxy::endpoint' do
let(:title) { 'neutron' }
let :pre_condition do
'include ::haproxy'
end
let :params do {
:public_virtual_ip => '192.168.0.1',
:internal_ip => '10.0.0.1',
:service_port => 9696,
:ip_addresses => ['10.0.0.2', '10.0.0.3', '10.0.0.4'],
:server_names => ['controller1', 'controller2', 'controller3'],
:public_ssl_port => 19696,
:member_options => [ 'check', 'inter 2000', 'rise 2', 'fall 5' ],
:haproxy_listen_bind_param => ['transparent'],
}
end
shared_examples_for 'tripleo haproxy endpoint' do
context 'with basic parameters to configure neutron binding' do
it 'should configure haproxy' do
is_expected.to contain_haproxy__listen('neutron').with(
:collect_exported => false,
:bind => [
['10.0.0.1:9696', ['transparent']],
['192.168.0.1:9696', ['transparent']]
]
)
end
end
context 'with dual-stack' do
before :each do
params.merge!({
:public_virtual_ip => ['fd00:fd00:fd00:2000::14', '192.168.0.1'],
})
end
it 'should configure haproxy' do
is_expected.to contain_haproxy__listen('neutron').with(
:collect_exported => false,
:bind => [
['10.0.0.1:9696', ['transparent']],
['fd00:fd00:fd00:2000::14:9696', ['transparent']],
['192.168.0.1:9696', ['transparent']]
]
)
end
end
end
context 'on Debian platforms' do
let :facts do
{ :osfamily => 'Debian',
:hostname => 'myhost' }
end
it_configures 'tripleo haproxy endpoint'
end
context 'on RedHat platforms' do
let :facts do
{ :osfamily => 'RedHat',
:hostname => 'myhost' }
end
it_configures 'tripleo haproxy endpoint'
end
end