2017-05-06 15:09:05 +00:00
|
|
|
module Test.Main
|
|
|
|
( main
|
|
|
|
) where
|
|
|
|
|
2017-12-04 21:43:36 +00:00
|
|
|
import Prelude
|
|
|
|
|
2018-11-16 11:40:30 +00:00
|
|
|
import Control.Monad.Error.Class (throwError, try)
|
2019-08-30 10:15:05 +00:00
|
|
|
import Control.Monad.Except.Trans (runExceptT)
|
2018-11-16 11:40:30 +00:00
|
|
|
import Control.Monad.Trans.Class (lift)
|
2019-11-10 14:27:24 +00:00
|
|
|
import Data.Argonaut (Json)
|
|
|
|
import Data.Argonaut (fromArray, fromObject, fromString) as Argonaut
|
2018-04-22 16:15:43 +00:00
|
|
|
import Data.Array (zip)
|
|
|
|
import Data.Date (Date, canonicalDate)
|
2018-04-22 14:47:07 +00:00
|
|
|
import Data.DateTime.Instant (Instant, unInstant)
|
2018-04-21 11:12:20 +00:00
|
|
|
import Data.Decimal as D
|
2018-11-16 11:40:30 +00:00
|
|
|
import Data.Either (Either(..))
|
2018-04-22 16:15:43 +00:00
|
|
|
import Data.Enum (toEnum)
|
|
|
|
import Data.Foldable (all, length)
|
2018-09-05 16:13:49 +00:00
|
|
|
import Data.JSDate (JSDate, jsdate, toInstant)
|
2018-04-22 14:47:07 +00:00
|
|
|
import Data.JSDate as JSDate
|
|
|
|
import Data.Maybe (Maybe(..), fromJust)
|
|
|
|
import Data.Newtype (unwrap)
|
2018-04-22 16:15:43 +00:00
|
|
|
import Data.Tuple (Tuple(..))
|
2018-10-21 01:20:58 +00:00
|
|
|
import Data.Tuple.Nested ((/\))
|
2020-04-13 20:58:24 +00:00
|
|
|
import Database.PostgreSQL (PgConnectionUri, getDefaultPoolConfigurationByUri)
|
2019-08-28 15:00:36 +00:00
|
|
|
import Database.PostgreSQL.PG (Connection, PGError(..), Pool, PoolConfiguration, Query(Query), Row0(Row0), Row1(Row1), Row2(Row2), Row3(Row3), Row9(Row9), command, execute, newPool, onIntegrityError, query, scalar)
|
2018-09-04 13:30:02 +00:00
|
|
|
import Effect (Effect)
|
|
|
|
import Effect.Aff (Aff, error, launchAff)
|
|
|
|
import Effect.Class (liftEffect)
|
2018-11-16 11:40:30 +00:00
|
|
|
import Effect.Exception (message)
|
2019-11-10 14:27:24 +00:00
|
|
|
import Foreign.Object (Object)
|
2020-04-13 20:58:24 +00:00
|
|
|
import Foreign.Object (fromFoldable) as Object
|
2018-12-22 18:47:31 +00:00
|
|
|
import Global.Unsafe (unsafeStringify)
|
2018-04-22 14:47:07 +00:00
|
|
|
import Math ((%))
|
|
|
|
import Partial.Unsafe (unsafePartial)
|
2018-09-04 13:30:02 +00:00
|
|
|
import Test.Assert (assert)
|
2019-08-30 10:15:05 +00:00
|
|
|
import Test.README (run, PG, withConnection, withTransaction) as README
|
2018-11-16 11:40:30 +00:00
|
|
|
import Test.Unit (TestSuite, suite)
|
2018-04-22 14:47:07 +00:00
|
|
|
import Test.Unit as Test.Unit
|
2018-04-22 16:15:43 +00:00
|
|
|
import Test.Unit.Assert (equal)
|
2018-04-22 14:47:07 +00:00
|
|
|
import Test.Unit.Main (runTest)
|
2017-05-06 15:09:05 +00:00
|
|
|
|
2019-08-30 10:15:05 +00:00
|
|
|
type PG a = README.PG a
|
2019-08-28 15:00:36 +00:00
|
|
|
|
|
|
|
withConnection :: forall a. Pool -> (Connection -> PG a) -> PG a
|
2019-08-30 10:15:05 +00:00
|
|
|
withConnection = README.withConnection
|
2019-08-28 15:00:36 +00:00
|
|
|
|
|
|
|
withTransaction :: forall a. Connection -> PG a -> PG a
|
2019-08-30 10:15:05 +00:00
|
|
|
withTransaction = README.withTransaction
|
2019-08-28 15:00:36 +00:00
|
|
|
|
2018-11-30 05:43:16 +00:00
|
|
|
pgEqual :: forall a. Eq a => Show a => a -> a -> PG Unit
|
|
|
|
pgEqual a b = lift $ equal a b
|
2018-11-16 11:40:30 +00:00
|
|
|
|
2018-04-22 14:47:07 +00:00
|
|
|
withRollback
|
2018-11-16 11:40:30 +00:00
|
|
|
∷ Connection
|
|
|
|
→ PG Unit
|
|
|
|
→ PG Unit
|
|
|
|
withRollback conn action =
|
|
|
|
begin *> action *> rollback
|
|
|
|
where
|
|
|
|
begin = execute conn (Query "BEGIN TRANSACTION") Row0
|
|
|
|
rollback = execute conn (Query "ROLLBACK TRANSACTION") Row0
|
2018-04-22 14:47:07 +00:00
|
|
|
|
|
|
|
test
|
2018-11-16 11:40:30 +00:00
|
|
|
∷ Connection
|
2018-09-04 13:30:02 +00:00
|
|
|
→ String
|
2018-11-16 11:40:30 +00:00
|
|
|
→ PG Unit
|
|
|
|
→ TestSuite
|
|
|
|
test conn name action =
|
|
|
|
Test.Unit.test name $ checkPGErrors $ withRollback conn action
|
|
|
|
|
|
|
|
transactionTest
|
|
|
|
∷ String
|
|
|
|
→ PG Unit
|
|
|
|
→ TestSuite
|
|
|
|
transactionTest name action =
|
|
|
|
Test.Unit.test name $ checkPGErrors $ action
|
|
|
|
|
|
|
|
checkPGErrors :: PG Unit -> Aff Unit
|
|
|
|
checkPGErrors action = do
|
|
|
|
runExceptT action >>= case _ of
|
2018-12-22 18:47:31 +00:00
|
|
|
Left pgError -> Test.Unit.failure ("Unexpected PostgreSQL error occured:" <> unsafeStringify pgError)
|
2018-11-16 11:40:30 +00:00
|
|
|
Right _ -> pure unit
|
2018-04-22 14:47:07 +00:00
|
|
|
|
2018-09-04 13:30:02 +00:00
|
|
|
now ∷ Effect Instant
|
2018-04-22 14:47:07 +00:00
|
|
|
now = unsafePartial $ (fromJust <<< toInstant) <$> JSDate.now
|
|
|
|
|
2018-09-05 07:59:30 +00:00
|
|
|
date ∷ Int → Int → Int → Date
|
|
|
|
date y m d = unsafePartial $ fromJust $ canonicalDate <$> toEnum y <*> toEnum m <*> toEnum d
|
|
|
|
|
2018-09-05 16:13:49 +00:00
|
|
|
jsdate_ ∷ Number → Number → Number → Number → Number → Number → Number → JSDate
|
|
|
|
jsdate_ year month day hour minute second millisecond =
|
|
|
|
jsdate { year, month, day, hour, minute, second, millisecond }
|
2018-09-05 07:59:30 +00:00
|
|
|
|
2018-09-04 13:30:02 +00:00
|
|
|
main ∷ Effect Unit
|
2018-10-21 01:20:58 +00:00
|
|
|
main = do
|
|
|
|
void $ launchAff do
|
|
|
|
-- Running guide from README
|
2018-12-06 19:14:08 +00:00
|
|
|
void $ runExceptT $ README.run
|
2017-06-03 11:48:00 +00:00
|
|
|
|
2018-11-16 11:40:30 +00:00
|
|
|
-- Actual test suite
|
2018-12-06 19:14:08 +00:00
|
|
|
pool <- liftEffect $ newPool config
|
2018-11-16 11:40:30 +00:00
|
|
|
checkPGErrors $ withConnection pool \conn -> do
|
2018-10-21 01:20:58 +00:00
|
|
|
execute conn (Query """
|
|
|
|
CREATE TEMPORARY TABLE foods (
|
|
|
|
name text NOT NULL,
|
|
|
|
delicious boolean NOT NULL,
|
|
|
|
price NUMERIC(4,2) NOT NULL,
|
|
|
|
added TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
PRIMARY KEY (name)
|
|
|
|
);
|
|
|
|
CREATE TEMPORARY TABLE dates (
|
|
|
|
date date NOT NULL
|
|
|
|
);
|
|
|
|
CREATE TEMPORARY TABLE timestamps (
|
|
|
|
timestamp timestamptz NOT NULL
|
|
|
|
);
|
|
|
|
CREATE TEMPORARY TABLE jsons (
|
|
|
|
json json NOT NULL,
|
|
|
|
jsonb jsonb NOT NULL
|
|
|
|
);
|
|
|
|
""") Row0
|
2018-04-21 11:12:20 +00:00
|
|
|
|
2018-10-21 01:20:58 +00:00
|
|
|
liftEffect $ runTest $ do
|
2018-11-16 11:40:30 +00:00
|
|
|
suite "PostgreSQL client" $ do
|
2018-10-21 01:20:58 +00:00
|
|
|
let
|
|
|
|
testCount n = do
|
|
|
|
count <- scalar conn (Query """
|
|
|
|
SELECT count(*) = $1
|
|
|
|
FROM foods
|
|
|
|
""") (Row1 n)
|
|
|
|
liftEffect <<< assert $ count == Just true
|
|
|
|
|
2018-11-16 11:40:30 +00:00
|
|
|
transactionTest "transaction commit" do
|
2018-10-21 01:20:58 +00:00
|
|
|
withTransaction conn do
|
|
|
|
execute conn (Query """
|
|
|
|
INSERT INTO foods (name, delicious, price)
|
|
|
|
VALUES ($1, $2, $3)
|
|
|
|
""") (Row3 "pork" true (D.fromString "8.30"))
|
|
|
|
testCount 1
|
2018-04-22 14:47:07 +00:00
|
|
|
testCount 1
|
2018-10-21 01:20:58 +00:00
|
|
|
execute conn (Query """
|
|
|
|
DELETE FROM foods
|
|
|
|
""") Row0
|
2017-05-06 15:09:05 +00:00
|
|
|
|
2018-11-16 11:40:30 +00:00
|
|
|
transactionTest "transaction rollback on PostgreSQL error" $ do
|
2018-10-21 01:20:58 +00:00
|
|
|
_ <- try $ withTransaction conn do
|
|
|
|
execute conn (Query """
|
|
|
|
INSERT INTO foods (name, delicious, price)
|
|
|
|
VALUES ($1, $2, $3)
|
|
|
|
""") (Row3 "pork" true (D.fromString "8.30"))
|
|
|
|
testCount 1
|
2018-11-16 11:40:30 +00:00
|
|
|
|
|
|
|
-- invalid SQL query --> PGError is thrown
|
|
|
|
execute conn (Query "foo bar") Row0
|
|
|
|
|
|
|
|
-- transaction should've been rolled back
|
|
|
|
testCount 0
|
|
|
|
|
|
|
|
transactionTest "transaction rollback on JavaScript exception" $ do
|
|
|
|
result <- lift $ try $ runExceptT $ withTransaction conn do
|
|
|
|
execute conn (Query """
|
|
|
|
INSERT INTO foods (name, delicious, price)
|
|
|
|
VALUES ($1, $2, $3)
|
|
|
|
""") (Row3 "pork" true (D.fromString "8.30"))
|
|
|
|
testCount 1
|
|
|
|
|
|
|
|
-- throw a JavaScript error
|
|
|
|
lift $ throwError $ error "fail"
|
|
|
|
|
|
|
|
-- make sure the JavaScript error was thrown
|
|
|
|
liftEffect $ case result of
|
|
|
|
Left jsErr -> assert (message jsErr == "fail")
|
|
|
|
Right _ -> assert false
|
|
|
|
|
|
|
|
-- transaction should've been rolled back
|
2018-10-21 01:20:58 +00:00
|
|
|
testCount 0
|
|
|
|
|
|
|
|
test conn "usage of rows represented by nested tuples" $ do
|
2018-04-22 14:47:07 +00:00
|
|
|
execute conn (Query """
|
|
|
|
INSERT INTO foods (name, delicious, price)
|
|
|
|
VALUES ($1, $2, $3), ($4, $5, $6), ($7, $8, $9)
|
2018-10-21 01:20:58 +00:00
|
|
|
""")
|
2018-10-21 01:56:11 +00:00
|
|
|
( ("pork" /\ true /\ (D.fromString "8.30"))
|
|
|
|
/\ ("sauerkraut" /\ false /\ (D.fromString "3.30"))
|
|
|
|
/\ ("rookworst" /\ true /\ (D.fromString "5.60")))
|
2018-10-21 01:20:58 +00:00
|
|
|
names <- query conn (Query """
|
|
|
|
SELECT name, delicious
|
|
|
|
FROM foods
|
|
|
|
WHERE delicious
|
|
|
|
ORDER BY name ASC
|
|
|
|
""") Row0
|
|
|
|
liftEffect <<< assert $ names == ["pork" /\ true, "rookworst" /\ true]
|
|
|
|
|
2018-11-16 12:46:19 +00:00
|
|
|
test conn "nested tuples as rows - just one element" $ do
|
|
|
|
let row = date 2010 2 31 /\ unit
|
|
|
|
execute conn (Query """
|
|
|
|
INSERT INTO dates (date)
|
|
|
|
VALUES ($1)
|
|
|
|
""") row
|
|
|
|
rows <- query conn (Query "SELECT date FROM dates") Row0
|
|
|
|
liftEffect <<< assert $ rows == [row]
|
|
|
|
|
2018-09-05 07:59:30 +00:00
|
|
|
let
|
2018-10-21 01:20:58 +00:00
|
|
|
insertFood =
|
|
|
|
execute conn (Query """
|
|
|
|
INSERT INTO foods (name, delicious, price)
|
|
|
|
VALUES ($1, $2, $3), ($4, $5, $6), ($7, $8, $9)
|
|
|
|
""") (Row9
|
|
|
|
"pork" true (D.fromString "8.30")
|
|
|
|
"sauerkraut" false (D.fromString "3.30")
|
|
|
|
"rookworst" true (D.fromString "5.60"))
|
|
|
|
|
|
|
|
test conn "select column subset" $ do
|
|
|
|
insertFood
|
|
|
|
names <- query conn (Query """
|
|
|
|
SELECT name, delicious
|
|
|
|
FROM foods
|
|
|
|
WHERE delicious
|
|
|
|
ORDER BY name ASC
|
|
|
|
""") Row0
|
|
|
|
liftEffect <<< assert $ names == [Row2 "pork" true, Row2 "rookworst" true]
|
|
|
|
|
|
|
|
test conn "delete returning columns subset" $ do
|
|
|
|
insertFood
|
|
|
|
deleted <- query conn (Query """
|
|
|
|
DELETE FROM foods
|
|
|
|
WHERE delicious
|
|
|
|
RETURNING name, delicious
|
|
|
|
""") Row0
|
|
|
|
liftEffect <<< assert $ deleted == [Row2 "pork" true, Row2 "rookworst" true]
|
|
|
|
|
|
|
|
test conn "delete returning command tag value" $ do
|
|
|
|
insertFood
|
|
|
|
deleted <- command conn (Query """
|
|
|
|
DELETE FROM foods
|
|
|
|
WHERE delicious
|
|
|
|
""") Row0
|
|
|
|
liftEffect <<< assert $ deleted == 2
|
|
|
|
|
|
|
|
test conn "handling instant value" $ do
|
|
|
|
before <- liftEffect $ (unwrap <<< unInstant) <$> now
|
|
|
|
insertFood
|
|
|
|
added <- query conn (Query """
|
|
|
|
SELECT added
|
|
|
|
FROM foods
|
|
|
|
""") Row0
|
|
|
|
after <- liftEffect $ (unwrap <<< unInstant) <$> now
|
|
|
|
-- | timestamps are fetched without milliseconds so we have to
|
|
|
|
-- | round before value down
|
|
|
|
liftEffect <<< assert $ all
|
|
|
|
(\(Row1 t) ->
|
|
|
|
( unwrap $ unInstant t) >= (before - before % 1000.0)
|
|
|
|
&& after >= (unwrap $ unInstant t))
|
|
|
|
added
|
|
|
|
|
|
|
|
test conn "handling decimal value" $ do
|
|
|
|
insertFood
|
|
|
|
sauerkrautPrice <- query conn (Query """
|
|
|
|
SELECT price
|
|
|
|
FROM foods
|
|
|
|
WHERE NOT delicious
|
|
|
|
""") Row0
|
|
|
|
liftEffect <<< assert $ sauerkrautPrice == [Row1 (D.fromString "3.30")]
|
|
|
|
|
2018-11-16 11:40:30 +00:00
|
|
|
transactionTest "integrity error handling" $ do
|
|
|
|
withRollback conn do
|
|
|
|
result <- onIntegrityError (pure "integrity error was handled") do
|
|
|
|
insertFood
|
|
|
|
insertFood
|
|
|
|
pure "integrity error was not handled"
|
|
|
|
liftEffect $ assert $ result == "integrity error was handled"
|
2018-10-21 01:20:58 +00:00
|
|
|
|
|
|
|
test conn "handling date value" $ do
|
|
|
|
let
|
|
|
|
d1 = date 2010 2 31
|
|
|
|
d2 = date 2017 2 1
|
|
|
|
d3 = date 2020 6 31
|
|
|
|
|
|
|
|
execute conn (Query """
|
|
|
|
INSERT INTO dates (date)
|
|
|
|
VALUES ($1), ($2), ($3)
|
|
|
|
""") (Row3 d1 d2 d3)
|
|
|
|
|
|
|
|
(dates :: Array (Row1 Date)) <- query conn (Query """
|
|
|
|
SELECT *
|
|
|
|
FROM dates
|
|
|
|
ORDER BY date ASC
|
|
|
|
""") Row0
|
2018-11-30 05:43:16 +00:00
|
|
|
pgEqual 3 (length dates)
|
2018-10-21 01:20:58 +00:00
|
|
|
liftEffect <<< assert $ all (\(Tuple (Row1 r) e) -> e == r) $ (zip dates [d1, d2, d3])
|
|
|
|
|
2019-11-10 14:27:24 +00:00
|
|
|
test conn "handling Foreign.Object as json and jsonb" $ do
|
|
|
|
let jsonIn = Object.fromFoldable [Tuple "a" 1, Tuple "a" 2, Tuple "2" 3]
|
|
|
|
let expected = Object.fromFoldable [Tuple "a" 2, Tuple "2" 3]
|
2018-10-21 01:20:58 +00:00
|
|
|
|
|
|
|
execute conn (Query """
|
|
|
|
INSERT INTO jsons (json, jsonb)
|
|
|
|
VALUES ($1, $2)
|
|
|
|
""") (Row2 jsonIn jsonIn)
|
|
|
|
|
|
|
|
(js ∷ Array (Row2 (Object Int) (Object Int))) <- query conn (Query """SELECT * FROM JSONS""") Row0
|
|
|
|
liftEffect $ assert $ all (\(Row2 j1 j2) → j1 == expected && expected == j2) js
|
|
|
|
|
2019-11-10 14:27:24 +00:00
|
|
|
test conn "handling Argonaut.Json as json and jsonb for an object" $ do
|
|
|
|
let input = Argonaut.fromObject (Object.fromFoldable [ Tuple "a" (Argonaut.fromString "value") ])
|
|
|
|
|
|
|
|
execute conn (Query """
|
|
|
|
INSERT INTO jsons (json, jsonb)
|
|
|
|
VALUES ($1, $2)
|
|
|
|
""") (Row2 input input)
|
|
|
|
|
|
|
|
(js ∷ Array (Row2 (Json) (Json))) <- query conn (Query """SELECT * FROM JSONS""") Row0
|
|
|
|
liftEffect $ assert $ all (\(Row2 j1 j2) → j1 == input && j2 == input) js
|
|
|
|
|
|
|
|
test conn "handling Argonaut.Json as json and jsonb for an array" $ do
|
|
|
|
let input = Argonaut.fromArray [ Argonaut.fromObject (Object.fromFoldable [ Tuple "a" (Argonaut.fromString "value") ])]
|
|
|
|
|
|
|
|
execute conn (Query """
|
|
|
|
INSERT INTO jsons (json, jsonb)
|
|
|
|
VALUES ($1, $2)
|
|
|
|
""") (Row2 input input)
|
|
|
|
|
|
|
|
(js ∷ Array (Row2 (Json) (Json))) <- query conn (Query """SELECT * FROM JSONS""") Row0
|
|
|
|
liftEffect $ assert $ all (\(Row2 j1 j2) → j1 == input && j2 == input) js
|
|
|
|
|
2018-10-21 01:20:58 +00:00
|
|
|
test conn "handling jsdate value" $ do
|
|
|
|
let
|
|
|
|
jsd1 = jsdate_ 2010.0 2.0 31.0 6.0 23.0 1.0 123.0
|
|
|
|
jsd2 = jsdate_ 2017.0 2.0 1.0 12.0 59.0 42.0 999.0
|
|
|
|
jsd3 = jsdate_ 2020.0 6.0 31.0 23.0 3.0 59.0 333.0
|
|
|
|
|
|
|
|
execute conn (Query """
|
|
|
|
INSERT INTO timestamps (timestamp)
|
|
|
|
VALUES ($1), ($2), ($3)
|
|
|
|
""") (Row3 jsd1 jsd2 jsd3)
|
|
|
|
|
|
|
|
(timestamps :: Array (Row1 JSDate)) <- query conn (Query """
|
|
|
|
SELECT *
|
|
|
|
FROM timestamps
|
|
|
|
ORDER BY timestamp ASC
|
|
|
|
""") Row0
|
2018-11-30 05:43:16 +00:00
|
|
|
pgEqual 3 (length timestamps)
|
2018-10-21 01:20:58 +00:00
|
|
|
liftEffect <<< assert $ all (\(Tuple (Row1 r) e) -> e == r) $ (zip timestamps [jsd1, jsd2, jsd3])
|
2017-05-06 15:09:05 +00:00
|
|
|
|
2018-11-16 11:40:30 +00:00
|
|
|
suite "PostgreSQL connection errors" $ do
|
|
|
|
let doNothing _ = pure unit
|
|
|
|
|
|
|
|
Test.Unit.test "connection refused" do
|
2018-12-06 19:14:08 +00:00
|
|
|
testPool <- liftEffect $ newPool cannotConnectConfig
|
2018-11-30 05:43:16 +00:00
|
|
|
runExceptT (withConnection testPool doNothing) >>= case _ of
|
|
|
|
Left (ConnectionError cause) -> equal cause "ECONNREFUSED"
|
|
|
|
_ -> Test.Unit.failure "foo"
|
2018-11-16 11:40:30 +00:00
|
|
|
|
|
|
|
Test.Unit.test "no such database" do
|
2018-12-06 19:14:08 +00:00
|
|
|
testPool <- liftEffect $ newPool noSuchDatabaseConfig
|
2018-11-30 05:43:16 +00:00
|
|
|
runExceptT (withConnection testPool doNothing) >>= case _ of
|
|
|
|
Left (ProgrammingError { code, message }) -> equal code "3D000"
|
|
|
|
_ -> Test.Unit.failure "PostgreSQL error was expected"
|
2018-11-16 11:40:30 +00:00
|
|
|
|
2020-04-13 20:58:24 +00:00
|
|
|
Test.Unit.test "get pool configuration from postgres uri" do
|
|
|
|
equal (getDefaultPoolConfigurationByUri validUriToPoolConfigs.uri) (Just validUriToPoolConfigs.poolConfig)
|
|
|
|
equal (getDefaultPoolConfigurationByUri notValidConnUri) Nothing
|
|
|
|
|
|
|
|
|
2017-05-06 15:09:05 +00:00
|
|
|
config :: PoolConfiguration
|
|
|
|
config =
|
2018-10-21 01:20:58 +00:00
|
|
|
{ user: Nothing
|
|
|
|
, password: Nothing
|
|
|
|
, host: Nothing
|
|
|
|
, port: Nothing
|
2017-05-06 15:09:05 +00:00
|
|
|
, database: "purspg"
|
2018-10-21 01:20:58 +00:00
|
|
|
, max: Nothing
|
|
|
|
, idleTimeoutMillis: Just 1000
|
2017-05-06 15:09:05 +00:00
|
|
|
}
|
2018-11-16 11:40:30 +00:00
|
|
|
|
|
|
|
noSuchDatabaseConfig :: PoolConfiguration
|
|
|
|
noSuchDatabaseConfig =
|
|
|
|
config { database = "this-database-does-not-exist" }
|
|
|
|
|
|
|
|
cannotConnectConfig :: PoolConfiguration
|
|
|
|
cannotConnectConfig =
|
2020-04-30 08:57:33 +00:00
|
|
|
config { host = Just "127.0.0.1"
|
|
|
|
, port = Just 45287
|
|
|
|
}
|
2020-04-13 20:58:24 +00:00
|
|
|
|
|
|
|
validUriToPoolConfigs :: { uri :: PgConnectionUri, poolConfig :: PoolConfiguration }
|
|
|
|
validUriToPoolConfigs = {
|
|
|
|
uri: "postgres://urllgqrivcyako:c52275a95b7f177e2850c49de9bfa8bedc457ce860ccca664cb15db973554969@ec2-79-124-25-231.eu-west-1.compute.amazonaws.com:5432/e7cecg4nirunpo"
|
|
|
|
, poolConfig: { database: "e7cecg4nirunpo"
|
|
|
|
, host: Just "ec2-79-124-25-231.eu-west-1.compute.amazonaws.com"
|
|
|
|
, idleTimeoutMillis: Nothing
|
|
|
|
, max: Nothing
|
|
|
|
, password: Just "c52275a95b7f177e2850c49de9bfa8bedc457ce860ccca664cb15db973554969"
|
|
|
|
, port: Just 5432
|
2020-04-30 08:57:33 +00:00
|
|
|
, user: Just "urllgqrivcyako"
|
|
|
|
}
|
2020-04-13 20:58:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
notValidConnUri :: PgConnectionUri
|
|
|
|
notValidConnUri = "postgres://urllgqrivcyakoc52275a95b7f177e2850c49de9bfa8bedc457ce860ccca664cb15db973554969@ec2-79-124-25-231.eu-west-1.compute.amazonaws.com:5432/e7cecg4nirunpo"
|