Skip to content

Commit ae967ec

Browse files
demiurg906teamcityserver
authored and
teamcityserver
committed
[FIR] Fix detecting version of plugin annotations if it differs from 1.6.255-SNAPSHOT
1 parent edb62e2 commit ae967ec

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

plugins/fir/fir-plugin-prototype/tests/org/jetbrains/kotlin/fir/plugin/services/PluginAnnotationsProvider.kt

+8-4
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,20 @@ import org.jetbrains.kotlin.test.services.EnvironmentConfigurator
1212
import org.jetbrains.kotlin.test.services.TestServices
1313
import org.jetbrains.kotlin.test.services.assertions
1414
import java.io.File
15+
import java.io.FilenameFilter
1516

1617
class PluginAnnotationsProvider(testServices: TestServices) : EnvironmentConfigurator(testServices) {
1718
companion object {
18-
const val ANNOTATIONS_JAR =
19-
"plugins/fir/fir-plugin-prototype/plugin-annotations/build/libs/plugin-annotations-1.6.255-SNAPSHOT.jar"
19+
private const val ANNOTATIONS_JAR_DIR = "plugins/fir/fir-plugin-prototype/plugin-annotations/build/libs/"
20+
private val ANNOTATIONS_JAR_FILTER = FilenameFilter { _, name -> name.startsWith("plugin-annotations") && name.endsWith(".jar") }
2021
}
2122

2223
override fun configureCompilerConfiguration(configuration: CompilerConfiguration, module: TestModule) {
23-
val jar = File(ANNOTATIONS_JAR)
24-
testServices.assertions.assertTrue(jar.exists()) { "Jar with annotations does not exist. Please run :plugins:fir:fir-plugin-prototype:plugin-annotations:jar" }
24+
val libDir = File(ANNOTATIONS_JAR_DIR)
25+
testServices.assertions.assertTrue(libDir.exists() && libDir.isDirectory, failMessage)
26+
val jar = libDir.listFiles(ANNOTATIONS_JAR_FILTER)?.firstOrNull() ?: testServices.assertions.fail(failMessage)
2527
configuration.addJvmClasspathRoot(jar)
2628
}
29+
30+
private val failMessage = { "Jar with annotations does not exist. Please run :plugins:fir:fir-plugin-prototype:plugin-annotations:jar" }
2731
}

0 commit comments

Comments
 (0)