summaryrefslogtreecommitdiff
path: root/spec/defines/balancermember_spec.rb
blob: 73aa2239d47242c9b9c0faa9b8af079349c51e84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
require 'spec_helper'

describe 'haproxy::balancermember' do
  let(:title) { 'tyler' }
  let(:facts) do
    { :ipaddress => '1.1.1.1',
      :hostname  => 'dero'
    }
  end

  context 'with a single balancermember option' do
    let(:params) do
      { :name                   => 'tyler',
        :listening_service      => 'croy',
        :balancer_port          => '18140',
        :balancermember_options => 'check'
      }
    end

    it { should contain_concat__fragment('croy_balancermember_tyler').with(
      'order'   => '20',
      'target'  => '/etc/haproxy/haproxy.cfg',
      'content' => "  server  dero 1.1.1.1:18140  check\n\n"
      ) }
  end

  context 'with multiple balancermember options' do
    let(:params) do
      { :name                   => 'tyler',
        :listening_service      => 'croy',
        :balancer_port          => '18140',
        :balancermember_options => ['check', 'close']
      }
    end

    it { should contain_concat__fragment('croy_balancermember_tyler').with(
      'order'   => '20',
      'target'  => '/etc/haproxy/haproxy.cfg',
      'content' => "  server  dero 1.1.1.1:18140  check close\n\n"
      ) }
  end

  context 'with multiple servers' do
    let(:params) do
      { :name                   => 'tyler',
        :listening_service      => 'croy',
        :balancer_port          => '18140',
        :server_name            => ['server01', 'server02'],
        :balancer_ip            => ['192.168.56.200', '192.168.56.201'],
        :balancermember_options => ['check']
      }
    end

    it { should contain_concat__fragment('croy_balancermember_tyler').with(
      'order'   => '20',
      'target'  => '/etc/haproxy/haproxy.cfg',
      'content' => "  server  server01 192.168.56.200:18140  check\n  server  server02 192.168.56.201:18140  check\n\n"
      ) }
  end
end