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

io.fabric8.openshift.api.model.AbstractOAuthClientAssert Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show 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 OAuthClient} specific assertions - Generated by CustomAssertionGenerator.
 */
public abstract class AbstractOAuthClientAssert, A extends OAuthClient> extends AbstractAssert {

  /**
   * Creates a new {@link AbstractOAuthClientAssert} to make assertions on actual OAuthClient.
   * @param actual the OAuthClient we want to make assertions on.
   */
  protected AbstractOAuthClientAssert(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 OAuthClient 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 additionalSecrets so that assertions can be done on it
   */
  public NavigationListAssert additionalSecrets()  {
    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.getAdditionalSecrets(), assertFactory);
    answer.describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "additionalSecrets"));
    return answer;
  }


  /**
   * Navigates to the property apiVersion so that assertions can be done on it
   */
  public org.assertj.core.api.StringAssert apiVersion()  {
    // check that actual OAuthClient 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 grantMethod so that assertions can be done on it
   */
  public org.assertj.core.api.StringAssert grantMethod()  {
    // check that actual OAuthClient we want to make assertions on is not null.
    isNotNull();

    // return the assertion for the property
    return (org.assertj.core.api.StringAssert) assertThat(actual.getGrantMethod()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "grantMethod"));
  }


  /**
   * Navigates to the property kind so that assertions can be done on it
   */
  public org.assertj.core.api.StringAssert kind()  {
    // check that actual OAuthClient 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 OAuthClient 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 redirectURIs so that assertions can be done on it
   */
  public NavigationListAssert redirectURIs()  {
    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.getRedirectURIs(), assertFactory);
    answer.describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "redirectURIs"));
    return answer;
  }


  /**
   * Navigates to the property respondWithChallenges so that assertions can be done on it
   */
  public org.assertj.core.api.BooleanAssert respondWithChallenges()  {
    // check that actual OAuthClient we want to make assertions on is not null.
    isNotNull();

    // return the assertion for the property
    return (org.assertj.core.api.BooleanAssert) assertThat(actual.getRespondWithChallenges()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "respondWithChallenges"));
  }


  /**
   * Navigates to the property scopeRestrictions so that assertions can be done on it
   */
  public NavigationListAssert scopeRestrictions()  {
    isNotNull();

    // return the assertion for the property
    AssertFactory assertFactory = new AssertFactory() {
      public ScopeRestrictionAssert createAssert(ScopeRestriction t) {
        return (ScopeRestrictionAssert) assertThat(t);
      }
    };
    NavigationListAssert answer = new NavigationListAssert(actual.getScopeRestrictions(), assertFactory);
    answer.describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "scopeRestrictions"));
    return answer;
  }


  /**
   * Navigates to the property secret so that assertions can be done on it
   */
  public org.assertj.core.api.StringAssert secret()  {
    // check that actual OAuthClient we want to make assertions on is not null.
    isNotNull();

    // return the assertion for the property
    return (org.assertj.core.api.StringAssert) assertThat(actual.getSecret()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "secret"));
  }


}