Search in sources :

Example 1 with ConfigReloadProperties

use of org.springframework.cloud.kubernetes.commons.config.reload.ConfigReloadProperties in project spring-cloud-kubernetes by spring-cloud.

the class KubernetesClientEventBasedSecretsChangeDetectorTests method watch.

@Test
void watch() {
    GsonBuilder builder = new GsonBuilder();
    builder.excludeFieldsWithModifiers(Modifier.STATIC, Modifier.TRANSIENT, Modifier.VOLATILE).registerTypeAdapter(OffsetDateTime.class, new GsonOffsetDateTimeAdapter());
    Gson gson = builder.create();
    V1Secret dbPassword = new V1Secret().kind("Secret").metadata(new V1ObjectMeta().name("db-password")).putStringDataItem("password", Base64.getEncoder().encodeToString("p455w0rd".getBytes())).putStringDataItem("username", Base64.getEncoder().encodeToString("user".getBytes()));
    V1Secret dbPasswordUpdated = new V1Secret().kind("Secret").metadata(new V1ObjectMeta().name("db-password")).putStringDataItem("password", Base64.getEncoder().encodeToString("p455w0rd2".getBytes())).putStringDataItem("username", Base64.getEncoder().encodeToString("user".getBytes()));
    V1SecretList secretList = new V1SecretList().kind("SecretList").metadata(new V1ListMeta().resourceVersion("0")).items(Arrays.asList(dbPassword));
    stubFor(get(urlMatching("^/api/v1/namespaces/default/secrets.*")).inScenario("watch").whenScenarioStateIs(STARTED).withQueryParam("watch", equalTo("false")).willReturn(aResponse().withStatus(200).withBody(gson.toJson(secretList))).willSetStateTo("update"));
    Watch.Response<V1Secret> watchResponse = new Watch.Response<>(EventType.MODIFIED.name(), dbPasswordUpdated);
    stubFor(get(urlMatching("/api/v1/namespaces/default/secrets.*")).inScenario("watch").whenScenarioStateIs("update").withQueryParam("watch", equalTo("true")).willReturn(aResponse().withStatus(200).withBody(new JSON().serialize(watchResponse))).willSetStateTo("add"));
    stubFor(get(urlMatching("/api/v1/namespaces/default/secrets.*")).inScenario("watch").whenScenarioStateIs("add").withQueryParam("watch", equalTo("true")).willReturn(aResponse().withStatus(200).withBody(new JSON().serialize(new Watch.Response<>(EventType.ADDED.name(), new V1Secret().kind("Secret").metadata(new V1ObjectMeta().name("rabbit-password")).putDataItem("rabbit-pw", Base64.getEncoder().encode("password".getBytes())))))).willSetStateTo("delete"));
    stubFor(get(urlMatching("/api/v1/namespaces/default/secrets.*")).inScenario("watch").whenScenarioStateIs("delete").withQueryParam("watch", equalTo("true")).willReturn(aResponse().withStatus(200).withBody(new JSON().serialize(new Watch.Response<>(EventType.DELETED.name(), new V1Secret().kind("Secret").metadata(new V1ObjectMeta().name("rabbit-password")).putDataItem("rabbit-pw", Base64.getEncoder().encode("password".getBytes())))))).willSetStateTo("done"));
    stubFor(get(urlMatching("/api/v1/namespaces/default/secrets.*")).inScenario("watch").whenScenarioStateIs("done").withQueryParam("watch", equalTo("true")).willReturn(aResponse().withStatus(200)));
    ApiClient apiClient = new ClientBuilder().setBasePath("http://localhost:" + wireMockServer.port()).build();
    OkHttpClient httpClient = apiClient.getHttpClient().newBuilder().readTimeout(0, TimeUnit.SECONDS).build();
    apiClient.setHttpClient(httpClient);
    CoreV1Api coreV1Api = new CoreV1Api(apiClient);
    ConfigurationUpdateStrategy strategy = mock(ConfigurationUpdateStrategy.class);
    when(strategy.getName()).thenReturn("strategy");
    KubernetesMockEnvironment environment = new KubernetesMockEnvironment(mock(KubernetesClientSecretsPropertySource.class)).withProperty("db-password", "p455w0rd");
    KubernetesClientSecretsPropertySourceLocator locator = mock(KubernetesClientSecretsPropertySourceLocator.class);
    when(locator.locate(environment)).thenAnswer(ignoreMe -> new MockPropertySource().withProperty("db-password", "p455w0rd2"));
    ConfigReloadProperties properties = new ConfigReloadProperties();
    properties.setMonitoringSecrets(true);
    KubernetesNamespaceProvider kubernetesNamespaceProvider = mock(KubernetesNamespaceProvider.class);
    when(kubernetesNamespaceProvider.getNamespace()).thenReturn("default");
    KubernetesClientEventBasedSecretsChangeDetector changeDetector = new KubernetesClientEventBasedSecretsChangeDetector(coreV1Api, environment, properties, strategy, locator, kubernetesNamespaceProvider);
    Thread controllerThread = new Thread(changeDetector::watch);
    controllerThread.setDaemon(true);
    controllerThread.start();
    await().timeout(Duration.ofSeconds(300)).until(() -> Mockito.mockingDetails(strategy).getInvocations().size() > 4);
    verify(strategy, atLeast(3)).reload();
}
Also used : OkHttpClient(okhttp3.OkHttpClient) KubernetesClientSecretsPropertySourceLocator(org.springframework.cloud.kubernetes.client.config.KubernetesClientSecretsPropertySourceLocator) V1ObjectMeta(io.kubernetes.client.openapi.models.V1ObjectMeta) Gson(com.google.gson.Gson) JSON(io.kubernetes.client.openapi.JSON) ConfigurationUpdateStrategy(org.springframework.cloud.kubernetes.commons.config.reload.ConfigurationUpdateStrategy) V1SecretList(io.kubernetes.client.openapi.models.V1SecretList) Watch(io.kubernetes.client.util.Watch) KubernetesNamespaceProvider(org.springframework.cloud.kubernetes.commons.KubernetesNamespaceProvider) CoreV1Api(io.kubernetes.client.openapi.apis.CoreV1Api) ClientBuilder(io.kubernetes.client.util.ClientBuilder) GsonBuilder(com.google.gson.GsonBuilder) ApiClient(io.kubernetes.client.openapi.ApiClient) V1ListMeta(io.kubernetes.client.openapi.models.V1ListMeta) WireMock.aResponse(com.github.tomakehurst.wiremock.client.WireMock.aResponse) ConfigReloadProperties(org.springframework.cloud.kubernetes.commons.config.reload.ConfigReloadProperties) MockPropertySource(org.springframework.mock.env.MockPropertySource) V1Secret(io.kubernetes.client.openapi.models.V1Secret) Test(org.junit.jupiter.api.Test)

Example 2 with ConfigReloadProperties

use of org.springframework.cloud.kubernetes.commons.config.reload.ConfigReloadProperties in project spring-cloud-kubernetes by spring-cloud.

the class HttpBasedConfigMapWatchChangeDetectorTests method setup.

@Before
public void setup() {
    EndpointAddress fooEndpointAddress = new EndpointAddress();
    fooEndpointAddress.setIp("127.0.0.1");
    fooEndpointAddress.setHostname("localhost");
    EndpointPort fooEndpointPort = new EndpointPort();
    // fooEndpointPort.setPort(wireMockRule.port());
    List<ServiceInstance> instances = new ArrayList<>();
    KubernetesServiceInstance fooServiceInstance = new KubernetesServiceInstance("foo", "foo", fooEndpointAddress.getIp(), fooEndpointPort.getPort(), new HashMap<>(), false);
    instances.add(fooServiceInstance);
    when(reactiveDiscoveryClient.getInstances(eq("foo"))).thenReturn(Flux.fromIterable(instances));
    MockEnvironment mockEnvironment = new MockEnvironment();
    ConfigReloadProperties configReloadProperties = new ConfigReloadProperties();
    configurationWatcherConfigurationProperties = new ConfigurationWatcherConfigurationProperties();
    WebClient webClient = WebClient.builder().build();
    changeDetector = new HttpBasedConfigMapWatchChangeDetector(mockEnvironment, configReloadProperties, client, updateStrategy, fabric8ConfigMapPropertySourceLocator, configurationWatcherConfigurationProperties, threadPoolTaskExecutor, webClient, reactiveDiscoveryClient);
}
Also used : KubernetesServiceInstance(org.springframework.cloud.kubernetes.commons.discovery.KubernetesServiceInstance) EndpointPort(io.fabric8.kubernetes.api.model.EndpointPort) ConfigReloadProperties(org.springframework.cloud.kubernetes.commons.config.reload.ConfigReloadProperties) MockEnvironment(org.springframework.mock.env.MockEnvironment) ArrayList(java.util.ArrayList) KubernetesServiceInstance(org.springframework.cloud.kubernetes.commons.discovery.KubernetesServiceInstance) ServiceInstance(org.springframework.cloud.client.ServiceInstance) WebClient(org.springframework.web.reactive.function.client.WebClient) EndpointAddress(io.fabric8.kubernetes.api.model.EndpointAddress) Before(org.junit.Before)

Example 3 with ConfigReloadProperties

use of org.springframework.cloud.kubernetes.commons.config.reload.ConfigReloadProperties in project spring-cloud-kubernetes by spring-cloud.

the class EventBasedConfigurationChangeDetectorTests method verifyConfigChangesAccountsForBootstrapPropertySources.

@SuppressWarnings("unchecked")
@Test
public void verifyConfigChangesAccountsForBootstrapPropertySources() {
    ConfigReloadProperties configReloadProperties = new ConfigReloadProperties();
    MockEnvironment env = new MockEnvironment();
    KubernetesClient k8sClient = mock(KubernetesClient.class);
    ConfigMap configMap = new ConfigMap();
    Map<String, String> data = new HashMap<>();
    data.put("foo", "bar");
    configMap.setData(data);
    MixedOperation<ConfigMap, ConfigMapList, Resource<ConfigMap>> mixedOperation = mock(MixedOperation.class);
    when(k8sClient.configMaps()).thenReturn(mixedOperation);
    Resource<ConfigMap> resource = mock(Resource.class);
    when(resource.get()).thenReturn(configMap);
    when(mixedOperation.withName(eq("myconfigmap"))).thenReturn(resource);
    when(mixedOperation.inNamespace("default")).thenReturn(mixedOperation);
    when(k8sClient.getNamespace()).thenReturn("default");
    Fabric8ConfigMapPropertySource fabric8ConfigMapPropertySource = new Fabric8ConfigMapPropertySource(k8sClient, "myconfigmap", "default", new MockEnvironment(), "", true, false);
    env.getPropertySources().addFirst(new BootstrapPropertySource<>(fabric8ConfigMapPropertySource));
    ConfigurationUpdateStrategy configurationUpdateStrategy = mock(ConfigurationUpdateStrategy.class);
    Fabric8ConfigMapPropertySourceLocator configMapLocator = mock(Fabric8ConfigMapPropertySourceLocator.class);
    EventBasedConfigMapChangeDetector detector = new EventBasedConfigMapChangeDetector(env, configReloadProperties, k8sClient, configurationUpdateStrategy, configMapLocator);
    List<Fabric8ConfigMapPropertySource> sources = detector.findPropertySources(Fabric8ConfigMapPropertySource.class);
    assertThat(sources.size()).isEqualTo(1);
    assertThat(sources.get(0).getProperty("foo")).isEqualTo("bar");
}
Also used : ConfigMapList(io.fabric8.kubernetes.api.model.ConfigMapList) KubernetesClient(io.fabric8.kubernetes.client.KubernetesClient) ConfigMap(io.fabric8.kubernetes.api.model.ConfigMap) HashMap(java.util.HashMap) Resource(io.fabric8.kubernetes.client.dsl.Resource) Fabric8ConfigMapPropertySource(org.springframework.cloud.kubernetes.fabric8.config.Fabric8ConfigMapPropertySource) ConfigurationUpdateStrategy(org.springframework.cloud.kubernetes.commons.config.reload.ConfigurationUpdateStrategy) ConfigReloadProperties(org.springframework.cloud.kubernetes.commons.config.reload.ConfigReloadProperties) Fabric8ConfigMapPropertySourceLocator(org.springframework.cloud.kubernetes.fabric8.config.Fabric8ConfigMapPropertySourceLocator) MockEnvironment(org.springframework.mock.env.MockEnvironment) Test(org.junit.jupiter.api.Test)

Example 4 with ConfigReloadProperties

use of org.springframework.cloud.kubernetes.commons.config.reload.ConfigReloadProperties in project spring-cloud-kubernetes by spring-cloud.

the class BusEventBasedConfigMapWatcherChangeDetectorTests method setup.

@Before
public void setup() {
    MockEnvironment mockEnvironment = new MockEnvironment();
    ConfigReloadProperties configReloadProperties = new ConfigReloadProperties();
    configurationWatcherConfigurationProperties = new ConfigurationWatcherConfigurationProperties();
    busProperties = new BusProperties();
    changeDetector = new BusEventBasedConfigMapWatcherChangeDetector(mockEnvironment, configReloadProperties, client, updateStrategy, fabric8ConfigMapPropertySourceLocator, busProperties, configurationWatcherConfigurationProperties, threadPoolTaskExecutor);
    changeDetector.setApplicationEventPublisher(applicationEventPublisher);
}
Also used : BusProperties(org.springframework.cloud.bus.BusProperties) ConfigReloadProperties(org.springframework.cloud.kubernetes.commons.config.reload.ConfigReloadProperties) MockEnvironment(org.springframework.mock.env.MockEnvironment) Before(org.junit.Before)

Example 5 with ConfigReloadProperties

use of org.springframework.cloud.kubernetes.commons.config.reload.ConfigReloadProperties in project spring-cloud-kubernetes by spring-cloud.

the class BusEventBasedSecretsWatcherChangeDetectorTests method setup.

@Before
public void setup() {
    MockEnvironment mockEnvironment = new MockEnvironment();
    ConfigReloadProperties configReloadProperties = new ConfigReloadProperties();
    configurationWatcherConfigurationProperties = new ConfigurationWatcherConfigurationProperties();
    busProperties = new BusProperties();
    changeDetector = new BusEventBasedSecretsWatcherChangeDetector(mockEnvironment, configReloadProperties, client, updateStrategy, fabric8SecretsPropertySourceLocator, busProperties, configurationWatcherConfigurationProperties, threadPoolTaskExecutor);
    changeDetector.setApplicationEventPublisher(applicationEventPublisher);
}
Also used : BusProperties(org.springframework.cloud.bus.BusProperties) ConfigReloadProperties(org.springframework.cloud.kubernetes.commons.config.reload.ConfigReloadProperties) MockEnvironment(org.springframework.mock.env.MockEnvironment) Before(org.junit.Before)

Aggregations

ConfigReloadProperties (org.springframework.cloud.kubernetes.commons.config.reload.ConfigReloadProperties)7 MockEnvironment (org.springframework.mock.env.MockEnvironment)5 Before (org.junit.Before)4 Test (org.junit.jupiter.api.Test)3 ConfigurationUpdateStrategy (org.springframework.cloud.kubernetes.commons.config.reload.ConfigurationUpdateStrategy)3 WireMock.aResponse (com.github.tomakehurst.wiremock.client.WireMock.aResponse)2 Gson (com.google.gson.Gson)2 GsonBuilder (com.google.gson.GsonBuilder)2 EndpointAddress (io.fabric8.kubernetes.api.model.EndpointAddress)2 EndpointPort (io.fabric8.kubernetes.api.model.EndpointPort)2 ApiClient (io.kubernetes.client.openapi.ApiClient)2 JSON (io.kubernetes.client.openapi.JSON)2 CoreV1Api (io.kubernetes.client.openapi.apis.CoreV1Api)2 V1ListMeta (io.kubernetes.client.openapi.models.V1ListMeta)2 V1ObjectMeta (io.kubernetes.client.openapi.models.V1ObjectMeta)2 ClientBuilder (io.kubernetes.client.util.ClientBuilder)2 Watch (io.kubernetes.client.util.Watch)2 ArrayList (java.util.ArrayList)2 HashMap (java.util.HashMap)2 OkHttpClient (okhttp3.OkHttpClient)2