-
Notifications
You must be signed in to change notification settings - Fork 27
/
nats_tls_config_spec.rb
377 lines (348 loc) · 14.2 KB
/
nats_tls_config_spec.rb
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
require 'rspec'
require 'bosh/template/test'
require 'yaml'
require 'json'
module Bosh::Template::Test
describe 'nats-tls.conf.erb' do
describe 'template rendering' do
let(:release_path) { File.join(File.dirname(__FILE__), '../..') }
let(:release) { ReleaseDir.new(release_path) }
let(:merged_manifest_properties) do
{
'nats' => {
'user' => 'my-user',
'password' => 'my-password',
'hostname' => 'my-host',
'port' => 4222,
'cluster_port' => 4223,
'authorization_timeout' => 15,
'machines' => nil,
'no_advertise' => false,
'debug' => false,
'trace' => false,
'http' => '0.0.0.0:0',
'prof_port' => 0,
'external' => {
'tls' => {
'ca' => 'external-tls-ca',
'certificate' => 'external-tls-cert',
'private_key' => 'external-tls-key'
}
},
'internal' => {
'tls' => {
'enabled' => true,
'ca' => 'internal-tls-ca',
'certificate' => 'internal-tls-cert',
'private_key' => 'internal-tls-key'
}
},
'client' => {
'tls' => {
'certificate' => 'client-tls-cert',
'private_key' => 'client-tls-key'
}
}
}
}
end
let(:links) do
[
Link.new(
name: 'nats',
instances: [
LinkInstance.new(id: 'meowmeowmeow'),
LinkInstance.new(id: 'a-b-c-d')
],
properties: {
'nats' => {
'user' => 'my-user',
'password' => 'my-password',
'hostname' => 'my-host',
'port' => 4222,
'cluster_port' => 4223,
'http' => '0.0.0.0:0'
}
}
)
]
end
let(:spec) do
{
'address' => '10.0.0.1'
}
end
let(:expected_hash) do
{
'net' => '10.0.0.1',
'port' => 4222,
'prof_port' => 0,
'http' => '0.0.0.0:0',
'write_deadline' => '2s',
'debug' => false,
'trace' => false,
'logtime' => true,
'authorization' => {
'user' => "my-user",
'password' => "my-password",
'timeout' => 15,
},
'tls' => {
'ca_file' => "/var/vcap/jobs/nats-tls/config/external_tls/ca.pem",
'cert_file' => "/var/vcap/jobs/nats-tls/config/external_tls/certificate.pem",
'key_file' => "/var/vcap/jobs/nats-tls/config/external_tls/private_key.pem",
'cipher_suites' => [
"TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384",
"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
],
'curve_preferences' => [
"CurveP384",
],
'timeout' => 5,
'verify' => true,
},
'cluster' => {
'no_advertise' => false,
'host' => "10.0.0.1",
'port' => 4223,
'pool_size' => -1,
'authorization' => {
'user' => "my-user",
'password' => "my-password",
'timeout' => 15,
},
'tls' => {
'ca_file' => "/var/vcap/jobs/nats-tls/config/internal_tls/ca.pem",
'cert_file' => "/var/vcap/jobs/nats-tls/config/internal_tls/certificate.pem",
'key_file' => "/var/vcap/jobs/nats-tls/config/internal_tls/private_key.pem",
'cipher_suites' => [
"TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384",
"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
],
'curve_preferences' => [
"CurveP384",
],
'timeout' => 5,
'verify' => true,
},
'routes' => [
'nats-route://my-user:[email protected]:4223',
'nats-route://my-user:[email protected]:4223',
]
},
'no_sys_acc' => true,
}
end
describe 'nats-tls job' do
let(:job) {release.job('nats-tls')}
describe 'config/nats.conf' do
let(:template) { job.template('config/nats-tls.conf') }
it 'renders the template with the provided manifest properties' do
rendered_hash = YAML.load(template.render(merged_manifest_properties, consumes: links, spec: spec))
expect(rendered_hash).to eq(expected_hash)
end
describe 'when nats is disabled' do
let(:links) do
[
Link.new(
name: 'nats',
instances: [
LinkInstance.new(id: 'meowmeowmeow'),
LinkInstance.new(id: 'a-b-c-d')
],
properties: {
'nats' => {
'user' => 'my-user',
'password' => 'nats-password',
'hostname' => 'nats-host',
'port' => 4222,
'cluster_port' => 4223,
'http' => '0.0.0.0:0',
'disable' => true
}
}
)
]
end
it 'does not include nats in the routes' do
expected_hash['cluster']['routes'] = []
rendered_hash = YAML.load(template.render(merged_manifest_properties, consumes: links, spec: spec))
expect(rendered_hash).to eq(expected_hash)
end
end
describe 'nats machine ips are provided' do
before do
merged_manifest_properties['nats']['machines'] = ['192.0.0.1', '198.5.4.3']
expected_hash['cluster']['routes'] = [
'nats-route://my-user:[email protected]:4223',
'nats-route://my-user:[email protected]:4223'
]
end
it 'renders the template with the provided manifest properties' do
rendered_hash = YAML.load(template.render(merged_manifest_properties, consumes: links, spec: spec))
expect(rendered_hash).to eq(expected_hash)
end
end
describe 'nats machine ips and nontls_cluster_port are provided' do
before do
merged_manifest_properties['nats']['machines'] = ['192.0.0.1', '198.5.4.3']
merged_manifest_properties['nats']['nontls_cluster_port'] = '4225'
expected_hash['cluster']['routes'] = [
'nats-route://my-user:[email protected]:4223',
'nats-route://my-user:[email protected]:4223',
'nats-route://my-user:[email protected]:4225',
'nats-route://my-user:[email protected]:4225',
]
end
it 'renders the template with the provided manifest properties' do
rendered_hash = YAML.load(template.render(merged_manifest_properties, consumes: links, spec: spec))
expect(rendered_hash).to eq(expected_hash)
end
end
describe 'password authentication is disabled' do
before do
merged_manifest_properties['nats']['user'] = nil
merged_manifest_properties['nats']['password'] = nil
expected_hash.delete('authorization')
expected_hash['cluster'].delete('authorization')
end
it 'renders the template without password authentication properties' do
rendered_hash = YAML.load(template.render(merged_manifest_properties, consumes: links, spec: spec))
expect(rendered_hash).to eq(expected_hash)
end
end
describe 'password authentication is disabled due to auth_required = false' do
before do
merged_manifest_properties['nats']['auth_required'] = false
expected_hash.delete('authorization')
expected_hash['cluster'].delete('authorization')
end
it 'renders the template without password authentication properties' do
rendered_hash = YAML.load(template.render(merged_manifest_properties, consumes: links, spec: spec))
expect(rendered_hash).to eq(expected_hash)
end
end
end
describe 'config/bpm.yml' do
let(:template) { job.template('config/bpm.yml') }
it 'renders the template with the provided manifest properties' do
rendered_template = YAML.load(template.render(merged_manifest_properties, consumes: links, spec: spec))
expected_template = {
'processes' => [
{
'name' => 'nats-tls-wrapper',
'limits' => {
'open_files' => 100000
},
'executable' => '/var/vcap/packages/nats-v2-migrate/bin/nats-wrapper',
'args' => ['--config-file', '/var/vcap/jobs/nats-tls/config/migrator-config.json']
},
{
'name' => 'healthcheck',
'executable' => '/var/vcap/packages/nats-tls-healthcheck/bin/nats-tls-healthcheck',
'args' => [
'--address',
'10.0.0.1',
'--port',
4222,
'--server-ca',
'/var/vcap/jobs/nats-tls/config/external_tls/ca.pem',
'--server-hostname',
'my-host',
'--client-certificate',
'/var/vcap/jobs/nats-tls/config/client_tls/certificate.pem',
'--client-private-key',
'/var/vcap/jobs/nats-tls/config/client_tls/private_key.pem',
'--user',
'my-user',
'--password',
'my-password'
]
}
]
}
expect(rendered_template).to eq(expected_template)
end
describe 'password authentication is disabled' do
before do
merged_manifest_properties['nats']['user'] = nil
merged_manifest_properties['nats']['password'] = nil
end
it 'renders the template without password authentication properties' do
rendered_template = YAML.load(template.render(merged_manifest_properties, consumes: links, spec: spec))
expected_template = {
'processes' => [
{
'name' => 'nats-tls-wrapper',
'limits' => {
'open_files' => 100000
},
'executable' => '/var/vcap/packages/nats-v2-migrate/bin/nats-wrapper',
'args' => ['--config-file', '/var/vcap/jobs/nats-tls/config/migrator-config.json']
},
{
'name' => 'healthcheck',
'executable' => '/var/vcap/packages/nats-tls-healthcheck/bin/nats-tls-healthcheck',
'args' => [
'--address',
'10.0.0.1',
'--port',
4222,
'--server-ca',
'/var/vcap/jobs/nats-tls/config/external_tls/ca.pem',
'--server-hostname',
'my-host',
'--client-certificate',
'/var/vcap/jobs/nats-tls/config/client_tls/certificate.pem',
'--client-private-key',
'/var/vcap/jobs/nats-tls/config/client_tls/private_key.pem',
]
}
]
}
expect(rendered_template).to eq(expected_template)
end
end
end
describe 'config/client_tls/certificate.pem' do
let(:template) { job.template('config/client_tls/certificate.pem') }
it 'renders the certificate correctly' do
output = YAML.load(template.render(merged_manifest_properties, consumes: links, spec: spec))
expect(output).to eq('client-tls-cert')
end
describe 'when a client certificate is not provided in the manifest' do
let(:merged_manifest_properties_without_certificate) do
merged_manifest_properties.tap do |props|
props['nats']['client']['tls'].delete('certificate')
end
end
it 'fails with a meaningful error message' do
expect do
YAML.load(template.render(merged_manifest_properties_without_certificate, consumes: links, spec: spec))
end.to raise_error(/nats.client.tls.certificate not provided in nats-tls job properties/)
end
end
end
describe 'config/client_tls/private_key.pem' do
let(:template) { job.template('config/client_tls/private_key.pem') }
it 'renders the private key correctly' do
output = YAML.load(template.render(merged_manifest_properties, consumes: links, spec: spec))
expect(output).to eq('client-tls-key')
end
describe 'when a client private_key is not provided in the manifest' do
let(:merged_manifest_properties_without_private_key) do
merged_manifest_properties.tap do |props|
props['nats']['client']['tls'].delete('private_key')
end
end
it 'fails with a meaningful error message' do
expect do
YAML.load(template.render(merged_manifest_properties_without_private_key, consumes: links, spec: spec))
end.to raise_error(/nats.client.tls.private_key not provided in nats-tls job properties/)
end
end
end
end
end
end
end