Browse Source

NO-JIRA Fix unit test on windows

tags/10.0.0.68432
Eric Giffon 1 year ago
parent
commit
6589780115

+ 3
- 4
server/sonar-main/src/test/java/org/sonar/application/es/EsKeyStoreCliTest.java View File

@@ -63,12 +63,11 @@ public class EsKeyStoreCliTest {

JavaCommand<?> executedCommand = process.getExecutedCommand();

String expectedHomeLibPath = Paths.get(homeDir.toString(), "lib", "*").toString();
String expectedHomeKeystorePath = Paths.get(homeDir.toString(), "lib", "cli-launcher", "*").toString();
String expectedHomeLibPath = Paths.get(homeDir.toString(), "lib") + File.separator + "*";
String expectedHomeKeystorePath = Paths.get(homeDir.toString(), "lib", "cli-launcher") + File.separator + "*";

assertThat(executedCommand.getClassName()).isEqualTo("org.elasticsearch.launcher.CliToolLauncher");
assertThat(executedCommand.getClasspath())
.containsExactly(expectedHomeLibPath, expectedHomeKeystorePath);
assertThat(executedCommand.getClasspath()).containsExactly(expectedHomeLibPath, expectedHomeKeystorePath);
assertThat(executedCommand.getParameters()).containsExactly("add", "-x", "-f", "test.property1", "test.property2", "test.property3");
assertThat(executedCommand.getJvmOptions().getAll()).containsExactly(
"-Xms4m",

Loading…
Cancel
Save