aboutsummaryrefslogtreecommitdiffstats
path: root/metrics-proxy/src/test/java/ai/vespa/metricsproxy/http/application/PublicDimensionsProcessorTest.java
blob: e155b444580cb74bb63e46d9890d8758fe611b52 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.metricsproxy.http.application;

import ai.vespa.metricsproxy.metric.model.MetricsPacket;
import org.junit.Test;

import static ai.vespa.metricsproxy.metric.dimensions.PublicDimensions.APPLICATION_ID;
import static ai.vespa.metricsproxy.metric.model.DimensionId.toDimensionId;
import static ai.vespa.metricsproxy.metric.model.ServiceId.toServiceId;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

/**
 * @author gjoranv
 */
public class PublicDimensionsProcessorTest {

    @Test
    public void blocklisted_dimensions_are_removed() {
        var builder = new MetricsPacket.Builder(toServiceId("foo"))
                .putDimension(toDimensionId("applicationName"), "");

        var processor = new PublicDimensionsProcessor();
        processor.process(builder);
        assertTrue(builder.getDimensionIds().isEmpty());
    }

    @Test
    public void public_dimensions_are_retained() {
        var builder = new MetricsPacket.Builder(toServiceId("foo"))
                .putDimension(toDimensionId(APPLICATION_ID), "app");

        var processor = new PublicDimensionsProcessor();
        processor.process(builder);
        assertEquals(1, builder.getDimensionIds().size());
        assertEquals(toDimensionId(APPLICATION_ID), builder.getDimensionIds().iterator().next());
    }

}