test/lib/jdk/test/lib/SA/SATestUtils.java
author lmesnik
Fri, 27 Sep 2019 10:48:23 -0700
changeset 58384 9a3a700ca571
parent 53267 0b6d6db878b6
permissions -rw-r--r--
8230942: Support compressed cores in SA tests Reviewed-by: dholmes, sspitsyn

/*
 * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */
package jdk.test.lib.SA;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.TimeUnit;
import java.util.zip.GZIPInputStream;

import jdk.test.lib.Asserts;
import jdk.test.lib.Platform;
import jtreg.SkippedException;

public class SATestUtils {

    public static boolean canAddPrivileges()
       throws IOException, InterruptedException {
       List<String> echoList = new ArrayList<String>();
       echoList.add("sudo");
       echoList.add("-E");
       echoList.add("/bin/echo");
       echoList.add("'Checking for sudo'");
       ProcessBuilder pb = new ProcessBuilder(echoList);
       Process echoProcess = pb.start();
       if (echoProcess.waitFor(60, TimeUnit.SECONDS) == false) {
           // 'sudo' has been added but we don't have a no-password
           // entry for the user in the /etc/sudoers list. Could
           // have timed out waiting for the password. Skip the
           // test if there is a timeout here.
           System.out.println("Timed out waiting for the password to be entered.");
           echoProcess.destroyForcibly();
           return false;
       }
       if (echoProcess.exitValue() == 0) {
           return true;
       }
       java.io.InputStream is = echoProcess.getErrorStream();
       String err = new String(is.readAllBytes());
       System.out.println(err);
       // 'sudo' has been added but we don't have a no-password
       // entry for the user in the /etc/sudoers list. Check for
       // the sudo error message and skip the test.
       if (err.contains("no tty present") ||
           err.contains("a password is required")) {
           return false;
       } else {
           throw new Error("Unknown Error from 'sudo'");
       }
    }

    public static List<String> addPrivileges(List<String> cmdStringList)
        throws IOException {
        Asserts.assertTrue(Platform.isOSX());

        System.out.println("Adding 'sudo -E' to the command.");
        List<String> outStringList = new ArrayList<String>();
        outStringList.add("sudo");
        outStringList.add("-E");
        outStringList.addAll(cmdStringList);
        return outStringList;
    }

    public static void unzipCores(File dir) {
        File[] gzCores = dir.listFiles((directory, name) -> name.matches("core(\\.\\d+)?\\.gz"));
        for (File gzCore : gzCores) {
            String coreFileName = gzCore.getName().replace(".gz", "");
            System.out.println("Unzipping core into " + coreFileName);
            try (GZIPInputStream gzis = new GZIPInputStream(new FileInputStream(gzCore));
                 FileOutputStream fos = new FileOutputStream(coreFileName)) {
                byte[] buffer = new byte[1024];
                int length;
                while ((length = gzis.read(buffer)) > 0) {
                    fos.write(buffer, 0, length);
                }
            } catch (IOException e) {
                throw new SkippedException("Not able to unzip file: " + gzCore.getAbsolutePath(), e);
            }
        }
    }
}