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
|
|
|
|
2023-12-28 13:48:01 +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>()
|
2023-12-28 13:48:01 +01:00
|
|
|
val infos = mutableListOf<String>()
|
2021-10-11 21:20:57 +02:00
|
|
|
|
|
|
|
override fun err(msg: String, position: Position) {
|
2023-03-11 14:55:13 +01:00
|
|
|
val text = "${position.toClickableStr()} $msg"
|
|
|
|
if(text !in errors)
|
|
|
|
errors.add(text)
|
2021-10-11 21:20:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
override fun warn(msg: String, position: Position) {
|
2023-03-11 14:55:13 +01:00
|
|
|
val text = "${position.toClickableStr()} $msg"
|
|
|
|
if(text !in warnings)
|
|
|
|
warnings.add(text)
|
2021-10-11 21:20:57 +02:00
|
|
|
}
|
|
|
|
|
2023-12-28 13:48:01 +01:00
|
|
|
override fun info(msg: String, position: Position) {
|
|
|
|
val text = "${position.toClickableStr()} $msg"
|
|
|
|
if(text !in infos)
|
|
|
|
infos.add(text)
|
|
|
|
}
|
|
|
|
|
2023-06-25 15:19:51 +02:00
|
|
|
override fun undefined(symbol: List<String>, position: Position) {
|
|
|
|
err("undefined symbol: ${symbol.joinToString(".")}", position)
|
|
|
|
}
|
|
|
|
|
2021-10-11 21:20:57 +02:00
|
|
|
override fun noErrors(): Boolean = errors.isEmpty()
|
|
|
|
|
|
|
|
override fun report() {
|
2023-12-28 13:48:01 +01:00
|
|
|
infos.forEach { println("UNITTEST COMPILATION REPORT: INFO: $it") }
|
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)
|
2023-12-28 13:48:01 +01:00
|
|
|
finalizeNumErrors(errors.size, warnings.size, infos.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()
|
2023-12-28 13:48:01 +01:00
|
|
|
infos.clear()
|
2021-10-11 21:20:57 +02:00
|
|
|
}
|
|
|
|
}
|