io.fabric8.openshift.api.model.AbstractImageSignatureAssert 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.openshift.api.model;
import org.assertj.core.api.AbstractAssert;
import org.assertj.core.api.Assertions;
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 ImageSignature} specific assertions - Generated by CustomAssertionGenerator.
*/
public abstract class AbstractImageSignatureAssert, A extends ImageSignature> extends AbstractAssert {
/**
* Creates a new {@link AbstractImageSignatureAssert}
to make assertions on actual ImageSignature.
* @param actual the ImageSignature we want to make assertions on.
*/
protected AbstractImageSignatureAssert(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 ImageSignature 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 apiVersion so that assertions can be done on it
*/
public org.assertj.core.api.StringAssert apiVersion() {
// check that actual ImageSignature we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.StringAssert) assertThat(actual.getApiVersion()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "apiVersion"));
}
/**
* Navigates to the property conditions so that assertions can be done on it
*/
public NavigationListAssert conditions() {
isNotNull();
// return the assertion for the property
AssertFactory assertFactory = new AssertFactory() {
public SignatureConditionAssert createAssert(SignatureCondition t) {
return (SignatureConditionAssert) assertThat(t);
}
};
NavigationListAssert answer = new NavigationListAssert(actual.getConditions(), assertFactory);
answer.describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "conditions"));
return answer;
}
/**
* Navigates to the property content so that assertions can be done on it
*/
public org.assertj.core.api.StringAssert content() {
// check that actual ImageSignature we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.StringAssert) assertThat(actual.getContent()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "content"));
}
/**
* Navigates to the property created so that assertions can be done on it
*/
public org.assertj.core.api.StringAssert created() {
// check that actual ImageSignature we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.StringAssert) assertThat(actual.getCreated()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "created"));
}
/**
* Navigates to the property imageIdentity so that assertions can be done on it
*/
public org.assertj.core.api.StringAssert imageIdentity() {
// check that actual ImageSignature we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.StringAssert) assertThat(actual.getImageIdentity()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "imageIdentity"));
}
/**
* Navigates to the property issuedBy so that assertions can be done on it
*/
public SignatureIssuerAssert issuedBy() {
// check that actual ImageSignature we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (SignatureIssuerAssert) assertThat(actual.getIssuedBy()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "issuedBy"));
}
/**
* Navigates to the property issuedTo so that assertions can be done on it
*/
public SignatureSubjectAssert issuedTo() {
// check that actual ImageSignature we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (SignatureSubjectAssert) assertThat(actual.getIssuedTo()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "issuedTo"));
}
/**
* Navigates to the property kind so that assertions can be done on it
*/
public org.assertj.core.api.StringAssert kind() {
// check that actual ImageSignature we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.StringAssert) assertThat(actual.getKind()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "kind"));
}
/**
* Navigates to the property metadata so that assertions can be done on it
*/
public io.fabric8.kubernetes.api.model.ObjectMetaAssert metadata() {
// check that actual ImageSignature we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (io.fabric8.kubernetes.api.model.ObjectMetaAssert) assertThat(actual.getMetadata()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "metadata"));
}
/**
* Navigates to the property signedClaims so that assertions can be done on it
*/
public org.assertj.core.api.MapAssert signedClaims() {
// check that actual ImageSignature we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.MapAssert) assertThat(actual.getSignedClaims()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "signedClaims"));
}
/**
* Navigates to the property type so that assertions can be done on it
*/
public org.assertj.core.api.StringAssert type() {
// check that actual ImageSignature 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