junit 为检测测试配置testLogging

cuxqih21  于 2023-02-08  发布在  其他
关注(0)|答案(2)|浏览(177)

我想为我的仪器测试配置testLogging。但是,Gradle似乎忽略了我在android.testOptions.unitTests.all.testLogging中的配置。在那里,我配置为应记录所有通过和失败的测试,但不应记录跳过的测试。但是,Gradle不记录我通过的测试,但记录我跳过的测试。
build.gradle

plugins {
    id 'com.android.application'
}

android {
    compileSdk 31

    defaultConfig {
        applicationId 'com.example.myapplication'
        minSdk 26
        targetSdk 31
        versionCode 1
        versionName '1.0'

        testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    testOptions {
        unitTests {
            all {
                testLogging {
                    events = ["passed", "failed"]
                }
            }
        }
    }
}

dependencies {
    implementation 'androidx.appcompat:appcompat:1.4.1'
    implementation 'com.google.android.material:material:1.5.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
    androidTestImplementation 'androidx.test:runner:1.4.0'
}

ExampleInstrumentedTest.java

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;

import org.junit.Ignore;
import org.junit.Test;

public class ExampleInstrumentedTest {
    @Test
    public void passedTest() {
        assertEquals(2, 1 + 1);
    }

    @Test
    public void failedTest() {
        assertEquals(3, 1 + 1);
    }

    @Test
    @Ignore
    public void skippedTest() {
        fail("Should be skipped");
    }
}

遗憾的是,Gradle不考虑我的测试日志记录配置。除了Gradle配置之外,跳过的测试也会输出,但通过的测试不会输出。
输出:

> Task :app:connectedDebugAndroidTest
Starting 3 tests on test(AVD) - 12

com.example.myapplication.ExampleInstrumentedTest > skippedTest[test(AVD) - 12] SKIPPED 

com.example.myapplication.ExampleInstrumentedTest > failedTest[test(AVD) - 12] FAILED 
    java.lang.AssertionError: expected:<3> but was:<2>
    at org.junit.Assert.fail(Assert.java:88)
Tests on test(AVD) - 12 failed: There was 1 failure(s).

我已经在GitHub上托管了我完整的最小示例项目:pmwmedia/android-test-example.

raogr8fs

raogr8fs1#

遗憾的是,这是不可能的,因为connected${Variant}AndroidTest任务不是从Gradle的AbstractTestTask继承的,因此testOptions.unitTests不会对android工具测试产生影响。
此时,您的运气不佳,除非您以某种方式扩展Android的连接测试任务,并实现您的自定义任务来补充Gradle的testLogging扩展。
您可以检查任务源here,这是实际日志记录发生的位置here

lmyy7pcs

lmyy7pcs2#

通过一点反射和一个自定义类就可以实现。
这不是最好的代码,但类似这样的代码可以让您以某种方式定制日志记录(使用AGP 7.4):

tasks.withType<com.android.build.gradle.internal.tasks.DeviceProviderInstrumentTestTask> {
    val field = javaClass.superclass.superclass.superclass.superclass.superclass.superclass.getDeclaredField("logger")
    field.isAccessible = true
    val defaultLogger = field.get(this)
    val delegate = defaultLogger.javaClass.getDeclaredField("delegate").apply { isAccessible = true }.get(defaultLogger) as Logger
    field.set(this, CustomInstrumentationTestsLogger(delegate))
 }
        
class CustomInstrumentationTestsLogger(delegate: Logger) :
       org.gradle.internal.logging.slf4j.DefaultContextAwareTaskLogger(delegate) {
       ...
}

然后,您可以覆盖isEnabledlog(或其他)方法,以切换某些消息的日志级别。
这是一个肮脏的变通办法,但它的工作。

相关问题