/** * Copyright 2015 Netflix, Inc. * * 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.netflix.spectator.servo; import com.netflix.spectator.api.Counter; import com.netflix.spectator.api.ManualClock; import com.netflix.spectator.api.Registry; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.JUnit4; import java.util.concurrent.TimeUnit; @RunWith(JUnit4.class) public class ServoCounterTest { private final ManualClock clock = new ManualClock(); private Counter newCounter(String name) { final Registry r = new ServoRegistry(clock); return r.counter(r.createId(name)); } @Before public void before() { clock.setWallTime(0L); clock.setMonotonicTime(0L); } @Test public void testInit() { Counter c = newCounter("foo"); Assert.assertEquals(c.count(), 0L); c.increment(); Assert.assertEquals(c.count(), 1L); } @Test public void expiration() { final long initTime = TimeUnit.MINUTES.toMillis(30); final long fifteenMinutes = TimeUnit.MINUTES.toMillis(15); // Expired on init, wait for activity to mark as active clock.setWallTime(initTime); Counter c = newCounter("foo"); Assert.assertTrue(c.hasExpired()); c.increment(42); Assert.assertFalse(c.hasExpired()); // Expires with inactivity, total count in memory is maintained clock.setWallTime(initTime + fifteenMinutes); Assert.assertFalse(c.hasExpired()); // Expires with inactivity, total count in memory is maintained clock.setWallTime(initTime + fifteenMinutes + 1); Assert.assertEquals(c.count(), 42); Assert.assertTrue(c.hasExpired()); // Activity brings it back c.increment(); Assert.assertEquals(c.count(), 43); Assert.assertFalse(c.hasExpired()); } }