All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.keploy.JaCoCoUtil Maven / Gradle / Ivy

There is a newer version: 1.4.7
Show newest version
package io.keploy;

import java.io.InputStream;
import java.net.URL;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardCopyOption;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;

public class JaCoCoUtil {

    public static void downloadAndExtractJaCoCoBinaries(String version, String resourceDir) throws Exception {
        Path cliPath = Paths.get(resourceDir, "jacococli.jar");
        Path agentPath = Paths.get(resourceDir, "jacocoagent.jar");
        Files.createDirectories(cliPath.getParent());
        Files.createDirectories(agentPath.getParent());

        if (Files.exists(cliPath) && Files.exists(agentPath)) {
            return;
        }

        String downloadUrl = "https://github.com/jacoco/jacoco/releases/download/v" + version + "/jacoco-" + version + ".zip";

        try (InputStream inputStream = new URL(downloadUrl).openStream();
             ZipInputStream zipInputStream = new ZipInputStream(inputStream)) {

            ZipEntry entry;
            while ((entry = zipInputStream.getNextEntry()) != null) {
                if (entry.getName().endsWith("jacococli.jar")) {

                    Files.copy(zipInputStream, cliPath, StandardCopyOption.REPLACE_EXISTING);

                } else if (entry.getName().endsWith("jacocoagent.jar")) {

                    Files.copy(zipInputStream, agentPath, StandardCopyOption.REPLACE_EXISTING);

                }

                if (Files.exists(cliPath) && Files.exists(agentPath)) {

                    break; // Both binaries extracted, no need to continue
                }
            }
        }

        if (!Files.exists(cliPath) || !Files.exists(agentPath)) {
            throw new IllegalStateException("Failed to find JaCoCo binaries in the distribution.");
        }

    }

    public static void main(String[] args) {
        if (args.length != 2) {
            throw new IllegalArgumentException("Expected two arguments: version and resourceDir");
        }
        String version = args[0];
        String resourceDir = args[1];
        try {
            downloadAndExtractJaCoCoBinaries(version, resourceDir);
        } catch (Exception e) {
            e.printStackTrace();
            System.exit(1);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy