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

io.opentelemetry.sdk.testing.assertj.ExponentialHistogramAssert Maven / Gradle / Ivy

/*
 * Copyright The OpenTelemetry Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package io.opentelemetry.sdk.testing.assertj;

import static org.assertj.core.api.Assertions.assertThat;

import io.opentelemetry.sdk.metrics.data.AggregationTemporality;
import io.opentelemetry.sdk.metrics.data.ExponentialHistogramData;
import java.util.Arrays;
import java.util.function.Consumer;
import org.assertj.core.api.AbstractAssert;

/**
 * Test assertions for {@link ExponentialHistogramData}.
 *
 * @since 1.23.0
 */
public final class ExponentialHistogramAssert
    extends AbstractAssert {

  ExponentialHistogramAssert(ExponentialHistogramData actual) {
    super(actual, ExponentialHistogramAssert.class);
  }

  /** Ensures that {@code aggregation_temporality} field is {@code CUMULATIVE}. */
  public ExponentialHistogramAssert isCumulative() {
    isNotNull();
    if (actual.getAggregationTemporality() != AggregationTemporality.CUMULATIVE) {
      failWithActualExpectedAndMessage(
          actual,
          "aggregationTemporality: CUMULATIVE",
          "Expected Histogram to have cumulative aggregation but found <%s>",
          actual.getAggregationTemporality());
    }
    return this;
  }

  /** Ensures that {@code aggregation_temporality} field is {@code DELTA}. */
  public ExponentialHistogramAssert isDelta() {
    isNotNull();
    if (actual.getAggregationTemporality() != AggregationTemporality.DELTA) {
      failWithActualExpectedAndMessage(
          actual,
          "aggregationTemporality: DELTA",
          "Expected Histogram to have cumulative aggregation but found <%s>",
          AggregationTemporality.DELTA,
          actual.getAggregationTemporality());
    }
    return this;
  }

  /**
   * Asserts the exponential histogram has points matching all of the given assertions and no more,
   * in any order.
   */
  @SafeVarargs
  @SuppressWarnings("varargs")
  public final ExponentialHistogramAssert hasPointsSatisfying(
      Consumer... assertions) {
    return hasPointsSatisfying(Arrays.asList(assertions));
  }

  /**
   * Asserts the exponential histogram has points matching all of the given assertions and no more,
   * in any order.
   */
  public ExponentialHistogramAssert hasPointsSatisfying(
      Iterable> assertions) {
    assertThat(actual.getPoints())
        .satisfiesExactlyInAnyOrder(
            AssertUtil.toConsumers(assertions, ExponentialHistogramPointAssert::new));
    return this;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy