Покрытие не работает для PowerMock, Jacoco и Sonarqube с использованием gradle - PullRequest
0 голосов
/ 30 октября 2019

Я какое-то время стучал головой об этом, поэтому я подумал, что открою это, чтобы кто-то указал, где я иду не так.

Я использую Gradle 4.10,java 9.04, jacoco 0.8.4 и sonarqube 7.9. Я пытался заставить мое освещение включать тесты, запускаемые с использованием Powermock, и я немного постарался с оффлайн-ресурсами. Я пробовал различные источники, в том числе:

Изменения, которые я сделал в примерах, в основном связаны с устареванием sourceSets.main.output.classesDir. Я не привержен ни одной из версий плагинов, которые я использую, но сейчас мне нужно придерживаться Java 9 и Maven 4. Я рад поменять jacoco или mockito, если есть лучший способ получить ту же функциональность.

Я пытался свести это к как можно более простой проблеме.

Простое приложение

public class App {
    public void mockTest() throws ClassNotFoundException {
        try (FileInputStream fis = new FileInputStream(new File("Hello.txt"))) {
            //do stuff
        } catch (IOException e) {
            throw new ClassNotFoundException();
        }
    }

    public String simpleMethod(){
        return "Hello world";
    }
}

Простое тестирование приложения

@RunWith(PowerMockRunner.class)
@PowerMockIgnore({"javax.*", "com.sun.*"})
@PrepareForTest({App.class})
public class AppTest {

    @Test(expected = ClassNotFoundException.class)
    public void testAppHasAGreeting() throws Exception {
        PowerMockito.whenNew(FileInputStream.class).withParameterTypes(File.class).withArguments(any(File.class)).thenThrow(IOException.class);
        App app = new App();
        app.mockTest();
    }

    @Test
    public void simpleMethod() {
        SimpleClass simpleClass = new SimpleClass();
        Assert.assertEquals("Hello world", simpleClass.simpleMethod());
    }
}

Сборка Gradle

plugins {
    id "org.sonarqube" version "2.8" apply false
}

apply plugin: 'application'
apply plugin: 'java'
apply plugin: 'jacoco'
apply plugin: 'maven'
apply plugin: 'org.sonarqube'

version = "1.0-SNAPSHOT"
mainClassName = 'App'

configurations {
    jacocoAnt
    jacocoRuntime
}

dependencies {
    jacocoAnt group: 'org.jacoco', name: 'org.jacoco.ant', version: '0.8.5'
    jacocoRuntime group: 'org.jacoco', name: 'org.jacoco.agent', version: '0.8.5'
    <snip>
    compile 'junit:junit:4.12'
}
sonarqube {
    properties {
        property "sonar.host.url", "http://192.168.159.132:8051/"
        property "sonar.login", "11b80d093e28669fe5c31e17553b08258a91016f"
        property "sonar.java.binaries", "${buildDir}/classes"
        property "sonar.java.libraries", "**/*.jar"
        property "sonar.dynamicAnalysis", "reuseReports"
        property "sonar.jacoco.reportPaths", "${buildDir}/jacoco/test.exec"
        property "sonar.coverage.jacoco.xmlReportPaths", "${buildDir}/test-results/test"
    }
}

task instrument(dependsOn: ['classes']) {
    ext.outputDir = buildDir.path + '/reports/classes-instrumented'
    doLast {
        ant.taskdef(name: 'instrument',
                classname: 'org.jacoco.ant.InstrumentTask',
                classpath: configurations.jacocoAnt.asPath)
        ant.instrument(destdir: outputDir) {
            for(File f :  sourceSets.main.output.getClassesDirs()){
                fileset(dir: f)
            }
        }
    }
}

gradle.taskGraph.whenReady { graph ->
    if (graph.hasTask(instrument)) {
        tasks.withType(Test) {
            doFirst {
                systemProperty 'jacoco-agent.destfile', buildDir.path + '/jacoco/tests.exec'
                classpath = files(instrument.outputDir) + classpath + configurations.jacocoRuntime
            }
        }
    }
}

task report(dependsOn: ['instrument', 'test']) {

    println "Source Classes" + sourceSets.main.output.getClassesDirs()

    doLast {
        ant.taskdef(name: 'report',
                classname: 'org.jacoco.ant.ReportTask',
                classpath: configurations.jacocoAnt.asPath)
        ant.report() {
            executiondata {
                ant.file(file: buildDir.path + '/jacoco/test.exec')
            }
            structure(name: 'Example') {
                classfiles {
                    fileset(dir: "build/classes/")
                }
                sourcefiles {
                    fileset(dir: 'src/main/java')
                }
            }
            html(destdir: buildDir.path + '/reports/jacoco')
        }
    }
}

Вывод, я думаю, вызывает проблему

[ant:report] Classes in bundle 'Example' do no match with execution data. For report generation the same class files must be used as at runtime.
[ant:report] Execution data for class App does not match.
[ant:report] Execution data for class AppTest does not match.
...