| // Copyright 2018 The Bazel 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 com.google.devtools.build.lib.profiler; |
| |
| import static com.google.common.truth.Truth.assertThat; |
| |
| import java.util.Arrays; |
| import org.junit.Test; |
| import org.junit.runner.RunWith; |
| import org.junit.runners.JUnit4; |
| |
| /** Tests for {@link TimeSeries}. */ |
| @RunWith(JUnit4.class) |
| public final class TimeSeriesTest { |
| @Test |
| public void testAddRange() { |
| TimeSeries timeSeries = new TimeSeries(42, 100); |
| timeSeries.addRange(42, 142); |
| timeSeries.addRange(442, 542); |
| double[] values = timeSeries.toDoubleArray(5); |
| assertThat(values).usingTolerance(1.0e-10).containsExactly(1, 0, 0, 0, 1).inOrder(); |
| } |
| |
| @Test |
| public void testAddRangeWithValue() { |
| TimeSeries timeSeries = new TimeSeries(42, 100); |
| timeSeries.addRange(42, 242, 3); |
| timeSeries.addRange(442, 542, 0.5); |
| double[] values = timeSeries.toDoubleArray(5); |
| assertThat(values).usingTolerance(1.0e-10).containsExactly(3, 3, 0, 0, .5).inOrder(); |
| } |
| |
| @Test |
| public void testAddRangeOverlappingWithValue() { |
| TimeSeries timeSeries = new TimeSeries(42, 100); |
| timeSeries.addRange(42, 242, 3); |
| timeSeries.addRange(142, 442, 0.5); |
| double[] values = timeSeries.toDoubleArray(5); |
| assertThat(values).usingTolerance(1.0e-10).containsExactly(3, 3.5, 0.5, 0.5, 0).inOrder(); |
| } |
| |
| @Test |
| public void testAddRangeFractions() { |
| TimeSeries timeSeries = new TimeSeries(42, 100); |
| timeSeries.addRange(92, 267); |
| double[] values = timeSeries.toDoubleArray(5); |
| assertThat(values).usingTolerance(1.0e-10).containsExactly(0.5, 1, 0.25, 0, 0).inOrder(); |
| } |
| |
| @Test |
| public void testAddRangeWithValueFractions() { |
| TimeSeries timeSeries = new TimeSeries(42, 100); |
| timeSeries.addRange(92, 267, 3); |
| double[] values = timeSeries.toDoubleArray(5); |
| assertThat(values).usingTolerance(1.0e-10).containsExactly(1.5, 3, 0.75, 0, 0).inOrder(); |
| } |
| |
| @Test |
| public void testResize() { |
| TimeSeries timeSeries = new TimeSeries(0, 100); |
| timeSeries.addRange(0, 100 * 100 + 1, 42); |
| double[] values = timeSeries.toDoubleArray(101); |
| double[] expected = new double[101]; |
| Arrays.fill(expected, 0, expected.length - 1, 42); |
| expected[expected.length - 1] = 0.42; |
| assertThat(values).usingTolerance(1.0e-10).containsExactly(expected).inOrder(); |
| } |
| } |