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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
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',
:ports => '18140',
:options => 'check'
}
end
it { should contain_concat__fragment('croy_balancermember_tyler').with(
'order' => '20-croy-tyler',
'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',
:ports => '18140',
:options => ['check', 'close']
}
end
it { should contain_concat__fragment('croy_balancermember_tyler').with(
'order' => '20-croy-tyler',
'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',
:ports => '18140',
:server_names => ['server01', 'server02'],
:ipaddresses => ['192.168.56.200', '192.168.56.201'],
:options => ['check']
}
end
it { should contain_concat__fragment('croy_balancermember_tyler').with(
'order' => '20-croy-tyler',
'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
context 'with multiple servers and multiple ports' do
let(:params) do
{
:name => 'tyler',
:listening_service => 'croy',
:ports => ['18140','18150'],
:server_names => ['server01', 'server02'],
:ipaddresses => ['192.168.56.200', '192.168.56.201'],
:options => ['check']
}
end
it { should contain_concat__fragment('croy_balancermember_tyler').with(
'order' => '20-croy-tyler',
'target' => '/etc/haproxy/haproxy.cfg',
'content' => " server server01 192.168.56.200:18140,192.168.56.200:18150 check\n server server02 192.168.56.201:18140,192.168.56.201:18150 check\n\n"
) }
end
end
|