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
|
shared 'a Connection' do
setup_test_environment
before do
@connection = DataObjects::Connection.new(CONFIG.uri)
end
after do
@connection.close
end
it 'should be a kind of Connection' do @connection.should.be.kind_of(::DataObjects::Connection) end
it 'should be a kind of Pooling' do @connection.should.be.kind_of(::DataObjects::Pooling) end
it 'should respond to #dispose' do @connection.should.respond_to(:dispose) end
describe 'dispose' do
describe 'on open connection' do
before do
@open_connection = DataObjects::Connection.new("#{@driver}://#{@user}:#{@password}@#{@host}:#{@port}#{@database}")
@open_connection.detach
end
after do
@open_connection.close
end
it 'dispose should be true' do
@open_connection.dispose.should.be.true
end
end
describe 'on closed connection' do
before do
@closed_connection = DataObjects::Connection.new("#{@driver}://#{@user}:#{@password}@#{@host}:#{@port}#{@database}")
@closed_connection.detach
@closed_connection.dispose
end
after do
@closed_connection.close
end
it 'dispose should be false' do
@closed_connection.dispose.should.be.false
end
it 'should raise an error on creating a command' do
should.raise(DataObjects::ConnectionError) {
@closed_connection.create_command("INSERT INTO non_existent_table (tester) VALUES (1)").execute_non_query
}
end
end
end
it 'should respond to #create_command' do @connection.should.respond_to(:create_command) end
describe 'create_command' do
it 'should be a kind of Command' do
@connection.create_command('This is a dummy command').should.be.kind_of(DataObjects::Command)
end
end
describe 'various connection URIs' do
def test_connection(conn)
reader = conn.create_command(CONFIG.testsql || "SELECT 1").execute_reader
reader.next!
reader.values[0]
end
after do
@open_connection.close if @open_connection
end
it 'should open with an uri object' do
uri = DataObjects::URI.new(
@driver,
@user,
@password,
@host,
@port && @port.to_i,
@database,
nil, nil
)
test_connection(DataObjects::Connection.new(uri)).should == 1
end
it 'should work with non-JDBC URLs' do
conn = DataObjects::Connection.new("#{CONFIG.uri.sub(/jdbc:/, '')}")
test_connection(conn).should == 1
end
end
end
shared 'a Connection with authentication support' do
%w[ @driver @user @password @host @port @database ].each do |ivar|
raise "+#{ivar}+ should be defined in before block" unless instance_variable_get(ivar)
end
describe 'with an invalid URI' do
# FIXME JRuby (and MRI): Should these be ArgumentError or DataObjects::SQLError?
def connecting_with(uri)
lambda { DataObjects::Connection.new(uri) }
end
it 'should raise an error if no database specified' do
connecting_with("#{@driver}://#{@user}:#{@password}@#{@host}:#{@port}").should.raise(ArgumentError, DataObjects::Error)
end
it 'should raise an error if bad username is given' do
connecting_with("#{@driver}://thisreallyshouldntexist:#{@password}@#{@host}:#{@port}#{@database}").should.raise(ArgumentError, DataObjects::Error)
end
it 'should raise an error if bad password is given' do
connecting_with("#{@driver}://#{@user}:completelyincorrectpassword:#{@host}:#{@port}#{@database}").should.raise(ArgumentError, DataObjects::Error)
end
it 'should raise an error if an invalid port is given' do
connecting_with("#{@driver}://#{@user}:#{@password}:#{@host}:648646543#{@database}").should.raise(ArgumentError, DataObjects::Error)
end
it 'should raise an error if an invalid database is given' do
connecting_with("#{@driver}://#{@user}:#{@password}:#{@host}:#{@port}/someweirddatabase").should.raise(ArgumentError, DataObjects::Error)
end
it 'should raise an error with a meaningless URI' do
connecting_with("#{@driver}://peekaboo$2!@#4543").should.raise(Addressable::URI::InvalidURIError)
end
end
end
shared 'a Connection with JDBC URL support' do
def test_connection(conn)
reader = conn.create_command(CONFIG.testsql || "SELECT 1").execute_reader
reader.next!
reader.values[0]
end
it 'should work with JDBC URLs' do
conn = DataObjects::Connection.new(CONFIG.jdbc_uri || "jdbc:#{CONFIG.uri.sub(/jdbc:/, '')}")
test_connection(conn).should == 1
end
end if JRUBY
shared 'a Connection with SSL support' do
if DataObjectsSpecHelpers.test_environment_supports_ssl?
describe 'connecting with SSL' do
it 'should connect securely' do
DataObjects::Connection.new("#{CONFIG.uri}?#{CONFIG.ssl}").secure?.should.be.true
end
end
end
describe 'connecting without SSL' do
it 'should not connect securely' do
DataObjects::Connection.new(CONFIG.uri).secure?.should.be.false
end
end
end
shared 'a Connection via JDNI' do
if JRUBY
describe 'connecting with JNDI' do
before do
begin
@jndi = Java::data_objects.JNDITestSetup.new("jdbc:#{CONFIG.uri}".gsub(/:sqlite3:/, ':sqlite:'), CONFIG.jdbc_driver, 'mydb')
@jndi.setup()
rescue
puts "use (after installation of maven) to test JNDI:"
puts "mvn rails:spec -Drails.fork=false"
end
end
after do
@jndi.teardown() unless @jndi.nil?
end
unless @jndi.nil?
it 'should connect' do
begin
c = DataObjects::Connection.new("java:comp/env/jdbc/mydb?scheme=#{CONFIG.scheme}")
c.should_not be_nil
rescue => e
if e.message =~ /java.naming.factory.initial/
puts "use (after installation of maven) to test JNDI:"
puts "mvn rails:spec -Drails.fork=false"
end
end
end
end
end
end
end
|