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

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

There is a newer version: 4.0.0
Show newest version
package io.fabric8.openshift.api.model;

import org.assertj.core.api.AbstractAssert;
import org.assertj.core.api.Assertions;


import io.fabric8.kubernetes.assertions.AssertFactory;
import io.fabric8.kubernetes.assertions.NavigationListAssert;

import static org.assertj.core.api.Assertions.assertThat;
import static io.fabric8.kubernetes.assertions.internal.Assertions.assertThat;
import static io.fabric8.openshift.assertions.Assertions.assertThat;

/**
 * Abstract base class for {@link PolicyRule} specific assertions - Generated by CustomAssertionGenerator.
 */
public abstract class AbstractPolicyRuleAssert, A extends PolicyRule> extends AbstractAssert {

  /**
   * Creates a new {@link AbstractPolicyRuleAssert} to make assertions on actual PolicyRule.
   * @param actual the PolicyRule we want to make assertions on.
   */
  protected AbstractPolicyRuleAssert(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 PolicyRule 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(io.fabric8.kubernetes.assertions.Assertions.joinDescription(this, "additionalProperties"));
  }


  /**
   * Navigates to the property apiGroups so that assertions can be done on it
   */
  public NavigationListAssert apiGroups()  {
    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.getApiGroups(), assertFactory);
    answer.describedAs(io.fabric8.kubernetes.assertions.Assertions.joinDescription(this, "apiGroups"));
    return answer;
  }


  /**
   * Navigates to the property attributeRestrictions so that assertions can be done on it
   */
  public io.fabric8.kubernetes.api.model.HasMetadataAssert attributeRestrictions()  {
    // check that actual PolicyRule we want to make assertions on is not null.
    isNotNull();

    // return the assertion for the property
    return (io.fabric8.kubernetes.api.model.HasMetadataAssert) assertThat(actual.getAttributeRestrictions()).describedAs(io.fabric8.kubernetes.assertions.Assertions.joinDescription(this, "attributeRestrictions"));
  }


  /**
   * Navigates to the property nonResourceURLs so that assertions can be done on it
   */
  public NavigationListAssert nonResourceURLs()  {
    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.getNonResourceURLs(), assertFactory);
    answer.describedAs(io.fabric8.kubernetes.assertions.Assertions.joinDescription(this, "nonResourceURLs"));
    return answer;
  }


  /**
   * Navigates to the property resourceNames so that assertions can be done on it
   */
  public NavigationListAssert resourceNames()  {
    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.getResourceNames(), assertFactory);
    answer.describedAs(io.fabric8.kubernetes.assertions.Assertions.joinDescription(this, "resourceNames"));
    return answer;
  }


  /**
   * Navigates to the property resources so that assertions can be done on it
   */
  public NavigationListAssert resources()  {
    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.getResources(), assertFactory);
    answer.describedAs(io.fabric8.kubernetes.assertions.Assertions.joinDescription(this, "resources"));
    return answer;
  }


  /**
   * Navigates to the property verbs so that assertions can be done on it
   */
  public NavigationListAssert verbs()  {
    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.getVerbs(), assertFactory);
    answer.describedAs(io.fabric8.kubernetes.assertions.Assertions.joinDescription(this, "verbs"));
    return answer;
  }


}