UAST: utilize values test base
This commit is contained in:
committed by
Ilya Kirillov
parent
d17dd4a1e6
commit
cf2f36fa49
@@ -0,0 +1,45 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.jetbrains.uast.test.common.kotlin
|
||||||
|
|
||||||
|
import org.jetbrains.uast.UElement
|
||||||
|
import org.jetbrains.uast.UExpression
|
||||||
|
import org.jetbrains.uast.evaluation.UEvaluationContext
|
||||||
|
import org.jetbrains.uast.visitor.UastVisitor
|
||||||
|
|
||||||
|
class ValueLogger(val evaluationContext: UEvaluationContext) : UastVisitor {
|
||||||
|
|
||||||
|
val builder = StringBuilder()
|
||||||
|
|
||||||
|
var level = 0
|
||||||
|
|
||||||
|
override fun visitElement(node: UElement): Boolean {
|
||||||
|
val initialLine = node.asLogString() + " [" + run {
|
||||||
|
val renderString = node.asRenderString().lines()
|
||||||
|
if (renderString.size == 1) {
|
||||||
|
renderString.single()
|
||||||
|
} else {
|
||||||
|
renderString.first() + "..." + renderString.last()
|
||||||
|
}
|
||||||
|
} + "]"
|
||||||
|
|
||||||
|
(1..level).forEach { builder.append(" ") }
|
||||||
|
builder.append(initialLine)
|
||||||
|
if (node is UExpression) {
|
||||||
|
val value = evaluationContext.valueOf(node)
|
||||||
|
builder.append(" = ").append(value)
|
||||||
|
}
|
||||||
|
builder.appendLine()
|
||||||
|
level++
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun afterVisitElement(node: UElement) {
|
||||||
|
level--
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun toString() = builder.toString()
|
||||||
|
}
|
||||||
+19
@@ -0,0 +1,19 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.jetbrains.uast.test.common.kotlin
|
||||||
|
|
||||||
|
import org.jetbrains.uast.UFile
|
||||||
|
import org.jetbrains.uast.evaluation.UEvaluatorExtension
|
||||||
|
import org.jetbrains.uast.evaluation.analyzeAll
|
||||||
|
|
||||||
|
fun UFile.asLogValues(
|
||||||
|
uEvaluatorExtension: UEvaluatorExtension? = null
|
||||||
|
): String {
|
||||||
|
val evaluationContext = analyzeAll(extensions = uEvaluatorExtension?.let { listOf(it) } ?: emptyList())
|
||||||
|
return ValueLogger(evaluationContext).apply {
|
||||||
|
this@asLogValues.accept(this)
|
||||||
|
}.toString()
|
||||||
|
}
|
||||||
@@ -5,64 +5,18 @@
|
|||||||
|
|
||||||
package org.jetbrains.uast.test.common.kotlin
|
package org.jetbrains.uast.test.common.kotlin
|
||||||
|
|
||||||
import org.jetbrains.uast.UElement
|
|
||||||
import org.jetbrains.uast.UExpression
|
|
||||||
import org.jetbrains.uast.UFile
|
import org.jetbrains.uast.UFile
|
||||||
import org.jetbrains.uast.evaluation.UEvaluationContext
|
|
||||||
import org.jetbrains.uast.evaluation.UEvaluatorExtension
|
import org.jetbrains.uast.evaluation.UEvaluatorExtension
|
||||||
import org.jetbrains.uast.evaluation.analyzeAll
|
|
||||||
import org.jetbrains.uast.test.env.kotlin.assertEqualsToFile
|
import org.jetbrains.uast.test.env.kotlin.assertEqualsToFile
|
||||||
import org.jetbrains.uast.visitor.UastVisitor
|
|
||||||
import java.io.File
|
import java.io.File
|
||||||
|
|
||||||
interface ValuesTestBase {
|
interface ValuesTestBase {
|
||||||
fun getValuesFile(testName: String): File
|
fun getValuesFile(testName: String): File
|
||||||
fun getEvaluatorExtension(): UEvaluatorExtension? = null
|
fun getEvaluatorExtension(): UEvaluatorExtension? = null
|
||||||
|
|
||||||
private fun UFile.asLogValues(): String {
|
|
||||||
val evaluationContext = analyzeAll(extensions = getEvaluatorExtension()?.let { listOf(it) } ?: emptyList())
|
|
||||||
return ValueLogger(evaluationContext).apply {
|
|
||||||
this@asLogValues.accept(this)
|
|
||||||
}.toString()
|
|
||||||
}
|
|
||||||
|
|
||||||
fun check(testName: String, file: UFile) {
|
fun check(testName: String, file: UFile) {
|
||||||
val valuesFile = getValuesFile(testName)
|
val valuesFile = getValuesFile(testName)
|
||||||
|
|
||||||
assertEqualsToFile("Log values", valuesFile, file.asLogValues())
|
assertEqualsToFile("Log values", valuesFile, file.asLogValues(getEvaluatorExtension()))
|
||||||
}
|
|
||||||
|
|
||||||
class ValueLogger(val evaluationContext: UEvaluationContext) : UastVisitor {
|
|
||||||
|
|
||||||
val builder = StringBuilder()
|
|
||||||
|
|
||||||
var level = 0
|
|
||||||
|
|
||||||
override fun visitElement(node: UElement): Boolean {
|
|
||||||
val initialLine = node.asLogString() + " [" + run {
|
|
||||||
val renderString = node.asRenderString().lines()
|
|
||||||
if (renderString.size == 1) {
|
|
||||||
renderString.single()
|
|
||||||
} else {
|
|
||||||
renderString.first() + "..." + renderString.last()
|
|
||||||
}
|
|
||||||
} + "]"
|
|
||||||
|
|
||||||
(1..level).forEach { builder.append(" ") }
|
|
||||||
builder.append(initialLine)
|
|
||||||
if (node is UExpression) {
|
|
||||||
val value = evaluationContext.valueOf(node)
|
|
||||||
builder.append(" = ").append(value)
|
|
||||||
}
|
|
||||||
builder.appendLine()
|
|
||||||
level++
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun afterVisitElement(node: UElement) {
|
|
||||||
level--
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun toString() = builder.toString()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user