summaryrefslogtreecommitdiff
path: root/spec/defines/config_spec.rb
diff options
context:
space:
mode:
authorZack Smith <acidprime@wallcity.org>2012-10-10 17:13:15 -0700
committerZack Smith <acidprime@wallcity.org>2012-10-10 17:13:15 -0700
commit3d71b9093a8600d465f373de594378b40bd78c83 (patch)
treecaba811a27f5b967f2b7e0d01ab74f319b851bc4 /spec/defines/config_spec.rb
parent1b18d7d86174b3f74ddfb0021bbc658d3a9ece47 (diff)
parentc09e5a07cef578e1017af546e315f1c3826bf9a7 (diff)
Merge pull request #10 from hunner/add_ports
Allow multiple ports to be passed
Diffstat (limited to 'spec/defines/config_spec.rb')
-rw-r--r--spec/defines/config_spec.rb36
1 files changed, 27 insertions, 9 deletions
diff --git a/spec/defines/config_spec.rb b/spec/defines/config_spec.rb
index 89993ee..a30737e 100644
--- a/spec/defines/config_spec.rb
+++ b/spec/defines/config_spec.rb
@@ -3,15 +3,33 @@ require 'spec_helper'
describe 'haproxy::config' do
let(:title) { 'tyler' }
let(:facts) {{ :ipaddress => '1.1.1.1' }}
- let(:params) do
- { :name => 'croy',
- :virtual_ip_port => '18140'
- }
+ context "when only one port is provided" do
+ let(:params) do
+ { :name => 'croy',
+ :ports => '18140'
+ }
+ end
+
+ it { should contain_concat__fragment('croy_config_block').with(
+ 'order' => '20',
+ 'target' => '/etc/haproxy/haproxy.cfg',
+ 'content' => "\nlisten croy 1.1.1.1:18140\n balance roundrobin\n option tcplog\n option ssl-hello-chk\n"
+ ) }
end
+ context "when an array of ports is provided" do
+ let(:params) do
+ { :name => 'apache',
+ :ports => [
+ '80',
+ '443',
+ ]
+ }
+ end
- it { should contain_concat__fragment('croy_config_block').with(
- 'order' => '20',
- 'target' => '/etc/haproxy/haproxy.cfg',
- 'content' => "\nlisten croy 1.1.1.1:18140\n balance roundrobin\n option tcplog\n option ssl-hello-chk\n"
+ it { should contain_concat__fragment('apache_config_block').with(
+ 'order' => '20',
+ 'target' => '/etc/haproxy/haproxy.cfg',
+ 'content' => "\nlisten apache 1.1.1.1:80,1.1.1.1:443\n balance roundrobin\n option tcplog\n option ssl-hello-chk\n"
) }
-end \ No newline at end of file
+ end
+end