blob: b3c76d11407945990802b23ba8f585e4d9a98607 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.datatorrent.lib.counters;
import java.util.List;
import java.util.Map;
import org.junit.Assert;
import org.junit.Test;
import org.apache.commons.lang.mutable.MutableDouble;
import com.google.common.collect.Lists;
import com.datatorrent.common.util.NumberAggregate;
/**
* Tests for {@link BasicCounters}
*/
public class BasicCountersTest
{
private static enum CounterKeys
{
A
}
@Test
public void testBasicCounters() throws InstantiationException, IllegalAccessException
{
BasicCounters<MutableDouble> doubleBasicCounters = new BasicCounters<MutableDouble>(MutableDouble.class);
MutableDouble counterA = doubleBasicCounters.findCounter(CounterKeys.A);
counterA.increment();
MutableDouble counterAInCounters = doubleBasicCounters.getCounter(CounterKeys.A);
Assert.assertNotNull("null", doubleBasicCounters.getCounter(CounterKeys.A));
Assert.assertTrue("equality", counterAInCounters.equals(counterA));
Assert.assertEquals(counterA.doubleValue(), 1.0, 0);
}
@Test
public void testBasicCountersAggregator() throws InstantiationException, IllegalAccessException
{
List<Object> physicalCounters = Lists.newArrayList();
for (int i = 0; i < 5; i++) {
BasicCounters<MutableDouble> doubleBasicCounters = new BasicCounters<MutableDouble>(MutableDouble.class);
MutableDouble counterA = doubleBasicCounters.findCounter(CounterKeys.A);
counterA.increment();
physicalCounters.add(doubleBasicCounters);
}
BasicCounters.DoubleAggregator<MutableDouble> aggregator = new BasicCounters.DoubleAggregator<MutableDouble>();
@SuppressWarnings("unchecked")
Map<String, NumberAggregate.DoubleAggregate> aggregateMap =
(Map<String, NumberAggregate.DoubleAggregate>)aggregator.aggregate(physicalCounters);
Assert.assertNotNull("null", aggregateMap.get(CounterKeys.A.name()));
NumberAggregate.DoubleAggregate aggregate = aggregateMap.get(CounterKeys.A.name());
Assert.assertEquals(aggregate.getSum().doubleValue(), 5.0, 0);
Assert.assertEquals(aggregate.getMin().doubleValue(), 1.0, 0);
Assert.assertEquals(aggregate.getMax().doubleValue(), 1.0, 0);
Assert.assertEquals(aggregate.getAvg().doubleValue(), 1.0, 0);
}
}