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