Skip to content

Commit 7a55dd0

Browse files
authored
Merge pull request #905 from syedriko/ssl_ca_cert_file_path_array
Make ssl_ca_cert_file_path support an array of files
2 parents 7aadb07 + 93d6463 commit 7a55dd0

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

lib/kafka/client.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# coding: utf-8
12
# frozen_string_literal: true
23

34
require "kafka/ssl_context"
@@ -38,8 +39,8 @@ class Client
3839
# @param ssl_ca_cert [String, Array<String>, nil] a PEM encoded CA cert, or an Array of
3940
# PEM encoded CA certs, to use with an SSL connection.
4041
#
41-
# @param ssl_ca_cert_file_path [String, nil] a path on the filesystem to a PEM encoded CA cert
42-
# to use with an SSL connection.
42+
# @param ssl_ca_cert_file_path [String, Array<String>, nil] a path on the filesystem, or an
43+
# Array of paths, to PEM encoded CA cert(s) to use with an SSL connection.
4344
#
4445
# @param ssl_client_cert [String, nil] a PEM encoded client cert to use with an
4546
# SSL connection. Must be used in combination with ssl_client_cert_key.

lib/kafka/ssl_context.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ def self.build(ca_cert_file_path: nil, ca_cert: nil, client_cert: nil, client_ce
4747
Array(ca_cert).each do |cert|
4848
store.add_cert(OpenSSL::X509::Certificate.new(cert))
4949
end
50-
if ca_cert_file_path
51-
store.add_file(ca_cert_file_path)
50+
Array(ca_cert_file_path).each do |cert_file_path|
51+
store.add_file(cert_file_path)
5252
end
5353
if ca_certs_from_system
5454
store.set_default_paths

spec/ssl_context_spec.rb

+6
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@
3131
}.to raise_exception(ArgumentError)
3232
end
3333

34+
it "raises an OpenSSL::X509::StoreError if an array of non-existing files is passed for ca_cert_file_path" do
35+
expect {
36+
Kafka::SslContext.build(ca_cert_file_path: ["no_such_file", "no_such_file_either"])
37+
}.to raise_exception(OpenSSL::X509::StoreError)
38+
end
39+
3440
context "with self signed cert fixtures" do
3541
# How the certificates were generated, they are not actually in a chain
3642
# openssl req -newkey rsa:2048 -nodes -keyout spec/fixtures/client_cert_key.pem -x509 -days 365 -out spec/fixtures/client_cert.pem

0 commit comments

Comments
 (0)