From 5a50ab87738f3652d0af2372b0cd8e8dd3d0a5b5 Mon Sep 17 00:00:00 2001 From: Kuan-Ying Chou Date: Thu, 8 Aug 2024 23:08:02 +0100 Subject: [PATCH] Test typealias annotations (cherry picked from commit 9a40de304aa37709b1bebb470f2d7acbb119a8e8) --- .../com/google/devtools/ksp/test/KSPAATest.kt | 6 + .../testData/getSymbolsFromAnnotationInLib.kt | 179 ++++++++++++++++++ 2 files changed, 185 insertions(+) create mode 100644 kotlin-analysis-api/testData/getSymbolsFromAnnotationInLib.kt diff --git a/kotlin-analysis-api/src/test/kotlin/com/google/devtools/ksp/test/KSPAATest.kt b/kotlin-analysis-api/src/test/kotlin/com/google/devtools/ksp/test/KSPAATest.kt index de94ca2602..1d95504fc6 100644 --- a/kotlin-analysis-api/src/test/kotlin/com/google/devtools/ksp/test/KSPAATest.kt +++ b/kotlin-analysis-api/src/test/kotlin/com/google/devtools/ksp/test/KSPAATest.kt @@ -305,6 +305,12 @@ class KSPAATest : AbstractKSPAATest() { runTest("../kotlin-analysis-api/testData/getSymbolsFromAnnotation.kt") } + @TestMetadata("getSymbolsFromAnnotationInLib.kt") + @Test + fun testGetSymbolsFromAnnotationInLib() { + runTest("../kotlin-analysis-api/testData/getSymbolsFromAnnotationInLib.kt") + } + @TestMetadata("hello.kt") @Test fun testHello() { diff --git a/kotlin-analysis-api/testData/getSymbolsFromAnnotationInLib.kt b/kotlin-analysis-api/testData/getSymbolsFromAnnotationInLib.kt new file mode 100644 index 0000000000..e39282d641 --- /dev/null +++ b/kotlin-analysis-api/testData/getSymbolsFromAnnotationInLib.kt @@ -0,0 +1,179 @@ +/* + * Copyright 2024 Google LLC + * Copyright 2010-2024 JetBrains s.r.o. and Kotlin Programming Language contributors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// TEST PROCESSOR: GetSymbolsFromAnnotationProcessor +// EXPECTED: +// ==== Anno superficial==== +// Foo:KSClassDeclaration +// constructorParameterFoo:KSPropertyDeclaration +// propertyFoo:KSPropertyDeclaration +// functionFoo:KSFunctionDeclaration +// p1:KSValueParameter +// :KSFunctionDeclaration +// constructorParameterFoo:KSValueParameter +// param:KSValueParameter +// Bar:KSClassDeclaration +// Baz:KSClassDeclaration +// Burp:KSClassDeclaration +// Flux:KSTypeAlias +// RGB.B:KSClassDeclaration +// ==== Anno in depth ==== +// Foo:KSClassDeclaration +// constructorParameterFoo:KSPropertyDeclaration +// propertyFoo:KSPropertyDeclaration +// functionFoo:KSFunctionDeclaration +// p1:KSValueParameter +// local:KSPropertyDeclaration +// :KSFunctionDeclaration +// constructorParameterFoo:KSValueParameter +// param:KSValueParameter +// Bar:KSClassDeclaration +// Baz:KSClassDeclaration +// Burp:KSClassDeclaration +// Flux:KSTypeAlias +// RGB.B:KSClassDeclaration +// ==== Bnno superficial==== +// File: Foo.kt:KSFile +// propertyFoo.getter():KSPropertyAccessorImpl +// p2:KSValueParameter +// :KSFunctionDeclaration +// ==== Bnno in depth ==== +// File: Foo.kt:KSFile +// propertyFoo.getter():KSPropertyAccessorImpl +// p2:KSValueParameter +// :KSFunctionDeclaration +// ==== A1 superficial==== +// Foo:KSClassDeclaration +// constructorParameterFoo:KSPropertyDeclaration +// propertyFoo:KSPropertyDeclaration +// functionFoo:KSFunctionDeclaration +// p1:KSValueParameter +// :KSFunctionDeclaration +// constructorParameterFoo:KSValueParameter +// param:KSValueParameter +// Bar:KSClassDeclaration +// Baz:KSClassDeclaration +// Burp:KSClassDeclaration +// Flux:KSTypeAlias +// RGB.B:KSClassDeclaration +// ==== A1 in depth ==== +// Foo:KSClassDeclaration +// constructorParameterFoo:KSPropertyDeclaration +// propertyFoo:KSPropertyDeclaration +// functionFoo:KSFunctionDeclaration +// p1:KSValueParameter +// local:KSPropertyDeclaration +// :KSFunctionDeclaration +// constructorParameterFoo:KSValueParameter +// param:KSValueParameter +// Bar:KSClassDeclaration +// Baz:KSClassDeclaration +// Burp:KSClassDeclaration +// Flux:KSTypeAlias +// RGB.B:KSClassDeclaration +// ==== A2 superficial==== +// Foo:KSClassDeclaration +// constructorParameterFoo:KSPropertyDeclaration +// propertyFoo:KSPropertyDeclaration +// functionFoo:KSFunctionDeclaration +// p1:KSValueParameter +// :KSFunctionDeclaration +// constructorParameterFoo:KSValueParameter +// param:KSValueParameter +// Bar:KSClassDeclaration +// Baz:KSClassDeclaration +// Burp:KSClassDeclaration +// Flux:KSTypeAlias +// RGB.B:KSClassDeclaration +// ==== A2 in depth ==== +// Foo:KSClassDeclaration +// constructorParameterFoo:KSPropertyDeclaration +// propertyFoo:KSPropertyDeclaration +// functionFoo:KSFunctionDeclaration +// p1:KSValueParameter +// local:KSPropertyDeclaration +// :KSFunctionDeclaration +// constructorParameterFoo:KSValueParameter +// param:KSValueParameter +// Bar:KSClassDeclaration +// Baz:KSClassDeclaration +// Burp:KSClassDeclaration +// Flux:KSTypeAlias +// RGB.B:KSClassDeclaration +// ==== Cnno in depth ==== +// constructorParameterFoo:KSPropertyDeclaration +// value:KSValueParameter +// constructorParameterFoo:KSValueParameter +// x:KSPropertyDeclaration +// x:KSValueParameter +// END +// MODULE: lib +//FILE: annotaitons_in_lib.kt +annotation class Anno +annotation class Bnno +annotation class Cnno + +//FILE: aliases_in_lib.kt +typealias A1 = Anno +typealias A2 = A1 + +// MODULE: main(lib) +//FILE: Foo.kt +@file:Bnno + +import Anno +import Anno as A3 + +@Anno +class Foo @Anno constructor(@Anno @param:Cnno val constructorParameterFoo: Int, @Anno param: Int){ + @Bnno constructor() { + + } + + @Anno + val propertyFoo: String + @Bnno get() = TODO() + + @Anno + fun functionFoo(@Anno p1: Int, @Bnno p2: Int) { + @Anno val local = 1 + } + + @setparam:Cnno + var a = 1 +} + +class C(@Cnno val x: Int) + +@A1 +class Bar + +@A2 +class Baz + +@A3 +class Burp + +@Anno +typealias Flux = String + +enum class RGB{ + R, + G, + @Anno + B +}