Extract TestMessageCollector

This commit is contained in:
Alexey Tsvetkov
2017-07-28 15:47:49 +03:00
parent f5e77c740d
commit 23afaeec2f
2 changed files with 41 additions and 19 deletions
@@ -24,7 +24,7 @@ import org.jetbrains.kotlin.cli.common.messages.CompilerMessageLocation
import org.jetbrains.kotlin.cli.common.messages.CompilerMessageSeverity
import org.jetbrains.kotlin.cli.common.messages.MessageCollector
import org.jetbrains.kotlin.incremental.testingUtils.*
import org.junit.Assert.assertEquals
import org.jetbrains.kotlin.incremental.utils.TestMessageCollector
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.runners.Parameterized
@@ -134,7 +134,7 @@ class KotlinStandaloneIncrementalCompilationTest : TestWithWorkingDir() {
}
}
val messageCollector = ErrorMessageCollector()
val messageCollector = TestMessageCollector()
makeIncrementally(cacheDir, sourceRoots, args, reporter = reporter, messageCollector = messageCollector)
return CompilationResult(resultExitCode, compiledSources, messageCollector.errors)
}
@@ -166,23 +166,6 @@ class KotlinStandaloneIncrementalCompilationTest : TestWithWorkingDir() {
append('\n')
}
private class ErrorMessageCollector : MessageCollector {
val errors = ArrayList<String>()
override fun report(severity: CompilerMessageSeverity, message: String, location: CompilerMessageLocation?) {
if (severity.isError) {
errors.add(message)
}
}
override fun clear() {
errors.clear()
}
override fun hasErrors(): Boolean =
errors.isNotEmpty()
}
companion object {
private val jpsResourcesPath = File("jps-plugin/testData/incremental")
private val ignoredDirs = setOf(File(jpsResourcesPath, "cacheVersionChanged"),
@@ -0,0 +1,39 @@
/*
* Copyright 2010-2017 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.kotlin.incremental.utils
import org.jetbrains.kotlin.cli.common.messages.CompilerMessageLocation
import org.jetbrains.kotlin.cli.common.messages.CompilerMessageSeverity
import org.jetbrains.kotlin.cli.common.messages.MessageCollector
import java.util.ArrayList
class TestMessageCollector : MessageCollector {
val errors = ArrayList<String>()
override fun report(severity: CompilerMessageSeverity, message: String, location: CompilerMessageLocation?) {
if (severity.isError) {
errors.add(message)
}
}
override fun clear() {
errors.clear()
}
override fun hasErrors(): Boolean =
errors.isNotEmpty()
}