Skip to content

Commit e18df14

Browse files
committed
Show expected and actual hash if the file diverged.
This will show a message like this on hash mismatch with verbose output: … Checksum mismatch: 008-combine-first-and-last-name.sql expected: "vy1/uIrBQj/qGA7yV453ag==" hash was: "XO+65pimdyFSY1wcS4FBVQ==" Where the expected hash can be used to override the hash in the database. This is useful for development.
1 parent f378538 commit e18df14

File tree

1 file changed

+21
-9
lines changed

1 file changed

+21
-9
lines changed

src/Database/PostgreSQL/Simple/Migration.hs

+21-9
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
{-# LANGUAGE DeriveTraversable #-}
1818
{-# LANGUAGE LambdaCase #-}
1919
{-# LANGUAGE OverloadedStrings #-}
20+
{-# LANGUAGE NamedFieldPuns #-}
2021

2122
module Database.PostgreSQL.Simple.Migration
2223
(
@@ -142,8 +143,10 @@ executeMigration con verbose name contents = do
142143
void $ execute con q (name, checksum)
143144
when verbose $ putStrLn $ "Execute:\t" ++ name
144145
return MigrationSuccess
145-
ScriptModified _ -> do
146-
when verbose $ putStrLn $ "Fail:\t" ++ name
146+
ScriptModified { actual, expected } -> do
147+
when verbose $ putStrLn
148+
$ "Fail:\t" ++ name
149+
++ "\n" ++ scriptModifiedErrorMessage expected actual
147150
return (MigrationError name)
148151
where
149152
q = "insert into schema_migrations(filename, checksum) values(?, ?)"
@@ -197,8 +200,10 @@ executeValidation con verbose cmd = case cmd of
197200
ScriptNotExecuted -> do
198201
when verbose $ putStrLn $ "Missing:\t" ++ name
199202
return (MigrationError $ "Missing: " ++ name)
200-
ScriptModified _ -> do
201-
when verbose $ putStrLn $ "Checksum mismatch:\t" ++ name
203+
ScriptModified { expected, actual } -> do
204+
when verbose $ putStrLn
205+
$ "Checksum mismatch:\t" ++ name
206+
++ "\n" ++ scriptModifiedErrorMessage expected actual
202207
return (MigrationError $ "Checksum mismatch: " ++ name)
203208

204209
goScripts path xs = sequenceMigrations (goScript path <$> xs)
@@ -210,14 +215,17 @@ executeValidation con verbose cmd = case cmd of
210215
-- If there is no matching script entry in the database, the script
211216
-- will be executed and its meta-information will be recorded.
212217
checkScript :: Connection -> ScriptName -> Checksum -> IO CheckScriptResult
213-
checkScript con name checksum =
218+
checkScript con name fileChecksum =
214219
query con q (Only name) >>= \case
215220
[] ->
216221
return ScriptNotExecuted
217-
Only actualChecksum:_ | checksum == actualChecksum ->
222+
Only dbChecksum:_ | fileChecksum == dbChecksum ->
218223
return ScriptOk
219-
Only actualChecksum:_ ->
220-
return (ScriptModified actualChecksum)
224+
Only dbChecksum:_ ->
225+
return (ScriptModified {
226+
expected = dbChecksum,
227+
actual = fileChecksum
228+
})
221229
where
222230
q = mconcat
223231
[ "select checksum from schema_migrations "
@@ -272,13 +280,17 @@ data CheckScriptResult
272280
= ScriptOk
273281
-- ^ The script has already been executed and the checksums match.
274282
-- This is good.
275-
| ScriptModified Checksum
283+
| ScriptModified { expected :: Checksum, actual :: Checksum }
276284
-- ^ The script has already been executed and there is a checksum
277285
-- mismatch. This is bad.
278286
| ScriptNotExecuted
279287
-- ^ The script has not been executed, yet. This is good.
280288
deriving (Show, Eq, Read, Ord)
281289

290+
scriptModifiedErrorMessage :: Checksum -> Checksum -> [Char]
291+
scriptModifiedErrorMessage expected actual =
292+
"expected: " ++ show expected ++ "\nhash was: " ++ show actual
293+
282294
-- | A sum-type denoting the result of a migration.
283295
data MigrationResult a
284296
= MigrationError a

0 commit comments

Comments
 (0)