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
|
require_relative "spec_helper"
if (RUBY_VERSION >= '2.0.0' && RUBY_ENGINE == 'ruby') || (RUBY_ENGINE == 'jruby' && (JRUBY_VERSION >= '9.3' || (JRUBY_VERSION.match(/\A9\.2\.(\d+)/) && $1.to_i >= 7)))
Sequel.extension :core_refinements, :pg_array, :pg_hstore, :pg_row, :pg_range, :pg_multirange, :pg_row_ops, :pg_range_ops, :pg_array_ops, :pg_hstore_ops, :pg_json, :pg_json_ops, :sqlite_json_ops, :is_distinct_from
using Sequel::CoreRefinements
describe "Core refinements" do
before do
db = Sequel.mock
@d = db[:items].with_extend do
def supports_regexp?; true end
def l(*args, &block)
literal(filter_expr(*args, &block))
end
def lit(*args)
literal(*args)
end
end
end
it "should support NOT via Symbol#~" do
@d.l(~:x).must_equal 'NOT x'
end
with_symbol_splitting "should support NOT via Symbol#~ for splittable symbols" do
@d.l(~:x__y).must_equal 'NOT x.y'
end
it "should support + - * / power via Symbol#+,-,*,/,**" do
@d.l(:x + 1 > 100).must_equal '((x + 1) > 100)'
@d.l((:x * :y) < 100.01).must_equal '((x * y) < 100.01)'
@d.l((:x - :y/2) >= 100000000000000000000000000000000000).must_equal '((x - (y / 2)) >= 100000000000000000000000000000000000)'
@d.l((((:x - :y)/(:x + :y))*:z) <= 100).must_equal '((((x - y) / (x + y)) * z) <= 100)'
@d.l(~((((:x - :y)/(:x + :y))*:z) <= 100)).must_equal '((((x - y) / (x + y)) * z) > 100)'
@d.l(~((((:x ** :y)/(:x + :y))*:z) <= 100)).must_equal '(((power(x, y) / (x + y)) * z) > 100)'
end
it "should support LIKE via Symbol#like" do
@d.l(:x.like('a')).must_equal '(x LIKE \'a\' ESCAPE \'\\\')'
@d.l(:x.like(/a/)).must_equal '(x ~ \'a\')'
@d.l(:x.like('a', 'b')).must_equal '((x LIKE \'a\' ESCAPE \'\\\') OR (x LIKE \'b\' ESCAPE \'\\\'))'
@d.l(:x.like(/a/, /b/i)).must_equal '((x ~ \'a\') OR (x ~* \'b\'))'
@d.l(:x.like('a', /b/)).must_equal '((x LIKE \'a\' ESCAPE \'\\\') OR (x ~ \'b\'))'
end
it "should support NOT LIKE via Symbol#like and Symbol#~" do
@d.l(~:x.like('a')).must_equal '(x NOT LIKE \'a\' ESCAPE \'\\\')'
@d.l(~:x.like(/a/)).must_equal '(x !~ \'a\')'
@d.l(~:x.like('a', 'b')).must_equal '((x NOT LIKE \'a\' ESCAPE \'\\\') AND (x NOT LIKE \'b\' ESCAPE \'\\\'))'
@d.l(~:x.like(/a/, /b/i)).must_equal '((x !~ \'a\') AND (x !~* \'b\'))'
@d.l(~:x.like('a', /b/)).must_equal '((x NOT LIKE \'a\' ESCAPE \'\\\') AND (x !~ \'b\'))'
end
it "should support ILIKE via Symbol#ilike" do
@d.l(:x.ilike('a')).must_equal '(UPPER(x) LIKE UPPER(\'a\') ESCAPE \'\\\')'
@d.l(:x.ilike(/a/)).must_equal '(x ~* \'a\')'
@d.l(:x.ilike('a', 'b')).must_equal '((UPPER(x) LIKE UPPER(\'a\') ESCAPE \'\\\') OR (UPPER(x) LIKE UPPER(\'b\') ESCAPE \'\\\'))'
@d.l(:x.ilike(/a/, /b/i)).must_equal '((x ~* \'a\') OR (x ~* \'b\'))'
@d.l(:x.ilike('a', /b/)).must_equal '((UPPER(x) LIKE UPPER(\'a\') ESCAPE \'\\\') OR (x ~* \'b\'))'
end
it "should support NOT ILIKE via Symbol#ilike and Symbol#~" do
@d.l(~:x.ilike('a')).must_equal '(UPPER(x) NOT LIKE UPPER(\'a\') ESCAPE \'\\\')'
@d.l(~:x.ilike(/a/)).must_equal '(x !~* \'a\')'
@d.l(~:x.ilike('a', 'b')).must_equal '((UPPER(x) NOT LIKE UPPER(\'a\') ESCAPE \'\\\') AND (UPPER(x) NOT LIKE UPPER(\'b\') ESCAPE \'\\\'))'
@d.l(~:x.ilike(/a/, /b/i)).must_equal '((x !~* \'a\') AND (x !~* \'b\'))'
@d.l(~:x.ilike('a', /b/)).must_equal '((UPPER(x) NOT LIKE UPPER(\'a\') ESCAPE \'\\\') AND (x !~* \'b\'))'
end
it "should support sql_expr on arrays with all two pairs" do
@d.l([[:x, 100],[:y, 'a']].sql_expr).must_equal '((x = 100) AND (y = \'a\'))'
@d.l([[:x, true], [:y, false]].sql_expr).must_equal '((x IS TRUE) AND (y IS FALSE))'
@d.l([[:x, nil], [:y, [1,2,3]]].sql_expr).must_equal '((x IS NULL) AND (y IN (1, 2, 3)))'
end
it "should support sql_negate on arrays with all two pairs" do
@d.l([[:x, 100],[:y, 'a']].sql_negate).must_equal '((x != 100) AND (y != \'a\'))'
@d.l([[:x, true], [:y, false]].sql_negate).must_equal '((x IS NOT TRUE) AND (y IS NOT FALSE))'
@d.l([[:x, nil], [:y, [1,2,3]]].sql_negate).must_equal '((x IS NOT NULL) AND (y NOT IN (1, 2, 3)))'
end
it "should support ~ on arrays with all two pairs" do
@d.l(~[[:x, 100],[:y, 'a']]).must_equal '((x != 100) OR (y != \'a\'))'
@d.l(~[[:x, true], [:y, false]]).must_equal '((x IS NOT TRUE) OR (y IS NOT FALSE))'
@d.l(~[[:x, nil], [:y, [1,2,3]]]).must_equal '((x IS NOT NULL) OR (y NOT IN (1, 2, 3)))'
end
it "should support sql_or on arrays with all two pairs" do
@d.l([[:x, 100],[:y, 'a']].sql_or).must_equal '((x = 100) OR (y = \'a\'))'
@d.l([[:x, true], [:y, false]].sql_or).must_equal '((x IS TRUE) OR (y IS FALSE))'
@d.l([[:x, nil], [:y, [1,2,3]]].sql_or).must_equal '((x IS NULL) OR (y IN (1, 2, 3)))'
end
it "should support Array#sql_string_join for concatenation of SQL strings" do
@d.lit([:x].sql_string_join).must_equal '(x)'
@d.lit([:x].sql_string_join(', ')).must_equal '(x)'
@d.lit([:x, :y].sql_string_join).must_equal '(x || y)'
@d.lit([:x, :y].sql_string_join(', ')).must_equal "(x || ', ' || y)"
@d.lit([:x.sql_function(1), :y.sql_subscript(1)].sql_string_join).must_equal '(x(1) || y[1])'
@d.lit([:x.sql_function(1), 'y.z'.lit].sql_string_join(', ')).must_equal "(x(1) || ', ' || y.z)"
@d.lit([:x, 1, :y].sql_string_join).must_equal "(x || '1' || y)"
@d.lit([:x, 1, :y].sql_string_join(', ')).must_equal "(x || ', ' || '1' || ', ' || y)"
@d.lit([:x, 1, :y].sql_string_join(Sequel[:y][:z])).must_equal "(x || y.z || '1' || y.z || y)"
@d.lit([:x, 1, :y].sql_string_join(1)).must_equal "(x || '1' || '1' || '1' || y)"
@d.lit([:x, :y].sql_string_join('y.x || x.y'.lit)).must_equal "(x || y.x || x.y || y)"
@d.lit([[:x, :y].sql_string_join, [:a, :b].sql_string_join].sql_string_join).must_equal "(x || y || a || b)"
end
it "should support sql_expr on hashes" do
@d.l({:x => 100, :y => 'a'}.sql_expr)[1...-1].split(' AND ').sort.must_equal ['(x = 100)', '(y = \'a\')']
@d.l({:x => true, :y => false}.sql_expr)[1...-1].split(' AND ').sort.must_equal ['(x IS TRUE)', '(y IS FALSE)']
@d.l({:x => nil, :y => [1,2,3]}.sql_expr)[1...-1].split(' AND ').sort.must_equal ['(x IS NULL)', '(y IN (1, 2, 3))']
end
it "should support sql_negate on hashes" do
@d.l({:x => 100, :y => 'a'}.sql_negate)[1...-1].split(' AND ').sort.must_equal ['(x != 100)', '(y != \'a\')']
@d.l({:x => true, :y => false}.sql_negate)[1...-1].split(' AND ').sort.must_equal ['(x IS NOT TRUE)', '(y IS NOT FALSE)']
@d.l({:x => nil, :y => [1,2,3]}.sql_negate)[1...-1].split(' AND ').sort.must_equal ['(x IS NOT NULL)', '(y NOT IN (1, 2, 3))']
end
it "should support ~ on hashes" do
@d.l(~{:x => 100, :y => 'a'})[1...-1].split(' OR ').sort.must_equal ['(x != 100)', '(y != \'a\')']
@d.l(~{:x => true, :y => false})[1...-1].split(' OR ').sort.must_equal ['(x IS NOT TRUE)', '(y IS NOT FALSE)']
@d.l(~{:x => nil, :y => [1,2,3]})[1...-1].split(' OR ').sort.must_equal ['(x IS NOT NULL)', '(y NOT IN (1, 2, 3))']
end
it "should support sql_or on hashes" do
@d.l({:x => 100, :y => 'a'}.sql_or)[1...-1].split(' OR ').sort.must_equal ['(x = 100)', '(y = \'a\')']
@d.l({:x => true, :y => false}.sql_or)[1...-1].split(' OR ').sort.must_equal ['(x IS TRUE)', '(y IS FALSE)']
@d.l({:x => nil, :y => [1,2,3]}.sql_or)[1...-1].split(' OR ').sort.must_equal ['(x IS NULL)', '(y IN (1, 2, 3))']
end
it "should Hash#& and Hash#|" do
@d.l({:y => :z} & :x).must_equal '((y = z) AND x)'
@d.l({:x => :a} & {:y => :z}).must_equal '((x = a) AND (y = z))'
@d.l({:y => :z} | :x).must_equal '((y = z) OR x)'
@d.l({:x => :a} | {:y => :z}).must_equal '((x = a) OR (y = z))'
end
end
describe "Array#case and Hash#case" do
before do
@d = Sequel.mock.dataset
end
it "should return SQL CASE expression" do
@d.literal({:x=>:y}.case(:z)).must_equal '(CASE WHEN x THEN y ELSE z END)'
@d.literal({:x=>:y}.case(:z, :exp)).must_equal '(CASE exp WHEN x THEN y ELSE z END)'
['(CASE WHEN x THEN y WHEN a THEN b ELSE z END)',
'(CASE WHEN a THEN b WHEN x THEN y ELSE z END)'].must_include(@d.literal({:x=>:y, :a=>:b}.case(:z)))
@d.literal([[:x, :y]].case(:z)).must_equal '(CASE WHEN x THEN y ELSE z END)'
@d.literal([[:x, :y], [:a, :b]].case(:z)).must_equal '(CASE WHEN x THEN y WHEN a THEN b ELSE z END)'
@d.literal([[:x, :y], [:a, :b]].case(:z, :exp)).must_equal '(CASE exp WHEN x THEN y WHEN a THEN b ELSE z END)'
@d.literal([[:x, :y], [:a, :b]].case(:z, Sequel[:exp][:w])).must_equal '(CASE exp.w WHEN x THEN y WHEN a THEN b ELSE z END)'
end
it "should return SQL CASE expression with expression even if nil" do
@d.literal({:x=>:y}.case(:z, nil)).must_equal '(CASE NULL WHEN x THEN y ELSE z END)'
end
it "should raise an error if an array that isn't all two pairs is used" do
proc{[:b].case(:a)}.must_raise(Sequel::Error)
proc{[:b, :c].case(:a)}.must_raise(Sequel::Error)
proc{[[:b, :c], :d].case(:a)}.must_raise(Sequel::Error)
end
it "should raise an error if an empty array/hash is used" do
proc{[].case(:a)}.must_raise(Sequel::Error)
proc{{}.case(:a)}.must_raise(Sequel::Error)
end
end
describe "Array#sql_value_list and #sql_array" do
before do
@d = Sequel.mock.dataset
end
it "should treat the array as an SQL value list instead of conditions when used as a placeholder value" do
@d.filter(Sequel.lit("(a, b) IN ?", [[:x, 1], [:y, 2]])).sql.must_equal 'SELECT * WHERE ((a, b) IN ((x = 1) AND (y = 2)))'
@d.filter(Sequel.lit("(a, b) IN ?", [[:x, 1], [:y, 2]].sql_value_list)).sql.must_equal 'SELECT * WHERE ((a, b) IN ((x, 1), (y, 2)))'
end
it "should be no difference when used as a hash value" do
@d.filter([:a, :b]=>[[:x, 1], [:y, 2]]).sql.must_equal 'SELECT * WHERE ((a, b) IN ((x, 1), (y, 2)))'
@d.filter([:a, :b]=>[[:x, 1], [:y, 2]].sql_value_list).sql.must_equal 'SELECT * WHERE ((a, b) IN ((x, 1), (y, 2)))'
end
end
describe "String#lit" do
before do
@ds = Sequel.mock[:t]
end
it "should return an LiteralString object" do
'xyz'.lit.must_be_kind_of(Sequel::LiteralString)
'xyz'.lit.to_s.must_equal 'xyz'
end
it "should inhibit string literalization" do
@ds.update_sql(:stamp => "NOW()".lit).must_equal "UPDATE t SET stamp = NOW()"
end
it "should return a PlaceholderLiteralString object if args are given" do
a = 'DISTINCT ?'.lit(:a)
a.must_be_kind_of(Sequel::SQL::PlaceholderLiteralString)
@ds.literal(a).must_equal 'DISTINCT a'
@ds.with_quote_identifiers(true).literal(a).must_equal 'DISTINCT "a"'
end
it "should handle named placeholders if given a single argument hash" do
a = 'DISTINCT :b'.lit(:b=>:a)
a.must_be_kind_of(Sequel::SQL::PlaceholderLiteralString)
@ds.literal(a).must_equal 'DISTINCT a'
@ds.with_quote_identifiers(true).literal(a).must_equal 'DISTINCT "a"'
end
it "should treat placeholder literal strings as generic expressions" do
a = ':b'.lit(:b=>:a)
@ds.literal(a + 1).must_equal "(a + 1)"
@ds.literal(a & :b).must_equal "(a AND b)"
@ds.literal(a.sql_string + :b).must_equal "(a || b)"
end
end
describe "String#to_sequel_blob" do
it "should return a Blob object" do
'xyz'.to_sequel_blob.must_be_kind_of(::Sequel::SQL::Blob)
'xyz'.to_sequel_blob.must_equal 'xyz'
end
it "should retain binary data" do
"\1\2\3\4".to_sequel_blob.must_equal "\1\2\3\4"
end
end
describe "#desc" do
before do
@ds = Sequel.mock.dataset
end
it "should format a DESC clause for a column ref" do
@ds.literal(:test.desc).must_equal 'test DESC'
end
with_symbol_splitting "should format a DESC clause for a column ref with splittable symbol" do
@ds.literal(:items__price.desc).must_equal 'items.price DESC'
end
it "should format a DESC clause for a function" do
@ds.literal(:avg.sql_function(:test).desc).must_equal 'avg(test) DESC'
end
end
describe "#asc" do
before do
@ds = Sequel.mock.dataset
end
it "should format a ASC clause for a column ref" do
@ds.literal(:test.asc).must_equal 'test ASC'
end
with_symbol_splitting "should format a ASC clause for a column ref with splittable symbol" do
@ds.literal(:items__price.asc).must_equal 'items.price ASC'
end
it "should format a ASC clause for a function" do
@ds.literal(:avg.sql_function(:test).asc).must_equal 'avg(test) ASC'
end
end
describe "#as" do
before do
@ds = Sequel.mock.dataset
end
it "should format a AS clause for a column ref" do
@ds.literal(:test.as(:t)).must_equal 'test AS t'
end
with_symbol_splitting "should format a AS clause for a column ref with splittable symbols" do
@ds.literal(:items__price.as(:p)).must_equal 'items.price AS p'
end
it "should format a AS clause for a function" do
@ds.literal(:avg.sql_function(:test).as(:avg)).must_equal 'avg(test) AS avg'
end
it "should format a AS clause for a literal value" do
@ds.literal('abc'.as(:abc)).must_equal "'abc' AS abc"
end
end
describe "Column references" do
before do
@ds = Sequel.mock.dataset.with_quote_identifiers(true).with_extend{def quoted_identifier_append(sql, c) sql << "`#{c}`" end}
end
it "should be quoted properly" do
@ds.literal(:xyz).must_equal "`xyz`"
@ds.literal(:xyz.as(:x)).must_equal "`xyz` AS `x`"
end
it "should be quoted properly in SQL functions" do
@ds.literal(:avg.sql_function(:xyz)).must_equal "avg(`xyz`)"
@ds.literal(:avg.sql_function(:xyz, 1)).must_equal "avg(`xyz`, 1)"
@ds.literal(:avg.sql_function(:xyz).as(:a)).must_equal "avg(`xyz`) AS `a`"
end
it "should be quoted properly in ASC/DESC clauses" do
@ds.literal(:xyz.asc).must_equal "`xyz` ASC"
@ds.literal(:avg.sql_function(:xyz, 1).desc).must_equal "avg(`xyz`, 1) DESC"
end
it "should be quoted properly in a cast function" do
@ds.literal(:x.cast(:integer)).must_equal "CAST(`x` AS integer)"
end
with_symbol_splitting "should be quoted properly when using splittable symbols" do
@ds.literal(:xyz__abc).must_equal "`xyz`.`abc`"
@ds.literal(:xyz__abc.as(:x)).must_equal "`xyz`.`abc` AS `x`"
@ds.literal(:xyz___x).must_equal "`xyz` AS `x`"
@ds.literal(:xyz__abc___x).must_equal "`xyz`.`abc` AS `x`"
@ds.literal(:x__y.cast('varchar(20)')).must_equal "CAST(`x`.`y` AS varchar(20))"
end
end
describe "Blob" do
it "#to_sequel_blob should return self" do
blob = "x".to_sequel_blob
blob.to_sequel_blob.object_id.must_equal blob.object_id
end
end
describe "Symbol#*" do
before do
@ds = Sequel.mock.dataset
end
it "should format a qualified wildcard if no argument" do
@ds.literal(:xyz.*).must_equal 'xyz.*'
@ds.literal(:abc.*).must_equal 'abc.*'
end
it "should format a filter expression if an argument" do
@ds.literal(:xyz.*(3)).must_equal '(xyz * 3)'
@ds.literal(:abc.*(5)).must_equal '(abc * 5)'
end
with_symbol_splitting "should support qualified symbols if no argument" do
@ds.literal(:xyz__abc.*).must_equal 'xyz.abc.*'
end
end
describe "Symbol" do
before do
@ds = Sequel.mock.dataset.with_quote_identifiers(true)
end
it "#identifier should format an identifier" do
@ds.literal(:xyz__abc.identifier).must_equal '"xyz__abc"'
end
it "#qualify should format a qualified column" do
@ds.literal(:xyz.qualify(:abc)).must_equal '"abc"."xyz"'
end
it "#qualify should work on QualifiedIdentifiers" do
@ds.literal(:xyz.qualify(:abc).qualify(:def)).must_equal '"def"."abc"."xyz"'
end
it "should be able to qualify an identifier" do
@ds.literal(:xyz.identifier.qualify(Sequel[:xyz][:abc])).must_equal '"xyz"."abc"."xyz"'
end
with_symbol_splitting "should be able to qualify an identifier with qualified symbol" do
@ds.literal(:xyz.identifier.qualify(:xyz__abc)).must_equal '"xyz"."abc"."xyz"'
end
it "should be able to specify a schema.table.column" do
@ds.literal(:column.qualify(:table.qualify(:schema))).must_equal '"schema"."table"."column"'
@ds.literal(:column.qualify(:table__name.identifier.qualify(:schema))).must_equal '"schema"."table__name"."column"'
end
it "should be able to specify order" do
@oe = :xyz.desc
@oe.class.must_equal Sequel::SQL::OrderedExpression
@oe.descending.must_equal true
@oe = :xyz.asc
@oe.class.must_equal Sequel::SQL::OrderedExpression
@oe.descending.must_equal false
end
it "should work correctly with objects" do
o = Object.new
def o.sql_literal(ds) "(foo)" end
@ds.literal(:column.qualify(o)).must_equal '(foo)."column"'
end
end
describe "Symbol" do
before do
@ds = Sequel.mock.dataset
end
it "should support sql_function method" do
@ds.literal(:COUNT.sql_function('1')).must_equal "COUNT('1')"
@ds.select(:COUNT.sql_function('1')).sql.must_equal "SELECT COUNT('1')"
end
it "should support cast method" do
@ds.literal(:abc.cast(:integer)).must_equal "CAST(abc AS integer)"
end
with_symbol_splitting "should support sql array accesses via sql_subscript for splittable symbols" do
@ds.literal(:abc__def.sql_subscript(1)).must_equal "abc.def[1]"
end
it "should support sql array accesses via sql_subscript" do
@ds.literal(:abc.sql_subscript(1)).must_equal "abc[1]"
@ds.literal(:abc.sql_subscript(1)|2).must_equal "abc[1, 2]"
@ds.literal(:abc.sql_subscript(1)[2]).must_equal "abc[1][2]"
end
it "should support cast_numeric and cast_string" do
x = :abc.cast_numeric
x.must_be_kind_of(Sequel::SQL::NumericExpression)
@ds.literal(x).must_equal "CAST(abc AS integer)"
x = :abc.cast_numeric(:real)
x.must_be_kind_of(Sequel::SQL::NumericExpression)
@ds.literal(x).must_equal "CAST(abc AS real)"
x = :abc.cast_string
x.must_be_kind_of(Sequel::SQL::StringExpression)
@ds.literal(x).must_equal "CAST(abc AS varchar(255))"
x = :abc.cast_string(:varchar)
x.must_be_kind_of(Sequel::SQL::StringExpression)
@ds.literal(x).must_equal "CAST(abc AS varchar(255))"
end
it "should allow database independent types when casting" do
db = @ds.db
def db.cast_type_literal(type)
return :foo if type == Integer
return :bar if type == String
type
end
@ds.literal(:abc.cast(String)).must_equal "CAST(abc AS bar)"
@ds.literal(:abc.cast(String)).must_equal "CAST(abc AS bar)"
@ds.literal(:abc.cast_string).must_equal "CAST(abc AS bar)"
@ds.literal(:abc.cast_string(Integer)).must_equal "CAST(abc AS foo)"
@ds.literal(:abc.cast_numeric).must_equal "CAST(abc AS foo)"
@ds.literal(:abc.cast_numeric(String)).must_equal "CAST(abc AS bar)"
end
it "should support SQL EXTRACT function via #extract " do
@ds.literal(:abc.extract(:year)).must_equal "extract(year FROM abc)"
end
end
describe "is_distinct_from extension integration" do
it "Symbol#is_distinct_from should return an IsDistinctFrom" do
db = Sequel.connect("mock://postgres")
db.extension :is_distinct_from
db.literal(:a.is_distinct_from(:b)).must_equal '("a" IS DISTINCT FROM "b")'
end
end
describe "Postgres/SQLite extensions integration" do
before do
@db = Sequel.mock
end
it "Symbol#pg_array should return an ArrayOp" do
@db.literal(:a.pg_array.unnest).must_equal "unnest(a)"
end
it "Symbol#pg_row should return a PGRowOp" do
@db.literal(:a.pg_row[:a]).must_equal "(a).a"
end
it "Symbol#hstore should return an HStoreOp" do
@db.literal(:a.hstore['a']).must_equal "(a -> 'a')"
end
it "Symbol#pg_json should return an JSONOp" do
@db.literal(:a.pg_json[%w'a b']).must_equal "(a #> ARRAY['a','b'])"
@db.literal(:a.pg_json.extract('a')).must_equal "json_extract_path(a, 'a')"
end
it "Symbol#pg_jsonb should return an JSONBOp" do
@db.literal(:a.pg_jsonb[%w'a b']).must_equal "(a #> ARRAY['a','b'])"
@db.literal(:a.pg_jsonb.extract('a')).must_equal "jsonb_extract_path(a, 'a')"
end
it "Symbol#pg_range should return a RangeOp" do
@db.literal(:a.pg_range.lower).must_equal "lower(a)"
end
it "Array#pg_array should return a PGArray" do
@db.literal([1].pg_array.op.unnest).must_equal "unnest(ARRAY[1])"
@db.literal([1].pg_array(:int4).op.unnest).must_equal "unnest(ARRAY[1]::int4[])"
end
it "Array#pg_json should return a JSONArray" do
@db.literal([1].pg_json).must_equal "'[1]'::json"
end
it "Array#pg_jsonb should return a JSONBArray" do
@db.literal([1].pg_jsonb).must_equal "'[1]'::jsonb"
end
it "Array#pg_row should return a ArrayRow" do
@db.literal([1].pg_row).must_equal "ROW(1)"
end
it "Hash#hstore should return an HStore" do
@db.literal({'a'=>1}.hstore.op['a']).must_equal '(\'"a"=>"1"\'::hstore -> \'a\')'
end
it "Hash#pg_json should return an JSONHash" do
@db.literal({'a'=>'b'}.pg_json).must_equal "'{\"a\":\"b\"}'::json"
end
it "Hash#pg_jsonb should return an JSONBHash" do
@db.literal({'a'=>'b'}.pg_jsonb).must_equal "'{\"a\":\"b\"}'::jsonb"
end
it "Range#pg_range should return an PGRange" do
@db.literal((1..2).pg_range).must_equal "'[1,2]'"
@db.literal((1..2).pg_range(:int4range)).must_equal "int4range(1,2,'[]')"
end
it "Symbol#sqlite_json_opt should return an SQLite::JSONOp" do
@db.literal(:a.sqlite_json_op[1]).must_equal "(a ->> 1)"
@db.literal(:a.sqlite_json_op.minify).must_equal "json(a)"
end
end
end
|