2021-10-11 21:20:57 +02:00
|
|
|
package prog8tests.helpers
|
|
|
|
|
2022-03-10 23:08:41 +01:00
|
|
|
import prog8.code.core.IErrorReporter
|
2022-03-11 20:35:25 +01:00
|
|
|
import prog8.code.core.Position
|
2021-10-11 21:20:57 +02:00
|
|
|
|
2022-03-10 23:08:41 +01:00
|
|
|
internal class ErrorReporterForTests(private val throwExceptionAtReportIfErrors: Boolean=true, private val keepMessagesAfterReporting: Boolean=false):
|
|
|
|
IErrorReporter {
|
2021-10-11 21:20:57 +02:00
|
|
|
|
|
|
|
val errors = mutableListOf<String>()
|
|
|
|
val warnings = mutableListOf<String>()
|
|
|
|
|
|
|
|
override fun err(msg: String, position: Position) {
|
2021-10-24 19:09:44 +02:00
|
|
|
errors.add("${position.toClickableStr()} $msg")
|
2021-10-11 21:20:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
override fun warn(msg: String, position: Position) {
|
2021-10-24 19:09:44 +02:00
|
|
|
warnings.add("${position.toClickableStr()} $msg")
|
2021-10-11 21:20:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
override fun noErrors(): Boolean = errors.isEmpty()
|
|
|
|
|
|
|
|
override fun report() {
|
2021-11-01 00:24:15 +01:00
|
|
|
warnings.forEach { println("UNITTEST COMPILATION REPORT: WARNING: $it") }
|
|
|
|
errors.forEach { println("UNITTEST COMPILATION REPORT: ERROR: $it") }
|
2021-10-22 01:25:26 +02:00
|
|
|
if(throwExceptionAtReportIfErrors)
|
|
|
|
finalizeNumErrors(errors.size, warnings.size)
|
2021-12-15 01:24:25 +01:00
|
|
|
if(!keepMessagesAfterReporting) {
|
|
|
|
clear()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fun clear() {
|
2021-10-11 21:20:57 +02:00
|
|
|
errors.clear()
|
|
|
|
warnings.clear()
|
|
|
|
}
|
|
|
|
}
|