|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
/*
|
|
|
|
|
* Copyright 2012-2020 the original author or authors.
|
|
|
|
|
* Copyright 2012-2021 the original author or authors.
|
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
@ -19,6 +19,7 @@ package org.springframework.boot.cloud;
|
|
|
|
|
import java.util.Collections;
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
import java.util.stream.Stream;
|
|
|
|
|
|
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
|
|
|
|
|
@ -34,6 +35,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
|
|
|
|
* Tests for {@link CloudPlatform}.
|
|
|
|
|
*
|
|
|
|
|
* @author Phillip Webb
|
|
|
|
|
* @author Nguyen Sach
|
|
|
|
|
*/
|
|
|
|
|
class CloudPlatformTests {
|
|
|
|
|
|
|
|
|
@ -137,6 +139,17 @@ class CloudPlatformTests {
|
|
|
|
|
assertThat(platform).isEqualTo(CloudPlatform.KUBERNETES);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
void isActiveWhenNoCloudPlatformIsEnforcedAndHasKubernetesServiceHostAndKubernetesServicePort() {
|
|
|
|
|
Map<String, Object> envVars = new HashMap<>();
|
|
|
|
|
envVars.put("EXAMPLE_SERVICE_HOST", "---");
|
|
|
|
|
envVars.put("EXAMPLE_SERVICE_PORT", "8080");
|
|
|
|
|
Environment environment = getEnvironmentWithEnvVariables(envVars);
|
|
|
|
|
((MockEnvironment) environment).setProperty("spring.main.cloud-platform", "none");
|
|
|
|
|
assertThat(Stream.of(CloudPlatform.values()).filter((platform) -> platform.isActive(environment)))
|
|
|
|
|
.containsExactly(CloudPlatform.NONE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Environment getEnvironmentWithEnvVariables(Map<String, Object> environmentVariables) {
|
|
|
|
|
MockEnvironment environment = new MockEnvironment();
|
|
|
|
|
PropertySource<?> propertySource = new SystemEnvironmentPropertySource(
|
|
|
|
|