mirror of
				https://github.com/irmen/prog8.git
				synced 2025-11-04 10:16:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
package prog8tests.helpers
 | 
						|
 | 
						|
import prog8.code.core.IErrorReporter
 | 
						|
import prog8.code.core.Position
 | 
						|
 | 
						|
internal class ErrorReporterForTests(private val throwExceptionAtReportIfErrors: Boolean=true, private val keepMessagesAfterReporting: Boolean=false): IErrorReporter {
 | 
						|
 | 
						|
    val errors = mutableListOf<String>()
 | 
						|
    val warnings = mutableListOf<String>()
 | 
						|
    val infos = mutableListOf<String>()
 | 
						|
 | 
						|
    override fun err(msg: String, position: Position) {
 | 
						|
        val text = "${position.toClickableStr()} $msg"
 | 
						|
        if(text !in errors)
 | 
						|
            errors.add(text)
 | 
						|
    }
 | 
						|
 | 
						|
    override fun warn(msg: String, position: Position) {
 | 
						|
        val text = "${position.toClickableStr()} $msg"
 | 
						|
        if(text !in warnings)
 | 
						|
            warnings.add(text)
 | 
						|
    }
 | 
						|
 | 
						|
    override fun info(msg: String, position: Position) {
 | 
						|
        val text = "${position.toClickableStr()} $msg"
 | 
						|
        if(text !in infos)
 | 
						|
            infos.add(text)
 | 
						|
    }
 | 
						|
 | 
						|
    override fun undefined(symbol: List<String>, position: Position) {
 | 
						|
        err("undefined symbol: ${symbol.joinToString(".")}", position)
 | 
						|
    }
 | 
						|
 | 
						|
    override fun noErrors(): Boolean  = errors.isEmpty()
 | 
						|
    override fun noErrorForLine(position: Position) = !errors.any { ":${position.line}:" in it }
 | 
						|
    override fun printSingleError(errormessage: String) { /* prints nothing in tests */ }
 | 
						|
 | 
						|
    override fun report() {
 | 
						|
        infos.forEach { println("UNITTEST COMPILATION REPORT: INFO: $it") }
 | 
						|
        warnings.forEach { println("UNITTEST COMPILATION REPORT: WARNING: $it") }
 | 
						|
        errors.forEach { println("UNITTEST COMPILATION REPORT: ERROR: $it") }
 | 
						|
        if(throwExceptionAtReportIfErrors)
 | 
						|
            finalizeNumErrors(errors.size, warnings.size, infos.size)
 | 
						|
        if(!keepMessagesAfterReporting) {
 | 
						|
            clear()
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    fun clear() {
 | 
						|
        errors.clear()
 | 
						|
        warnings.clear()
 | 
						|
        infos.clear()
 | 
						|
    }
 | 
						|
}
 |