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

com.google.inject.testing.throwingproviders.CheckedProviderSubject Maven / Gradle / Ivy

The newest version!
package com.google.inject.testing.throwingproviders;

import static com.google.common.truth.Fact.fact;
import static com.google.common.truth.Fact.simpleFact;
import static com.google.common.truth.Truth.assertAbout;

import com.google.common.truth.FailureMetadata;
import com.google.common.truth.Subject;
import com.google.common.truth.ThrowableSubject;
import com.google.inject.throwingproviders.CheckedProvider;
import javax.annotation.Nullable;

/**
 * Truth {@link Subject} for use with {@link CheckedProvider} classes.
 *
 * @author [email protected] (Russ Harmon)
 */
public final class CheckedProviderSubject> extends Subject {

  private static final class CheckedProviderSubjectFactory>
      implements Subject.Factory, P> {
    @Override
    public CheckedProviderSubject createSubject(
        FailureMetadata failureMetadata, @Nullable P target) {
      return new CheckedProviderSubject(failureMetadata, target);
    }
  }

  public static >
      Subject.Factory, P> checkedProviders() {
    return new CheckedProviderSubjectFactory<>();
  }

  public static > CheckedProviderSubject assertThat(
      @Nullable P provider) {
    return assertAbout(CheckedProviderSubject.checkedProviders()).that(provider);
  }

  private final P provider;

  private CheckedProviderSubject(FailureMetadata failureMetadata, @Nullable P subject) {
    super(failureMetadata, subject);
    this.provider = subject;
  }

  /**
   * Allows for assertions on the value provided by this provider.
   *
   * 

The value provided by a checked provider is the object returned by a call to {@link * CheckedProvider#get} * * @return a {@link Subject} for asserting against the return value of {@link CheckedProvider#get} */ public Subject providedValue() { T got; try { got = provider.get(); } catch (Exception e) { failWithCauseAndMessage(e, "checked provider was not expected to throw an exception"); return ignoreCheck().that(new Object()); } return check("get()").that(got); } /** * Allows for assertions on the exception thrown by this provider. * *

The exception thrown by a checked provider is the {@link Throwable} thrown by a call to * {@link CheckedProvider#get} * * @return a {@link ThrowableSubject} for asserting against the {@link Throwable} thrown by {@link * CheckedProvider#get} */ public ThrowableSubject thrownException() { T got; try { got = provider.get(); } catch (Throwable e) { return check("get()'s exception").that(e); } failWithoutActual(simpleFact("expected to throw"), fact("but provided", got)); return ignoreCheck().that(new Throwable()); } /* * Hack to get Truth to include a given exception as the cause of the failure. It works by letting * us delegate to a new Subject whose value under test is the exception. Because that makes the * assertion "about" the exception, Truth includes it as a cause. */ private void failWithCauseAndMessage(Throwable cause, String message) { check("get()").about(unexpectedFailures()).that(cause).doFail(message); } private static Factory unexpectedFailures() { return new Factory() { @Override public UnexpectedFailureSubject createSubject(FailureMetadata metadata, Throwable actual) { return new UnexpectedFailureSubject(metadata, actual); } }; } private static final class UnexpectedFailureSubject extends Subject { UnexpectedFailureSubject(FailureMetadata metadata, @Nullable Throwable actual) { super(metadata, actual); } void doFail(String message) { failWithoutActual(simpleFact(message)); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy