2016-01-28 23:31:35 +00:00
|
|
|
require "spec"
|
|
|
|
require "db"
|
|
|
|
require "./dummy_driver"
|
|
|
|
|
|
|
|
describe DummyDriver do
|
2016-01-30 22:46:43 +00:00
|
|
|
it "with_dummy executes the block with a database" do
|
|
|
|
with_witness do |w|
|
|
|
|
with_dummy do |db|
|
|
|
|
w.check
|
|
|
|
db.should be_a(DB::Database)
|
|
|
|
end
|
|
|
|
end
|
2016-01-28 23:31:35 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe DummyDriver::DummyStatement do
|
2016-01-30 22:46:43 +00:00
|
|
|
it "should enumerate split rows by spaces" do
|
|
|
|
with_dummy do |db|
|
|
|
|
rs = db.query("")
|
|
|
|
rs.move_next.should be_false
|
|
|
|
rs.close
|
|
|
|
|
|
|
|
rs = db.query("a,b")
|
|
|
|
rs.move_next.should be_true
|
|
|
|
rs.move_next.should be_false
|
|
|
|
rs.close
|
|
|
|
|
|
|
|
rs = db.query("a,b 1,2")
|
|
|
|
rs.move_next.should be_true
|
|
|
|
rs.move_next.should be_true
|
|
|
|
rs.move_next.should be_false
|
|
|
|
rs.close
|
|
|
|
|
|
|
|
rs = db.query("a,b 1,2 c,d")
|
|
|
|
rs.move_next.should be_true
|
|
|
|
rs.move_next.should be_true
|
|
|
|
rs.move_next.should be_true
|
|
|
|
rs.move_next.should be_false
|
|
|
|
rs.close
|
|
|
|
end
|
2016-01-28 23:31:35 +00:00
|
|
|
end
|
|
|
|
|
2016-02-03 03:36:50 +00:00
|
|
|
# it "should query with block should executes always" do
|
|
|
|
# with_witness do |w|
|
|
|
|
# with_dummy do |db|
|
|
|
|
# db.query "a" do |rs|
|
|
|
|
# w.check
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# it "should query with block should executes always" do
|
|
|
|
# with_witness do |w|
|
|
|
|
# with_dummy do |db|
|
|
|
|
# db.query "lorem ipsum" do |rs|
|
|
|
|
# w.check
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
# end
|
2016-01-28 23:31:35 +00:00
|
|
|
|
|
|
|
it "should enumerate string fields" do
|
2016-01-30 22:46:43 +00:00
|
|
|
with_dummy do |db|
|
|
|
|
db.query "a,b 1,2" do |rs|
|
|
|
|
rs.move_next
|
|
|
|
rs.read(String).should eq("a")
|
|
|
|
rs.read(String).should eq("b")
|
|
|
|
rs.move_next
|
|
|
|
rs.read(String).should eq("1")
|
|
|
|
rs.read(String).should eq("2")
|
|
|
|
end
|
|
|
|
end
|
2016-01-28 23:31:35 +00:00
|
|
|
end
|
|
|
|
|
2016-01-29 19:13:01 +00:00
|
|
|
it "should enumerate nil fields" do
|
2016-01-30 22:46:43 +00:00
|
|
|
with_dummy do |db|
|
|
|
|
db.query "a,NULL 1,NULL" do |rs|
|
|
|
|
rs.move_next
|
|
|
|
rs.read?(String).should eq("a")
|
|
|
|
rs.read?(String).should be_nil
|
|
|
|
rs.move_next
|
|
|
|
rs.read?(Int64).should eq(1)
|
|
|
|
rs.read?(Int64).should be_nil
|
|
|
|
end
|
|
|
|
end
|
2016-01-29 19:13:01 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should enumerate int64 fields" do
|
2016-01-30 22:46:43 +00:00
|
|
|
with_dummy do |db|
|
|
|
|
db.query "3,4 1,2" do |rs|
|
|
|
|
rs.move_next
|
|
|
|
rs.read(Int64).should eq(3i64)
|
|
|
|
rs.read(Int64).should eq(4i64)
|
|
|
|
rs.move_next
|
|
|
|
rs.read(Int64).should eq(1i64)
|
|
|
|
rs.read(Int64).should eq(2i64)
|
|
|
|
end
|
|
|
|
end
|
2016-01-28 23:31:35 +00:00
|
|
|
end
|
2016-01-28 23:51:03 +00:00
|
|
|
|
2016-01-29 22:21:48 +00:00
|
|
|
it "should enumerate blob fields" do
|
2016-01-30 22:46:43 +00:00
|
|
|
with_dummy do |db|
|
|
|
|
db.query("az,AZ") do |rs|
|
|
|
|
rs.move_next
|
|
|
|
ary = [97u8, 122u8]
|
|
|
|
rs.read(Slice(UInt8)).should eq(Slice.new(ary.to_unsafe, ary.size))
|
|
|
|
ary = [65u8, 90u8]
|
|
|
|
rs.read(Slice(UInt8)).should eq(Slice.new(ary.to_unsafe, ary.size))
|
|
|
|
end
|
|
|
|
end
|
2016-01-29 22:21:48 +00:00
|
|
|
end
|
|
|
|
|
2016-02-02 01:33:58 +00:00
|
|
|
it "should get Nil scalars" do
|
2016-01-30 22:46:43 +00:00
|
|
|
with_dummy do |db|
|
2016-02-02 01:33:58 +00:00
|
|
|
DummyDriver::DummyResultSet.next_column_type = Nil
|
|
|
|
db.scalar("NULL").should be_nil
|
2016-01-30 22:46:43 +00:00
|
|
|
end
|
2016-01-28 23:51:03 +00:00
|
|
|
end
|
2016-01-29 22:21:48 +00:00
|
|
|
|
|
|
|
{% for value in [1, 1_i64, "hello", 1.5, 1.5_f32] %}
|
2016-01-30 22:46:43 +00:00
|
|
|
it "numeric scalars of type of {{value.id}} should return value or nil" do
|
|
|
|
with_dummy do |db|
|
2016-02-02 01:33:58 +00:00
|
|
|
DummyDriver::DummyResultSet.next_column_type = typeof({{value}})
|
|
|
|
db.scalar("#{{{value}}}").should eq({{value}})
|
2016-01-30 22:46:43 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should set positional arguments for {{value.id}}" do
|
|
|
|
with_dummy do |db|
|
2016-02-02 01:33:58 +00:00
|
|
|
DummyDriver::DummyResultSet.next_column_type = typeof({{value}})
|
|
|
|
db.scalar("?", {{value}}).should eq({{value}})
|
2016-01-30 22:46:43 +00:00
|
|
|
end
|
2016-01-29 22:21:48 +00:00
|
|
|
end
|
|
|
|
{% end %}
|
|
|
|
|
|
|
|
it "executes and selects blob" do
|
2016-01-30 22:46:43 +00:00
|
|
|
with_dummy do |db|
|
|
|
|
ary = UInt8[0x53, 0x51, 0x4C]
|
|
|
|
slice = Slice.new(ary.to_unsafe, ary.size)
|
2016-02-02 01:33:58 +00:00
|
|
|
DummyDriver::DummyResultSet.next_column_type = typeof(slice)
|
|
|
|
(db.scalar("?", slice) as Slice(UInt8)).to_a.should eq(ary)
|
2016-01-30 22:46:43 +00:00
|
|
|
end
|
2016-01-29 22:21:48 +00:00
|
|
|
end
|
2016-01-28 23:31:35 +00:00
|
|
|
end
|
|
|
|
end
|