tmp-postgres-0.2.0.0: test/Database/Postgres/Temp/InternalSpec.hs
{-# LANGUAGE OverloadedStrings, DeriveDataTypeable, QuasiQuotes, ScopedTypeVariables #-}
module Database.Postgres.Temp.InternalSpec where
import Test.Hspec
import System.IO.Temp
import Database.Postgres.Temp.Internal
import Data.Typeable
import Control.Exception
import System.IO
import System.Directory
import Control.Monad
import System.Process
import Database.PostgreSQL.Simple
import qualified Data.ByteString.Char8 as BSC
import System.Exit
import System.Timeout(timeout)
import Data.Either
mkDevNull :: IO Handle
mkDevNull = openFile "/dev/null" WriteMode
data Except = Except
deriving (Show, Eq, Typeable)
instance Exception Except
countPostgresProcesses :: IO Int
countPostgresProcesses = length . lines <$> readProcess "pgrep" ["postgres"] []
spec :: Spec
spec = describe "Database.Postgres.Temp.Internal" $ do
before (createTempDirectory "/tmp" "tmp-postgres") $ after rmDirIgnoreErrors $ describe "startWithLogger/stop" $ do
forM_ [minBound .. maxBound] $ \event ->
it ("deletes the temp dir and postgres on exception in " ++ show event) $ \mainFilePath -> do
-- This is not the best method ... but it works
beforePostgresCount <- countPostgresProcesses
theStdOut <- mkDevNull
theStdErr <- mkDevNull
shouldThrow
(startWithLogger (\currentEvent -> when (currentEvent == event) $ throwIO Except) Unix [] mainFilePath theStdOut theStdErr)
(\Except -> True)
doesDirectoryExist mainFilePath `shouldReturn` False
countPostgresProcesses `shouldReturn` beforePostgresCount
it "creates a useful connection string and stop still cleans up" $ \mainFilePath -> do
beforePostgresCount <- countPostgresProcesses
theStdOut <- mkDevNull
theStdErr <- mkDevNull
result <- startWithLogger (\_ -> return ()) Unix [] mainFilePath theStdOut theStdErr
db <- case result of
Right x -> return x
Left err -> error $ show err
conn <- connectPostgreSQL $ BSC.pack $ connectionString db
_ <- execute_ conn "create table users (id int)"
stop db `shouldReturn` Just ExitSuccess
doesDirectoryExist mainFilePath `shouldReturn` False
countPostgresProcesses `shouldReturn` beforePostgresCount
it "can override settings" $ \mainFilePath -> do
let expectedDuration = "100ms"
theStdOut <- mkDevNull
theStdErr <- mkDevNull
bracket (startWithLogger (const $ pure ()) Unix
[("log_min_duration_statement", expectedDuration)]
mainFilePath theStdOut theStdErr
)
(either (\_ -> return ()) (void . stop)) $ \result -> do
db <- case result of
Right x -> return x
Left err -> error $ show err
conn <- connectPostgreSQL $ BSC.pack $ connectionString db
[Only actualDuration] <- query_ conn "SHOW log_min_duration_statement"
actualDuration `shouldBe` expectedDuration
it "dies promptly when a bad setting is passed" $ \mainFilePath -> do
theStdOut <- mkDevNull
theStdErr <- mkDevNull
r <- timeout 5000000 $ startWithLogger (const $ pure ()) Unix
[ ("log_directory", "/this/does/not/exist")
, ("logging_collector", "true")
] mainFilePath theStdOut theStdErr
case r of
Nothing ->
-- bad test, shouldSatisfy is difficult because it wants Show on DB.
-- anyway, point of this is to fail if we timed out.
1 `shouldBe` (2 :: Int)
Just (Right x) ->
-- this would be very surprising but if it somehow manages to do something useful despite
-- bad config ... ok i guess? regardless, should clean up.
void $ stop x
Just (Left _) -> do
-- if it fails here that's fine & expected.
pure ()
it "terminateConnections" $ \mainFilePath -> do
theStdOut <- mkDevNull
theStdErr <- mkDevNull
bracket (fromRight (error "failed to start db") <$> startWithLogger (\_ -> return ()) Unix [] mainFilePath theStdOut theStdErr) stop $ \db -> do
bracket (connectPostgreSQL $ BSC.pack $ connectionString db) close $ \_ ->
bracket (connectPostgreSQL $ BSC.pack $ connectionString db) close $ \conn2 -> do
query_ conn2 "SELECT COUNT(*) FROM pg_stat_activity" `shouldReturn` [Only (2 :: Int)]
terminateConnections db
bracket (connectPostgreSQL $ BSC.pack $ connectionString db) close $ \conn3 ->
query_ conn3 "SELECT COUNT(*) FROM pg_stat_activity" `shouldReturn` [Only (1 :: Int)]
-- The point of stopPostgres and startPostgres is to test recovery so
-- let's make sure that works
it "stopPostgres/startPostgres works" $ \mainFilePath -> do
let extraOpts =
[ ("wal_level", "replica")
, ("archive_mode", "on")
, ("max_wal_senders", "2")
]
theStdOut <- mkDevNull
theStdErr <- mkDevNull
bracket (fromRight (error "failed to start db") <$> startWithLogger (\_ -> return ()) Unix extraOpts mainFilePath theStdOut theStdErr) stop $ \db -> do
bracket (connectPostgreSQL $ BSC.pack $ connectionString db) close $ \conn -> do
let dataDir = mainFilePath ++ "/data"
walArchiveDir = mainFilePath ++ "/archive"
baseBackupFile = mainFilePath ++ "/backup"
appendFile (dataDir ++ "/pg_hba.conf") $ "local replication all trust"
let archiveLine = "archive_command = " ++
"'test ! -f " ++ walArchiveDir ++ "/%f && cp %p " ++ walArchiveDir ++ "/%f'\n"
appendFile (dataDir ++ "/postgresql.conf") $ archiveLine
createDirectory walArchiveDir
reloadConfig db
res <- system ("pg_basebackup -D " ++ baseBackupFile ++ " --format=tar -p" ++ show (port db) ++ " -h" ++ mainFilePath)
res `shouldBe` ExitSuccess
_ <- execute_ conn "CREATE TABLE foo(id int PRIMARY KEY);"
_ <- execute_ conn "BEGIN ISOLATION LEVEL READ COMMITTED READ WRITE; INSERT INTO foo (id) VALUES (1); COMMIT"
_ :: [Only String] <- query_ conn "SELECT pg_xlogfile_name(pg_switch_xlog())"
_ :: [Only String] <- query_ conn "SELECT pg_xlogfile_name(pg_create_restore_point('pitr'))"
_ <- execute_ conn "BEGIN ISOLATION LEVEL READ COMMITTED READ WRITE; INSERT INTO foo (id) VALUES (2); COMMIT"
query_ conn "SELECT id FROM foo ORDER BY id ASC"
`shouldReturn` [Only (1 :: Int), Only 2]
close conn
stopPostgres db `shouldReturn` Just ExitSuccess
removeDirectoryRecursive dataDir
createDirectory dataDir
let untarCommand = "tar -C" ++ dataDir ++ " -xf " ++ baseBackupFile ++ "/base.tar"
_ <- system untarCommand
_ <- system ("chmod -R 700 " ++ dataDir)
writeFile (dataDir ++ "/recovery.conf") $ "recovery_target_name='pitr'\nrecovery_target_inclusive=true\nrestore_command='"
++ "cp " ++ walArchiveDir ++ "/%f %p'"
startPostgres db
bracket (connectPostgreSQL $ BSC.pack $ connectionString db) close $ \conn1 -> do
query_ conn1 "SELECT id FROM foo ORDER BY id ASC"
`shouldReturn` [Only (1 :: Int)]