From: Emilien Macchi Date: Wed, 21 Sep 2016 13:31:25 +0000 (-0400) Subject: Add FQDN testcase in swift proxy profile rspec tests X-Git-Tag: opnfv-6.0.0~568^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=04d5abe0b71e59fd9f1172b5ae1844b334d61311;p=apex-puppet-tripleo.git Add FQDN testcase in swift proxy profile rspec tests Add more coverage in our unit testing for FQDNs. Change-Id: I74859cdecc0d81138b2fe986883c4f7c49b8cab3 --- diff --git a/spec/classes/tripleo_profile_base_swift_proxy_spec.rb b/spec/classes/tripleo_profile_base_swift_proxy_spec.rb index da80950..c1febab 100644 --- a/spec/classes/tripleo_profile_base_swift_proxy_spec.rb +++ b/spec/classes/tripleo_profile_base_swift_proxy_spec.rb @@ -63,6 +63,21 @@ describe 'tripleo::profile::base::swift::proxy' do end end + context 'with ipv4, ipv6 and fqdn memcache servers' do + before :each do + params.merge!( + :step => 4, + :memcache_servers => ['192.168.0.1', '::2', 'myserver.com'], + ) + end + + it 'configure swift proxy cache with ips and fqdn' do + is_expected.to contain_class('swift::proxy::cache').with({ + :memcache_servers => ['192.168.0.1:11211', '[::2]:11211', 'myserver.com:11211'] + }) + end + end + end context 'on Debian platforms' do