aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/org/sonarsource/scanner/cli/ConfTest.java
diff options
context:
space:
mode:
authorJulien HENRY <julien.henry@sonarsource.com>2022-03-21 11:56:18 +0100
committerJulien HENRY <julien.henry@sonarsource.com>2022-03-22 09:01:38 +0100
commit8c73aabed5dee00d5e184750984099b63aaf676a (patch)
tree01342122ea09c7eabb43eef00fe0cb8b80335ba6 /src/test/java/org/sonarsource/scanner/cli/ConfTest.java
parent62768e25da3981a8ffd3778accfcd459d79ede24 (diff)
downloadsonar-scanner-cli-8c73aabed5dee00d5e184750984099b63aaf676a.tar.gz
sonar-scanner-cli-8c73aabed5dee00d5e184750984099b63aaf676a.zip
SQSCANNER-101 Do not parse configuration twice
Diffstat (limited to 'src/test/java/org/sonarsource/scanner/cli/ConfTest.java')
-rw-r--r--src/test/java/org/sonarsource/scanner/cli/ConfTest.java34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/test/java/org/sonarsource/scanner/cli/ConfTest.java b/src/test/java/org/sonarsource/scanner/cli/ConfTest.java
index ec51b8f..57e4cb2 100644
--- a/src/test/java/org/sonarsource/scanner/cli/ConfTest.java
+++ b/src/test/java/org/sonarsource/scanner/cli/ConfTest.java
@@ -337,38 +337,4 @@ public class ConfTest {
assertThat(properties.get("sonar.prop")).isEqualTo("expected");
}
- // SQSCANNER-57
- @Test
- public void should_return_true_is_sonar_cloud() {
-
- args.setProperty("sonar.host.url", "https://sonarcloud.io");
-
- conf.properties();
-
- assertThat(conf.isSonarCloud(null)).isTrue();
- }
-
- // SQSCANNER-57
- @Test
- public void should_return_false_is_sonar_cloud() {
- args.setProperty("sonar.host.url", "https://mysonarqube.com:9000/");
-
- //Still returns false, sonarcloud not detected in the content of the url
- Properties properties = conf.properties();
-
- assertThat(properties.getProperty("sonar.host.url")).isEqualTo("https://mysonarqube.com:9000/");
-
- assertThat(conf.isSonarCloud(null)).isFalse();
- }
-
- // SQSCANNER-57
- @Test
- public void should_return_false_is_sonar_cloud_host_is_null() {
-
- Properties emptyProperties = new Properties();
-
- assertThat(emptyProperties.getProperty("sonar.host.url")).isNull();
-
- assertThat(conf.isSonarCloud(emptyProperties)).isFalse();
- }
}