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 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146
|
SEQUEL_ADAPTER_TEST = :sqlite
require_relative 'spec_helper'
describe "An SQLite database" do
before do
@db = DB
end
after do
@db.drop_table?(:fk)
@db.use_timestamp_timezones = false
Sequel.datetime_class = Time
end
it "should unescape escaped paths in URI for database file" do
DB.class.send(:options_from_uri, URI("scheme://app%2Fdata%2Ftest.db"))[:database].must_equal 'app/data/test.db'
end if DB.adapter_scheme == :sqlite || DB.adapter_scheme == :amalgalite
it "should support casting to Date by using the date function" do
@db.get(Sequel.cast('2012-10-20 11:12:13', Date)).must_equal '2012-10-20'
end
it "should support casting to Time or DateTime by using the datetime function" do
@db.get(Sequel.cast('2012-10-20', Time)).must_equal '2012-10-20 00:00:00'
@db.get(Sequel.cast('2012-10-20', DateTime)).must_equal '2012-10-20 00:00:00'
end
it "should provide the SQLite version as an integer" do
@db.sqlite_version.must_be_kind_of(Integer)
end
it "should provide the SQLite version as an integer" do
db = Sequel.sqlite
db['SELECT "1" as a'].get.must_equal '1'
db = Sequel.connect('sqlite://?disable_dqs=t')
proc{db['SELECT "1" as a'].get}.must_raise Sequel::DatabaseError
end if defined?(SQLite3::VERSION) && SQLite3::VERSION >= '1.4.3' && DB.sqlite_version >= 32900
it "should support creating virtual tables via the create_table :using option" do
if @db['PRAGMA compile_options'].map(:compile_options).include?('ENABLE_FTS5')
@db.create_table(:fk, using: 'fts5(c)')
@db[:fk].insert(:c=>'foo bar')
@db[:fk].where(fk: 'foo').get(:c).must_equal 'foo bar'
@db[:fk].where(fk: 'bar').get(:c).must_equal 'foo bar'
@db[:fk].where(fk: 'baz').must_be_empty
@db.create_table(:fk, using: 'fts5(c)', if_not_exists: true)
@db[:fk].where(fk: 'foo').get(:c).must_equal 'foo bar'
end
end
it "should support dropping noncomposite unique constraint" do
@db.create_table(:fk) do
primary_key :id
String :name, null: false, unique: true
end
# Find name of unique index, as SQLite does not use a given constraint name
name_constraint = @db.indexes(:fk).find do |_, properties|
properties[:unique] == true && properties[:columns] == [:name]
end || [:missing]
@db.alter_table(:fk) do
drop_constraint(name_constraint.first, type: :unique)
end
@db[:fk].insert(:name=>'a')
@db[:fk].insert(:name=>'a')
end
it "should keep composite unique constraint when changing a column default" do
@db.create_table(:fk) do
Bignum :id, null: false, unique: true
Bignum :another_id, null: false
String :name, size: 50, null: false
String :test
unique [:another_id, :name], :name=>:fk_uidx
end
@db.alter_table(:fk) do
set_column_default :test, 'test'
end
@db[:fk].insert(:id=>1, :another_id=>2, :name=>'a')
@db[:fk].insert(:id=>2, :another_id=>3, :name=>'a')
@db[:fk].insert(:id=>3, :another_id=>2, :name=>'b')
proc{@db[:fk].insert(:id=>4, :another_id=>2, :name=>'a')}.must_raise Sequel::ConstraintViolation
end
it "should keep composite primary key when changing a column default" do
@db.create_table(:fk) do
Bignum :id, null: false, unique: true
Bignum :another_id, null: false
String :name, size: 50, null: false
String :test
primary_key [:another_id, :name]
end
@db.alter_table(:fk) do
set_column_default :test, 'test'
end
@db[:fk].insert(:id=>1, :another_id=>2, :name=>'a')
@db[:fk].insert(:id=>2, :another_id=>3, :name=>'a')
@db[:fk].insert(:id=>3, :another_id=>2, :name=>'b')
proc{@db[:fk].insert(:id=>4, :another_id=>2, :name=>'a')}.must_raise Sequel::ConstraintViolation
end
it "should allow setting current_timestamp_utc to keep CURRENT_* in UTC" do
begin
v = @db.current_timestamp_utc
@db.current_timestamp_utc = true
Time.parse(@db.get(Sequel::CURRENT_TIMESTAMP)).strftime('%Y%m%d%H%M').must_equal Time.now.utc.strftime('%Y%m%d%H%M')
Time.parse(@db.get(Sequel::CURRENT_DATE)).strftime('%Y%m%d').must_equal Time.now.utc.strftime('%Y%m%d')
Time.parse(@db.get(Sequel::CURRENT_TIME)).strftime('%H%M').must_equal Time.now.utc.strftime('%H%M')
ensure
@db.current_timestamp_utc = v
end
end
it "should support a use_timestamp_timezones setting" do
@db.use_timestamp_timezones = true
@db.create_table!(:fk){Time :time}
@db[:fk].insert(Time.now)
@db[:fk].get(Sequel.cast(:time, String)).must_match(/[-+]\d\d\d\d\z/)
@db.use_timestamp_timezones = false
@db[:fk].delete
@db[:fk].insert(Time.now)
@db[:fk].get(Sequel.cast(:time, String)).wont_match(/[-+]\d\d\d\d\z/)
end
it "should provide a list of existing tables" do
@db.drop_table?(:fk)
@db.tables.must_be_kind_of(Array)
@db.tables.wont_include(:fk)
@db.create_table!(:fk){String :name}
@db.tables.must_include(:fk)
end
cspecify "should support timestamps and datetimes and respect datetime_class", [:jdbc] do
@db.create_table!(:fk){timestamp :t; datetime :d}
@db.use_timestamp_timezones = true
t1 = Time.at(1)
@db[:fk].insert(:t => t1, :d => t1)
@db[:fk].map(:t).must_equal [t1]
@db[:fk].map(:d).must_equal [t1]
Sequel.datetime_class = DateTime
t2 = Sequel.string_to_datetime(t1.iso8601)
@db[:fk].map(:t).must_equal [t2]
@db[:fk].map(:d).must_equal [t2]
end
it "should support sequential primary keys" do
@db.create_table!(:fk) {primary_key :id; text :name}
@db[:fk].insert(:name => 'abc')
@db[:fk].insert(:name => 'def')
@db[:fk].insert(:name => 'ghi')
@db[:fk].order(:name).all.must_equal [
{:id => 1, :name => 'abc'},
{:id => 2, :name => 'def'},
{:id => 3, :name => 'ghi'}
]
end
it "should correctly parse the schema" do
@db.create_table!(:fk) {timestamp :t}
h = {:generated=>false, :type=>:datetime, :allow_null=>true, :default=>nil, :ruby_default=>nil, :db_type=>"timestamp", :primary_key=>false}
h.delete(:generated) if @db.sqlite_version < 33100
@db.schema(:fk, :reload=>true).must_equal [[:t, h]]
end
it "should handle and return BigDecimal values for numeric columns" do
DB.create_table!(:fk){numeric :d}
d = DB[:fk]
d.insert(:d=>BigDecimal('80.0'))
d.insert(:d=>BigDecimal('NaN'))
d.insert(:d=>BigDecimal('Infinity'))
d.insert(:d=>BigDecimal('-Infinity'))
ds = d.all
ds.shift.must_equal(:d=>BigDecimal('80.0'))
ds.map{|x| x[:d].to_s}.must_equal %w'NaN Infinity -Infinity'
DB
end
it "should support creating and parsing generated columns" do
@db.create_table!(:fk){Integer :a; Integer :b; Integer :c, :generated_always_as=>Sequel[:a] * 2 + :b + 1; Integer :d, :generated_always_as=>Sequel[:a] * 2 + :b + 2, :generated_type=>:stored; ; Integer :e, :generated_always_as=>Sequel[:a] * 2 + :b + 3, :generated_type=>:virtual}
@db[:fk].insert(:a=>100, :b=>10)
@db[:fk].select_order_map([:a, :b, :c, :d, :e]).must_equal [[100, 10, 211, 212, 213]]
@db.schema(:fk).map{|_,v| v[:generated]}.must_equal [false, false, true, true, true]
end if DB.sqlite_version >= 33100
it "should support dropping a unique column" do
@db.create_table!(:fk){Integer :a; Integer :b, :unique=>true}
@db[:fk].insert(:a=>1, :b=>2)
@db.alter_table(:fk){drop_column :b}
@db[:fk].all.must_equal [{:a=>1}]
end
it "should support dropping a column with scalar index" do
@db.create_table!(:fk){Integer :a; Integer :b, index: true}
@db[:fk].insert(:a=>1, :b=>2)
@db.alter_table(:fk){drop_column :b}
@db[:fk].all.must_equal [{:a=>1}]
end
it "should support dropping a column that is part of a composite index" do
@db.create_table!(:fk){Integer :a; Integer :b; index [:a, :b]}
@db[:fk].insert(:a=>1, :b=>2)
@db.alter_table(:fk){drop_column :b}
@db[:fk].all.must_equal [{:a=>1}]
end
it "should support dropping a column that is not part of an index" do
@db.create_table!(:fk){Integer :a, index: true; Integer :b}
@db[:fk].insert(:a=>1, :b=>2)
@db.alter_table(:fk){drop_column :b}
@db[:fk].all.must_equal [{:a=>1}]
end
it "should support dropping a column for a table without an index" do
@db.create_table!(:fk){Integer :a; Integer :b}
@db[:fk].insert(:a=>1, :b=>2)
@db.alter_table(:fk){drop_column :b}
@db[:fk].all.must_equal [{:a=>1}]
end
end
describe "SQLite temporary views" do
before do
@db = DB
@db.drop_view(:items) rescue nil
@db.create_table!(:items){Integer :number}
@db[:items].insert(10)
@db[:items].insert(20)
end
after do
@db.drop_table?(:items)
end
it "should be supported" do
@db.create_view(:items_view, @db[:items].where(:number=>10), :temp=>true)
@db[:items_view].map(:number).must_equal [10]
@db.disconnect
lambda{@db[:items_view].map(:number)}.must_raise(Sequel::DatabaseError)
end
end
describe "SQLite VALUES support" do
before do
@db = DB
end
it "should create a dataset using the VALUES clause via #values" do
@db.values([[1, 2], [3, 4]]).map([:column1, :column2]).must_equal [[1, 2], [3, 4]]
end
it "#values should error if given an empty array" do
proc{@db.values([])}.must_raise(Sequel::Error)
end
it "#empty? should return false for datasets using VALUES" do
@db.values([[nil]]).empty?.must_equal false
end
it "#count should return correct number of rows for datasets using VALUES when called without arguments" do
@db.values([[100]]).count.must_equal 1
@db.values([[100, 1]]).count.must_equal 1
@db.values([[100], [200]]).count.must_equal 2
@db.values([[100, 10], [200, 10]]).count.must_equal 2
end
it "#count should return correct number of rows for datasets using VALUES when called with arguments" do
@db.values([[100]]).count(:column1).must_equal 1
@db.values([[nil]]).count{:column1}.must_equal 0
end if DB.sqlite_version >= 31000
it "should support VALUES with unions" do
@db.values([[1]]).union(@db.values([[3]])).map(&:values).map(&:first).must_equal [1, 3]
end
it "should support VALUES in CTEs" do
@db[:a].cross_join(:b).with(:a, @db.values([[1, 2]]), :args=>[:c1, :c2]).with(:b, @db.values([[3, 4]]), :args=>[:c3, :c4]).map([:c1, :c2, :c3, :c4]).must_equal [[1, 2, 3, 4]]
end
end if DB.sqlite_version >= 30803
describe "SQLite type conversion" do
before do
@db = DB
@integer_booleans = @db.integer_booleans
@db.integer_booleans = true
@ds = @db[:items]
@db.drop_table?(:items)
end
after do
@db.integer_booleans = @integer_booleans
Sequel.datetime_class = Time
@db.drop_table?(:items)
end
it "should handle integers in boolean columns" do
@db.create_table(:items){TrueClass :a}
@db[:items].insert(false)
@db[:items].select_map(:a).must_equal [false]
@db[:items].select_map(Sequel.expr(:a)+:a).must_equal [0]
@db[:items].update(:a=>true)
@db[:items].select_map(:a).must_equal [true]
@db[:items].select_map(Sequel.expr(:a)+:a).must_equal [2]
end
it "should handle integers/floats/strings/decimals in numeric/decimal columns" do
@db.create_table(:items){Numeric :a}
@db[:items].insert(100)
@db[:items].select_map(:a).must_equal [BigDecimal('100')]
@db[:items].get(:a).must_be_kind_of(BigDecimal)
@db[:items].update(:a=>100.1)
@db[:items].select_map(:a).must_equal [BigDecimal('100.1')]
@db[:items].get(:a).must_be_kind_of(BigDecimal)
@db[:items].update(:a=>'100.1')
@db[:items].select_map(:a).must_equal [BigDecimal('100.1')]
@db[:items].get(:a).must_be_kind_of(BigDecimal)
@db[:items].update(:a=>BigDecimal('100.1'))
@db[:items].select_map(:a).must_equal [BigDecimal('100.1')]
@db[:items].get(:a).must_be_kind_of(BigDecimal)
end
it "should handle integer/float date columns as julian date" do
@db.create_table(:items){Date :a}
i = 2455979
@db[:items].insert(i)
@db[:items].first.must_equal(:a=>Date.jd(i))
@db[:items].update(:a=>2455979.1)
@db[:items].first.must_equal(:a=>Date.jd(i))
end
it "should handle integer/float time columns as seconds" do
@db.create_table(:items){Time :a, :only_time=>true}
@db[:items].insert(3661)
@db[:items].first.must_equal(:a=>Sequel::SQLTime.create(1, 1, 1))
@db[:items].update(:a=>3661.000001)
@db[:items].first.must_equal(:a=>Sequel::SQLTime.create(1, 1, 1, 1))
end
it "should handle integer datetime columns as unix timestamp" do
@db.create_table(:items){DateTime :a}
i = 1329860756
@db[:items].insert(i)
@db[:items].first.must_equal(:a=>Time.at(i))
Sequel.datetime_class = DateTime
@db[:items].first.must_equal(:a=>DateTime.strptime(i.to_s, '%s'))
end
it "should handle float datetime columns as julian date" do
@db.create_table(:items){DateTime :a}
i = 2455979.5
@db[:items].insert(i)
@db[:items].first.must_equal(:a=>Time.at(1329825600))
Sequel.datetime_class = DateTime
@db[:items].first.must_equal(:a=>DateTime.jd(2455979.5))
end
it "should handle integer/float blob columns" do
@db.create_table(:items){File :a}
@db[:items].insert(1)
@db[:items].first.must_equal(:a=>Sequel::SQL::Blob.new('1'))
@db[:items].update(:a=>'1.1')
@db[:items].first.must_equal(:a=>Sequel::SQL::Blob.new(1.1.to_s))
end
end if DB.adapter_scheme == :sqlite
describe "An SQLite dataset" do
before do
@d = DB.dataset
end
it "should raise errors if given a regexp pattern match" do
proc{@d.literal(Sequel.expr(:x).like(/a/))}.must_raise(Sequel::InvalidOperation)
proc{@d.literal(~Sequel.expr(:x).like(/a/))}.must_raise(Sequel::InvalidOperation)
proc{@d.literal(Sequel.expr(:x).like(/a/i))}.must_raise(Sequel::InvalidOperation)
proc{@d.literal(~Sequel.expr(:x).like(/a/i))}.must_raise(Sequel::InvalidOperation)
end
end unless DB.adapter_scheme == :sqlite && DB.opts[:setup_regexp_function]
describe "SQLite::Dataset#delete" do
before do
DB.create_table! :items do
primary_key :id
String :name
Float :value
end
@d = DB[:items]
@d.delete # remove all records
@d.insert(:name => 'abc', :value => 1.23)
@d.insert(:name => 'def', :value => 4.56)
@d.insert(:name => 'ghi', :value => 7.89)
end
after do
DB.drop_table?(:items)
end
it "should return the number of records affected when filtered" do
@d.count.must_equal 3
@d.filter{value < 3}.delete.must_equal 1
@d.count.must_equal 2
@d.filter{value < 3}.delete.must_equal 0
@d.count.must_equal 2
end
it "should return the number of records affected when unfiltered" do
@d.count.must_equal 3
@d.delete.must_equal 3
@d.count.must_equal 0
@d.delete.must_equal 0
end
end
describe "SQLite::Dataset#update" do
before do
DB.create_table! :items do
primary_key :id
String :name
Float :value
end
@d = DB[:items]
@d.delete # remove all records
@d.insert(:name => 'abc', :value => 1.23)
@d.insert(:name => 'def', :value => 4.56)
@d.insert(:name => 'ghi', :value => 7.89)
end
it "should return the number of records affected" do
@d.filter(:name => 'abc').update(:value => 2).must_equal 1
@d.update(:value => 10).must_equal 3
@d.filter(:name => 'xxx').update(:value => 23).must_equal 0
end
end
describe "SQLite::Dataset#insert_conflict" do
before(:all) do
DB.create_table! :ic_test do
primary_key :id
String :name
end
end
after(:each) do
DB[:ic_test].delete
end
after(:all) do
DB.drop_table?(:ic_test)
end
it "Dataset#insert_ignore and insert_constraint should ignore uniqueness violations" do
DB[:ic_test].insert(:id => 1, :name => "one")
proc {DB[:ic_test].insert(:id => 1, :name => "one")}.must_raise Sequel::ConstraintViolation
DB[:ic_test].insert_ignore.insert(:id => 1, :name => "one")
DB[:ic_test].all.must_equal([{:id => 1, :name => "one"}])
DB[:ic_test].insert_conflict(:ignore).insert(:id => 1, :name => "one")
DB[:ic_test].all.must_equal([{:id => 1, :name => "one"}])
end
it "Dataset#insert_constraint should handle replacement" do
DB[:ic_test].insert(:id => 1, :name => "one")
DB[:ic_test].insert_conflict(:replace).insert(:id => 1, :name => "two")
DB[:ic_test].all.must_equal([{:id => 1, :name => "two"}])
end
end
describe "SQLite dataset" do
before do
DB.create_table! :test do
primary_key :id
String :name
Float :value
end
DB.create_table! :items do
primary_key :id
String :name
Float :value
end
@d = DB[:items]
@d.insert(:name => 'abc', :value => 1.23)
@d.insert(:name => 'def', :value => 4.56)
@d.insert(:name => 'ghi', :value => 7.89)
end
after do
DB.drop_table?(:test, :items)
end
it "should be able to insert from a subquery" do
DB[:test].insert(@d)
DB[:test].count.must_equal 3
DB[:test].select(:name, :value).order(:value).to_a.must_equal \
@d.select(:name, :value).order(:value).to_a
end
it "should support #explain" do
DB[:test].explain.must_be_kind_of(String)
end
it "should have #explain work when identifier_output_method is modified" do
DB[:test].with_identifier_output_method(:upcase).explain.must_be_kind_of(String)
end if IDENTIFIER_MANGLING
end
describe "A SQLite database" do
before do
@db = DB
@db.create_table! :test2 do
text :name
integer :value
end
end
after do
@db.drop_table?(:test, :test2, :test3, :test3_backup0, :test3_backup1, :test3_backup2)
end
it "should support add_column operations" do
@db.add_column :test2, :xyz, :text
@db[:test2].columns.must_equal [:name, :value, :xyz]
@db[:test2].insert(:name => 'mmm', :value => 111, :xyz=>'000')
@db[:test2].first.must_equal(:name => 'mmm', :value => 111, :xyz=>'000')
end
it "should support drop_column operations" do
@db.drop_column :test2, :value
@db[:test2].columns.must_equal [:name]
@db[:test2].insert(:name => 'mmm')
@db[:test2].first.must_equal(:name => 'mmm')
end
it "should support drop_column operations in a transaction" do
@db.transaction{@db.drop_column :test2, :value}
@db[:test2].columns.must_equal [:name]
@db[:test2].insert(:name => 'mmm')
@db[:test2].first.must_equal(:name => 'mmm')
end
it "should keep a composite primary key when dropping columns" do
@db.create_table!(:test2){Integer :a; Integer :b; Integer :c; primary_key [:a, :b]}
@db.drop_column :test2, :c
@db[:test2].columns.must_equal [:a, :b]
@db[:test2].insert(:a=>1, :b=>2)
@db[:test2].insert(:a=>2, :b=>3)
proc{@db[:test2].insert(:a=>2, :b=>3)}.must_raise(Sequel::UniqueConstraintViolation, Sequel::ConstraintViolation, Sequel::DatabaseError)
end
it "should keep column attributes when dropping a column" do
@db.create_table! :test3 do
primary_key :id
text :name
integer :value
end
# This lame set of additions and deletions are to test that the primary keys
# don't get messed up when we recreate the database.
@db[:test3].insert( :name => "foo", :value => 1)
@db[:test3].insert( :name => "foo", :value => 2)
@db[:test3].insert( :name => "foo", :value => 3)
@db[:test3].filter(:id => 2).delete
@db.drop_column :test3, :value
@db['PRAGMA table_info(?)', :test3][:id][:pk].to_i.must_equal 1
@db[:test3].select(:id).all.must_equal [{:id => 1}, {:id => 3}]
end
it "should keep foreign keys when dropping a column" do
@db.create_table! :test do
primary_key :id
String :name
Integer :value
end
@db.create_table! :test3 do
String :name
Integer :value
foreign_key :test_id, :test, :on_delete => :set_null, :on_update => :cascade
end
@db[:test3].insert(:name => "abc", :test_id => @db[:test].insert(:name => "foo", :value => 3))
@db[:test3].insert(:name => "def", :test_id => @db[:test].insert(:name => "bar", :value => 4))
@db.drop_column :test3, :value
@db[:test].filter(:name => 'bar').delete
@db[:test3][:name => 'def'][:test_id].must_be_nil
@db[:test].filter(:name => 'foo').update(:id=>100)
@db[:test3][:name => 'abc'][:test_id].must_equal 100
end
it "should support rename_column operations" do
@db[:test2].delete
@db.add_column :test2, :xyz, :text
@db[:test2].insert(:name => 'mmm', :value => 111, :xyz => 'qqqq')
@db[:test2].columns.must_equal [:name, :value, :xyz]
@db.rename_column :test2, :xyz, :zyx, :type => :text
@db[:test2].columns.must_equal [:name, :value, :zyx]
@db[:test2].first[:zyx].must_equal 'qqqq'
@db[:test2].count.must_equal 1
end
it "should preserve defaults when dropping or renaming columns" do
@db.create_table! :test3 do
String :s, :default=>'a'
Integer :i
end
@db[:test3].insert
@db[:test3].first[:s].must_equal 'a'
@db[:test3].delete
@db.drop_column :test3, :i
@db[:test3].insert
@db[:test3].first[:s].must_equal 'a'
@db[:test3].delete
@db.rename_column :test3, :s, :t
@db[:test3].insert
@db[:test3].first[:t].must_equal 'a'
@db[:test3].delete
end
it "should preserve autoincrement after table modification" do
@db.create_table!(:test2) do
primary_key :id
Integer :val, :null => false
end
@db.rename_column(:test2, :val, :value)
t = @db[:test2]
id1 = t.insert(:value=>1)
t.delete
id2 = t.insert(:value=>1)
id2.must_be :>, id1
end
it "should handle quoted tables when dropping or renaming columns" do
table_name = "T T"
@db.drop_table?(table_name)
@db.create_table! table_name do
Integer :"s s"
Integer :"i i"
end
@db.from(table_name).insert(:"s s"=>1, :"i i"=>2)
@db.from(table_name).all.must_equal [{:"s s"=>1, :"i i"=>2}]
@db.drop_column table_name, :"i i"
@db.from(table_name).all.must_equal [{:"s s"=>1}]
@db.rename_column table_name, :"s s", :"t t"
@db.from(table_name).all.must_equal [{:"t t"=>1}]
@db.drop_table?(table_name)
end
it "should choose a temporary table name that isn't already used when dropping or renaming columns" do
@db.tables.each{|t| @db.drop_table(t) if t.to_s =~ /test3/}
@db.create_table :test3 do
Integer :h
Integer :i
end
@db.create_table :test3_backup0 do
Integer :j
end
@db.create_table :test3_backup1 do
Integer :k
end
@db[:test3].columns.must_equal [:h, :i]
@db[:test3_backup0].columns.must_equal [:j]
@db[:test3_backup1].columns.must_equal [:k]
@db.drop_column(:test3, :i)
@db[:test3].columns.must_equal [:h]
@db[:test3_backup0].columns.must_equal [:j]
@db[:test3_backup1].columns.must_equal [:k]
@db.create_table :test3_backup2 do
Integer :l
end
@db.rename_column(:test3, :h, :i)
@db[:test3].columns.must_equal [:i]
@db[:test3_backup0].columns.must_equal [:j]
@db[:test3_backup1].columns.must_equal [:k]
@db[:test3_backup2].columns.must_equal [:l]
end
it "should support add_index" do
@db.add_index :test2, :value, :unique => true
@db.add_index :test2, [:name, :value]
end
it "should support drop_index" do
@db.add_index :test2, :value, :unique => true
@db.drop_index :test2, :value
end
it "should keep applicable indexes when emulating schema methods" do
@db.create_table!(:test3){Integer :a; Integer :b}
@db.add_index :test3, :a
@db.add_index :test3, :b
@db.add_index :test3, [:b, :a]
@db.rename_column :test3, :b, :c
@db.indexes(:test3)[:test3_a_index].must_equal(:unique=>false, :columns=>[:a])
end
it "should have support for various #transaction modes" do
@db.transaction(:mode => :immediate){}
@db.transaction(:mode => :exclusive){}
@db.transaction(:mode => :deferred){}
@db.transaction{}
@db.transaction_mode.must_be_nil
@db.transaction_mode = :immediate
@db.transaction_mode.must_equal :immediate
@db.transaction{}
@db.transaction(:mode => :exclusive){}
proc {@db.transaction_mode = :invalid}.must_raise(Sequel::Error)
@db.transaction_mode.must_equal :immediate
proc {@db.transaction(:mode => :invalid) {}}.must_raise(Sequel::Error)
end
it "should keep unique constraints when copying tables" do
@db.alter_table(:test2){add_unique_constraint :name}
@db.alter_table(:test2){drop_column :value}
@db[:test2].insert(:name=>'a')
proc{@db[:test2].insert(:name=>'a')}.must_raise(Sequel::ConstraintViolation, Sequel::UniqueConstraintViolation)
end
it "should not ignore adding new constraints when adding not null constraints" do
@db.alter_table :test2 do
set_column_not_null :value
add_constraint(:value_range1, :value => 3..5)
add_constraint(:value_range2, :value => 0..9)
end
@db[:test2].insert(:value => 4)
proc{@db[:test2].insert(:value => 1)}.must_raise(Sequel::ConstraintViolation)
proc{@db[:test2].insert(:value => nil)}.must_raise(Sequel::ConstraintViolation)
@db[:test2].select_order_map(:value).must_equal [4]
end
it "should show unique constraints in Database#indexes" do
@db.alter_table(:test2){add_unique_constraint :name}
@db.indexes(:test2).values.first[:columns].must_equal [:name]
end if DB.sqlite_version >= 30808
end
describe "SQLite", 'INSERT ON CONFLICT' do
before(:all) do
@db = DB
@db.create_table!(:ic_test){Integer :a; Integer :b; Integer :c; TrueClass :c_is_unique, :default=>false; unique :a, :name=>:ic_test_a_uidx; unique [:b, :c], :name=>:ic_test_b_c_uidx; index [:c], :where=>:c_is_unique, :unique=>true}
@ds = @db[:ic_test]
end
before do
@ds.delete
end
after(:all) do
@db.drop_table?(:ic_test)
end
it "Dataset#insert_ignore and insert_conflict should ignore uniqueness violations" do
@ds.insert(1, 2, 3, false)
@ds.insert(10, 11, 3, true)
proc{@ds.insert(1, 3, 4, false)}.must_raise Sequel::UniqueConstraintViolation
proc{@ds.insert(11, 12, 3, true)}.must_raise Sequel::UniqueConstraintViolation
@ds.insert_ignore.insert(1, 3, 4, false)
@ds.insert_conflict.insert(1, 3, 4, false)
@ds.insert_conflict.insert(11, 12, 3, true)
@ds.insert_conflict(:target=>:a).insert(1, 3, 4, false)
@ds.insert_conflict(:target=>:c, :conflict_where=>:c_is_unique).insert(11, 12, 3, true)
@ds.all.must_equal [{:a=>1, :b=>2, :c=>3, :c_is_unique=>false}, {:a=>10, :b=>11, :c=>3, :c_is_unique=>true}]
end unless DB.adapter_scheme == :amalgalite
it "Dataset#insert_ignore and insert_conflict should work with multi_insert/import" do
@ds.insert(1, 2, 3, false)
@ds.insert_ignore.multi_insert([{:a=>1, :b=>3, :c=>4}])
@ds.insert_ignore.import([:a, :b, :c], [[1, 3, 4]])
@ds.all.must_equal [{:a=>1, :b=>2, :c=>3, :c_is_unique=>false}]
@ds.insert_conflict(:target=>:a, :update=>{:b=>3}).import([:a, :b, :c], [[1, 3, 4]])
@ds.all.must_equal [{:a=>1, :b=>3, :c=>3, :c_is_unique=>false}]
@ds.insert_conflict(:target=>:a, :update=>{:b=>4}).multi_insert([{:a=>1, :b=>5, :c=>6}])
@ds.all.must_equal [{:a=>1, :b=>4, :c=>3, :c_is_unique=>false}]
end
it "Dataset#insert_conflict should handle upserts" do
@ds.insert(1, 2, 3, false)
@ds.insert_conflict(:target=>:a, :update=>{:b=>3}).insert(1, 3, 4, false)
@ds.all.must_equal [{:a=>1, :b=>3, :c=>3, :c_is_unique=>false}]
@ds.insert_conflict(:target=>[:b, :c], :update=>{:c=>5}).insert(5, 3, 3, false)
@ds.all.must_equal [{:a=>1, :b=>3, :c=>5, :c_is_unique=>false}]
@ds.insert_conflict(:target=>:a, :update=>{:b=>4}).insert(1, 3, nil, false)
@ds.all.must_equal [{:a=>1, :b=>4, :c=>5, :c_is_unique=>false}]
@ds.insert_conflict(:target=>:a, :update=>{:b=>5}, :update_where=>{Sequel[:ic_test][:b]=>4}).insert(1, 3, 4, false)
@ds.all.must_equal [{:a=>1, :b=>5, :c=>5, :c_is_unique=>false}]
@ds.insert_conflict(:target=>:a, :update=>{:b=>6}, :update_where=>{Sequel[:ic_test][:b]=>4}).insert(1, 3, 4, false)
@ds.all.must_equal [{:a=>1, :b=>5, :c=>5, :c_is_unique=>false}]
end
end if DB.sqlite_version >= 32400
describe 'SQLite STRICT tables' do
before do
@db = DB
end
after do
@db.drop_table?(:strict_table)
end
it "supports creation via :strict option" do
@db = DB
@db.create_table(:strict_table, :strict=>true) do
primary_key :id
int :a
integer :b
real :c
text :d
blob :e
any :f
end
ds = @db[:strict_table]
ds.insert(:id=>1, :a=>2, :b=>3, :c=>1.2, :d=>'foo', :e=>Sequel.blob("\0\1\2\3"), :f=>'f')
ds.all.must_equal [{:id=>1, :a=>2, :b=>3, :c=>1.2, :d=>'foo', :e=>Sequel.blob("\0\1\2\3"), :f=>'f'}]
proc{ds.insert(:a=>'a')}.must_raise Sequel::ConstraintViolation
proc{ds.insert(:b=>'a')}.must_raise Sequel::ConstraintViolation
proc{ds.insert(:c=>'a')}.must_raise Sequel::ConstraintViolation
proc{ds.insert(:d=>Sequel.blob("\0\1\2\3"))}.must_raise Sequel::ConstraintViolation
proc{ds.insert(:e=>1)}.must_raise Sequel::ConstraintViolation
end
end if DB.sqlite_version >= 33700
describe 'SQLite WITHOUT ROWID tables' do
before do
@db = DB
end
after do
@db.drop_table?(:without_rowid_table)
end
it "supports creation via :without_rowid option" do
@db = DB
@db.create_table(:without_rowid_table, :without_rowid=>true) do
int :id
primary_key [:id]
end
ds = @db[:without_rowid_table]
ds.insert(:id=>1)
ds.all.must_equal [{:id=>1}]
proc{ds.select(:rowid).all}.must_raise Sequel::DatabaseError
end
end if DB.sqlite_version >= 30802
describe 'SQLite STRICT and WITHOUT ROWID tables' do
before do
@db = DB
end
after do
@db.drop_table?(:strict_without_rowid_table)
end
it "supports creation via both :strict and :without_rowid option" do
@db = DB
@db.create_table(:strict_without_rowid_table, :strict=>true, :without_rowid=>true) do
int :id
int :a
integer :b
real :c
text :d
blob :e
any :f
primary_key [:id]
end
ds = @db[:strict_without_rowid_table]
ds.insert(:id=>1, :a=>2, :b=>3, :c=>1.2, :d=>'foo', :e=>Sequel.blob("\0\1\2\3"), :f=>'f')
proc{ds.select(:rowid).all}.must_raise Sequel::DatabaseError
ds.all.must_equal [{:id=>1, :a=>2, :b=>3, :c=>1.2, :d=>'foo', :e=>Sequel.blob("\0\1\2\3"), :f=>'f'}]
proc{ds.insert(:a=>'a')}.must_raise Sequel::ConstraintViolation
proc{ds.insert(:b=>'a')}.must_raise Sequel::ConstraintViolation
proc{ds.insert(:c=>'a')}.must_raise Sequel::ConstraintViolation
proc{ds.insert(:d=>Sequel.blob("\0\1\2\3"))}.must_raise Sequel::ConstraintViolation
proc{ds.insert(:e=>1)}.must_raise Sequel::ConstraintViolation
end
end if DB.sqlite_version >= 33700
describe 'SQLite Database' do
it 'supports operations/functions with sqlite_json_ops' do
Sequel.extension :sqlite_json_ops
@db = DB
jo = Sequel.sqlite_json_op('{"a": 1 ,"b": {"c": 2, "d": {"e": 3}}}')
ja = Sequel.sqlite_json_op('[2, 3, ["a", "b"]]')
@db.get(jo['a']).must_equal 1
@db.get(jo.get('b')['c']).must_equal 2
@db.get(jo['$.b.c']).must_equal 2
@db.get(jo['b'].get_json('$.d.e')).must_equal "3"
@db.get(jo['$.b.d'].get_json('e')).must_equal "3"
@db.get(ja[1]).must_equal 3
@db.get(ja['$[2][1]']).must_equal 'b'
@db.get(ja.get_json(1)).must_equal '3'
@db.get(ja.get_json('$[2][1]')).must_equal '"b"'
@db.get(jo.extract('$.a')).must_equal 1
@db.get(jo.extract('$.a', '$.b.c')).must_equal '[1,2]'
@db.get(jo.extract('$.a', '$.b.d.e')).must_equal '[1,3]'
@db.get(ja.array_length).must_equal 3
@db.get(ja.array_length('$[2]')).must_equal 2
@db.get(jo.type).must_equal 'object'
@db.get(ja.type).must_equal 'array'
@db.get(jo.typeof).must_equal 'object'
@db.get(ja.typeof).must_equal 'array'
@db.get(jo.type('$.a')).must_equal 'integer'
@db.get(ja.typeof('$[2][1]')).must_equal 'text'
if @db.sqlite_version >= 34500
@db.from(jo.each).all.must_equal [
{:key=>"a", :value=>1, :type=>"integer", :atom=>1, :id=>2, :parent=>nil, :fullkey=>"$.a", :path=>"$"},
{:key=>"b", :value=>"{\"c\":2,\"d\":{\"e\":3}}", :type=>"object", :atom=>nil, :id=>6, :parent=>nil, :fullkey=>"$.b", :path=>"$"}]
@db.from(jo.each('$.b')).order(:id).all.must_equal [
{:key=>"c", :value=>2, :type=>"integer", :atom=>2, :id=>9, :parent=>nil, :fullkey=>"$.b.c", :path=>"$.b"},
{:key=>"d", :value=>"{\"e\":3}", :type=>"object", :atom=>nil, :id=>13, :parent=>nil, :fullkey=>"$.b.d", :path=>"$.b"}]
@db.from(ja.each).all.must_equal [
{:key=>0, :value=>2, :type=>"integer", :atom=>2, :id=>1, :parent=>nil, :fullkey=>"$[0]", :path=>"$"},
{:key=>1, :value=>3, :type=>"integer", :atom=>3, :id=>3, :parent=>nil, :fullkey=>"$[1]", :path=>"$"},
{:key=>2, :value=>"[\"a\",\"b\"]", :type=>"array", :atom=>nil, :id=>5, :parent=>nil, :fullkey=>"$[2]", :path=>"$"}]
@db.from(ja.each('$[2]')).all.must_equal [
{:key=>0, :value=>"a", :type=>"text", :atom=>"a", :id=>6, :parent=>nil, :fullkey=>"$[2][0]", :path=>"$[2]"},
{:key=>1, :value=>"b", :type=>"text", :atom=>"b", :id=>8, :parent=>nil, :fullkey=>"$[2][1]", :path=>"$[2]"}]
@db.from(jo.tree).all.must_equal [
{:key=>nil, :value=>"{\"a\":1,\"b\":{\"c\":2,\"d\":{\"e\":3}}}", :type=>"object", :atom=>nil, :id=>0, :parent=>nil, :fullkey=>"$", :path=>"$"},
{:key=>"a", :value=>1, :type=>"integer", :atom=>1, :id=>2, :parent=>0, :fullkey=>"$.a", :path=>"$"},
{:key=>"b", :value=>"{\"c\":2,\"d\":{\"e\":3}}", :type=>"object", :atom=>nil, :id=>6, :parent=>0, :fullkey=>"$.b", :path=>"$"},
{:key=>"c", :value=>2, :type=>"integer", :atom=>2, :id=>9, :parent=>6, :fullkey=>"$.b.c", :path=>"$.b"},
{:key=>"d", :value=>"{\"e\":3}", :type=>"object", :atom=>nil, :id=>13, :parent=>6, :fullkey=>"$.b.d", :path=>"$.b"},
{:key=>"e", :value=>3, :type=>"integer", :atom=>3, :id=>16, :parent=>13, :fullkey=>"$.b.d.e", :path=>"$.b.d"}]
@db.from(jo.tree('$.b')).all.must_equal [
{:key=>"b", :value=>"{\"c\":2,\"d\":{\"e\":3}}", :type=>"object", :atom=>nil, :id=>6, :parent=>nil, :fullkey=>"$.b", :path=>"$"},
{:key=>"c", :value=>2, :type=>"integer", :atom=>2, :id=>9, :parent=>6, :fullkey=>"$.b.c", :path=>"$.b"},
{:key=>"d", :value=>"{\"e\":3}", :type=>"object", :atom=>nil, :id=>13, :parent=>6, :fullkey=>"$.b.d", :path=>"$.b"},
{:key=>"e", :value=>3, :type=>"integer", :atom=>3, :id=>16, :parent=>13, :fullkey=>"$.b.d.e", :path=>"$.b.d"}]
@db.from(ja.tree).all.must_equal [
{:key=>nil, :value=>"[2,3,[\"a\",\"b\"]]", :type=>"array", :atom=>nil, :id=>0, :parent=>nil, :fullkey=>"$", :path=>"$"},
{:key=>0, :value=>2, :type=>"integer", :atom=>2, :id=>1, :parent=>0, :fullkey=>"$[0]", :path=>"$"},
{:key=>1, :value=>3, :type=>"integer", :atom=>3, :id=>3, :parent=>0, :fullkey=>"$[1]", :path=>"$"},
{:key=>2, :value=>"[\"a\",\"b\"]", :type=>"array", :atom=>nil, :id=>5, :parent=>0, :fullkey=>"$[2]", :path=>"$"},
{:key=>0, :value=>"a", :type=>"text", :atom=>"a", :id=>6, :parent=>5, :fullkey=>"$[2][0]", :path=>"$[2]"},
{:key=>1, :value=>"b", :type=>"text", :atom=>"b", :id=>8, :parent=>5, :fullkey=>"$[2][1]", :path=>"$[2]"}]
@db.from(ja.tree('$[2]')).order(:id).all.must_equal [
{:key=>2, :value=>"[\"a\",\"b\"]", :type=>"array", :atom=>nil, :id=>5, :parent=>nil, :fullkey=>"$[2]", :path=>"$"},
{:key=>0, :value=>"a", :type=>"text", :atom=>"a", :id=>6, :parent=>5, :fullkey=>"$[2][0]", :path=>"$[2]"},
{:key=>1, :value=>"b", :type=>"text", :atom=>"b", :id=>8, :parent=>5, :fullkey=>"$[2][1]", :path=>"$[2]"}]
else
@db.from(jo.each).all.must_equal [
{:key=>"a", :value=>1, :type=>"integer", :atom=>1, :id=>2, :parent=>nil, :fullkey=>"$.a", :path=>"$"},
{:key=>"b", :value=>"{\"c\":2,\"d\":{\"e\":3}}", :type=>"object", :atom=>nil, :id=>4, :parent=>nil, :fullkey=>"$.b", :path=>"$"}]
@db.from(jo.each('$.b')).all.must_equal [
{:key=>"c", :value=>2, :type=>"integer", :atom=>2, :id=>6, :parent=>nil, :fullkey=>"$.b.c", :path=>"$.b"},
{:key=>"d", :value=>"{\"e\":3}", :type=>"object", :atom=>nil, :id=>8, :parent=>nil, :fullkey=>"$.b.d", :path=>"$.b"}]
@db.from(ja.each).all.must_equal [
{:key=>0, :value=>2, :type=>"integer", :atom=>2, :id=>1, :parent=>nil, :fullkey=>"$[0]", :path=>"$"},
{:key=>1, :value=>3, :type=>"integer", :atom=>3, :id=>2, :parent=>nil, :fullkey=>"$[1]", :path=>"$"},
{:key=>2, :value=>"[\"a\",\"b\"]", :type=>"array", :atom=>nil, :id=>3, :parent=>nil, :fullkey=>"$[2]", :path=>"$"}]
@db.from(ja.each('$[2]')).all.must_equal [
{:key=>0, :value=>"a", :type=>"text", :atom=>"a", :id=>4, :parent=>nil, :fullkey=>"$[2][0]", :path=>"$[2]"},
{:key=>1, :value=>"b", :type=>"text", :atom=>"b", :id=>5, :parent=>nil, :fullkey=>"$[2][1]", :path=>"$[2]"}]
@db.from(jo.tree).all.must_equal [
{:key=>nil, :value=>"{\"a\":1,\"b\":{\"c\":2,\"d\":{\"e\":3}}}", :type=>"object", :atom=>nil, :id=>0, :parent=>nil, :fullkey=>"$", :path=>"$"},
{:key=>"a", :value=>1, :type=>"integer", :atom=>1, :id=>2, :parent=>0, :fullkey=>"$.a", :path=>"$"},
{:key=>"b", :value=>"{\"c\":2,\"d\":{\"e\":3}}", :type=>"object", :atom=>nil, :id=>4, :parent=>0, :fullkey=>"$.b", :path=>"$"},
{:key=>"c", :value=>2, :type=>"integer", :atom=>2, :id=>6, :parent=>4, :fullkey=>"$.b.c", :path=>"$.b"},
{:key=>"d", :value=>"{\"e\":3}", :type=>"object", :atom=>nil, :id=>8, :parent=>4, :fullkey=>"$.b.d", :path=>"$.b"},
{:key=>"e", :value=>3, :type=>"integer", :atom=>3, :id=>10, :parent=>8, :fullkey=>"$.b.d.e", :path=>"$.b.d"}]
@db.from(jo.tree('$.b')).all.must_equal [
{:key=>"b", :value=>"{\"c\":2,\"d\":{\"e\":3}}", :type=>"object", :atom=>nil, :id=>4, :parent=>nil, :fullkey=>"$.b", :path=>"$"},
{:key=>"c", :value=>2, :type=>"integer", :atom=>2, :id=>6, :parent=>4, :fullkey=>"$.b.c", :path=>"$.b"},
{:key=>"d", :value=>"{\"e\":3}", :type=>"object", :atom=>nil, :id=>8, :parent=>4, :fullkey=>"$.b.d", :path=>"$.b"},
{:key=>"e", :value=>3, :type=>"integer", :atom=>3, :id=>10, :parent=>8, :fullkey=>"$.b.d.e", :path=>"$.b.d"}]
@db.from(ja.tree).all.must_equal [
{:key=>nil, :value=>"[2,3,[\"a\",\"b\"]]", :type=>"array", :atom=>nil, :id=>0, :parent=>nil, :fullkey=>"$", :path=>"$"},
{:key=>0, :value=>2, :type=>"integer", :atom=>2, :id=>1, :parent=>0, :fullkey=>"$[0]", :path=>"$"},
{:key=>1, :value=>3, :type=>"integer", :atom=>3, :id=>2, :parent=>0, :fullkey=>"$[1]", :path=>"$"},
{:key=>2, :value=>"[\"a\",\"b\"]", :type=>"array", :atom=>nil, :id=>3, :parent=>0, :fullkey=>"$[2]", :path=>"$"},
{:key=>0, :value=>"a", :type=>"text", :atom=>"a", :id=>4, :parent=>3, :fullkey=>"$[2][0]", :path=>"$[2]"},
{:key=>1, :value=>"b", :type=>"text", :atom=>"b", :id=>5, :parent=>3, :fullkey=>"$[2][1]", :path=>"$[2]"}]
@db.from(ja.tree('$[2]')).all.must_equal [
{:key=>nil, :value=>"[\"a\",\"b\"]", :type=>"array", :atom=>nil, :id=>3, :parent=>nil, :fullkey=>"$[0]", :path=>"$"},
{:key=>0, :value=>"a", :type=>"text", :atom=>"a", :id=>4, :parent=>3, :fullkey=>"$[0][0]", :path=>"$[0]"},
{:key=>1, :value=>"b", :type=>"text", :atom=>"b", :id=>5, :parent=>3, :fullkey=>"$[0][1]", :path=>"$[0]"}]
end
@db.get(jo.json).must_equal '{"a":1,"b":{"c":2,"d":{"e":3}}}'
@db.get(ja.minify).must_equal '[2,3,["a","b"]]'
@db.get(ja.insert('$[1]', 5)).must_equal '[2,3,["a","b"]]'
@db.get(ja.replace('$[1]', 5)).must_equal '[2,5,["a","b"]]'
@db.get(ja.set('$[1]', 5)).must_equal '[2,5,["a","b"]]'
@db.get(ja.insert('$[3]', 5)).must_equal '[2,3,["a","b"],5]'
@db.get(ja.replace('$[3]', 5)).must_equal '[2,3,["a","b"]]'
@db.get(ja.set('$[3]', 5)).must_equal '[2,3,["a","b"],5]'
@db.get(ja.insert('$[1]', 5, '$[3]', 6)).must_equal '[2,3,["a","b"],6]'
@db.get(ja.replace('$[1]', 5, '$[3]', 6)).must_equal '[2,5,["a","b"]]'
@db.get(ja.set('$[1]', 5, '$[3]', 6)).must_equal '[2,5,["a","b"],6]'
@db.get(jo.insert('$.f', 4)).must_equal '{"a":1,"b":{"c":2,"d":{"e":3}},"f":4}'
@db.get(jo.replace('$.f', 4)).must_equal '{"a":1,"b":{"c":2,"d":{"e":3}}}'
@db.get(jo.set('$.f', 4)).must_equal '{"a":1,"b":{"c":2,"d":{"e":3}},"f":4}'
@db.get(jo.insert('$.a', 4)).must_equal '{"a":1,"b":{"c":2,"d":{"e":3}}}'
@db.get(jo.replace('$.a', 4)).must_equal '{"a":4,"b":{"c":2,"d":{"e":3}}}'
@db.get(jo.set('$.a', 4)).must_equal '{"a":4,"b":{"c":2,"d":{"e":3}}}'
@db.get(jo.insert('$.f', 4, '$.a', 5)).must_equal '{"a":1,"b":{"c":2,"d":{"e":3}},"f":4}'
@db.get(jo.replace('$.f', 4, '$.a', 5)).must_equal '{"a":5,"b":{"c":2,"d":{"e":3}}}'
@db.get(jo.set('$.f', 4, '$.a', 5)).must_equal '{"a":5,"b":{"c":2,"d":{"e":3}},"f":4}'
@db.get(jo.patch('{"e": 4, "b": 5, "a": null}')).must_equal '{"b":5,"e":4}'
@db.get(ja.remove('$[1]')).must_equal '[2,["a","b"]]'
@db.get(ja.remove('$[1]', '$[1]')).must_equal '[2]'
@db.get(jo.remove('$.a')).must_equal '{"b":{"c":2,"d":{"e":3}}}'
@db.get(jo.remove('$.a', '$.b.c')).must_equal '{"b":{"d":{"e":3}}}'
@db.get(jo.valid).must_equal 1
@db.get(ja.valid).must_equal 1
if @db.sqlite_version >= 34500
direct_jo = Sequel.sqlite_jsonb_op('{"a": 1 ,"b": {"c": 2, "d": {"e": 3}}}')
direct_ja = Sequel.sqlite_jsonb_op('[2, 3, ["a", "b"]]')
[[jo.jsonb, ja.jsonb], [direct_jo, direct_ja]].each do |jo, ja|
@db.get(jo.json).must_equal '{"a":1,"b":{"c":2,"d":{"e":3}}}'
@db.get(jo.jsonb.json).must_equal '{"a":1,"b":{"c":2,"d":{"e":3}}}'
@db.get(jo.extract('$.a')).must_equal 1
@db.get(jo.extract('$.a', '$.b.c').sqlite_json_op.json).must_equal '[1,2]'
@db.get(jo.extract('$.a', '$.b.d.e').sqlite_json_op.json).must_equal '[1,3]'
@db.get(ja.insert('$[1]', 5).json).must_equal '[2,3,["a","b"]]'
@db.get(ja.replace('$[1]', 5).json).must_equal '[2,5,["a","b"]]'
@db.get(ja.set('$[1]', 5).json).must_equal '[2,5,["a","b"]]'
@db.get(ja.insert('$[3]', 5).json).must_equal '[2,3,["a","b"],5]'
@db.get(ja.replace('$[3]', 5).json).must_equal '[2,3,["a","b"]]'
@db.get(ja.set('$[3]', 5).json).must_equal '[2,3,["a","b"],5]'
@db.get(ja.insert('$[1]', 5, '$[3]', 6).json).must_equal '[2,3,["a","b"],6]'
@db.get(ja.replace('$[1]', 5, '$[3]', 6).json).must_equal '[2,5,["a","b"]]'
@db.get(ja.set('$[1]', 5, '$[3]', 6).json).must_equal '[2,5,["a","b"],6]'
@db.get(jo.insert('$.f', 4).json).must_equal '{"a":1,"b":{"c":2,"d":{"e":3}},"f":4}'
@db.get(jo.replace('$.f', 4).json).must_equal '{"a":1,"b":{"c":2,"d":{"e":3}}}'
@db.get(jo.set('$.f', 4).json).must_equal '{"a":1,"b":{"c":2,"d":{"e":3}},"f":4}'
@db.get(jo.insert('$.a', 4).json).must_equal '{"a":1,"b":{"c":2,"d":{"e":3}}}'
@db.get(jo.replace('$.a', 4).json).must_equal '{"a":4,"b":{"c":2,"d":{"e":3}}}'
@db.get(jo.set('$.a', 4).json).must_equal '{"a":4,"b":{"c":2,"d":{"e":3}}}'
@db.get(jo.insert('$.f', 4, '$.a', 5).json).must_equal '{"a":1,"b":{"c":2,"d":{"e":3}},"f":4}'
@db.get(jo.replace('$.f', 4, '$.a', 5).json).must_equal '{"a":5,"b":{"c":2,"d":{"e":3}}}'
@db.get(jo.set('$.f', 4, '$.a', 5).json).must_equal '{"a":5,"b":{"c":2,"d":{"e":3}},"f":4}'
@db.get(jo.patch('{"e": 4, "b": 5, "a": null}').json).must_equal '{"b":5,"e":4}'
@db.get(ja.remove('$[1]').json).must_equal '[2,["a","b"]]'
@db.get(ja.remove('$[1]', '$[1]').json).must_equal '[2]'
@db.get(jo.remove('$.a').json).must_equal '{"b":{"c":2,"d":{"e":3}}}'
@db.get(jo.remove('$.a', '$.b.c').json).must_equal '{"b":{"d":{"e":3}}}'
end
end
end
end if DB.sqlite_version >= 33800
# Force a separate Database object for these tests, so SQLite regexp support is always
# tested if testing the sqlite adapter.
describe 'Regexp support' do
def setup_db(opts)
db = Sequel.sqlite(opts)
db.create_table(:names) do
primary_key :id
String :name
end
db[:names].insert(name: 'Adam')
db[:names].insert(name: 'Jane')
db[:names].insert(name: 'John')
db
end
it "should support setup_regexp_function: true option" do
db = setup_db(:setup_regexp_function=>true, :keep_reference=>false)
db.must_be :allow_regexp?
db[:names].where(name: /^J/).select_order_map(:name).must_equal %w[Jane John]
end
it "should support setup_regexp_function: :cached option" do
db = setup_db(:setup_regexp_function=>:cached, :keep_reference=>false)
db.must_be :allow_regexp?
db[:names].where(name: /^J/).select_order_map(:name).must_equal %w[Jane John]
end
it "should support :regexp_function_cache option with setup_regexp_function: :cached option" do
cache = {}
db = setup_db(:setup_regexp_function=>:cached, :regexp_function_cache=>proc{cache}, :keep_reference=>false)
db.must_be :allow_regexp?
db[:names].where(name: /^J/).select_order_map(:name).must_equal %w[Jane John]
cache.size.must_equal 1
end
it "should support :regexp_function_cache option with WeakKeyMap with setup_regexp_function: :cached option" do
db = setup_db(:setup_regexp_function=>:cached, :regexp_function_cache=>ObjectSpace::WeakKeyMap, :keep_reference=>false)
db.must_be :allow_regexp?
db[:names].where(name: /^J/).select_order_map(:name).must_equal %w[Jane John]
end if RUBY_VERSION >= '3.3'
end if DB.adapter_scheme == :sqlite
# Force a separate Database object for these tests, so temporarily_release_connection
# extension is always tested if testing the sqlite adapter.
describe 'temporarily_release_connection plugin' do
it "should temporarily release a connection" do
db = Sequel.sqlite
db.extension :temporarily_release_connection
db.create_table(:i){Integer :i}
db.transaction(:rollback=>:always) do |c|
db.temporarily_release_connection(c) do
Array.new(4) do |i|
Thread.new do
db.synchronize do |conn|
_(conn).must_be_same_as c
end
db[:i].insert(i)
end
end.map(&:join)
end
db[:i].count.must_equal 4
end
db[:i].count.must_equal 0
end
end if DB.adapter_scheme == :sqlite
|