aboutsummaryrefslogtreecommitdiff
path: root/spec/classes/tftp_spec.rb
blob: 21e6f727cc06a287dd111bdf9d29c0a03f49224e (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
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
require 'spec_helper'
describe 'tftp', :type => :class do

  describe 'when deploying on debian' do
    let(:facts) { { :operatingsystem  => 'Debian',
                    :osfamily         => 'Debian',
                    :path             => '/usr/local/bin:/usr/bin:/bin', } }

    it {
      should contain_file('/etc/default/tftpd-hpa')
      should contain_package('tftpd-hpa')
      should contain_service('tftpd-hpa').with({
       'ensure'    => 'running',
       'enable'    => true,
       'hasstatus' => false,
       'provider'  => nil,
      })
    }
  end

  describe 'when deploying on ubuntu' do
    let(:facts) { { :operatingsystem  => 'Ubuntu',
                    :osfamily         => 'Debian',
                    :path             => '/usr/local/bin:/usr/bin:/bin', } }

    it {
      should contain_package('tftpd-hpa')
      should contain_file('/etc/default/tftpd-hpa')
      should contain_service('tftpd-hpa').with({
        'ensure'    => 'running',
       'enable'    => true,
       'hasstatus' => true,
       'provider'  => 'upstart',
      })
    }
  end

  describe 'when deploying on redhat family' do
    let (:facts) { {  :osfamily         => 'RedHat',
                      :path             => '/usr/local/bin:/usr/bin:/bin', } }

    it {
      should contain_package('tftpd-hpa').with({
        'name'      => 'tftp-server',
    })

      should contain_service('tftpd-hpa').with({
       'ensure'    => 'running',
       'enable'    => 'true',
       'hasstatus' => false,
       'provider'  => 'base',
       'start'     => '/usr/sbin/in.tftpd -l -a 0.0.0.0:69 -u nobody --secure /var/lib/tftpboot',
      })
    }
  end

  describe 'when deploying on redhat family with custom options' do
    let (:facts) { {  :osfamily         => 'RedHat',
                      :path             => '/usr/local/bin:/usr/bin:/bin', } }
    let (:params) { { :address          => '127.0.0.1',
                      :port             => '1069',
                      :username         => 'root',
                      :options          => '--secure --timeout 50',
                      :directory        => '/tftpboot', } }

    it {
      should contain_package('tftpd-hpa').with({
        'name'      => 'tftp-server',
      })

      should contain_service('tftpd-hpa').with({
        'ensure'    => 'running',
        'enable'    => 'true',
        'hasstatus' => false,
        'provider'  => 'base',
        'start'     => '/usr/sbin/in.tftpd -l -a 127.0.0.1:1069 -u root --secure --timeout 50 /tftpboot',
      })
    }
  end

  describe 'when deploying with xinetd on redhat family' do
    let (:facts) { {  :osfamily => 'Redhat',
                      :path     => '/usr/local/bin:/usr/bin:/bin', } }
    let (:params) { { :inetd    => true, } }
    it {
      should include_class('xinetd')
      should contain_service('tftpd-hpa').with({
        'ensure'      => 'stopped',
        'enable'      => false,
    })
      should contain_xinetd__service('tftp').with({
        'port'        => '69',
        'protocol'    => 'udp',
        'server_args' => '--secure /var/lib/tftpboot',
        'server'      => '/usr/sbin/in.tftpd',
        'user'        => 'nobody',
        'socket_type' => 'dgram',
        'cps'         => '100 2',
        'flags'       => 'IPv4',
        'per_source'   => '11',
        'wait'        => 'yes',
      })
    }
  end

  describe 'when deploying with xinetd on ubuntu' do
    let (:facts) { {  :osfamily         => 'Debian',
                      :operatingsystem  => 'Ubuntu',
                      :path     => '/usr/local/bin:/usr/bin:/bin', } }
    let (:params) { { :inetd    => true, } }
    it {
      should include_class('xinetd')
      should contain_service('tftpd-hpa').with({
        'ensure'      => 'stopped',
        'enable'      => false,
      })
      should contain_xinetd__service('tftp').with({
        'port'        => '69',
        'protocol'    => 'udp',
        'server_args' => '--secure /var/lib/tftpboot',
        'server'      => '/usr/sbin/in.tftpd',
        'user'        => 'tftp',
        'socket_type' => 'dgram',
        'cps'         => '100 2',
        'flags'       => 'IPv4',
        'per_source'   => '11',
        'wait'        => 'yes',
      })
    }
  end

  describe 'when deploying with xinetd on debian' do
    let (:facts) { {  :osfamily         => 'Debian',
                      :operatingsystem  => 'Debian',
                      :path     => '/usr/local/bin:/usr/bin:/bin', } }
    let (:params) { { :inetd    => true, } }
    it {
      should include_class('xinetd')
      should contain_xinetd__service('tftp').with({
        'port'        => '69',
        'protocol'    => 'udp',
        'server_args' => '--secure /srv/tftp',
        'server'      => '/usr/sbin/in.tftpd',
        'user'        => 'tftp',
        'socket_type' => 'dgram',
        'cps'         => '100 2',
        'flags'       => 'IPv4',
        'per_source'  => '11',
        'wait'        => 'yes',
        'bind'        => '0.0.0.0',
      })
    }
  end

  describe 'when deploying with xinetd with custom options' do
    let (:facts) { {  :osfamily         => 'Debian',
                      :operatingsystem  => 'Debian',
                      :path     => '/usr/local/bin:/usr/bin:/bin', } }
    let (:params) { { :inetd    => true,
                      :options  => '--secure --timeout 50', } }
    it {
      should include_class('xinetd')
      should contain_xinetd__service('tftp').with({
        'port'        => '69',
        'protocol'    => 'udp',
        'server_args' => '--secure --timeout 50 /srv/tftp',
        'server'      => '/usr/sbin/in.tftpd',
        'user'        => 'tftp',
        'socket_type' => 'dgram',
        'cps'         => '100 2',
        'flags'       => 'IPv4',
        'per_source'  => '11',
        'wait'        => 'yes',
        'bind'        => '0.0.0.0',
      })
    }
  end

  describe 'when deploying with xinetd with custom settings' do
    let (:facts) { {  :osfamily         => 'Debian',
                      :operatingsystem  => 'Debian',
                      :path       => '/usr/local/bin:/usr/bin:/bin', } }
    let (:params) { { :inetd      => true,
                      :port       => 1069,
                      :address    => '127.0.0.1',
                      :username   => 'root',
                      :directory  => '/tftpboot', } }
    it {
      should include_class('xinetd')
      should contain_xinetd__service('tftp').with({
        'port'        => '1069',
        'protocol'    => 'udp',
        'server_args' => '--secure /tftpboot',
        'server'      => '/usr/sbin/in.tftpd',
        'user'        => 'root',
        'socket_type' => 'dgram',
        'cps'         => '100 2',
        'flags'       => 'IPv4',
        'per_source'   => '11',
        'wait'        => 'yes',
        'bind'        => '127.0.0.1',
      })
    }
  end

end