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
|
require './spec/spec_helper'
RSpec.describe Mysql2::Statement do
before(:example) do
@client = new_client(encoding: "utf8")
end
let(:performance_schema_enabled) do
performance_schema = @client.query "SHOW VARIABLES LIKE 'performance_schema'"
performance_schema.any? { |x| x['Value'] == 'ON' }
end
def stmt_count
# Use the performance schema in MySQL 5.7 and above
if performance_schema_enabled
@client.query("SELECT COUNT(1) AS count FROM performance_schema.prepared_statements_instances").first['count'].to_i
else
# Fall back to the global prepapred statement counter
@client.query("SHOW STATUS LIKE 'Prepared_stmt_count'").first['Value'].to_i
end
end
xit "should create a statement" do
statement = nil
expect { statement = @client.prepare 'SELECT 1' }.to change(&method(:stmt_count)).by(1)
expect(statement).to be_an_instance_of(Mysql2::Statement)
end
it "should raise an exception when server disconnects" do
@client.close
expect { @client.prepare 'SELECT 1' }.to raise_error(Mysql2::Error)
end
it "should tell us the param count" do
statement = @client.prepare 'SELECT ?, ?'
expect(statement.param_count).to eq(2)
statement2 = @client.prepare 'SELECT 1'
expect(statement2.param_count).to eq(0)
end
it "should tell us the field count" do
statement = @client.prepare 'SELECT ?, ?'
expect(statement.field_count).to eq(2)
statement2 = @client.prepare 'SELECT 1'
expect(statement2.field_count).to eq(1)
end
it "should let us execute our statement" do
statement = @client.prepare 'SELECT 1'
expect(statement.execute).not_to eq(nil)
end
it "should raise an exception without a block" do
statement = @client.prepare 'SELECT 1'
expect { statement.execute.each }.to raise_error(LocalJumpError)
end
it "should tell us the result count" do
statement = @client.prepare 'SELECT 1'
result = statement.execute
expect(result.count).to eq(1)
end
it "should let us iterate over results" do
statement = @client.prepare 'SELECT 1'
result = statement.execute
rows = []
result.each { |r| rows << r }
expect(rows).to eq([{ "1" => 1 }])
end
it "should handle booleans" do
stmt = @client.prepare('SELECT ? AS `true`, ? AS `false`')
result = stmt.execute(true, false)
expect(result.to_a).to eq(['true' => 1, 'false' => 0])
end
it "should handle bignum but in int64_t" do
stmt = @client.prepare('SELECT ? AS max, ? AS min')
int64_max = (1 << 63) - 1
int64_min = -(1 << 63)
result = stmt.execute(int64_max, int64_min)
expect(result.to_a).to eq(['max' => int64_max, 'min' => int64_min])
end
it "should handle bignum but beyond int64_t" do
stmt = @client.prepare('SELECT ? AS max1, ? AS max2, ? AS max3, ? AS min1, ? AS min2, ? AS min3')
int64_max1 = (1 << 63)
int64_max2 = (1 << 64) - 1
int64_max3 = 1 << 64
int64_min1 = -(1 << 63) - 1
int64_min2 = -(1 << 64) + 1
int64_min3 = -0xC000000000000000
result = stmt.execute(int64_max1, int64_max2, int64_max3, int64_min1, int64_min2, int64_min3)
expect(result.to_a).to eq(['max1' => int64_max1, 'max2' => int64_max2, 'max3' => int64_max3, 'min1' => int64_min1, 'min2' => int64_min2, 'min3' => int64_min3])
end
it "should accept keyword arguments on statement execute" do
stmt = @client.prepare 'SELECT 1 AS a'
expect(stmt.execute(as: :hash).first).to eq("a" => 1)
expect(stmt.execute(as: :array).first).to eq([1])
end
it "should accept bind arguments and keyword arguments on statement execute" do
stmt = @client.prepare 'SELECT ? AS a'
expect(stmt.execute(1, as: :hash).first).to eq("a" => 1)
expect(stmt.execute(1, as: :array).first).to eq([1])
end
it "should keep its result after other query" do
@client.query 'USE test'
@client.query 'CREATE TABLE IF NOT EXISTS mysql2_stmt_q(a int)'
@client.query 'INSERT INTO mysql2_stmt_q (a) VALUES (1), (2)'
stmt = @client.prepare('SELECT a FROM mysql2_stmt_q WHERE a = ?')
result1 = stmt.execute(1)
result2 = stmt.execute(2)
expect(result2.first).to eq("a" => 2)
expect(result1.first).to eq("a" => 1)
@client.query 'DROP TABLE IF EXISTS mysql2_stmt_q'
end
it "should be reusable 1000 times" do
statement = @client.prepare 'SELECT 1'
1000.times do
result = statement.execute
expect(result.to_a.length).to eq(1)
end
end
it "should be reusable 10000 times" do
statement = @client.prepare 'SELECT 1'
10000.times do
result = statement.execute
expect(result.to_a.length).to eq(1)
end
end
it "should handle comparisons and likes" do
@client.query 'USE test'
@client.query 'CREATE TABLE IF NOT EXISTS mysql2_stmt_q(a int, b varchar(10))'
@client.query 'INSERT INTO mysql2_stmt_q (a, b) VALUES (1, "Hello"), (2, "World")'
statement = @client.prepare 'SELECT * FROM mysql2_stmt_q WHERE a < ?'
results = statement.execute(2)
expect(results.first).to eq("a" => 1, "b" => "Hello")
statement = @client.prepare 'SELECT * FROM mysql2_stmt_q WHERE b LIKE ?'
results = statement.execute('%orld')
expect(results.first).to eq("a" => 2, "b" => "World")
@client.query 'DROP TABLE IF EXISTS mysql2_stmt_q'
end
it "should select dates" do
statement = @client.prepare 'SELECT NOW()'
result = statement.execute
expect(result.first.first[1]).to be_an_instance_of(Time)
end
it "should prepare Date values" do
now = Date.today
statement = @client.prepare('SELECT ? AS a')
result = statement.execute(now)
expect(result.first['a'].to_s).to eql(now.strftime('%F'))
end
it "should prepare Time values with microseconds" do
now = Time.now
statement = @client.prepare('SELECT ? AS a')
result = statement.execute(now)
# microseconds is six digits after the decimal, but only test on 5 significant figures
expect(result.first['a'].strftime('%F %T.%5N %z')).to eql(now.strftime('%F %T.%5N %z'))
end
it "should prepare DateTime values with microseconds" do
now = DateTime.now
statement = @client.prepare('SELECT ? AS a')
result = statement.execute(now)
# microseconds is six digits after the decimal, but only test on 5 significant figures
expect(result.first['a'].strftime('%F %T.%5N %z')).to eql(now.strftime('%F %T.%5N %z'))
end
it "should tell us about the fields" do
statement = @client.prepare 'SELECT 1 as foo, 2'
statement.execute
list = statement.fields
expect(list.length).to eq(2)
expect(list.first).to eq('foo')
expect(list[1]).to eq('2')
end
it "should handle as a decimal binding a BigDecimal" do
stmt = @client.prepare('SELECT ? AS decimal_test')
test_result = stmt.execute(BigDecimal("123.45")).first
expect(test_result['decimal_test']).to be_an_instance_of(BigDecimal)
expect(test_result['decimal_test']).to eql(123.45)
end
it "should update a DECIMAL value passing a BigDecimal" do
@client.query 'USE test'
@client.query 'DROP TABLE IF EXISTS mysql2_stmt_decimal_test'
@client.query 'CREATE TABLE mysql2_stmt_decimal_test (decimal_test DECIMAL(10,3))'
@client.prepare("INSERT INTO mysql2_stmt_decimal_test VALUES (?)").execute(BigDecimal("123.45"))
test_result = @client.query("SELECT * FROM mysql2_stmt_decimal_test").first
expect(test_result['decimal_test']).to eql(123.45)
end
it "should warn but still work if cache_rows is set to false" do
statement = @client.prepare 'SELECT 1'
result = nil
expect { result = statement.execute(cache_rows: false).to_a }.to output(/:cache_rows is forced for prepared statements/).to_stderr
expect(result.length).to eq(1)
end
context "utf8_db" do
before(:example) do
@client.query("DROP DATABASE IF EXISTS test_mysql2_stmt_utf8")
@client.query("CREATE DATABASE test_mysql2_stmt_utf8")
@client.query("USE test_mysql2_stmt_utf8")
@client.query("CREATE TABLE テーブル (整数 int, 文字列 varchar(32)) charset=utf8")
@client.query("INSERT INTO テーブル (整数, 文字列) VALUES (1, 'イチ'), (2, '弐'), (3, 'さん')")
end
after(:example) do
@client.query("DROP DATABASE test_mysql2_stmt_utf8")
end
it "should be able to retrieve utf8 field names correctly" do
stmt = @client.prepare 'SELECT * FROM `テーブル`'
expect(stmt.fields).to eq(%w[整数 文字列])
result = stmt.execute
expect(result.to_a).to eq([{ "整数" => 1, "文字列" => "イチ" }, { "整数" => 2, "文字列" => "弐" }, { "整数" => 3, "文字列" => "さん" }])
end
it "should be able to retrieve utf8 param query correctly" do
stmt = @client.prepare 'SELECT 整数 FROM テーブル WHERE 文字列 = ?'
expect(stmt.param_count).to eq(1)
result = stmt.execute 'イチ'
expect(result.to_a).to eq([{ "整数" => 1 }])
end
it "should be able to retrieve query with param in different encoding correctly" do
stmt = @client.prepare 'SELECT 整数 FROM テーブル WHERE 文字列 = ?'
expect(stmt.param_count).to eq(1)
param = 'イチ'.encode("EUC-JP")
result = stmt.execute param
expect(result.to_a).to eq([{ "整数" => 1 }])
end
end
context "streaming result" do
it "should be able to stream query result" do
n = 1
stmt = @client.prepare("SELECT 1 UNION SELECT 2")
stmt.execute(stream: true, cache_rows: false, as: :array).each do |r|
case n
when 1
expect(r).to eq([1])
when 2
expect(r).to eq([2])
else
violated "returned more than two rows"
end
n += 1
end
end
end
context "#each" do
# NOTE: The current impl. of prepared statement requires results to be cached on #execute except for streaming queries
# The drawback of this is that args of Result#each is ignored...
it "should yield rows as hash's" do
@result = @client.prepare("SELECT 1").execute
@result.each do |row|
expect(row).to be_an_instance_of(Hash)
end
end
it "should yield rows as hash's with symbol keys if :symbolize_keys was set to true" do
@result = @client.prepare("SELECT 1").execute(symbolize_keys: true)
@result.each do |row|
expect(row.keys.first).to be_an_instance_of(Symbol)
end
end
it "should be able to return results as an array" do
@result = @client.prepare("SELECT 1").execute(as: :array)
@result.each do |row|
expect(row).to be_an_instance_of(Array)
end
end
it "should cache previously yielded results by default" do
@result = @client.prepare("SELECT 1").execute
expect(@result.first.object_id).to eql(@result.first.object_id)
end
it "should yield different value for #first if streaming" do
result = @client.prepare("SELECT 1 UNION SELECT 2").execute(stream: true, cache_rows: true)
expect(result.first).not_to eql(result.first)
end
it "should yield the same value for #first if streaming is disabled" do
result = @client.prepare("SELECT 1 UNION SELECT 2").execute(stream: false)
expect(result.first).to eql(result.first)
end
it "should throw an exception if we try to iterate twice when streaming is enabled" do
result = @client.prepare("SELECT 1 UNION SELECT 2").execute(stream: true, cache_rows: false)
expect do
result.each {}
result.each {} # rubocop:disable Style/CombinableLoops
end.to raise_exception(Mysql2::Error)
end
end
context "#fields" do
it "method should exist" do
stmt = @client.prepare("SELECT 1")
expect(stmt).to respond_to(:fields)
end
it "should return an array of field names in proper order" do
stmt = @client.prepare("SELECT 'a', 'b', 'c'")
expect(stmt.fields).to eql(%w[a b c])
end
it "should return nil for statement with no result fields" do
stmt = @client.prepare("INSERT INTO mysql2_test () VALUES ()")
expect(stmt.fields).to eql(nil)
end
end
context "row data type mapping" do
let(:test_result) { @client.prepare("SELECT * FROM mysql2_test ORDER BY id DESC LIMIT 1").execute.first }
it "should return nil for a NULL value" do
expect(test_result['null_test']).to be_an_instance_of(NilClass)
expect(test_result['null_test']).to eql(nil)
end
it "should return String for a BIT(64) value" do
expect(test_result['bit_test']).to be_an_instance_of(String)
expect(test_result['bit_test']).to eql("\000\000\000\000\000\000\000\005")
end
it "should return String for a BIT(1) value" do
expect(test_result['single_bit_test']).to be_an_instance_of(String)
expect(test_result['single_bit_test']).to eql("\001")
end
it "should return Fixnum for a TINYINT value" do
expect(num_classes).to include(test_result['tiny_int_test'].class)
expect(test_result['tiny_int_test']).to eql(1)
end
context "cast booleans for TINYINT if :cast_booleans is enabled" do
# rubocop:disable Style/Semicolon
let(:id1) { @client.query 'INSERT INTO mysql2_test (bool_cast_test) VALUES ( 1)'; @client.last_id }
let(:id2) { @client.query 'INSERT INTO mysql2_test (bool_cast_test) VALUES ( 0)'; @client.last_id }
let(:id3) { @client.query 'INSERT INTO mysql2_test (bool_cast_test) VALUES (-1)'; @client.last_id }
# rubocop:enable Style/Semicolon
after do
@client.query "DELETE from mysql2_test WHERE id IN(#{id1},#{id2},#{id3})"
end
it "should return TrueClass or FalseClass for a TINYINT value if :cast_booleans is enabled" do
query = @client.prepare 'SELECT bool_cast_test FROM mysql2_test WHERE id = ?'
result1 = query.execute id1, cast_booleans: true
result2 = query.execute id2, cast_booleans: true
result3 = query.execute id3, cast_booleans: true
expect(result1.first['bool_cast_test']).to be true
expect(result2.first['bool_cast_test']).to be false
expect(result3.first['bool_cast_test']).to be true
end
end
context "cast booleans for BIT(1) if :cast_booleans is enabled" do
# rubocop:disable Style/Semicolon
let(:id1) { @client.query 'INSERT INTO mysql2_test (single_bit_test) VALUES (1)'; @client.last_id }
let(:id2) { @client.query 'INSERT INTO mysql2_test (single_bit_test) VALUES (0)'; @client.last_id }
# rubocop:enable Style/Semicolon
after do
@client.query "DELETE from mysql2_test WHERE id IN(#{id1},#{id2})"
end
it "should return TrueClass or FalseClass for a BIT(1) value if :cast_booleans is enabled" do
query = @client.prepare 'SELECT single_bit_test FROM mysql2_test WHERE id = ?'
result1 = query.execute id1, cast_booleans: true
result2 = query.execute id2, cast_booleans: true
expect(result1.first['single_bit_test']).to be true
expect(result2.first['single_bit_test']).to be false
end
end
it "should return Fixnum for a SMALLINT value" do
expect(num_classes).to include(test_result['small_int_test'].class)
expect(test_result['small_int_test']).to eql(10)
end
it "should return Fixnum for a MEDIUMINT value" do
expect(num_classes).to include(test_result['medium_int_test'].class)
expect(test_result['medium_int_test']).to eql(10)
end
it "should return Fixnum for an INT value" do
expect(num_classes).to include(test_result['int_test'].class)
expect(test_result['int_test']).to eql(10)
end
it "should return Fixnum for a BIGINT value" do
expect(num_classes).to include(test_result['big_int_test'].class)
expect(test_result['big_int_test']).to eql(10)
end
it "should return Fixnum for a YEAR value" do
expect(num_classes).to include(test_result['year_test'].class)
expect(test_result['year_test']).to eql(2009)
end
it "should return BigDecimal for a DECIMAL value" do
expect(test_result['decimal_test']).to be_an_instance_of(BigDecimal)
expect(test_result['decimal_test']).to eql(10.3)
end
it "should return Float for a FLOAT value" do
expect(test_result['float_test']).to be_an_instance_of(Float)
expect(test_result['float_test']).to be_within(1e-5).of(10.3)
end
it "should return Float for a DOUBLE value" do
expect(test_result['double_test']).to be_an_instance_of(Float)
expect(test_result['double_test']).to eql(10.3)
end
it "should return Time for a DATETIME value when within the supported range" do
expect(test_result['date_time_test']).to be_an_instance_of(Time)
expect(test_result['date_time_test'].strftime("%Y-%m-%d %H:%M:%S")).to eql('2010-04-04 11:44:00')
end
it "should return Time when timestamp is < 1901-12-13 20:45:52" do
r = @client.prepare("SELECT CAST('1901-12-13 20:45:51' AS DATETIME) as test").execute
expect(r.first['test']).to be_an_instance_of(Time)
end
it "should return Time when timestamp is > 2038-01-19T03:14:07" do
r = @client.prepare("SELECT CAST('2038-01-19 03:14:08' AS DATETIME) as test").execute
expect(r.first['test']).to be_an_instance_of(Time)
end
it "should return Time for a TIMESTAMP value when within the supported range" do
expect(test_result['timestamp_test']).to be_an_instance_of(Time)
expect(test_result['timestamp_test'].strftime("%Y-%m-%d %H:%M:%S")).to eql('2010-04-04 11:44:00')
end
it "should return Time for a TIME value" do
expect(test_result['time_test']).to be_an_instance_of(Time)
expect(test_result['time_test'].strftime("%Y-%m-%d %H:%M:%S")).to eql('2000-01-01 11:44:00')
end
it "should return Date for a DATE value" do
expect(test_result['date_test']).to be_an_instance_of(Date)
expect(test_result['date_test'].strftime("%Y-%m-%d")).to eql('2010-04-04')
end
it "should return String for an ENUM value" do
expect(test_result['enum_test']).to be_an_instance_of(String)
expect(test_result['enum_test']).to eql('val1')
end
it "should raise an error given an invalid DATETIME" do
if @client.info[:version] < "8.0"
expect { @client.query("SELECT CAST('1972-00-27 00:00:00' AS DATETIME) as bad_datetime").each }.to \
raise_error(Mysql2::Error, "Invalid date in field 'bad_datetime': 1972-00-27 00:00:00")
else
expect(@client.query("SELECT CAST('1972-00-27 00:00:00' AS DATETIME) as bad_datetime").to_a.first).to \
eql("bad_datetime" => nil)
end
end
context "string encoding for ENUM values" do
it "should default to the connection's encoding if Encoding.default_internal is nil" do
with_internal_encoding nil do
result = @client.query("SELECT * FROM mysql2_test ORDER BY id DESC LIMIT 1").first
expect(result['enum_test'].encoding).to eql(Encoding::UTF_8)
client2 = new_client(encoding: 'ascii')
result = client2.query("SELECT * FROM mysql2_test ORDER BY id DESC LIMIT 1").first
expect(result['enum_test'].encoding).to eql(Encoding::US_ASCII)
end
end
it "should use Encoding.default_internal" do
with_internal_encoding Encoding::UTF_8 do
result = @client.query("SELECT * FROM mysql2_test ORDER BY id DESC LIMIT 1").first
expect(result['enum_test'].encoding).to eql(Encoding.default_internal)
end
with_internal_encoding Encoding::ASCII do
result = @client.query("SELECT * FROM mysql2_test ORDER BY id DESC LIMIT 1").first
expect(result['enum_test'].encoding).to eql(Encoding.default_internal)
end
end
end
it "should return String for a SET value" do
expect(test_result['set_test']).to be_an_instance_of(String)
expect(test_result['set_test']).to eql('val1,val2')
end
context "string encoding for SET values" do
it "should default to the connection's encoding if Encoding.default_internal is nil" do
with_internal_encoding nil do
result = @client.query("SELECT * FROM mysql2_test ORDER BY id DESC LIMIT 1").first
expect(result['set_test'].encoding).to eql(Encoding::UTF_8)
client2 = new_client(encoding: 'ascii')
result = client2.query("SELECT * FROM mysql2_test ORDER BY id DESC LIMIT 1").first
expect(result['set_test'].encoding).to eql(Encoding::US_ASCII)
end
end
it "should use Encoding.default_internal" do
with_internal_encoding Encoding::UTF_8 do
result = @client.query("SELECT * FROM mysql2_test ORDER BY id DESC LIMIT 1").first
expect(result['set_test'].encoding).to eql(Encoding.default_internal)
end
with_internal_encoding Encoding::ASCII do
result = @client.query("SELECT * FROM mysql2_test ORDER BY id DESC LIMIT 1").first
expect(result['set_test'].encoding).to eql(Encoding.default_internal)
end
end
end
it "should return String for a BINARY value" do
expect(test_result['binary_test']).to be_an_instance_of(String)
expect(test_result['binary_test']).to eql("test#{"\000" * 6}")
end
context "string encoding for BINARY values" do
it "should default to binary if Encoding.default_internal is nil" do
with_internal_encoding nil do
result = @client.query("SELECT * FROM mysql2_test ORDER BY id DESC LIMIT 1").first
expect(result['binary_test'].encoding).to eql(Encoding::BINARY)
end
end
it "should not use Encoding.default_internal" do
with_internal_encoding Encoding::UTF_8 do
result = @client.query("SELECT * FROM mysql2_test ORDER BY id DESC LIMIT 1").first
expect(result['binary_test'].encoding).to eql(Encoding::BINARY)
end
with_internal_encoding Encoding::ASCII do
result = @client.query("SELECT * FROM mysql2_test ORDER BY id DESC LIMIT 1").first
expect(result['binary_test'].encoding).to eql(Encoding::BINARY)
end
end
end
{
'char_test' => 'CHAR',
'varchar_test' => 'VARCHAR',
'varbinary_test' => 'VARBINARY',
'tiny_blob_test' => 'TINYBLOB',
'tiny_text_test' => 'TINYTEXT',
'blob_test' => 'BLOB',
'text_test' => 'TEXT',
'medium_blob_test' => 'MEDIUMBLOB',
'medium_text_test' => 'MEDIUMTEXT',
'long_blob_test' => 'LONGBLOB',
'long_text_test' => 'LONGTEXT',
}.each do |field, type|
it "should return a String for #{type}" do
expect(test_result[field]).to be_an_instance_of(String)
expect(test_result[field]).to eql("test")
end
context "string encoding for #{type} values" do
if %w[VARBINARY TINYBLOB BLOB MEDIUMBLOB LONGBLOB].include?(type)
it "should default to binary if Encoding.default_internal is nil" do
with_internal_encoding nil do
result = @client.query("SELECT * FROM mysql2_test ORDER BY id DESC LIMIT 1").first
expect(result['binary_test'].encoding).to eql(Encoding::BINARY)
end
end
it "should not use Encoding.default_internal" do
with_internal_encoding Encoding::UTF_8 do
result = @client.query("SELECT * FROM mysql2_test ORDER BY id DESC LIMIT 1").first
expect(result['binary_test'].encoding).to eql(Encoding::BINARY)
end
with_internal_encoding Encoding::ASCII do
result = @client.query("SELECT * FROM mysql2_test ORDER BY id DESC LIMIT 1").first
expect(result['binary_test'].encoding).to eql(Encoding::BINARY)
end
end
else
it "should default to utf-8 if Encoding.default_internal is nil" do
with_internal_encoding nil do
result = @client.query("SELECT * FROM mysql2_test ORDER BY id DESC LIMIT 1").first
expect(result[field].encoding).to eql(Encoding::UTF_8)
client2 = new_client(encoding: 'ascii')
result = client2.query("SELECT * FROM mysql2_test ORDER BY id DESC LIMIT 1").first
expect(result[field].encoding).to eql(Encoding::US_ASCII)
end
end
it "should use Encoding.default_internal" do
with_internal_encoding Encoding::UTF_8 do
result = @client.query("SELECT * FROM mysql2_test ORDER BY id DESC LIMIT 1").first
expect(result[field].encoding).to eql(Encoding.default_internal)
end
with_internal_encoding Encoding::ASCII do
result = @client.query("SELECT * FROM mysql2_test ORDER BY id DESC LIMIT 1").first
expect(result[field].encoding).to eql(Encoding.default_internal)
end
end
end
end
end
end
context 'last_id' do
before(:example) do
@client.query 'USE test'
@client.query 'CREATE TABLE IF NOT EXISTS lastIdTest (`id` BIGINT NOT NULL AUTO_INCREMENT, blah INT(11), PRIMARY KEY (`id`))'
end
after(:example) do
@client.query 'DROP TABLE lastIdTest'
end
it 'should return last insert id' do
stmt = @client.prepare 'INSERT INTO lastIdTest (blah) VALUES (?)'
expect(stmt.last_id).to eq 0
stmt.execute 1
expect(stmt.last_id).to eq 1
end
it 'should handle bigint ids' do
stmt = @client.prepare 'INSERT INTO lastIdTest (id, blah) VALUES (?, ?)'
stmt.execute 5000000000, 5000
expect(stmt.last_id).to eql(5000000000)
stmt = @client.prepare 'INSERT INTO lastIdTest (blah) VALUES (?)'
stmt.execute 5001
expect(stmt.last_id).to eql(5000000001)
end
end
context 'affected_rows' do
before(:example) do
@client.query 'USE test'
@client.query 'CREATE TABLE IF NOT EXISTS lastIdTest (`id` BIGINT NOT NULL AUTO_INCREMENT, blah INT(11), PRIMARY KEY (`id`))'
end
after(:example) do
@client.query 'DROP TABLE lastIdTest'
end
it 'should return number of rows affected by an insert' do
stmt = @client.prepare 'INSERT INTO lastIdTest (blah) VALUES (?)'
stmt.execute 1
expect(stmt.affected_rows).to eq 1
end
it 'should return number of rows affected by an update' do
stmt = @client.prepare 'INSERT INTO lastIdTest (blah) VALUES (?)'
stmt.execute 1
expect(stmt.affected_rows).to eq 1
stmt.execute 2
expect(stmt.affected_rows).to eq 1
stmt = @client.prepare 'UPDATE lastIdTest SET blah=? WHERE blah=?'
stmt.execute 0, 1
expect(stmt.affected_rows).to eq 1
end
it 'should return number of rows affected by a delete' do
stmt = @client.prepare 'INSERT INTO lastIdTest (blah) VALUES (?)'
stmt.execute 1
expect(stmt.affected_rows).to eq 1
stmt.execute 2
expect(stmt.affected_rows).to eq 1
stmt = @client.prepare 'DELETE FROM lastIdTest WHERE blah=?'
stmt.execute 1
expect(stmt.affected_rows).to eq 1
end
end
context 'close' do
xit 'should free server resources' do
stmt = @client.prepare 'SELECT 1'
GC.disable
expect { stmt.close }.to change(&method(:stmt_count)).by(-1)
GC.enable
end
it 'should raise an error on subsequent execution' do
stmt = @client.prepare 'SELECT 1'
stmt.close
expect { stmt.execute }.to raise_error(Mysql2::Error, /Invalid statement handle/)
end
end
end
|