From: Julien HENRY Date: Tue, 2 Apr 2024 12:47:45 +0000 (+0200) Subject: SONAR-21972 Fix tests to not depend on the operating system's locale X-Git-Tag: 10.5.0.89998~55 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=369eb731d47e5d6e2a9016f0d6db6f3c272b1c18;p=sonarqube.git SONAR-21972 Fix tests to not depend on the operating system's locale --- diff --git a/build.gradle b/build.gradle index 55bf6c970cf..6f85b3db20e 100644 --- a/build.gradle +++ b/build.gradle @@ -566,6 +566,10 @@ subprojects { jvmArgs '-Dfile.encoding=UTF8' maxHeapSize = '1500m' systemProperty 'java.awt.headless', true + // Some tests are asserting on localized messages or dates + systemProperty 'user.language', 'en' + systemProperty 'user.country', 'US' + environment 'LANGUAGE', 'en_US' testLogging { events "skipped", "failed" // verbose log for failed and skipped tests (by default the name of the tests are not logged) exceptionFormat 'full' // log the full stack trace (default is the 1st line of the stack trace) diff --git a/sonar-scanner-engine/src/main/java/org/sonar/scm/git/ProcessWrapperFactory.java b/sonar-scanner-engine/src/main/java/org/sonar/scm/git/ProcessWrapperFactory.java index dfcaf24af93..d3bf4575ccf 100644 --- a/sonar-scanner-engine/src/main/java/org/sonar/scm/git/ProcessWrapperFactory.java +++ b/sonar-scanner-engine/src/main/java/org/sonar/scm/git/ProcessWrapperFactory.java @@ -23,6 +23,8 @@ import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.nio.file.Path; +import java.util.HashMap; +import java.util.Map; import java.util.Scanner; import java.util.function.Consumer; import javax.annotation.Nullable; @@ -41,7 +43,11 @@ public class ProcessWrapperFactory { } public ProcessWrapper create(@Nullable Path baseDir, Consumer stdOutLineConsumer, String... command) { - return new ProcessWrapper(baseDir, stdOutLineConsumer, command); + return new ProcessWrapper(baseDir, stdOutLineConsumer, Map.of(), command); + } + + public ProcessWrapper create(@Nullable Path baseDir, Consumer stdOutLineConsumer, Map envVariables, String... command) { + return new ProcessWrapper(baseDir, stdOutLineConsumer, envVariables, command); } static class ProcessWrapper { @@ -49,10 +55,12 @@ public class ProcessWrapperFactory { private final Path baseDir; private final Consumer stdOutLineConsumer; private final String[] command; + private final Map envVariables = new HashMap<>(); - ProcessWrapper(@Nullable Path baseDir, Consumer stdOutLineConsumer, String... command) { + ProcessWrapper(@Nullable Path baseDir, Consumer stdOutLineConsumer, Map envVariables, String... command) { this.baseDir = baseDir; this.stdOutLineConsumer = stdOutLineConsumer; + this.envVariables.putAll(envVariables); this.command = command; } @@ -60,6 +68,7 @@ public class ProcessWrapperFactory { ProcessBuilder pb = new ProcessBuilder() .command(command) .directory(baseDir != null ? baseDir.toFile() : null); + envVariables.forEach(pb.environment()::put); Process p = pb.start(); try { 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 index 1eaa3c5cff6..ed7b600cd25 100644 --- 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 @@ -20,6 +20,7 @@ package org.sonar.scm.git; import java.io.IOException; +import java.util.Map; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TemporaryFolder; @@ -41,8 +42,8 @@ public class ProcessWrapperFactoryTest { public void should_log_error_output_in_debug_mode() throws IOException { logTester.setLevel(Level.DEBUG); var root = temp.newFolder().toPath(); - var processWrapper = underTest.create(root, v -> {}, "git", "blame"); - assertThatThrownBy(() -> processWrapper.execute()) + var processWrapper = underTest.create(root, v -> {}, Map.of("LANG", "en_US"), "git", "blame"); + assertThatThrownBy(processWrapper::execute) .isInstanceOf(IllegalStateException.class); assertThat(logTester.logs(Level.DEBUG).get(0)).startsWith("fatal:");