aboutsummaryrefslogtreecommitdiff
path: root/spec/classes/dhcp_spec.rb
blob: ce9228ed306525795da83e9ee1104a943bd65859 (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
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
require 'spec_helper'

describe 'dhcp' do
  context 'When on an unsupported OS' do
    let (:facts) { {
      :operatingsystem => 'RedHat',
      :osfamily        => 'Redhat',
      :lsbdistcodename => 'Santiago'
    } }

    it 'should fail' do
      expect {
        should contain_package('dhcp-server')
      }.to raise_error(Puppet::Error, /Unsupported OS RedHat\/Santiago/)
    end
  end

  context 'When on Debian lenny' do
    let (:facts) { {
      :operatingsystem => 'Debian',
      :osfamily        => 'Debian',
      :lsbdistcodename => 'lenny'
    } }

    # Package
    it { should contain_package('dhcp-server').with(
      :name => 'dhcp3-server'
    ) }

    # Config
    it { should contain_concat('/etc/dhcp3/dhcpd.conf').with(
      :owner => 'root',
      :group => 'root',
      :mode  => '0644'
    ) }

    it { should contain_concat__fragment('00.dhcp.server.base').with(
      :ensure  => 'present',
      :target  => '/etc/dhcp3/dhcpd.conf',
      :content => /log-facility/
      ).with_content(/ddns-update-style none;/).with_content(/#authoritative/)
    }

    # Service
    it { should contain_service('dhcpd').with(
      :ensure  => 'running',
      :name    => 'dhcp3-server',
      :enable  => true,
      :pattern => '/usr/sbin/dhcpd3'
    ) }
  end

  context 'When on Debian squeeze' do
    let (:facts) { {
      :operatingsystem => 'Debian',
      :osfamily        => 'Debian',
      :lsbdistcodename => 'squeeze'
    } }

    # Package
    it { should contain_package('dhcp-server').with(
      :name => 'isc-dhcp-server'
    ) }

    # Config
    it { should contain_concat('/etc/dhcp/dhcpd.conf').with(
      :owner => 'root',
      :group => 'root',
      :mode  => '0644'
    ) }

    it { should contain_concat__fragment('00.dhcp.server.base').with(
        :ensure  => 'present',
        :target  => '/etc/dhcp/dhcpd.conf',
        :content => /log-facility/
      ).with_content(/ddns-update-style none;/).with_content(/#authoritative/)
    }

    # Service
    it { should contain_service('dhcpd').with(
      :ensure  => 'running',
      :name    => 'isc-dhcp-server',
      :enable  => true,
      :pattern => '/usr/sbin/dhcpd'
    ) }
  end

  context 'When passing ddns_update' do
    let (:facts) { {
      :operatingsystem => 'Debian',
      :osfamily        => 'Debian',
      :lsbdistcodename => 'squeeze'
    } }
    let (:params) { {
      :server_ddns_update => 'foo'
    } }

    it { should contain_concat__fragment('00.dhcp.server.base').with(
        :ensure  => 'present',
        :target  => '/etc/dhcp/dhcpd.conf',
        :content => /log-facility/
      ).with_content(/ddns-update-style foo;/).with_content(/#authoritative/)
    }
  end

  context 'When passing authoritative' do
    let (:facts) { {
      :operatingsystem => 'Debian',
      :osfamily        => 'Debian',
      :lsbdistcodename => 'squeeze'
    } }
    let (:params) { {
      :server_authoritative => true
    } }

    it { should contain_concat__fragment('00.dhcp.server.base').with(
        :ensure  => 'present',
        :target  => '/etc/dhcp/dhcpd.conf',
        :content => /log-facility/
      ).with_content(/ddns-update-style none;/).with_content(/[^#]authoritative/)
    }
  end

  context 'When passing opts' do
    let (:facts) { {
      :operatingsystem => 'Debian',
      :osfamily        => 'Debian',
      :lsbdistcodename => 'squeeze'
    } }
    let (:params) { {
      :server_opts => ['foo', 'bar', 'baz']
    } }

    it { should contain_concat__fragment('00.dhcp.server.base').with(
        :ensure  => 'present',
        :target  => '/etc/dhcp/dhcpd.conf',
        :content => /log-facility/
      ).with_content(/ddns-update-style none;/).with_content(/#authoritative/).with_content(/foo;\nbar;\nbaz;\n/)
    }
  end
end