mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
545 lines
16 KiB
Kotlin
545 lines
16 KiB
Kotlin
package com.intellij.logging.resolve
|
|
|
|
import com.intellij.jvm.analysis.internal.testFramework.logging.LoggingArgumentSymbolReferenceProviderTestBase
|
|
import com.intellij.openapi.util.TextRange
|
|
|
|
class KotlinLoggingArgumentSymbolReferenceProviderTest : LoggingArgumentSymbolReferenceProviderTestBase() {
|
|
fun `test log4j2 info`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG: Logger = LogManager.getLogger()
|
|
fun m(i: Int) {
|
|
LOG.info("<caret>{}", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "i"))
|
|
}
|
|
|
|
fun `test log4j2 debug`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG: Logger = LogManager.getLogger()
|
|
fun m(i: Int) {
|
|
LOG.debug("<caret>{}", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "i"))
|
|
}
|
|
|
|
fun `test log4j2 trace`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG: Logger = LogManager.getLogger()
|
|
fun m(i: Int) {
|
|
LOG.trace("<caret>{}", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "i"))
|
|
}
|
|
|
|
fun `test log4j2 fatal`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG: Logger = LogManager.getLogger()
|
|
fun m(i: Int) {
|
|
LOG.fatal("<caret>{}", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "i"))
|
|
}
|
|
|
|
fun `test log4j2 error`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG: Logger = LogManager.getLogger()
|
|
fun m(i: Int) {
|
|
LOG.fatal("<caret>{}", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "i"))
|
|
}
|
|
|
|
fun `test log4j2 log`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG: Logger = LogManager.getLogger()
|
|
fun m(i: Int) {
|
|
LOG.log(Level.ALL, "<caret>{}", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "i"))
|
|
}
|
|
|
|
fun `test log4j2 formatted logger`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG: Logger = LogManager.getFormatterLogger()
|
|
fun m(i: Int) {
|
|
LOG.info("<caret>%d", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "i"))
|
|
}
|
|
|
|
fun `test log4j2 formatted logger with numbered placeholders simple`() {
|
|
val dollar = "$"
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG = LogManager.getFormatterLogger()
|
|
fun m(fst: Int, snd: Int) {
|
|
LOG.info("<caret>%2${dollar}s %1${dollar}s", fst, snd)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(emptyMap())
|
|
}
|
|
|
|
fun `test log4j2 formatted logger with numbered placeholders same index`() {
|
|
val dollar = "$"
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG = LogManager.getFormatterLogger()
|
|
fun m(fst: Int, snd: Int) {
|
|
LOG.info("<caret>%1${dollar}s %1${dollar}s", fst)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(emptyMap())
|
|
}
|
|
|
|
fun `test log4j2 formatted logger with numbered placeholders mix`() {
|
|
val dollar = "$"
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG = LogManager.getFormatterLogger()
|
|
fun m(fst: Int, snd: Int) {
|
|
LOG.info("<caret>%2${dollar}s %1${dollar}s %s %s", fst, snd)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(emptyMap())
|
|
}
|
|
|
|
fun `test log4j2 formatted logger with previous placeholder simple`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG = LogManager.getFormatterLogger()
|
|
fun m(fst: Int, snd: Int) {
|
|
LOG.info("<caret>%s %<s %<s", fst)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "fst", TextRange(4, 7) to "fst", TextRange(8, 11) to "fst"))
|
|
}
|
|
|
|
fun `test log4j2 formatted logger with previous placeholder mix`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG: Logger = LogManager.getFormatterLogger()
|
|
|
|
fun m(fst: Int, snd: Int) {
|
|
LOG.info("<caret>%s %<s %<s %s %<s %<s", fst, snd)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "fst", TextRange(4, 7) to "fst", TextRange(8, 11) to "fst",
|
|
TextRange(12, 14) to "snd", TextRange(15, 18) to "snd", TextRange(19, 22) to "snd"))
|
|
}
|
|
|
|
fun `test log4j2 formatted logger with numbered and previous placeholder`() {
|
|
val dollar = "$"
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG = LogManager.getFormatterLogger()
|
|
fun m(fst: Int) {
|
|
LOG.info("<caret>%1${dollar}s %<s", fst)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(emptyMap())
|
|
}
|
|
|
|
|
|
fun `test log4j2 default logger builder`() {
|
|
myFixture.configureByText("Logging.kt",
|
|
"""
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG: Logger = LogManager.getLogger()
|
|
fun m(i: Int) {
|
|
LOG.atInfo().log("<caret>{}", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "i"))
|
|
}
|
|
|
|
fun `test log4j2 formatted logger builder`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG: Logger = LogManager.getFormatterLogger()
|
|
fun m(i: Int) {
|
|
LOG.atInfo().log("<caret>%d", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "i"))
|
|
}
|
|
|
|
fun `test log4j2 respects exception with multiple arguments`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG: Logger = LogManager.getLogger()
|
|
fun m(i: Int) {
|
|
LOG.info("<caret>{} {}", i, Exception())
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
|
|
doTest(mapOf(TextRange(1, 3) to "i", TextRange(4, 6) to "Exception()"))
|
|
}
|
|
|
|
fun `test log4j2 respects exception as single argument`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG: Logger = LogManager.getLogger()
|
|
fun m(i: Int) {
|
|
LOG.info("<caret>{}", Exception())
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
|
|
doTest(emptyMap())
|
|
}
|
|
|
|
fun `test log4j2 respects exception in builder logger with multiple arguments`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG: Logger = LogManager.getLogger()
|
|
fun m(i: Int) {
|
|
LOG.atInfo().log("<caret>{} {}", i, Exception())
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "i", TextRange(4, 6) to "Exception()"))
|
|
}
|
|
|
|
fun `test log4j2 respects exception in builder logger as single argument`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG: Logger = LogManager.getLogger()
|
|
fun m(i: Int) {
|
|
LOG.atInfo().log("<caret>{}", Exception())
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "Exception()"))
|
|
}
|
|
|
|
fun `test slf4j info`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.slf4j.*
|
|
class Logging {
|
|
val LOG: Logger = LoggerFactory.getLogger(Logging.class)
|
|
fun m(i: Int) {
|
|
LOG.info("<caret>{}", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "i"))
|
|
}
|
|
|
|
fun `test slf4j debug`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.slf4j.*
|
|
class Logging {
|
|
val LOG: Logger = LoggerFactory.getLogger(Logging.class)
|
|
fun m(i: Int) {
|
|
LOG.debug("<caret>{}", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "i"))
|
|
}
|
|
|
|
fun `test slf4j error`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.slf4j.*
|
|
class Logging {
|
|
val LOG: Logger = LoggerFactory.getLogger(Logging.class)
|
|
fun m(i: Int) {
|
|
LOG.error("<caret>{}", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "i"))
|
|
}
|
|
|
|
fun `test slf4j warn`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.slf4j.*
|
|
class Logging {
|
|
val LOG: Logger = LoggerFactory.getLogger(Logging.class)
|
|
fun m(i: Int) {
|
|
LOG.warn("<caret>{}", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "i"))
|
|
}
|
|
|
|
|
|
fun `test slf4j trace`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.slf4j.*
|
|
class Logging {
|
|
val LOG: Logger = LoggerFactory.getLogger(Logging.class)
|
|
fun m(i: Int) {
|
|
LOG.trace("<caret>{}", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "i"))
|
|
}
|
|
|
|
|
|
fun `test slf4j builder simple`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.slf4j.*
|
|
class Logging {
|
|
val LOG: Logger = LoggerFactory.getLogger(Logging.class)
|
|
fun m(i: Int) {
|
|
LOG.atInfo().log("<caret>{}", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "i"))
|
|
}
|
|
|
|
fun `test slf4j builder with setMessage`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.slf4j.*
|
|
class Logging {
|
|
val LOG: Logger = LoggerFactory.getLogger(Logging.class)
|
|
fun m(i: Int) {
|
|
LOG.atInfo().addArgument("foo").setMessage("<caret>{} {}").addArgument("bar").log()
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "\"foo\"", TextRange(4, 6) to "\"bar\""))
|
|
}
|
|
|
|
fun `test slf4j builder considers only last message`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.slf4j.*
|
|
class Logging {
|
|
val LOG: Logger = LoggerFactory.getLogger(Logging.class)
|
|
fun m(i: Int) {
|
|
LOG.atInfo().addArgument("foo").setMessage("<caret>{} {} {}").setMessage("{} {}").addArgument("bar").log()
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(emptyMap())
|
|
}
|
|
|
|
fun `test slf4j builder combined args`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.slf4j.*
|
|
class Logging {
|
|
val LOG: Logger = LoggerFactory.getLogger(Logging.class)
|
|
fun m(i: Int) {
|
|
LOG.atInfo().addArgument("foo").addArgument("bar").log("<caret>{} {} {}", "baz")
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "\"foo\"", TextRange(4, 6) to "\"bar\"", TextRange(7, 9) to "\"baz\""))
|
|
}
|
|
|
|
fun `test slf4j builder respects last argument as exception in log`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.slf4j.*
|
|
class Logging {
|
|
val LOG: Logger = LoggerFactory.getLogger(Logging.class)
|
|
fun m(i: Int) {
|
|
LOG.atInfo().addArgument("foo").addArgument("bar").log("<caret>{} {} {}", Throwable())
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "\"foo\"", TextRange(4, 6) to "\"bar\""))
|
|
}
|
|
|
|
fun `test slf4j builder respects last argument as exception in setCause`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.slf4j.*
|
|
class Logging {
|
|
val LOG: Logger = LoggerFactory.getLogger(Logging.class)
|
|
fun m(i: Int) {
|
|
LOG.atInfo().addArgument("foo").addArgument("bar").setCause(Throwable()).log("<caret>{} {} {}")
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(1, 3) to "\"foo\"", TextRange(4, 6) to "\"bar\""))
|
|
}
|
|
|
|
fun `test should resolve in multiline string`() {
|
|
val multilineString = "\"\"\"\n" +
|
|
"<caret>{}\n" +
|
|
"\"\"\""
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.slf4j.*
|
|
class Logging {
|
|
val LOG: Logger = LoggerFactory.getLogger(Logging::class.java)
|
|
fun m(i: Int) {
|
|
LOG.info($multilineString, i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(4, 6) to "i"))
|
|
}
|
|
|
|
fun `test should resolve in strange multiline string`() {
|
|
val strangeMultilineString = "\"\"\"\n " +
|
|
" <caret>{} \n " +
|
|
" {} " +
|
|
" \"\"\""
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.slf4j.*
|
|
class Logging {
|
|
val LOG = LoggerFactory.getLogger(Logging::class.java)
|
|
fun m(i: Int) {
|
|
LOG.info($strangeMultilineString, i, i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(14, 16) to "i", TextRange(24, 26) to "i"))
|
|
}
|
|
|
|
fun `test should not resolve in multiline string with brace on next line`() {
|
|
val multilineString = "\"\"\"\n" +
|
|
"<caret>{\n}" +
|
|
"\"\"\""
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.slf4j.*
|
|
class Logging {
|
|
val Logger LOG = LoggerFactory.getLogger(Logging::class.java)
|
|
fun m(i: Int) {
|
|
LOG.info($multilineString, i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(emptyMap())
|
|
}
|
|
|
|
|
|
fun `test should not resolve with interpolation`() {
|
|
val dollar = "$"
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.slf4j.*
|
|
class Logging {
|
|
val LOG = LoggerFactory.getLogger(Logging::class.java)
|
|
fun m(i: Int) {
|
|
LOG.info("${dollar}i {} <caret> {}", i, i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(emptyMap())
|
|
}
|
|
|
|
fun `test should not resolve with string concatenation`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.slf4j.*
|
|
class Logging {
|
|
val LOG: Logger = LoggerFactory.getLogger(Logging.class)
|
|
fun m(i: Int) {
|
|
LOG.info("{} <caret>" + "}", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(emptyMap())
|
|
}
|
|
|
|
fun `test should resolve with escape character in simple string log4j2`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG: Logger = LoggerFactory.getLogger(Logging.class)
|
|
fun m(i: Int) {
|
|
LOG.info("\\{<caret>}", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(3, 5) to "i"))
|
|
}
|
|
|
|
|
|
fun `test should resolve with escape character in multiline string log4j2`() {
|
|
val multilineString = "\"\"\"\n" +
|
|
"\\\\{<caret>}" +
|
|
"\"\"\""
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.apache.logging.log4j.*
|
|
class Logging {
|
|
val LOG: Logger = LoggerFactory.getLogger(Logging.class)
|
|
fun m(i: Int) {
|
|
LOG.info("$multilineString", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(7, 9) to "i"))
|
|
}
|
|
|
|
fun `test should not resolve with escape character in simple string slf4j`() {
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.slf4j.*
|
|
class Logging {
|
|
val LOG: Logger = LogManager.getFormatterLogger()
|
|
fun m(i: Int) {
|
|
LOG.info("\\{<caret>}", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(emptyMap())
|
|
}
|
|
|
|
|
|
fun `test should resolve with escape character in multiline string slf4j`() {
|
|
val multilineString = "\"\"\"\n" +
|
|
"\\\\{<caret>}" +
|
|
"\"\"\""
|
|
myFixture.configureByText("Logging.kt", """
|
|
import org.slf4j.*
|
|
class Logging {
|
|
val LOG: Logger = LoggerFactory.getLogger(Logging.class)
|
|
fun m(i: Int) {
|
|
LOG.info("$multilineString", i)
|
|
}
|
|
}
|
|
""".trimIndent())
|
|
doTest(mapOf(TextRange(7, 9) to "i"))
|
|
}
|
|
} |