[FEAT] Mark database errors in tests as failure
- If the database returns a error in integration tests, it should be marked as a failure of the test. - Ref: https://codeberg.org/forgejo/forgejo/issues/2962 (this should help with logging the SQL that is resulting in the error).
This commit is contained in:
parent
5a23ce083d
commit
11feddc21d
2 changed files with 10 additions and 1 deletions
|
@ -155,8 +155,14 @@ func InitEngine(ctx context.Context) error {
|
|||
Logger: log.GetLogger("xorm"),
|
||||
})
|
||||
}
|
||||
|
||||
errorLogger := log.GetLogger("xorm")
|
||||
if setting.IsInTesting {
|
||||
errorLogger = log.GetLogger(log.DEFAULT)
|
||||
}
|
||||
|
||||
xormEngine.AddHook(&ErrorQueryHook{
|
||||
Logger: log.GetLogger("xorm"),
|
||||
Logger: errorLogger,
|
||||
})
|
||||
|
||||
SetDefaultEngine(ctx, xormEngine)
|
||||
|
|
|
@ -393,6 +393,9 @@ var ignoredErrorMessage = []string{
|
|||
|
||||
// TestRenameInvalidUsername
|
||||
`TrString() [E] Missing translation "form.Name"`,
|
||||
|
||||
// TestDatabaseCollation
|
||||
`[E] [Error SQL Query] INSERT INTO test_collation_tbl (txt) VALUES ('main') []`,
|
||||
}
|
||||
|
||||
func (w *testLoggerWriterCloser) recordError(msg string) {
|
||||
|
|
Loading…
Reference in a new issue