google-nomulus/javatests/google/registry/monitoring/metrics/EventMetricTest.java
shikhman f76bc70f91 Preserve test logs and test summary output for Kokoro CI runs
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=135494972
2016-10-14 16:57:43 -04:00

317 lines
11 KiB
Java

// Copyright 2016 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;
import static com.google.common.truth.Truth.assertThat;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableRangeMap;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Range;
import org.joda.time.Instant;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/** Unit tests for {@link EventMetric}. */
@RunWith(JUnit4.class)
public class EventMetricTest {
private final DistributionFitter distributionFitter = CustomFitter.create(ImmutableSet.of(5.0));
private EventMetric metric;
@Rule public final ExpectedException thrown = ExpectedException.none();
@Before
public void setUp() {
metric =
new EventMetric(
"/metric",
"description",
"vdn",
distributionFitter,
ImmutableSet.of(LabelDescriptor.create("label1", "bar")));
}
@Test
public void testGetCardinality_reflectsCurrentCardinality() {
assertThat(metric.getCardinality()).isEqualTo(0);
metric.record(1.0, "foo");
assertThat(metric.getCardinality()).isEqualTo(1);
metric.record(1.0, "bar");
assertThat(metric.getCardinality()).isEqualTo(2);
metric.record(1.0, "foo");
assertThat(metric.getCardinality()).isEqualTo(2);
}
@Test
public void testIncrementBy_wrongLabelValueCount_throwsException() {
thrown.expect(IllegalArgumentException.class);
thrown.expectMessage(
"The count of labelValues must be equal to the underlying Metric's count of labels.");
metric.record(1.0, "blah", "blah");
}
@Test
public void testRecord_updatesDistribution() {
assertThat(metric.getTimestampedValues()).isEmpty();
metric.recordMultiple(1.0, 1, new Instant(1337), ImmutableList.of("test_value1"));
assertThat(metric.getTimestampedValues(new Instant(1338)))
.containsExactly(
MetricPoint.create(
metric,
ImmutableList.of("test_value1"),
new Instant(1337),
new Instant(1338),
ImmutableDistribution.create(
1.0,
0.0,
1L,
ImmutableRangeMap.<Double, Long>builder()
.put(Range.lessThan(5.0), 1L)
.put(Range.atLeast(5.0), 0L)
.build(),
distributionFitter)));
metric.record(10.0, "test_value1");
assertThat(metric.getTimestampedValues(new Instant(1338)))
.containsExactly(
MetricPoint.create(
metric,
ImmutableList.of("test_value1"),
new Instant(1337),
new Instant(1338),
ImmutableDistribution.create(
5.5,
40.5,
2L,
ImmutableRangeMap.<Double, Long>builder()
.put(Range.lessThan(5.0), 1L)
.put(Range.atLeast(5.0), 1L)
.build(),
distributionFitter)));
}
@Test
public void testRecord_multipleValues_updatesDistributions() {
assertThat(metric.getTimestampedValues()).isEmpty();
metric.recordMultiple(1.0, 3, new Instant(1337), ImmutableList.of("test_value1"));
assertThat(metric.getTimestampedValues(new Instant(1338)))
.containsExactly(
MetricPoint.create(
metric,
ImmutableList.of("test_value1"),
new Instant(1337),
new Instant(1338),
ImmutableDistribution.create(
1.0,
0,
3L,
ImmutableRangeMap.<Double, Long>builder()
.put(Range.lessThan(5.0), 3L)
.put(Range.atLeast(5.0), 0L)
.build(),
distributionFitter)));
metric.recordMultiple(2.0, 5, new Instant(1337), ImmutableList.of("test_value1"));
metric.recordMultiple(7.0, 10, new Instant(1337), ImmutableList.of("test_value2"));
assertThat(metric.getTimestampedValues(new Instant(1338)))
.containsExactly(
MetricPoint.create(
metric,
ImmutableList.of("test_value1"),
new Instant(1337),
new Instant(1338),
ImmutableDistribution.create(
1.625,
1.875,
8L,
ImmutableRangeMap.<Double, Long>builder()
.put(Range.lessThan(5.0), 8L)
.put(Range.atLeast(5.0), 0L)
.build(),
distributionFitter)),
MetricPoint.create(
metric,
ImmutableList.of("test_value2"),
new Instant(1337),
new Instant(1338),
ImmutableDistribution.create(
7.0,
0,
10L,
ImmutableRangeMap.<Double, Long>builder()
.put(Range.lessThan(5.0), 0L)
.put(Range.atLeast(5.0), 10L)
.build(),
distributionFitter)));
}
@Test
public void testResetAll_resetsAllValuesAndStartTimestamps() {
metric.recordMultiple(3.0, 1, new Instant(1336), ImmutableList.of("foo"));
metric.recordMultiple(5.0, 1, new Instant(1337), ImmutableList.of("moo"));
assertThat(metric.getTimestampedValues(new Instant(1338)))
.containsExactly(
MetricPoint.create(
metric,
ImmutableList.of("foo"),
new Instant(1336),
new Instant(1338),
ImmutableDistribution.create(
3.0,
0.0,
1L,
ImmutableRangeMap.<Double, Long>builder()
.put(Range.lessThan(5.0), 1L)
.put(Range.atLeast(5.0), 0L)
.build(),
distributionFitter)),
MetricPoint.create(
metric,
ImmutableList.of("moo"),
new Instant(1337),
new Instant(1338),
ImmutableDistribution.create(
5.0,
0,
1L,
ImmutableRangeMap.<Double, Long>builder()
.put(Range.lessThan(5.0), 0L)
.put(Range.atLeast(5.0), 1L)
.build(),
distributionFitter)));
metric.reset(new Instant(1339));
assertThat(metric.getTimestampedValues(new Instant(1340)))
.containsExactly(
MetricPoint.create(
metric,
ImmutableList.of("foo"),
new Instant(1339),
new Instant(1340),
ImmutableDistribution.create(
0.0,
0.0,
0L,
ImmutableRangeMap.<Double, Long>builder()
.put(Range.lessThan(5.0), 0L)
.put(Range.atLeast(5.0), 0L)
.build(),
distributionFitter)),
MetricPoint.create(
metric,
ImmutableList.of("moo"),
new Instant(1339),
new Instant(1340),
ImmutableDistribution.create(
0.0,
0,
0L,
ImmutableRangeMap.<Double, Long>builder()
.put(Range.lessThan(5.0), 0L)
.put(Range.atLeast(5.0), 0L)
.build(),
distributionFitter)));
}
@Test
public void testReset_resetsValueAndStartTimestamp() {
metric.recordMultiple(3.0, 1, new Instant(1336), ImmutableList.of("foo"));
metric.recordMultiple(5.0, 1, new Instant(1337), ImmutableList.of("moo"));
assertThat(metric.getTimestampedValues(new Instant(1338)))
.containsExactly(
MetricPoint.create(
metric,
ImmutableList.of("foo"),
new Instant(1336),
new Instant(1338),
ImmutableDistribution.create(
3.0,
0.0,
1L,
ImmutableRangeMap.<Double, Long>builder()
.put(Range.lessThan(5.0), 1L)
.put(Range.atLeast(5.0), 0L)
.build(),
distributionFitter)),
MetricPoint.create(
metric,
ImmutableList.of("moo"),
new Instant(1337),
new Instant(1338),
ImmutableDistribution.create(
5.0,
0,
1L,
ImmutableRangeMap.<Double, Long>builder()
.put(Range.lessThan(5.0), 0L)
.put(Range.atLeast(5.0), 1L)
.build(),
distributionFitter)));
metric.reset(new Instant(1339), ImmutableList.of("foo"));
assertThat(metric.getTimestampedValues(new Instant(1340)))
.containsExactly(
MetricPoint.create(
metric,
ImmutableList.of("foo"),
new Instant(1339),
new Instant(1340),
ImmutableDistribution.create(
0.0,
0.0,
0L,
ImmutableRangeMap.<Double, Long>builder()
.put(Range.lessThan(5.0), 0L)
.put(Range.atLeast(5.0), 0L)
.build(),
distributionFitter)),
MetricPoint.create(
metric,
ImmutableList.of("moo"),
new Instant(1337),
new Instant(1340),
ImmutableDistribution.create(
5.0,
0,
1L,
ImmutableRangeMap.<Double, Long>builder()
.put(Range.lessThan(5.0), 0L)
.put(Range.atLeast(5.0), 1L)
.build(),
distributionFitter)));
}
}