File: mapfile_spec.rb

package info (click to toggle)
puppet-module-puppetlabs-haproxy 8.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 816 kB
  • sloc: ruby: 3,979; sh: 14; makefile: 4
file content (242 lines) | stat: -rw-r--r-- 7,716 bytes parent folder | download
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
# frozen_string_literal: true

require 'spec_helper_acceptance'

describe 'create mapfiles' do
  describe 'one mapfile' do
    let(:pp) do
      <<-MANIFEST
      include ::haproxy
      haproxy::mapfile { 'single-mapfile':
        ensure   => 'present',
        mappings => [
          { 'example.com' => 'bk_com' },
          { 'example.net' => 'bk_net' },
          { 'example.edu' => 'bk_edu' },
        ],
      }
      MANIFEST
    end

    it 'applies the manifest twice with no stderr' do
      idempotent_apply(pp)
      expect(file('/etc/haproxy/single-mapfile.map')).to be_file
      expect(file('/etc/haproxy/single-mapfile.map').content).to match "example.com bk_com\nexample.net bk_net\nexample.edu bk_edu\n"
    end
  end

  describe 'multiple mapfiles' do
    let(:pp) do
      <<-MANIFEST
      include ::haproxy
      haproxy::mapfile { 'multiple-mapfiles':
        ensure => 'present',
      }
      haproxy::mapfile::entry { 'example.com bk_com':
        mapfile => 'multiple-mapfiles',
      }
      haproxy::mapfile::entry { 'org':
        mappings => ['example.org bk_org'],
        mapfile  => 'multiple-mapfiles',
        order    => '05',
      }
      haproxy::mapfile::entry { 'net':
        mappings => ['example.net bk_net'],
        mapfile  => 'multiple-mapfiles',
      }
      haproxy::mapfile::entry { 'edu':
        mappings => [{'example.edu' => 'bk_edu'}],
        mapfile  => 'multiple-mapfiles',
      }
      MANIFEST
    end

    it 'applies the manifest twice with no stderr' do
      idempotent_apply(pp)
      expect(file('/etc/haproxy/multiple-mapfiles.map')).to be_file
      expect(file('/etc/haproxy/multiple-mapfiles.map').content).to match "example.org bk_org\nexample.edu bk_edu\nexample.com bk_com\nexample.net bk_net\n"
    end
  end

  describe 'check selection of correct backend' do
    describe 'single mapfile' do
      let(:pp) do
        <<-MANIFEST
          $error_page_content = @(ERROR_PAGE)
            HTTP/1.1 421 Misdirected Request
            Cache-Control: no-cache
            Connection: close
            Content-Type: text/plain

            Error Page
            |ERROR_PAGE

        file { '/tmp/error.html.http':
          content => $error_page_content,
        }
        file_line {'localhost':
          path  => '/etc/hosts',
          line  => '127.0.0.1 localhost host2 host3',
          match => '^127.0.0.1',
        }
        include ::haproxy
        haproxy::mapfile { 'single-mapfile':
          ensure   => 'present',
          mappings => [
            { 'host2' => 'backend2' },
            { 'host3' => 'backend3' },
          ],
        }
        haproxy::frontend { 'test00':
          ipaddress => '127.0.0.1',
          ports     => '5555',
          mode      => 'http',
          options   => {
            'use_backend' => '%[req.hdr(host),lower,map_dom(/etc/haproxy/single-mapfile.map,backend1)]'
          },
        }
        haproxy::backend { 'backend1':
          mode    => 'http',
          options => [
            {
              'errorfile' => [
                '503 /tmp/error.html.http',
              ],
            },
          ],
        }
        haproxy::backend { 'backend2':
          defaults         => 'http',
          collect_exported => false,
          options          => { 'mode' => 'http' },
        }
        haproxy::balancermember { 'port 5556':
          listening_service => 'backend2',
          server_names      => 'test00.example.com',
          defaults          => 'http',
          ports             => '5556',
        }
        haproxy::backend { 'backend3':
          defaults         => 'http',
          collect_exported => false,
          options          => { 'mode' => 'http' },
        }
        haproxy::balancermember { 'port 5557':
          listening_service => 'backend3',
          server_names      => 'test01.example.com',
          defaults          => 'http',
          ports             => '5557',
        }
        MANIFEST
      end

      it 'is able to listen with a mapfile' do
        retry_on_error_matching do
          apply_manifest(pp, catch_failures: true)
        end
      end

      it 'has a complete mapfile' do
        expect(file('/etc/haproxy/single-mapfile.map')).to be_file
        expect(file('/etc/haproxy/single-mapfile.map').content).to match "host2 backend2\nhost3 backend3\n"
      end

      it 'selects the correct backend based on host' do
        expect(run_shell('curl localhost:5555').stdout.chomp).to match(%r{Error Page})
        expect(run_shell('curl host2:5555').stdout.chomp).to match(%r{Response on 5556})
        expect(run_shell('curl host3:5555').stdout.chomp).to match(%r{Response on 5557})
      end
    end

    describe 'multiple mapfiles' do
      let(:pp) do
        <<-MANIFEST
          $error_page_content = @(ERROR_PAGE)
            HTTP/1.1 421 Misdirected Request
            Cache-Control: no-cache
            Connection: close
            Content-Type: text/plain

            Error Page
            |ERROR_PAGE

        file { '/tmp/error.html.http':
          content => $error_page_content,
        }
        file_line {'localhost':
          path  => '/etc/hosts',
          line  => '127.0.0.1 localhost host2 host3',
          match => '^127.0.0.1',
        }
        include ::haproxy
        haproxy::mapfile { 'multiple-mapfiles':
          ensure   => 'present',
        }
        haproxy::mapfile::entry { 'host2 backend2':
          mapfile  => 'multiple-mapfiles',
        }
        haproxy::mapfile::entry { 'host3 backend3':
          mapfile  => 'multiple-mapfiles',
        }
        haproxy::frontend { 'test00':
          ipaddress => '127.0.0.1',
          ports     => '5555',
          mode      => 'http',
          options   => {
            'use_backend' => '%[req.hdr(host),lower,map_dom(/etc/haproxy/single-mapfile.map,backend1)]'
          },
        }
        haproxy::backend { 'backend1':
          mode    => 'http',
          options => [
            {
              'errorfile' => [
                '503 /tmp/error.html.http',
              ],
            },
          ],
        }
        haproxy::backend { 'backend2':
          defaults         => 'http',
          collect_exported => false,
          options          => { 'mode' => 'http' },
        }
        haproxy::balancermember { 'port 5556':
          listening_service => 'backend2',
          server_names      => 'test00.example.com',
          defaults          => 'http',
          ports             => '5556',
        }
        haproxy::backend { 'backend3':
          defaults         => 'http',
          collect_exported => false,
          options          => { 'mode' => 'http' },
        }
        haproxy::balancermember { 'port 5557':
          listening_service => 'backend3',
          server_names      => 'test01.example.com',
          defaults          => 'http',
          ports             => '5557',
        }
        MANIFEST
      end

      it 'is able to listen with a mapfile' do
        retry_on_error_matching do
          apply_manifest(pp, catch_failures: true)
        end
      end

      it 'has a complete mapfile' do
        expect(file('/etc/haproxy/multiple-mapfiles.map')).to be_file
        expect(file('/etc/haproxy/multiple-mapfiles.map').content).to match "host2 backend2\nhost3 backend3\n"
      end

      it 'selects the correct backend based on host' do
        expect(run_shell('curl localhost:5555').stdout.chomp).to match(%r{Error Page})
        expect(run_shell('curl host2:5555').stdout.chomp).to match(%r{Response on 5556})
        expect(run_shell('curl host3:5555').stdout.chomp).to match(%r{Response on 5557})
      end
    end
  end
end