[KLIB] Add box test for generic annotations

This commit is contained in:
Roman Artemev
2021-03-11 13:18:54 +03:00
parent 0d8fff7186
commit 050db6d454
9 changed files with 93 additions and 0 deletions
@@ -136,6 +136,12 @@ public class FirBlackBoxCodegenTestGenerated extends AbstractFirBlackBoxCodegenT
runTest("compiler/testData/codegen/box/annotations/fileClassWithFileAnnotation.kt");
}
@Test
@TestMetadata("genericAnnotations.kt")
public void testGenericAnnotations() throws Exception {
runTest("compiler/testData/codegen/box/annotations/genericAnnotations.kt");
}
@Test
@TestMetadata("javaAnnotationArrayValueDefault.kt")
public void testJavaAnnotationArrayValueDefault() throws Exception {
@@ -0,0 +1,50 @@
// IGNORE_BACKEND_FIR: JVM_IR
// MODULE: lib
// FILE: l1.kt
package ann
annotation class Test1<T>(val x: Int)
annotation class Test2<T1 : Any, T2>(val x: Int = 0)
interface I<T>
annotation class Test3<T1, T2 : I<T1>>(val x: Test1<I<T2>>)
class C<T> : I<T>
annotation class Test4(val x: Array<Test3<Int, C<Int>>>)
class ARG
annotation class Test5<T>(vararg val xs: Test3<T, C<T>>)
// FILE: l2.kt
import ann.*
@Test1<ARG>(42)
@Test2<String, String>(38)
@Test3<String, C<String>>(Test1(39))
@Test4([Test3(Test1(40)), Test3(Test1(50)), Test3(Test1(60))])
//@Test5<ARG>(*arrayOf(Test3(Test1(70))), *arrayOf(Test3(Test1(80)))) <-- KT-45414
class O {
fun test(): String = "O"
}
// MODULE: main(lib)
// FILE: main.kt
import ann.*
@Test1<ARG>(24)
@Test2<String, String>(83)
@Test3<String, C<String>>(Test1(93))
@Test4([Test3(Test1(44)), Test3(Test1(55)), Test3(Test1(66))])
//@Test5<ARG>(*arrayOf(Test3(Test1(77))), *arrayOf(Test3(Test1(88)))) <-- KT-45414
class K {
fun test(): String = "K"
}
fun box(): String = O().test() + K().test()
@@ -136,6 +136,12 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
runTest("compiler/testData/codegen/box/annotations/fileClassWithFileAnnotation.kt");
}
@Test
@TestMetadata("genericAnnotations.kt")
public void testGenericAnnotations() throws Exception {
runTest("compiler/testData/codegen/box/annotations/genericAnnotations.kt");
}
@Test
@TestMetadata("javaAnnotationArrayValueDefault.kt")
public void testJavaAnnotationArrayValueDefault() throws Exception {
@@ -136,6 +136,12 @@ public class IrBlackBoxCodegenTestGenerated extends AbstractIrBlackBoxCodegenTes
runTest("compiler/testData/codegen/box/annotations/fileClassWithFileAnnotation.kt");
}
@Test
@TestMetadata("genericAnnotations.kt")
public void testGenericAnnotations() throws Exception {
runTest("compiler/testData/codegen/box/annotations/genericAnnotations.kt");
}
@Test
@TestMetadata("javaAnnotationArrayValueDefault.kt")
public void testJavaAnnotationArrayValueDefault() throws Exception {
@@ -127,6 +127,11 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
runTest("compiler/testData/codegen/box/annotations/fileClassWithFileAnnotation.kt");
}
@TestMetadata("genericAnnotations.kt")
public void testGenericAnnotations() throws Exception {
runTest("compiler/testData/codegen/box/annotations/genericAnnotations.kt");
}
@TestMetadata("javaAnnotationArrayValueDefault.kt")
public void testJavaAnnotationArrayValueDefault() throws Exception {
runTest("compiler/testData/codegen/box/annotations/javaAnnotationArrayValueDefault.kt");
@@ -42,6 +42,11 @@ public class IrJsCodegenBoxES6TestGenerated extends AbstractIrJsCodegenBoxES6Tes
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/annotations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR_ES6, true);
}
@TestMetadata("genericAnnotations.kt")
public void testGenericAnnotations() throws Exception {
runTest("compiler/testData/codegen/box/annotations/genericAnnotations.kt");
}
@TestMetadata("nestedAnnotation.kt")
public void testNestedAnnotation() throws Exception {
runTest("compiler/testData/codegen/box/annotations/nestedAnnotation.kt");
@@ -42,6 +42,11 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/annotations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR, true);
}
@TestMetadata("genericAnnotations.kt")
public void testGenericAnnotations() throws Exception {
runTest("compiler/testData/codegen/box/annotations/genericAnnotations.kt");
}
@TestMetadata("nestedAnnotation.kt")
public void testNestedAnnotation() throws Exception {
runTest("compiler/testData/codegen/box/annotations/nestedAnnotation.kt");
@@ -42,6 +42,11 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/annotations"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS, true);
}
@TestMetadata("genericAnnotations.kt")
public void testGenericAnnotations() throws Exception {
runTest("compiler/testData/codegen/box/annotations/genericAnnotations.kt");
}
@TestMetadata("nestedAnnotation.kt")
public void testNestedAnnotation() throws Exception {
runTest("compiler/testData/codegen/box/annotations/nestedAnnotation.kt");
@@ -42,6 +42,11 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/annotations"), Pattern.compile("^([^_](.+))\\.kt$"), null, TargetBackend.WASM, true);
}
@TestMetadata("genericAnnotations.kt")
public void testGenericAnnotations() throws Exception {
runTest("compiler/testData/codegen/box/annotations/genericAnnotations.kt");
}
@TestMetadata("nestedAnnotation.kt")
public void testNestedAnnotation() throws Exception {
runTest("compiler/testData/codegen/box/annotations/nestedAnnotation.kt");