io.fabric8.kubernetes.api.model.AbstractServiceSpecAssert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assertions Show documentation
Show all versions of assertions Show documentation
A port of Kubernetes Assertions Library by Fabric8
package io.fabric8.kubernetes.api.model;
import org.assertj.core.api.AbstractAssert;
import org.assertj.core.api.Assertions;
import org.assertj.core.util.Objects;
import org.assertj.core.api.AssertFactory;
import com.stakater.kubernetes.assertions.NavigationListAssert;
import static org.assertj.core.api.Assertions.assertThat;
import static io.fabric8.kubernetes.assertions.internal.Assertions.assertThat;
/**
* Abstract base class for {@link ServiceSpec} specific assertions - Generated by CustomAssertionGenerator.
*/
public abstract class AbstractServiceSpecAssert, A extends ServiceSpec> extends AbstractAssert {
/**
* Creates a new {@link AbstractServiceSpecAssert}
to make assertions on actual ServiceSpec.
* @param actual the ServiceSpec we want to make assertions on.
*/
protected AbstractServiceSpecAssert(A actual, Class selfType) {
super(actual, selfType);
}
/**
* Navigates to the property additionalProperties so that assertions can be done on it
*/
public org.assertj.core.api.MapAssert additionalProperties() {
// check that actual ServiceSpec we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.MapAssert) assertThat(actual.getAdditionalProperties()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "additionalProperties"));
}
/**
* Navigates to the property clusterIP so that assertions can be done on it
*/
public org.assertj.core.api.StringAssert clusterIP() {
// check that actual ServiceSpec we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.StringAssert) assertThat(actual.getClusterIP()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "clusterIP"));
}
/**
* Navigates to the property externalIPs so that assertions can be done on it
*/
public NavigationListAssert externalIPs() {
isNotNull();
// return the assertion for the property
AssertFactory assertFactory = new AssertFactory() {
public org.assertj.core.api.StringAssert createAssert(String t) {
return (org.assertj.core.api.StringAssert) assertThat(t);
}
};
NavigationListAssert answer = new NavigationListAssert(actual.getExternalIPs(), assertFactory);
answer.describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "externalIPs"));
return answer;
}
/**
* Navigates to the property externalName so that assertions can be done on it
*/
public org.assertj.core.api.StringAssert externalName() {
// check that actual ServiceSpec we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.StringAssert) assertThat(actual.getExternalName()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "externalName"));
}
/**
* Navigates to the property externalTrafficPolicy so that assertions can be done on it
*/
public org.assertj.core.api.StringAssert externalTrafficPolicy() {
// check that actual ServiceSpec we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.StringAssert) assertThat(actual.getExternalTrafficPolicy()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "externalTrafficPolicy"));
}
/**
* Verifies that the actual ServiceSpec's healthCheckNodePort is equal to the given one.
* @param healthCheckNodePort the given healthCheckNodePort to compare the actual ServiceSpec's healthCheckNodePort to.
* @return this assertion object.
* @throws AssertionError - if the actual ServiceSpec's healthCheckNodePort is not equal to the given one.
*/
public S hasHealthCheckNodePort(Integer healthCheckNodePort) {
// check that actual ServiceSpec we want to make assertions on is not null.
isNotNull();
// overrides the default error message with a more explicit one
String assertjErrorMessage = "\nExpecting healthCheckNodePort of:\n <%s>\nto be:\n <%s>\nbut was:\n <%s>";
// null safe check
Integer actualHealthCheckNodePort = actual.getHealthCheckNodePort();
if (!Objects.areEqual(actualHealthCheckNodePort, healthCheckNodePort)) {
failWithMessage(assertjErrorMessage, actual, healthCheckNodePort, actualHealthCheckNodePort);
}
// return the current assertion for method chaining
return myself;
}
/**
* Navigates to the property loadBalancerIP so that assertions can be done on it
*/
public org.assertj.core.api.StringAssert loadBalancerIP() {
// check that actual ServiceSpec we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.StringAssert) assertThat(actual.getLoadBalancerIP()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "loadBalancerIP"));
}
/**
* Navigates to the property loadBalancerSourceRanges so that assertions can be done on it
*/
public NavigationListAssert loadBalancerSourceRanges() {
isNotNull();
// return the assertion for the property
AssertFactory assertFactory = new AssertFactory() {
public org.assertj.core.api.StringAssert createAssert(String t) {
return (org.assertj.core.api.StringAssert) assertThat(t);
}
};
NavigationListAssert answer = new NavigationListAssert(actual.getLoadBalancerSourceRanges(), assertFactory);
answer.describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "loadBalancerSourceRanges"));
return answer;
}
/**
* Navigates to the property ports so that assertions can be done on it
*/
public NavigationListAssert ports() {
isNotNull();
// return the assertion for the property
AssertFactory assertFactory = new AssertFactory() {
public ServicePortAssert createAssert(ServicePort t) {
return (ServicePortAssert) assertThat(t);
}
};
NavigationListAssert answer = new NavigationListAssert(actual.getPorts(), assertFactory);
answer.describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "ports"));
return answer;
}
/**
* Navigates to the property selector so that assertions can be done on it
*/
public org.assertj.core.api.MapAssert selector() {
// check that actual ServiceSpec we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.MapAssert) assertThat(actual.getSelector()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "selector"));
}
/**
* Navigates to the property sessionAffinity so that assertions can be done on it
*/
public org.assertj.core.api.StringAssert sessionAffinity() {
// check that actual ServiceSpec we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.StringAssert) assertThat(actual.getSessionAffinity()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "sessionAffinity"));
}
/**
* Navigates to the property type so that assertions can be done on it
*/
public org.assertj.core.api.StringAssert type() {
// check that actual ServiceSpec we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.StringAssert) assertThat(actual.getType()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "type"));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy