JRuby で JDBC の単純なラッパーを作成しています。基本的にDBW
、接続文字列とオプションの初期化ブロックを受け取るラッパー クラスが必要です。
require 'java'
class DBW
def initialize (connection_string, &optional_init_block)
if optional_init_block
yield
end
@connection_string = connection_string
end
def get_connection
Java::java.sql.DriverManager.getConnection(@connection_string)
end
end
ただし、私のテストでは、Driver
に登録するテスト ダブルを使用したいDriverManager
ので、RSpec テストで次のことを行いました。
it "can produce a connection using the connection string" do
mock_conn = instance_double("Connection") # A dummy connection instance
mock_driver = instance_double("Driver")
allow(mock_driver).to receive(:acceptsURL).with(any_args) {
# this doesn't get called when the wrapper calls getConnection on the DriverManager
true
}
# Expecting that connect would be called on the driver with the connecion string...
allow(mock_driver).to receive(:connect).with(any_args).and_return(mock_conn)
wrapper = DBW.new "jdbc:subprotocol:subname" do
# Initialize the DriverManager with the mock driver
Java::java.sql.DriverManager.registerDriver(mock_driver)
end
# This should call in to DriverManager.getConnection
conn = wrapper.get_connection
expect(conn).to eq(mock_conn)
end
テストを実行すると、次のエラーが表示されます。
Failures:
1) DBW can produce a connection using the connection string
Failure/Error: Unable to find matching line from backtrace
Java::JavaSql::SQLException:
No suitable driver found for jdbc:subprotocol:subname
# java.sql.DriverManager.getConnection(java/sql/DriverManager.java:689)
# java.sql.DriverManager.getConnection(java/sql/DriverManager.java:270)
# java.lang.reflect.Method.invoke(java/lang/reflect/Method.java:497)
# RUBY.get_connection(/playground/dbw.rb:12)
# RUBY.(root)(/playground/specs/dbw_spec.rb:39)
テスト コードに示されているように、acceptsURL メソッドは によって呼び出されませんDriverManager
。私が見逃しているアイデアはありますか?