google-nomulus/java/google/registry/monitoring/metrics/contrib/IncrementableMetricSubject.java
mcilwain 3a13a4d6b6 Add monitoring/metrics/contrib package to Nomulus release
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=150007228
2017-03-21 14:59:31 -04:00

91 lines
3.8 KiB
Java

// Copyright 2017 The Nomulus Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package google.registry.monitoring.metrics.contrib;
import static com.google.common.truth.Truth.assertAbout;
import com.google.common.truth.FailureStrategy;
import com.google.common.truth.SubjectFactory;
import google.registry.monitoring.metrics.IncrementableMetric;
import google.registry.monitoring.metrics.MetricPoint;
import javax.annotation.Nullable;
/**
* Truth subject for the {@link IncrementableMetric} class.
*
* <p>For use with the Google <a href="https://google.github.io/truth/">Truth</a> framework. Usage:
*
* <pre> assertThat(myIncrementableMetric)
* .hasValueForLabels(5, "label1", "label2", "label3")
* .and()
* .hasAnyValueForLabels("label1", "label2", "label4")
* .and()
* .hasNoOtherValues();
* assertThat(myIncrementableMetric)
* .doesNotHaveAnyValueForLabels("label1", "label2");
* </pre>
*
* <p>The assertions treat a value of 0 as no value at all. This is not how the data is actually
* stored; zero is a valid value for incrementable metrics, and they do in fact have a value of zero
* after they are reset. But it's difficult to write assertions about expected metric data when any
* number of zero values can also be present, so they are screened out for convenience.
*/
public final class IncrementableMetricSubject
extends AbstractMetricSubject<Long, IncrementableMetric, IncrementableMetricSubject> {
/** {@link SubjectFactory} for assertions about {@link IncrementableMetric} objects. */
private static final SubjectFactory<IncrementableMetricSubject, IncrementableMetric>
SUBJECT_FACTORY =
new SubjectFactory<IncrementableMetricSubject, IncrementableMetric>() {
// The Truth extensibility documentation indicates that the target should be nullable.
@Override
public IncrementableMetricSubject getSubject(
FailureStrategy failureStrategy, @Nullable IncrementableMetric target) {
return new IncrementableMetricSubject(failureStrategy, target);
}
};
/** Static assertThat({@link IncrementableMetric}) shortcut method. */
public static IncrementableMetricSubject assertThat(@Nullable IncrementableMetric metric) {
return assertAbout(SUBJECT_FACTORY).that(metric);
}
private IncrementableMetricSubject(FailureStrategy strategy, IncrementableMetric actual) {
super(strategy, actual);
}
/**
* Asserts that the metric has a given value for the specified label values. This is a convenience
* method that takes a long instead of a Long, for ease of use.
*/
public And<IncrementableMetricSubject> hasValueForLabels(long value, String... labels) {
return hasValueForLabels(Long.valueOf(value), labels);
}
/**
* Returns an indication to {@link AbstractMetricSubject#hasNoOtherValues} on whether a {@link
* MetricPoint} has a non-zero value.
*/
@Override
protected boolean hasDefaultValue(MetricPoint<Long> metricPoint) {
return metricPoint.value() == 0L;
}
/** Returns an appropriate string representation of a metric value for use in error messages. */
@Override
protected String getMessageRepresentation(Long value) {
return String.valueOf(value);
}
}