io.fabric8.openshift.api.model.AbstractBuildSourceAssert 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
The newest version!
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 BuildSource} specific assertions - Generated by CustomAssertionGenerator.
*/
public abstract class AbstractBuildSourceAssert, A extends BuildSource> extends AbstractAssert {
/**
* Creates a new {@link AbstractBuildSourceAssert}
to make assertions on actual BuildSource.
* @param actual the BuildSource we want to make assertions on.
*/
protected AbstractBuildSourceAssert(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 BuildSource 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 binary so that assertions can be done on it
*/
public BinaryBuildSourceAssert binary() {
// check that actual BuildSource we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (BinaryBuildSourceAssert) assertThat(actual.getBinary()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "binary"));
}
/**
* Navigates to the property contextDir so that assertions can be done on it
*/
public org.assertj.core.api.StringAssert contextDir() {
// check that actual BuildSource we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.StringAssert) assertThat(actual.getContextDir()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "contextDir"));
}
/**
* Navigates to the property dockerfile so that assertions can be done on it
*/
public org.assertj.core.api.StringAssert dockerfile() {
// check that actual BuildSource we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.StringAssert) assertThat(actual.getDockerfile()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "dockerfile"));
}
/**
* Navigates to the property git so that assertions can be done on it
*/
public GitBuildSourceAssert git() {
// check that actual BuildSource we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (GitBuildSourceAssert) assertThat(actual.getGit()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "git"));
}
/**
* Navigates to the property images so that assertions can be done on it
*/
public NavigationListAssert images() {
isNotNull();
// return the assertion for the property
AssertFactory assertFactory = new AssertFactory() {
public ImageSourceAssert createAssert(ImageSource t) {
return (ImageSourceAssert) assertThat(t);
}
};
NavigationListAssert answer = new NavigationListAssert(actual.getImages(), assertFactory);
answer.describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "images"));
return answer;
}
/**
* Navigates to the property secrets so that assertions can be done on it
*/
public NavigationListAssert secrets() {
isNotNull();
// return the assertion for the property
AssertFactory assertFactory = new AssertFactory() {
public SecretBuildSourceAssert createAssert(SecretBuildSource t) {
return (SecretBuildSourceAssert) assertThat(t);
}
};
NavigationListAssert answer = new NavigationListAssert(actual.getSecrets(), assertFactory);
answer.describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "secrets"));
return answer;
}
/**
* Navigates to the property sourceSecret so that assertions can be done on it
*/
public io.fabric8.kubernetes.api.model.LocalObjectReferenceAssert sourceSecret() {
// check that actual BuildSource we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (io.fabric8.kubernetes.api.model.LocalObjectReferenceAssert) assertThat(actual.getSourceSecret()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "sourceSecret"));
}
/**
* Navigates to the property type so that assertions can be done on it
*/
public org.assertj.core.api.StringAssert type() {
// check that actual BuildSource 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 - 2025 Weber Informatics LLC | Privacy Policy