]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-18867 When native git fails, it should output the actual error message
authorZipeng WU <zipeng.wu@sonarsource.com>
Thu, 23 Mar 2023 18:58:58 +0000 (19:58 +0100)
committersonartech <sonartech@sonarsource.com>
Mon, 27 Mar 2023 20:03:02 +0000 (20:03 +0000)
sonar-scanner-engine/src/main/java/org/sonar/scm/git/ProcessWrapperFactory.java
sonar-scanner-engine/src/test/java/org/sonar/scm/git/ProcessWrapperFactoryTest.java [new file with mode: 0644]

index d317362ebc7aa70276e04e87044275ac3572bd89..c00b62f4b5e0f55d9fd2d7902a10cb09eceaf301 100644 (file)
@@ -63,14 +63,13 @@ public class ProcessWrapperFactory {
 
       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) {
@@ -83,6 +82,15 @@ public class ProcessWrapperFactory {
         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());
+        }
+      }
+    }
   }
 
 }
diff --git a/sonar-scanner-engine/src/test/java/org/sonar/scm/git/ProcessWrapperFactoryTest.java b/sonar-scanner-engine/src/test/java/org/sonar/scm/git/ProcessWrapperFactoryTest.java
new file mode 100644 (file)
index 0000000..1295293
--- /dev/null
@@ -0,0 +1,51 @@
+/*
+ * 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");
+  }
+
+}