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

io.dekorate.testing.ServicePresentCondition Maven / Gradle / Ivy

There is a newer version: 4.1.4
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.dekorate.testing;

import java.util.Optional;

import org.junit.jupiter.api.extension.ConditionEvaluationResult;
import org.junit.jupiter.api.extension.ExecutionCondition;
import org.junit.jupiter.api.extension.ExtensionContext;

import io.dekorate.testing.annotation.OnServicePresentCondition;
import io.dekorate.utils.Strings;
import io.fabric8.kubernetes.api.model.Service;
import io.fabric8.kubernetes.client.KubernetesClient;

public class ServicePresentCondition implements ExecutionCondition, WithKubernetesClient {

  @Override
  public ConditionEvaluationResult evaluateExecutionCondition(ExtensionContext context) {
    Optional annotation = context.getElement()
        .map(e -> e.getAnnotation(OnServicePresentCondition.class));
    if (!annotation.isPresent()) {
      return ConditionEvaluationResult.enabled("Condition not found!");
    }
    OnServicePresentCondition condition = annotation.get();
    try {
      KubernetesClient client = getKubernetesClient(context);
      String namespace = Strings.isNotNullOrEmpty(condition.namespace()) ? condition.namespace() : client.getNamespace();
      Service service = getKubernetesClient(context).services().inNamespace(namespace).withName(condition.value()).get();
      if (service != null) {
        return ConditionEvaluationResult
            .enabled("Found service:" + condition.value() + " in namespace:" + namespace + " .");
      } else {
        return ConditionEvaluationResult
            .disabled("Could not find service:" + condition.value() + " in namespace:" + namespace + " .");
      }
    } catch (Throwable t) {
      return ConditionEvaluationResult.disabled("Could not lookup for service.");
    }
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy