aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/org/sonarsource/scanner/cli/ConfTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/org/sonarsource/scanner/cli/ConfTest.java')
-rw-r--r--src/test/java/org/sonarsource/scanner/cli/ConfTest.java35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/test/java/org/sonarsource/scanner/cli/ConfTest.java b/src/test/java/org/sonarsource/scanner/cli/ConfTest.java
index a5c8b5f..c1b172e 100644
--- a/src/test/java/org/sonarsource/scanner/cli/ConfTest.java
+++ b/src/test/java/org/sonarsource/scanner/cli/ConfTest.java
@@ -336,4 +336,39 @@ public class ConfTest {
properties = conf.properties();
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();
+ }
}