Process p = pb.start();
try {
- InputStream processStdOutput = p.getInputStream();
- // don't use BufferedReader#readLine because it will also parse CR, which may be part of the actual source code line
- try (Scanner scanner = new Scanner(new InputStreamReader(processStdOutput, UTF_8))) {
- scanner.useDelimiter("\n");
- while (scanner.hasNext()) {
- stdOutLineConsumer.accept(scanner.next());
+ processInputStream(p.getInputStream(), stdOutLineConsumer);
+
+ processInputStream(p.getErrorStream(), line -> {
+ if (!line.isBlank()) {
+ LOG.debug(line);
}
- }
+ });
int exit = p.waitFor();
if (exit != 0) {
p.destroy();
}
}
+
+ private static void processInputStream(InputStream inputStream, Consumer<String> stringConsumer) {
+ try (Scanner scanner = new Scanner(new InputStreamReader(inputStream, UTF_8))) {
+ scanner.useDelimiter("\n");
+ while (scanner.hasNext()) {
+ stringConsumer.accept(scanner.next());
+ }
+ }
+ }
}
}
--- /dev/null
+/*
+ * SonarQube
+ * Copyright (C) 2009-2023 SonarSource SA
+ * mailto:info AT sonarsource DOT com
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * This program 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+package org.sonar.scm.git;
+
+import java.io.File;
+import java.io.IOException;
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.rules.TemporaryFolder;
+import org.sonar.api.utils.log.LogTester;
+import org.sonar.api.utils.log.LoggerLevel;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.assertj.core.api.Assertions.assertThatThrownBy;
+
+public class ProcessWrapperFactoryTest {
+
+ @Rule
+ public TemporaryFolder temp = new TemporaryFolder();
+ @Rule
+ public LogTester logTester = new LogTester();
+ private final ProcessWrapperFactory underTest = new ProcessWrapperFactory();
+
+ @Test
+ public void should_log_error_output_in_debug_mode() throws IOException {
+ var root = temp.newFolder().toPath();
+ var processWrapper = underTest.create(root, v -> {}, "git", "blame");
+ assertThatThrownBy(() -> processWrapper.execute())
+ .isInstanceOf(IllegalStateException.class);
+
+ assertThat(logTester.logs(LoggerLevel.DEBUG).get(0)).contains("fatal: not a git repository");
+ }
+
+}