summaryrefslogtreecommitdiffstats
path: root/statistics/src/test/java/com/yahoo/statistics/CounterTestCase.java
blob: c4dd5dd9c676275399cf67400cd74a21162d0eef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.statistics;

import java.util.Arrays;
import java.util.logging.Logger;

import com.yahoo.container.StatisticsConfig;
import org.junit.Test;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;

/**
 * Check counters work.
 *
 * @author Steinar Knutsen
 */

public class CounterTestCase {

    @Test
    public void testBasic() {
        Counter c = new Counter("test", Statistics.nullImplementation, false);
        c.increment();
        assertEquals(1, c.get());
        c.increment(499);
        assertEquals(500, c.get());
        c.reset();
        assertEquals(500, c.get());
        c = new Counter("test", Statistics.nullImplementation, false, null, true);
        c.increment();
        assertEquals(1, c.get());
        c.increment(499);
        assertEquals(500, c.get());
        c.reset();
        assertEquals(0, c.get());
    }

    @Test
    public void testObjectContracts() {
        final String counterName = "test";
        Counter c = new Counter(counterName, Statistics.nullImplementation, false);
        Counter c2 = new Counter(counterName, Statistics.nullImplementation, false);
        c2.increment();
        assertEquals(c, c2);
        assertEquals(c.hashCode(), c2.hashCode());
        c2 = new Counter("nalle", Statistics.nullImplementation, false);
        assertFalse("Different names should lead to different hashcodes",
                c.hashCode() == c2.hashCode());
        assertFalse("Different names should lead to equals() return false",
                c.equals(c2));
        String prefix = "com.yahoo.statistics.Counter";
        String suffix = counterName + " 0";
        String image = c.toString();
        assertEquals(suffix, image.substring(image.length() - suffix.length()));
        assertEquals(prefix, image.substring(0, prefix.length()));
    }

    @Test
    public void testConfigStuff() {
        Logger logger = Logger.getLogger(Counter.class.getName());
        boolean initUseParentHandlers = logger.getUseParentHandlers();
        logger.setUseParentHandlers(false);
        MockStatistics m = new MockStatistics();
        final String joppe = "joppe";
        StatisticsConfig config = new StatisticsConfig(
                new StatisticsConfig.Builder().counterresets(Arrays
                        .asList(new StatisticsConfig.Counterresets.Builder[] { new StatisticsConfig.Counterresets.Builder()
                                .name(joppe) })));
        m.config = config;
        Counter c = new Counter("nalle", m, true);
        Counter c2 = new Counter(joppe, m, true);
        c.increment();
        c2.increment();
        assertEquals(1L, c.get());
        assertEquals(1L, c2.get());
        c.run();
        c2.run();
        assertEquals(1L, c.get());
        assertEquals(0L, c2.get());
        logger.setUseParentHandlers(initUseParentHandlers);

    }

    public class MockStatistics implements Statistics {
        public StatisticsConfig config = null;
        public int registerCount = 0;

        @Override
        public void register(Handle h) {
            registerCount += 1;
        }

        @Override
        public void remove(String name) {
        }

        @Override
        public StatisticsConfig getConfig() {
            return config;
        }

        @Override
        public int purge() {
            return 0;
        }
    }

}