aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/StorageNodeStatsContainerTest.java
blob: 958218c3585ddd7af17f58e879906bb5a5ae9c2b (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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.core;

import org.junit.Test;

import java.util.HashMap;
import java.util.Map;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;

/**
 * @author hakonhall
 */
public class StorageNodeStatsContainerTest {
    @Test
    public void testStatsForStorage() {
        StorageNodeStatsContainer statsContainer = new StorageNodeStatsContainer();
        Map<Integer, StorageNodeStats> statsMap = new HashMap<>();

        LatencyStats putLatencyForA = new LatencyStats(1, 2);
        StorageNodeStats nodeStatsForA = new StorageNodeStats(putLatencyForA);
        statsContainer.put(5, nodeStatsForA);

        LatencyStats putLatencyForB = new LatencyStats(3, 4);
        StorageNodeStats nodeStatsForB = new StorageNodeStats(putLatencyForB);
        statsContainer.put(6, nodeStatsForB);

        StorageNodeStats nodeStats = statsContainer.get(5);
        assertNotNull(nodeStats);
        assertEquals(1, nodeStatsForA.getDistributorPutLatency().getLatencyMsSum());
        assertEquals(2, nodeStatsForA.getDistributorPutLatency().getCount());

        nodeStats = statsContainer.get(6);
        assertNotNull(nodeStats);
        assertEquals(3, nodeStatsForB.getDistributorPutLatency().getLatencyMsSum());
        assertEquals(4, nodeStatsForB.getDistributorPutLatency().getCount());

        nodeStats = statsContainer.get(7);
        assertNull(nodeStats);
    }
}