summaryrefslogtreecommitdiff
path: root/spec/defines/openvpn_client_spec.rb
blob: 143b76f2e263f6c88c6a7f2d0a7726940d7f6ee1 (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
require 'spec_helper'
 
describe 'openvpn::client', :type => :define do
  let(:title) { 'test_client' }
  let(:params) { { 'server' => 'test_server' } }
  let(:facts) { { :fqdn => 'somehost', :concat_basedir => '/var/lib/puppet/concat' } }

  it { should contain_exec('generate certificate for test_client in context of test_server') }

  [ 'test_client', 'test_client/keys'].each do |directory|
    it { should contain_file("/etc/openvpn/test_server/download-configs/#{directory}") }
  end

  [ 'test_client.crt', 'test_client.key', 'ca.crt' ].each do |file|
    it { should contain_file("/etc/openvpn/test_server/download-configs/test_client/keys/#{file}").with(
      'ensure'  => 'link',
      'target'  => "/etc/openvpn/test_server/easy-rsa/keys/#{file}"
    )}
  end
  
  it { should contain_exec('tar the thing test_server with test_client').with(
    'cwd'     => '/etc/openvpn/test_server/download-configs/',
    'command' => '/bin/rm test_client.tar.gz; tar --exclude=\*.conf.d -chzvf test_client.tar.gz test_client'
  ) }

  context "setting the minimum parameters" do
    let(:params) { { 'server' => 'test_server' } }
    let(:facts) { { :fqdn => 'somehost', :concat_basedir => '/var/lib/puppet/concat' } }

    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^client$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^ca\s+keys\/ca\.crt$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^cert\s+keys\/test_client.crt$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^key\s+keys\/test_client\.key$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^dev\s+tun$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^proto\s+tcp$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^remote\s+somehost\s+1194$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^comp-lzo$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^resolv-retry\s+infinite$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^nobind$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^persist-key$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^persist-tun$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^mute-replay-warnings$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^ns\-cert\-type\s+server$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^verb\s+3$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^mute\s+20$/)}
  end

  context "setting all of the parameters" do
    let(:params) { { 
      'server'                => 'test_server',
      'compression'           => 'comp-something',
      'dev'                   => 'tap',
      'mute'                  => 10,
      'mute_replay_warnings'  => false,
      'nobind'                => false,
      'ns_cert_type'          => 'client',
      'persist_key'           => false,
      'persist_tun'           => false,
      'port'                  => '123',
      'proto'                 => 'udp',
      'remote_host'           => 'somewhere',
      'resolv_retry'          => '2m',
      'verb'                  => '1'
    } }
    let(:facts) { { :fqdn => 'somehost', :concat_basedir => '/var/lib/puppet/concat' } }

    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^client$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^ca\s+keys\/ca\.crt$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^cert\s+keys\/test_client.crt$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^key\s+keys\/test_client\.key$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^dev\s+tap$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^proto\s+udp$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^remote\s+somewhere\s+123$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^comp-something$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^resolv-retry\s+2m$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^ns\-cert\-type\s+client$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^verb\s+1$/)}
    it { should contain_file('/etc/openvpn/test_server/download-configs/test_client/test_client.conf').with_content(/^mute\s+10$/)}
  end





#  it { should contain_openvpn__option('ca test_server with test_client').with(
#    'server'  => 'test_server', 
#    'client'  => 'test_client',
#    'key'     => 'ca', 
#    'value'   => 'keys/ca.crt'
#  )}
#  it { should contain_openvpn__option('cert test_server with test_client').with(
#    'server'  => 'test_server', 
#    'client'  => 'test_client',
#    'key'     => 'cert', 
#    'value'   => 'keys/test_client.crt'
#  )}
#  it { should contain_openvpn__option('key test_server with test_client').with(
#    'server'  => 'test_server', 
#    'client'  => 'test_client',
#    'key'     => 'key', 
#    'value'   => 'keys/test_client.key'
#  )}
#  it { should contain_openvpn__option('client test_server with test_client').with(
#    'server'  => 'test_server', 
#    'client'  => 'test_client',
#    'key'     => 'client'
#  )}
#  it { should contain_openvpn__option('dev test_server with test_client').with(
#    'server'  => 'test_server', 
#    'client'  => 'test_client',
#    'key'     => 'dev', 
#    'value'   => 'tun'
#  )}
#  it { should contain_openvpn__option('proto test_server with test_client').with(
#    'server'  => 'test_server', 
#    'client'  => 'test_client',
#    'key'     => 'proto', 
#    'value'   => 'tcp'
#  )}
#  it { should contain_openvpn__option('remote test_server with test_client').with(
#    'server'  => 'test_server', 
#    'client'  => 'test_client',
#    'key'     => 'remote', 
#    'value'   => 'somehost 1194'
#  )}
#  it { should contain_openvpn__option('resolv-retry test_server with test_client').with(
#    'server'  => 'test_server', 
#    'client'  => 'test_client',
#    'key'     => 'resolv-retry', 
#    'value'   => 'infinite'
#  )}
#  it { should contain_openvpn__option('nobind test_server with test_client').with(
#    'server'  => 'test_server', 
#    'client'  => 'test_client',
#    'key'     => 'nobind'
#  )}
#  it { should contain_openvpn__option('persist-key test_server with test_client').with(
#    'server'  => 'test_server', 
#    'client'  => 'test_client',
#    'key'     => 'persist-key'
#  )}
#  it { should contain_openvpn__option('persist-tun test_server with test_client').with(
#    'server'  => 'test_server', 
#    'client'  => 'test_client',
#    'key'     => 'persist-tun'
#  )}
#  it { should contain_openvpn__option('mute-replay-warnings test_server with test_client').with(
#    'server'  => 'test_server', 
#    'client'  => 'test_client',
#    'key'     => 'mute-replay-warnings'
#  )}
#  it { should contain_openvpn__option('ns-cert-type test_server with test_client').with(
#    'server'  => 'test_server', 
#    'client'  => 'test_client',
#    'key'     => 'ns-cert-type', 
#    'value'   => 'server'
#  )}
#  it { should contain_openvpn__option('comp-lzo test_server with test_client').with(
#    'server'  => 'test_server', 
#    'client'  => 'test_client',
#    'key'     => 'comp-lzo'
#  )}
#  it { should contain_openvpn__option('verb test_server with test_client').with(
#    'server'  => 'test_server', 
#    'client'  => 'test_client',
#    'key'     => 'verb', 
#    'value'   => '3'
#  )}
#  it { should contain_openvpn__option('mute test_server with test_client').with(
#    'server'  => 'test_server', 
#    'client'  => 'test_client',
#    'key'     => 'mute', 
#    'value'   => '20'
#  )}
end