All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ap4k.testing.kubernetes.KubernetesExtension Maven / Gradle / Ivy

There is a newer version: 0.5.0
Show newest version
/**
 * Copyright 2018 The original authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 **/
package io.ap4k.testing.kubernetes;

import io.ap4k.deps.kubernetes.api.model.KubernetesList;
import io.ap4k.deps.kubernetes.client.KubernetesClient;
import io.ap4k.deps.kubernetes.client.VersionInfo;
import io.ap4k.docker.config.DockerBuildConfig;
import io.ap4k.docker.hook.DockerBuildHook;
import io.ap4k.testing.WithKubernetesClient;
import io.ap4k.testing.WithProject;
import io.ap4k.testing.WithPod;
import org.junit.jupiter.api.extension.AfterAllCallback;
import org.junit.jupiter.api.extension.BeforeAllCallback;
import org.junit.jupiter.api.extension.ConditionEvaluationResult;
import org.junit.jupiter.api.extension.ExtensionContext;
import org.junit.jupiter.api.extension.ExecutionCondition;

import java.util.Arrays;
import java.util.concurrent.TimeUnit;

public class KubernetesExtension implements  ExecutionCondition, BeforeAllCallback, AfterAllCallback,
  WithPod, WithKubernetesClient, WithKubernetesResources, WithProject, WithDockerBuildConifg {

  @Override
  public ConditionEvaluationResult evaluateExecutionCondition(ExtensionContext context) {
    try {
      VersionInfo version = getKubernetesClient(context).getVersion();
      return ConditionEvaluationResult.enabled("Found version:" + version);
    } catch (Throwable t) {
      return ConditionEvaluationResult.disabled("Could not communicate with KubernetesExtension API server.");
    }
  }

  @Override
  public void beforeAll(ExtensionContext context) throws Exception {
    KubernetesClient client = getKubernetesClient(context);
    KubernetesList list = getKubernetesResources(context);

    DockerBuildConfig dockerBuildConfig = getDockerBuildConfig();
    DockerBuildHook build = new DockerBuildHook(getProject(), dockerBuildConfig);
    build.run();

    list.getItems().stream()
      .forEach(i -> {
        client.resourceList(i).createOrReplace();
        System.out.println("Created: " + i.getKind() + " name:" + i.getMetadata().getName() + ".");
      });

    client.resourceList(list).waitUntilReady(5, TimeUnit.MINUTES);
  }

  @Override
  public void postProcessTestInstance(Object testInstance, ExtensionContext context) throws Exception {
    Arrays.stream( testInstance.getClass().getDeclaredFields())
      .forEach(f -> {
        injectKubernetesClient(context, testInstance, f);
        injectKubernetesResources(context, testInstance, f);
        injectPod(context, testInstance, f);
      });
  }

  @Override
  public void afterAll(ExtensionContext context) {
    getKubernetesResources(context).getItems().stream().forEach(r -> {
      System.out.println("Deleting: " + r.getKind() + " name:" +r.getMetadata().getName()+ " status:"+ getKubernetesClient(context).resource(r).cascading(true).delete());
    });
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy