Files
Tagir Valeev c449c341b7 [java-highlighting] test-data adjusted (mostly anchors) after recent updates
Part of IDEA-365344 Create a new Java error highlighter with minimal dependencies (PSI only)

GitOrigin-RevId: 1e1b77009dc78de49c7cc5c44d4704937397bb23
2025-01-29 11:35:30 +00:00

155 lines
5.9 KiB
Java

import java.io.*;
class X {
void processorMissing() {
System.out.println(<error descr="Processor missing from string template expression">"""
\{1}
"""</error>);
<error descr="Processor missing from string template expression">"\{}"</error>;
System.out.println(<error descr="Cannot resolve symbol 'NOPE'">NOPE</error>."\{false}");
System.out.println(<error descr="Cannot resolve symbol 'RAW'">RAW</error>."\{false}");
}
void correct(int i) {
System.out.println(STR."the value is \{i}");
String s = STR."";
StringTemplate st = StringTemplate.RAW."""
""";
}
void wrongType(String foo) {
String s = <error descr="Incompatible types. Found: 'java.lang.StringTemplate', required: 'java.lang.String'">StringTemplate.RAW."""
this: \{foo}
""";</error>
var x = (java.io.Serializable & StringTemplate.Processor<String, RuntimeException>)null;
java.util.ArrayList v = <error descr="Incompatible types. Found: 'java.lang.String', required: 'java.util.ArrayList'">x."asdf";</error>
String t = x."reticulation";
}
String unresolvedValues() {
return STR."\{<error descr="Cannot resolve symbol 'logic'">logic</error>} \{<error descr="Cannot resolve symbol 'proportion'">proportion</error>}";
}
interface MyProcessor extends StringTemplate.Processor {}
String raw(StringTemplate.Processor processor, MyProcessor myProcessor) {
System.out.println(<error descr="Raw processor type is not allowed: MyProcessor">myProcessor</error>."");
return <error descr="Raw processor type is not allowed: Processor">processor</error>."\{}\{}\{}\{}\{}\{}";
var z = (java.io.Serializable & StringTemplate.Processor)myProcessor;
System.out.println(<error descr="Raw processor type is not allowed: Serializable & Processor">z</error>."");
}
void nested() {
System.out.println(STR."\{STR."\{STR."\{STR."\{STR."\{STR."\{STR.""}"}"}"}"}"}");
}
String badEscape() {
System.out.println(STR."b<error descr="Illegal escape character in string literal">\a</error>d \{} esc<error descr="Illegal escape character in string literal">\a</error>pe 1");
System.out.println(STR. """
b<error descr="Illegal escape character in string literal">\a</error>d \{} esc<error descr="Illegal escape character in string literal">\a</error>pe 2
""");
System.out.println(STR."\{<error descr="Line end not allowed in string literals">}unclosed);</error>
return STR."\{} <error descr="Illegal Unicode escape sequence">\u</error>X";
}
static class Covariant implements StringTemplate.Processor<Object, RuntimeException> {
@Override
public Integer process(StringTemplate stringTemplate) {
return 123;
}
}
public static void testCovariant() {
Covariant proc = new Covariant();
// As of Java 21, covariant processors are not supported
Integer i = <error descr="Incompatible types. Found: 'java.lang.Object', required: 'java.lang.Integer'">proc."hello";</error>
}
static class CovariantException implements StringTemplate.Processor<Integer, Exception> {
@Override
public Integer process(StringTemplate stringTemplate) throws Ex {
return 123;
}
}
class Ex extends Exception {}
class Ex2 extends Exception {}
public static void testHandle(StringTemplate.Processor<Integer, Ex> proc) {
try {
Object x = proc."hello";
}
catch (Ex ex) {}
}
public static void testExceptionInFragments(StringTemplate.Processor<Integer, Ex> proc,
StringTemplate.Processor<Integer, Ex2> proc2) {
try {
proc."hell\{<error descr="Unhandled exception: X.Ex2">proc2."xyz"</error>}o";
}
catch (Ex ex) {}
}
public static void testCovariantException() {
CovariantException proc = new CovariantException();
// As of Java 21, covariant processors are not supported
Integer i = <error descr="Unhandled exception: java.lang.Exception">proc."hello";</error>
try {
Integer i2 = <error descr="Unhandled exception: java.lang.Exception">proc."hello";</error>
}
catch (Ex ex) {}
}
public static void testCapturedWilcard(StringTemplate.Processor<?, ?> str) {
Object s = <error descr="Unhandled exception: java.lang.Throwable">str."";</error>
}
void testCapturedWildcard2() {
StringTemplate.Processor<StringTemplate.Processor<?, ? extends Exception>, RuntimeException> processor = null;
Object o = <error descr="Unhandled exception: java.lang.Exception">processor."""
"""."""
""";</error>
}
public static void noNewlineAfterTextBlockOpeningQuotes() {
System.out.println(STR.<error descr="Illegal text block start: missing new line after opening quotes">"""</error>\{}""");
}
public static void voidExpression() {
String a = STR."\{<error descr="Expression with the 'void' type is not allowed as a string template embedded expression">voidExpression()</error>}";
System.out.println(a);
}
interface AnyProcessor extends StringTemplate.Processor<Object, Throwable> {}
interface FooProcessor extends AnyProcessor {
@Override
Object process(StringTemplate stringTemplate) throws Ex, IOException;
}
interface BarProcessor extends AnyProcessor {
@Override
Object process(StringTemplate stringTemplate) throws Ex2, EOFException, FileNotFoundException;
}
interface FooBarProcessor extends FooProcessor, BarProcessor {}
static void test(FooBarProcessor fooBarProcessor) {
System.out.println(<error descr="Unhandled exception: java.lang.Throwable">fooBarProcessor.""</error>);
}
static class IntegerProcessor implements StringTemplate.Processor<Object, RuntimeException> {
@Override
public Integer process(StringTemplate template) {
return 1;
}
}
void myTest() {
Integer x = <error descr="Incompatible types. Found: 'java.lang.Object', required: 'java.lang.Integer'">new IntegerProcessor()."hello";</error>
System.out.println(x);
}
}