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 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757
|
#!/usr/bin/env lua5.4
package.path = "../?.lua;" .. package.path
package.cpath = "../?.so;" .. package.cpath
require "luarocks.loader"
require 'busted.runner'()
local sql_code = {
['encoding'] = "select %s%s as retval;",
['select'] = "select * from select_tests where name = %s;",
['select_multi'] = "select * from select_tests where flag = %s;",
['select_count'] = "select count(*) as total from insert_tests;",
['select_limit'] = "select * from select_tests limit %s;",
['insert'] = "insert into insert_tests ( val ) values ( %s );",
['insert_returning'] = "insert into insert_tests ( val ) values ( %s ) returning id;",
['insert_select'] = "select * from insert_tests where id = %s;",
['update_all'] = "update update_tests set last_update = %s;",
['update_some'] = "update update_tests set last_update = %s where flag = %s;"
}
local function code( sql_test_code, arg )
local ret = string.format(sql_code[sql_test_code], config.placeholder, arg)
--print(ret)
return ret
end
local function setup_tests()
local err
DBI = require "DBI"
assert.is_not_nil(DBI)
dbh, err = DBI.Connect(
db_type,
config.connect.name,
config.connect.user,
config.connect.pass,
config.connect.host,
config.connect.port
)
assert.is_nil(err)
assert.is_not_nil(dbh)
assert.is_not_nil(dbh:autocommit( true ))
assert.is_true( dbh:ping() )
return dbh
end
local function teardown_tests()
if dbh then
dbh:close()
dbh = nil
end
end
local function connection_fail()
local dbh2, err = DBI.Connect(
db_type,
"Bogus1-3jrn23j4n32j4n23jn4@32^$2j",
"Bogus2-#*%J#@&*FNM@JK#FM#",
"Bogus3-#*NMR@JNM^#M<&$*%"
)
assert.is_nil(dbh2)
assert.is_string(err)
end
local function syntax_error()
local sth, err = dbh:prepare("Break me 3i5m2r3krm3280j648390j@#(J%28903j523890j623")
assert.is_nil(sth)
assert.is_string(err)
end
local function test_encoding()
local query
for vtype, val in pairs(config.encoding_test) do
if config.have_typecasts then
query = code('encoding', vtype)
else
query = code('encoding', '')
end
local sth = assert.is_not_nil(dbh:prepare(query))
assert.is_not_nil(sth)
assert.is_not_nil(sth:execute(val))
local row = sth:rows(true)()
assert.is_not_nil(row)
assert.is_equal(val, row['retval'])
assert.is_equal(type(val), type(row['retval']))
sth:close()
end
end
local function test_select()
local sth, err = dbh:prepare(code('select'))
local count = 0
local success
assert.is_nil(err)
assert.is_not_nil(sth)
success, err = sth:execute("Row 1")
assert.is_true(success)
assert.is_nil(err)
for row in sth:rows(true) do
count = count + 1
if config.have_booleans then
assert.is_true(row['flag'])
else
assert.equals(1, row['flag'])
end
assert.equals('Row 1', row['name'])
assert.is_number(row['maths'])
end
assert.equals(1, count)
if config.have_rowcount then
assert.equals(sth:rowcount(), count)
end
sth:close()
end
--
-- Added to expose the MySQL limit bug, see Github issue #64
--
local function test_select_limit()
local sth, err = dbh:prepare(code('select_limit'))
local count = 0
local success
assert.is_nil(err)
assert.is_not_nil(sth)
success, err = sth:execute(1)
assert.is_true(success)
assert.is_nil(err)
for row in sth:rows(true) do
count = count + 1
if config.have_booleans then
assert.is_true(row['flag'])
else
assert.equals(1, row['flag'])
end
assert.equals('Row 1', row['name'])
assert.is_number(row['maths'])
end
assert.equals(1, count)
if config.have_rowcount then
assert.equals(sth:rowcount(), count)
end
sth:close()
end
local function test_select_multi()
local sth, err = dbh:prepare(code('select_multi'))
local count = 0
local success
assert.is_nil(err)
assert.is_not_nil(sth)
success, err = sth:execute(false)
assert.is_true(success)
assert.is_nil(err)
for row in sth:rows(false) do
count = count + 1
assert.equals(#row, 4)
assert.is_number(row[1])
assert.is_string(row[2])
if config.have_booleans then
assert.is_false(row[3])
else
assert.equals(0, row[3])
end
assert.is_number(row[4])
end
assert.equals(2, count)
if config.have_rowcount then
assert.equals(sth:rowcount(), count)
end
sth:close()
end
local function test_insert()
local sth, sth2, err, success
local stringy = os.date()
sth, err = dbh:prepare(code('insert'))
assert.is_nil(err)
assert.is_not_nil(sth)
success, err = sth:execute(stringy)
assert.is_true(success)
assert.is_nil(err)
assert.is_equal(1, sth:affected())
--
-- Grab it back, make sure it's all good
--
local id = dbh:last_id()
assert.is_not_nil(id)
sth:close()
sth2, err = dbh:prepare(code('insert_select'))
assert.is_nil(err)
assert.is_not_nil(sth)
success, err = sth2:execute(id)
assert.is_true(success)
assert.is_nil(err)
local row = sth2:rows(false)()
assert.is_not_nil(row)
assert.are_equal(id, row[1])
assert.are_equal(stringy, row[2])
sth:close()
sth2:close()
end
local function test_insert_string_with_nul()
local sth, sth2, err, success
local stringy = 'a\0b'
sth, err = dbh:prepare(code('insert'))
assert.is_nil(err)
assert.is_not_nil(sth)
success, err = sth:execute(stringy)
assert.is_true(success)
assert.is_nil(err)
assert.is_equal(1, sth:affected())
--
-- Grab it back, make sure it's all good
--
local id = dbh:last_id()
assert.is_not_nil(id)
sth:close()
sth2, err = dbh:prepare(code('insert_select'))
assert.is_nil(err)
assert.is_not_nil(sth)
success, err = sth2:execute(id)
assert.is_true(success)
assert.is_nil(err)
local row = sth2:rows(false)()
assert.is_not_nil(row)
assert.are_equal(id, row[1])
assert.are_equal(stringy, row[2])
sth:close()
sth2:close()
end
local function test_insert_multi()
local sth, sth2, err, rs, count, success
local stringy = os.date()
sth, err = dbh:prepare(code('insert'))
assert.is_nil(err)
assert.is_not_nil(sth)
sth2, err = dbh:prepare(sql_code['select_count'])
assert.is_nil(err)
assert.is_not_nil(sth2)
--
-- See how many rows are in the table
--
rs, err = sth2:execute()
assert.is_nil(err)
assert.is_not_nil(rs)
local itr = sth2:rows(false)
count = itr()[1]
-- drain the results - should only be one row but let's be correct
while itr() do success = nil end
--
-- Reuse the insert statement quite a few times
--
for i=1,10 do
success, err = sth:execute(stringy .. '-' .. tostring(i))
assert.is_true(success)
assert.is_nil(err)
assert.is_not_nil(sth)
assert.is_equal(1, sth:affected())
end
--
-- Make sure all ten inserts succeed by comparing how many
-- rows are there now. Also proves selects are reusable.
--
rs, err = sth2:execute()
assert.is_nil(err)
assert.is_not_nil(rs)
itr = sth2:rows(false)
assert.is_equal(count + 10, itr()[1])
while itr() do success = nil end
sth:close()
sth2:close()
end
local function test_insert_null()
local sth, sth2, err, success
local stringy = os.date()
sth, err = dbh:prepare(code('insert'))
assert.is_nil(err)
assert.is_not_nil(sth)
success, err = sth:execute(nil)
assert.is_nil(err)
assert.is_true(success)
assert.is_equal(1, sth:affected())
--
-- Grab it back, make sure it's all good
--
local id = dbh:last_id()
assert.is_not_nil(id)
sth:close()
sth2, err = dbh:prepare(code('insert_select'))
assert.is_nil(err)
assert.is_not_nil(sth)
success, err = sth2:execute(id)
assert.is_true(success)
assert.is_nil(err)
local row = sth2:rows(false)()
assert.is_not_nil(row)
assert.are_equal(id, row[1])
assert.is_nil(row[2])
sth:close()
sth2:close()
end
local function test_insert_returning()
local sth, sth2, err, success
local stringy = os.date()
sth, err = dbh:prepare(code('insert_returning'))
assert.is_nil(err)
assert.is_not_nil(sth)
success, err = sth:execute(stringy)
assert.is_nil(err)
assert.is_true(success)
if config.has_rowcount then
assert.is_equal(1, sth:rowcount())
end
--
-- Grab it back, make sure it's all good
--
local id_row = sth:rows(false)()
assert.is_not_nil(id_row)
local id = id_row[1]
assert.is_not_nil(id)
sth:close()
sth2, err = dbh:prepare(code('insert_select'))
assert.is_nil(err)
assert.is_not_nil(sth)
sth2:execute(id)
local row = sth2:rows(false)()
assert.is_not_nil(row)
assert.are_equal(id, row[1])
assert.are_equal(stringy, row[2])
end
local function test_insert_null_returning()
local sth, sth2, err, success
sth, err = dbh:prepare(code('insert_returning'))
assert.is_nil(err)
assert.is_not_nil(sth)
success, err = sth:execute(nil)
assert.is_nil(err)
assert.is_true(success)
if config.has_rowcount then
assert.is_equal(1, sth:rowcount())
end
--
-- Grab it back, make sure it's all good
--
local id_row = sth:rows(false)()
assert.is_not_nil(id_row)
local id = id_row[1]
assert.is_not_nil(id)
sth:close()
sth2, err = dbh:prepare(code('insert_select'))
assert.is_nil(err)
assert.is_not_nil(sth)
sth2:execute(id)
local row = sth2:rows(false)()
assert.is_not_nil(row)
assert.are_equal(id, row[1])
assert.is_nil(row[2])
end
--
-- Prove affected() is functional.
--
local function test_update()
--
-- I originally used date handling and set the column
-- to NOW(), but Sqlite3 didn't play nice with that.
--
local sth, err = dbh:prepare(code('update_all'))
local success
assert.is_nil(err)
assert.is_not_nil(sth)
success, err = sth:execute(os.time() - math.random(50, 500))
assert.is_nil(err)
assert.is_true(success)
assert.equals(4, sth:affected())
sth:close()
-- do it again with the flag set, so we get fewer rows,
-- just to be sure.
-- which also means we need to sleep for a bit.
if config.have_booleans then
sth, err = dbh:prepare(code('update_some', 'false'))
else
sth, err = dbh:prepare(code('update_some', '0'))
end
assert.is_nil(err)
assert.is_not_nil(sth)
success, err = sth:execute(os.time())
assert.is_nil(err)
assert.is_true(success)
assert.equals(1, sth:affected())
end
--
-- Prove the nonexistant functions aren't there.
--
local function test_no_rowcount()
local sth, _ = dbh:prepare(code('select'))
local success, err = sth:execute("Row 1")
assert.is_true(success)
assert.is_nil(err)
assert.has_error(function()
sth:rowcount()
end)
sth:close()
end
--
-- Prove there is no insert_id.
--
local function test_no_insert_id()
local stringy = os.date()
local sth, err = dbh:prepare(code('insert'))
assert.is_nil(err)
assert.is_not_nil(sth)
sth:execute(stringy)
assert.has_error(function()
dbh:insert_id()
end)
sth:close()
end
--
-- Prove something sane happens in the event that the database
-- handle goes away, but statements are still open.
--
local function test_db_close_doesnt_segfault()
local sth,err = dbh:prepare("SELECT 1");
assert.is_nil(err)
assert.is_not_nil(sth)
dbh:close()
local sth2
sth2, err = dbh:prepare(code('insert'))
assert.is_nil(sth2)
assert.is_string(err)
dbh = nil
assert.has_error(function()
sth:execute()
end)
-- this also shouldn't segfault.
sth:close()
end
local function test_postgres_statement_leak()
for i = 1, 10 do
local sth = dbh:prepare("SELECT 1")
sth:execute()
for r in sth:rows() do
assert(r[1] == 1, "result should be 1")
end
sth:close()
end
for i = 1, 5 do
collectgarbage("collect")
end
do
local sth = dbh:prepare("SELECT * from pg_prepared_statements");
sth:execute();
local c = 0;
for row in sth:rows() do c = c + 1; end
assert(c < 10, "too many prepared statements still exist");
end
end
local function test_must_execute_before_fetch()
sth = dbh:prepare("select 1;")
assert.has_error(function()
sth:fetch()
end)
end
describe("PostgreSQL #psql", function()
db_type = "PostgreSQL"
config = dofile("configs/" .. db_type .. ".lua")
-- luacheck: ignore DBI dbh
local DBI, dbh
setup(setup_tests)
it( "Tests login failure", connection_fail )
it( "Tests syntax error", syntax_error )
it( "Tests value encoding", test_encoding )
it( "Tests a simple select", test_select )
it( "Tests multi-row selects", test_select_multi )
it( "Tests inserts", test_insert_returning )
it( "Tests inserts of NULL", test_insert_null_returning )
it( "Tests statement reuse", test_insert_multi )
it( "Tests no insert_id", test_no_insert_id )
it( "Tests affected rows", test_update )
it( "Tests for prepared statement leak", test_postgres_statement_leak )
it( "Tests closing dbh doesn't segfault", test_db_close_doesnt_segfault )
it( "Tests must execute before fetch", test_must_execute_before_fetch )
teardown(teardown_tests)
end)
describe("SQLite3 #sqlite3", function()
db_type = "SQLite3"
config = dofile("configs/" .. db_type .. ".lua")
-- luacheck: ignore DBI dbh
local DBI, dbh
setup(setup_tests)
it( "Tests syntax error", syntax_error )
it( "Tests value encoding", test_encoding )
it( "Tests simple selects", test_select )
it( "Tests multi-row selects", test_select_multi )
it( "Tests inserts", test_insert )
it( "Tests inserts of NULL", test_insert_null )
it( "Tests inserts string with NUL", test_insert_string_with_nul )
it( "Tests statement reuse", test_insert_multi )
it( "Tests no rowcount", test_no_rowcount )
it( "Tests affected rows", test_update )
it( "Tests closing dbh doesn't segfault", test_db_close_doesnt_segfault )
it( "Tests must execute before fetch", test_must_execute_before_fetch )
teardown(teardown_tests)
end)
describe("MySQL #mysql", function()
db_type = "MySQL"
config = dofile("configs/" .. db_type .. ".lua")
-- luacheck: ignore DBI dbh
local DBI, dbh
setup(setup_tests)
it( "Tests login failure", connection_fail )
it( "Tests syntax error", syntax_error )
it( "Tests value encoding", test_encoding )
it( "Tests simple selects", test_select )
it( "Tests selects with limit", test_select_limit )
it( "Tests multi-row selects", test_select_multi )
it( "Tests inserts", test_insert )
it( "Tests inserts of NULL", test_insert_null )
it( "Tests statement reuse", test_insert_multi )
it( "Tests affected rows", test_update )
it( "Tests closing dbh doesn't segfault", test_db_close_doesnt_segfault )
it( "Tests must execute before fetch", test_must_execute_before_fetch )
teardown(teardown_tests)
end)
describe("DuckDB #duckdb", function()
db_type = "DuckDB"
config = dofile("configs/" .. db_type .. ".lua")
-- luacheck: ignore DBI dbh
local DBI, dbh
setup(setup_tests)
it( "Tests syntax error", syntax_error )
it( "Tests value encoding", test_encoding )
it( "Tests simple selects", test_select )
it( "Tests selects with limit", test_select_limit )
it( "Tests multi-row selects", test_select_multi )
it( "Tests inserts", test_insert_returning )
it( "Tests inserts of NULL", test_insert_null_returning )
it( "Tests statement reuse", test_insert_multi )
it( "Tests affected rows", test_update )
it( "Tests no insert_id", test_no_insert_id )
it( "Tests closing dbh doesn't segfault", test_db_close_doesnt_segfault )
it( "Tests must execute before fetch", test_must_execute_before_fetch )
teardown(teardown_tests)
end)
|