mirror of
https://github.com/nikita-volkov/hasql.git
synced 2024-12-25 19:21:31 +03:00
Add tests for "IN" and "NOT IN" simulations
This commit is contained in:
parent
08564ab360
commit
a1a5e15da8
@ -22,6 +22,42 @@ tree =
|
||||
localOption (NumThreads 1) $
|
||||
testGroup "All tests"
|
||||
[
|
||||
testCase "IN simulation" $
|
||||
let
|
||||
query =
|
||||
Query.statement "select true where 1 = any ($1)" encoder decoder True
|
||||
where
|
||||
encoder =
|
||||
Encoders.value (Encoders.array (Encoders.arrayDimension foldl' (Encoders.arrayValue Encoders.int8)))
|
||||
decoder =
|
||||
fmap (maybe False (const True)) (Decoders.maybeRow (Decoders.value Decoders.bool))
|
||||
session =
|
||||
do
|
||||
result1 <- Session.query [1, 2] query
|
||||
result2 <- Session.query [2, 3] query
|
||||
return (result1, result2)
|
||||
in do
|
||||
x <- Connection.with (Session.run session)
|
||||
assertEqual (show x) (Right (Right (True, False))) x
|
||||
,
|
||||
testCase "NOT IN simulation" $
|
||||
let
|
||||
query =
|
||||
Query.statement "select true where 3 <> all ($1)" encoder decoder True
|
||||
where
|
||||
encoder =
|
||||
Encoders.value (Encoders.array (Encoders.arrayDimension foldl' (Encoders.arrayValue Encoders.int8)))
|
||||
decoder =
|
||||
fmap (maybe False (const True)) (Decoders.maybeRow (Decoders.value Decoders.bool))
|
||||
session =
|
||||
do
|
||||
result1 <- Session.query [1, 2] query
|
||||
result2 <- Session.query [2, 3] query
|
||||
return (result1, result2)
|
||||
in do
|
||||
x <- Connection.with (Session.run session)
|
||||
assertEqual (show x) (Right (Right (True, False))) x
|
||||
,
|
||||
testCase "Composite decoding" $
|
||||
let
|
||||
query =
|
||||
|
Loading…
Reference in New Issue
Block a user