File: oslo_healthcheck_spec.rb

package info (click to toggle)
puppet-module-oslo 27.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 992 kB
  • sloc: ruby: 2,436; python: 33; sh: 10; makefile: 10
file content (77 lines) | stat: -rw-r--r-- 3,179 bytes parent folder | download | duplicates (2)
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
require 'spec_helper'

describe 'oslo::healthcheck' do

  let (:title) { 'keystone_config' }

  shared_examples 'oslo::healthcheck' do

    context 'with default parameters' do
      let :params do
        {}
      end

      it 'configure healthcheck default params' do
        is_expected.to contain_keystone_config('healthcheck/detailed').with_value('<SERVICE DEFAULT>')
        is_expected.to contain_keystone_config('healthcheck/backends').with_value('<SERVICE DEFAULT>')
        is_expected.to contain_keystone_config('healthcheck/allowed_source_ranges').with_value('<SERVICE DEFAULT>')
        is_expected.to contain_keystone_config('healthcheck/ignore_proxied_requests').with_value('<SERVICE DEFAULT>')
        is_expected.to contain_keystone_config('healthcheck/disable_by_file_path').with_value('<SERVICE DEFAULT>')
        is_expected.to contain_keystone_config('healthcheck/disable_by_file_paths').with_value('<SERVICE DEFAULT>')
        is_expected.to contain_keystone_config('healthcheck/enable_by_file_paths').with_value('<SERVICE DEFAULT>')
      end
    end

    context 'with parameters overridden' do
      let :params do
        {
          :detailed                => true,
          :backends                => ['disable_by_file', 'disable_by_files_ports'],
          :allowed_source_ranges   => ['10.0.0.0/24', '10.0.1.0/24'],
          :disable_by_file_path    => '/etc/keystone/healthcheck/disabled',
          :disable_by_file_paths   => [
            '5000:/etc/keystone/healthcheck/public-disabled',
            '35357:/etc/keystone/healthcheck/admin-disabled'
          ],
          :enable_by_file_paths    => [
            '/etc/keystone/healthcheck/enabled0',
            '/etc/keystone/healthcheck/enabled1'
          ],
          :ignore_proxied_requests => false,
        }
      end

      it 'configure healthcheck params' do
        is_expected.to contain_keystone_config('healthcheck/detailed').with_value('true')
        is_expected.to contain_keystone_config('healthcheck/backends').with_value(
          'disable_by_file,disable_by_files_ports'
        )
        is_expected.to contain_keystone_config('healthcheck/allowed_source_ranges').with_value(
          '10.0.0.0/24,10.0.1.0/24'
        )
        is_expected.to contain_keystone_config('healthcheck/ignore_proxied_requests').with_value('false')
        is_expected.to contain_keystone_config('healthcheck/disable_by_file_path').with_value(
          '/etc/keystone/healthcheck/disabled'
        )
        is_expected.to contain_keystone_config('healthcheck/disable_by_file_paths').with_value(
          '5000:/etc/keystone/healthcheck/public-disabled,35357:/etc/keystone/healthcheck/admin-disabled'
        )
        is_expected.to contain_keystone_config('healthcheck/enable_by_file_paths').with_value(
          '/etc/keystone/healthcheck/enabled0,/etc/keystone/healthcheck/enabled1'
        )
      end
    end
  end

  on_supported_os({
    :supported_os => OSDefaults.get_supported_os
  }).each do |os,facts|
    context "on #{os}" do
      let (:facts) do
        facts.merge!(OSDefaults.get_facts())
      end

      include_examples 'oslo::healthcheck'
    end
  end
end