blob: 254a7c2e19a5c3d927a95e8e72e51a149ab22b40 [file] [log] [blame]
/*
* Copyright (C) 2023 The Android Open Source Project
*
* 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.
*/
package com.android.tools.metalava.model
import com.android.tools.lint.checks.infrastructure.TestFile
import com.android.tools.metalava.apilevels.internalDesc
import com.android.tools.metalava.testing.java
import kotlin.test.assertEquals
import kotlin.test.assertNotNull
import org.junit.Test
/** Common tests for implementations of [TypeItem]. */
abstract class CommonTypeItemTest {
/**
* Create a [Codebase] from one of the supplied [signature] or [source] files and then run a
* test on that [Codebase].
*
* This must be called with [signature] and [source] contents that are equivalent so that the
* test can have the same behavior on models that consume the different formats. Subclasses of
* this must implement this method consuming at least one of them to create a [Codebase] on
* which the test is run.
*/
abstract fun createCodebaseAndRun(
signature: String,
source: TestFile,
test: (Codebase) -> Unit,
)
@Test
fun `MethodItem internalDesc`() {
createCodebaseAndRun(
signature =
"""
package test.pkg {
public class Test {
ctor public Test();
method public abstract boolean foo(test.pkg.Test, int...);
method public abstract void bar(test.pkg.Test... tests);
}
}
""",
source =
java(
"""
package test.pkg;
public abstract class Test {
public Test() {}
public abstract boolean foo(Test test, int... ints);
public abstract void bar(Test... tests);
}
"""
),
test = { codebase ->
val testClass = codebase.findClass("test.pkg.Test")
assertNotNull(testClass)
val actual = buildString {
testClass.methods().forEach {
append(it.name()).append(it.internalDesc()).append("\n")
}
}
assertEquals(
"""
foo(Ltest/pkg/Test;[I)Z
bar([Ltest/pkg/Test;)V
"""
.trimIndent(),
actual.trim()
)
}
)
}
}