mirror of
https://github.com/google/nomulus.git
synced 2025-05-15 00:47:11 +02:00
Add the Distribution data type for instrumentation
This is one of a series of CLs adding a new metric type, EventMetric, which is used for tracking numerical distributions. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=132103552
This commit is contained in:
parent
180240ae04
commit
dcb189943b
13 changed files with 961 additions and 0 deletions
|
@ -0,0 +1,77 @@
|
|||
// Copyright 2016 The Domain Registry 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 org.junit.Rule;
|
||||
import org.junit.Test;
|
||||
import org.junit.rules.ExpectedException;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.junit.runners.JUnit4;
|
||||
|
||||
/** Tests for implementations of {@link DistributionFitter}. */
|
||||
@RunWith(JUnit4.class)
|
||||
public class ExponentialFitterTest {
|
||||
|
||||
@Rule public final ExpectedException thrown = ExpectedException.none();
|
||||
|
||||
@Test
|
||||
public void testCreateExponentialFitter_zeroNumIntervals_throwsException() throws Exception {
|
||||
thrown.expect(IllegalArgumentException.class);
|
||||
thrown.expectMessage("numFiniteIntervals must be greater than 0");
|
||||
|
||||
ExponentialFitter.create(0, 3.0, 1.0);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCreateExponentialFitter_negativeNumIntervals_throwsException() throws Exception {
|
||||
thrown.expect(IllegalArgumentException.class);
|
||||
thrown.expectMessage("numFiniteIntervals must be greater than 0");
|
||||
|
||||
ExponentialFitter.create(-1, 3.0, 1.0);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCreateExponentialFitter_invalidBase_throwsException() throws Exception {
|
||||
thrown.expect(IllegalArgumentException.class);
|
||||
thrown.expectMessage("base must be greater than 1");
|
||||
|
||||
ExponentialFitter.create(3, 0.5, 1.0);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCreateExponentialFitter_zeroScale_throwsException() throws Exception {
|
||||
thrown.expect(IllegalArgumentException.class);
|
||||
thrown.expectMessage("scale must not be 0");
|
||||
|
||||
ExponentialFitter.create(3, 2.0, 0.0);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCreateExponentialFitter_NanScale_throwsException() throws Exception {
|
||||
thrown.expect(IllegalArgumentException.class);
|
||||
thrown.expectMessage("value must be finite, not NaN, and not -0.0");
|
||||
|
||||
ExponentialFitter.create(3, 2.0, Double.NaN);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCreateExponentialFitter_hasCorrectBounds() {
|
||||
ExponentialFitter fitter = ExponentialFitter.create(3, 5.0, 2.0);
|
||||
|
||||
assertThat(fitter.boundaries()).containsExactly(2.0, 10.0, 50.0, 250.0).inOrder();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue