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
|
# frozen_string_literal: true
require 'spec_helper_acceptance'
describe 'managing java truststores' do
# rubocop:disable RSpec/InstanceVariable : Instance variables are inherited and thus cannot be contained within lets
include_context 'with common variables'
it 'creates a truststore' do
command = "rm #{@temp_dir}truststore.ts"
command = interpolate_powershell(command) if os[:family] == 'windows'
run_shell(command, expect_failures: true)
pp = <<-MANIFEST
java_ks { 'puppetca:#{@temp_dir}truststore':
ensure => #{@ensure_ks},
certificate => "#{@temp_dir}ca.pem",
target => "#{@temp_dir}truststore.ts",
password => 'puppet',
trustcacerts => true,
path => #{@resource_path},
}
MANIFEST
idempotent_apply(pp)
end
expectations = [
%r{Your keystore contains 1 entry},
%r{Alias name: puppetca},
%r{CN=Test CA},
]
it 'verifies the truststore' do
run_shell(keytool_command("-list -v -keystore #{@temp_dir}truststore.ts -storepass puppet")) do |r|
expect(r.exit_code).to be_zero
expectations.each do |expect|
expect(r.stdout).to match(expect)
end
end
end
it 'recreates a truststore if password fails' do
pp = <<-MANIFEST
java_ks { 'puppetca:#{@temp_dir}truststore':
ensure => latest,
certificate => "#{@temp_dir}ca.pem",
target => "#{@temp_dir}truststore.ts",
password => 'bobinsky',
password_fail_reset => true,
trustcacerts => true,
path => #{@resource_path},
}
MANIFEST
idempotent_apply(pp)
end
it 'verifies the truststore again' do
run_shell(keytool_command("-list -v -keystore #{@temp_dir}truststore.ts -storepass bobinsky")) do |r|
expect(r.exit_code).to be_zero
expectations.each do |expect|
expect(r.stdout).to match(expect)
end
end
end
# rubocop:enable RSpec/InstanceVariable
end
|