File: swift_ringserver_spec.rb

package info (click to toggle)
puppet-module-swift 25.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,400 kB
  • sloc: ruby: 9,593; python: 38; sh: 10; makefile: 10
file content (84 lines) | stat: -rw-r--r-- 2,446 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
require 'spec_helper'

# LP1492636 - Cohabitation of compile matcher and webmock
WebMock.disable_net_connect!(:allow => "169.254.169.254")

describe 'swift::ringserver' do
  let :params do
    { :local_net_ip      => '127.0.0.1',
      :max_connections   => 5,
    }
  end

  shared_examples 'swift::ringserver' do
    context 'when storage.pp was already included' do
      let :pre_condition do
        "class { 'swift::storage': storage_local_net_ip  => '127.0.0.1' }
         class {'swift' : swift_hash_path_suffix => 'eee' }
         include swift::ringbuilder"
      end

      it 'does not create the rsync::server class' do
        is_expected.to compile
      end

      it 'contain the swift_server rsync block' do
        is_expected.to contain_rsync__server__module('swift_server').with({
          'path'            => '/etc/swift',
          'lock_file'       => '/var/lock/swift_server.lock',
          'uid'             => 'swift',
          'gid'             => 'swift',
          'max_connections' => '5',
          'read_only'       => 'true'
        })
      end
    end

    context 'when storage.pp was not already included' do
      let :pre_condition do
        "class {'swift' : swift_hash_path_suffix => 'eee' }
         include swift::ringbuilder"
      end

      it 'does create the rsync::server class' do
        is_expected.to contain_class('rsync::server').with({
          'use_xinetd' => platform_params[:xinetd_available],
          'address'    => '127.0.0.1',
          'use_chroot' => 'no'
        })
      end

      it 'contain the swift_server rsync block' do
        is_expected.to contain_rsync__server__module('swift_server').with({
          'path'            => '/etc/swift',
          'lock_file'       => '/var/lock/swift_server.lock',
          'uid'             => 'swift',
          'gid'             => 'swift',
          'max_connections' => '5',
          'read_only'       => 'true'
        })
      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

      let (:platform_params) do
        case facts[:os]['family']
        when 'Debian'
          { :xinetd_available => true }
        when 'RedHat'
          { :xinetd_available => false }
        end
      end

      it_behaves_like 'swift::ringserver'
    end
  end
end