mirror of
https://github.com/nikita-volkov/hasql.git
synced 2024-11-22 18:22:05 +03:00
Reproduce a bug
This commit is contained in:
parent
2bdfd1cc1f
commit
b38a881b50
@ -112,6 +112,7 @@ test-suite tasty
|
||||
Main.hs
|
||||
other-modules:
|
||||
Main.DSL
|
||||
Main.Connection
|
||||
Main.Queries
|
||||
Main.Prelude
|
||||
default-extensions:
|
||||
|
@ -9,6 +9,7 @@ import Test.Tasty.QuickCheck
|
||||
import qualified Test.QuickCheck as QuickCheck
|
||||
import qualified Main.Queries as Queries
|
||||
import qualified Main.DSL as DSL
|
||||
import qualified Main.Connection as Connection
|
||||
import qualified Hasql.Query as Query
|
||||
import qualified Hasql.Encoders as Encoders
|
||||
import qualified Hasql.Decoders as Decoders
|
||||
@ -21,6 +22,31 @@ tree =
|
||||
localOption (NumThreads 1) $
|
||||
testGroup "All tests"
|
||||
[
|
||||
testCase "\"in progress after error\" bugfix" $
|
||||
let
|
||||
sumQuery :: Query.Query (Int64, Int64) Int64
|
||||
sumQuery =
|
||||
Query.statement sql encoder decoder True
|
||||
where
|
||||
sql =
|
||||
"select ($1 + $2)"
|
||||
encoder =
|
||||
contramap fst (Encoders.value Encoders.int8) <>
|
||||
contramap snd (Encoders.value Encoders.int8)
|
||||
decoder =
|
||||
Decoders.singleRow (Decoders.value Decoders.int8)
|
||||
sumSession :: Session.Session Int64
|
||||
sumSession =
|
||||
Session.sql "begin" *> Session.query (1, 1) sumQuery <* Session.sql "end"
|
||||
errorSession :: Session.Session ()
|
||||
errorSession =
|
||||
Session.sql "asldfjsldk"
|
||||
io =
|
||||
Connection.with $ \c -> do
|
||||
Session.run errorSession c
|
||||
Session.run sumSession c
|
||||
in io >>= \x -> assertBool (show x) (either (const False) isRight x)
|
||||
,
|
||||
testCase "\"another command is already in progress\" bugfix" $
|
||||
let
|
||||
sumQuery :: Query.Query (Int64, Int64) Int64
|
||||
@ -41,7 +67,7 @@ tree =
|
||||
s <- Session.query (1,1) sumQuery
|
||||
Session.sql "end;"
|
||||
return s
|
||||
in DSL.session session >>= \x -> assertBool (show x) (isRight x)
|
||||
in DSL.session session >>= \x -> assertEqual (show x) (Right 2) x
|
||||
,
|
||||
testCase "Executing the same query twice" $
|
||||
pure ()
|
||||
|
28
tasty/Main/Connection.hs
Normal file
28
tasty/Main/Connection.hs
Normal file
@ -0,0 +1,28 @@
|
||||
module Main.Connection
|
||||
where
|
||||
|
||||
import Main.Prelude
|
||||
import qualified Hasql.Connection as HC
|
||||
import qualified Hasql.Query as HQ
|
||||
import qualified Hasql.Session
|
||||
|
||||
|
||||
with :: (HC.Connection -> IO a) -> IO (Either HC.ConnectionError a)
|
||||
with handler =
|
||||
runEitherT $ acquire >>= \connection -> use connection <* release connection
|
||||
where
|
||||
acquire =
|
||||
EitherT $ HC.acquire settings
|
||||
where
|
||||
settings =
|
||||
HC.settings host port user password database
|
||||
where
|
||||
host = "localhost"
|
||||
port = 5432
|
||||
user = "postgres"
|
||||
password = ""
|
||||
database = "postgres"
|
||||
use connection =
|
||||
lift $ handler connection
|
||||
release connection =
|
||||
lift $ HC.release connection
|
Loading…
Reference in New Issue
Block a user