[go: nahoru, domu]

blob: 1546fdf733e98918046ecf7445835cbd4adc614f [file] [log] [blame]
/*
* Copyright 2019 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 androidx.ui.lint
import com.android.tools.lint.checks.infrastructure.TestFiles.kt
import com.android.tools.lint.checks.infrastructure.TestLintResult
import com.android.tools.lint.checks.infrastructure.TestLintTask
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.runners.JUnit4
import androidx.ui.lint.UnnecessaryLambdaCreationDetector.Companion.ISSUE
import org.intellij.lang.annotations.Language
/* ktlint-disable max-line-length */
@RunWith(JUnit4::class)
class UnnecessaryLambdaCreationDetectorTest {
private val stub = kt("""
package test
annotation class Composable
val lambda = @Composable { }
val anonymousFunction = @Composable fun() {}
val lambdaWithReceiver = @Composable { number: Int -> }
val anonymousFunctionWithReceiver = @Composable fun(number: Int) {}
fun function() {}
@Composable
fun ComposableFunction(children: @Composable() () -> Unit) {
children()
}
""").indented().within("src")
private fun check(@Language("kotlin") code: String): TestLintResult {
return TestLintTask.lint()
.files(kt(code.trimIndent()), stub)
.allowMissingSdk(true)
.issues(ISSUE)
.run()
}
@Test
fun warnsForSingleExpressions() {
check("""
package test
@Composable
fun Test() {
ComposableFunction {
lambda()
}
ComposableFunction {
anonymousFunction()
}
ComposableFunction {
lambdaWithReceiver(10)
}
ComposableFunction {
anonymousFunctionWithReceiver(10)
}
ComposableFunction {
function()
}
}
""").expect("""
src/test/test.kt:6: Error: Creating an unnecessary lambda to emit a captured lambda [UnnecessaryLambdaCreation]
lambda()
~~~~~~
src/test/test.kt:10: Error: Creating an unnecessary lambda to emit a captured lambda [UnnecessaryLambdaCreation]
anonymousFunction()
~~~~~~~~~~~~~~~~~
2 errors, 0 warnings
""")
}
@Test
fun warnsForMultipleLambdas() {
check("""
package test
@Composable
fun MultipleChildComposableFunction(
firstChild: @Composable() () -> Unit,
secondChild: @Composable() () -> Unit
) {}
@Composable
fun Test() {
MultipleChildComposableFunction( { lambda() }) {
lambda()
}
}
""").expect("""
src/test/test.kt:11: Error: Creating an unnecessary lambda to emit a captured lambda [UnnecessaryLambdaCreation]
MultipleChildComposableFunction( { lambda() }) {
~~~~~~
src/test/test.kt:12: Error: Creating an unnecessary lambda to emit a captured lambda [UnnecessaryLambdaCreation]
lambda()
~~~~~~
2 errors, 0 warnings
""")
}
@Test
fun ignoresMultipleExpressions() {
check("""
package test
@Composable
fun Test() {
ComposableFunction {
lambda()
lambda()
}
}
""").expectClean()
}
@Test
fun ignoresPropertyAssignment() {
check("""
package test
val property: @Composable() () -> Unit = {
lambda()
}
""").expectClean()
}
@Test
fun ignoresComponentNodes() {
check("""
package test
class FooNode(val foo: String)
@Composable
fun Test() {
FooNode(foo) {
lambda()
}
}
""").expectClean()
}
@Test
fun ignoresParameterInvocations() {
check("""
package test
@Composable
fun ComposableFunctionWithParams(
child: @Composable() (child: @Composable() () -> Unit) -> Unit
) {}
@Composable
fun Test() {
ComposableFunctionWithParams { ignoredChild ->
lambda()
}
}
@Composable
fun Test() {
ComposableFunctionWithParams { invokedChild ->
invokedChild()
}
}
""").expect("""
src/test/test.kt:11: Error: Creating an unnecessary lambda to emit a captured lambda [UnnecessaryLambdaCreation]
lambda()
~~~~~~
1 errors, 0 warnings
""")
}
}
/* ktlint-enable max-line-length */