|
| 1 | +// Copyright (c) 2023 Uber Technologies, Inc. |
| 2 | +// |
| 3 | +// Permission is hereby granted, free of charge, to any person obtaining a copy |
| 4 | +// of this software and associated documentation files (the "Software"), to deal |
| 5 | +// in the Software without restriction, including without limitation the rights |
| 6 | +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 7 | +// copies of the Software, and to permit persons to whom the Software is |
| 8 | +// furnished to do so, subject to the following conditions: |
| 9 | +// |
| 10 | +// The above copyright notice and this permission notice shall be included in |
| 11 | +// all copies or substantial portions of the Software. |
| 12 | +// |
| 13 | +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 14 | +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 15 | +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 16 | +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 17 | +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 18 | +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 19 | +// THE SOFTWARE. |
| 20 | + |
| 21 | +package com.uber.m3.tally; |
| 22 | + |
| 23 | +import com.uber.m3.util.ImmutableMap; |
| 24 | +import org.junit.Test; |
| 25 | + |
| 26 | +import java.util.Map; |
| 27 | + |
| 28 | +import static org.hamcrest.CoreMatchers.instanceOf; |
| 29 | +import static org.junit.Assert.assertEquals; |
| 30 | +import static org.junit.Assert.assertFalse; |
| 31 | +import static org.junit.Assert.assertNotNull; |
| 32 | +import static org.junit.Assert.assertThat; |
| 33 | + |
| 34 | +public class TestScopeTest { |
| 35 | + |
| 36 | + @Test |
| 37 | + public void testCreate() { |
| 38 | + TestScope testScope = TestScope.create(); |
| 39 | + assertNotNull(testScope); |
| 40 | + assertThat(testScope, instanceOf(Scope.class)); |
| 41 | + |
| 42 | + assertNotNull(testScope.capabilities()); |
| 43 | + assertFalse(testScope.capabilities().reporting()); |
| 44 | + assertFalse(testScope.capabilities().tagging()); |
| 45 | + |
| 46 | + ImmutableMap<String, String> tags = ImmutableMap.of("key", "value"); |
| 47 | + |
| 48 | + testScope.tagged(tags).counter("counter").inc(1); |
| 49 | + |
| 50 | + Snapshot snapshot = testScope.snapshot(); |
| 51 | + assertNotNull(snapshot); |
| 52 | + |
| 53 | + Map<ScopeKey, CounterSnapshot> counters = snapshot.counters(); |
| 54 | + assertNotNull(counters); |
| 55 | + assertEquals(1, counters.size()); |
| 56 | + |
| 57 | + CounterSnapshot counterSnapshot = counters.get(new ScopeKey("counter", tags)); |
| 58 | + assertNotNull(counterSnapshot); |
| 59 | + |
| 60 | + assertEquals("counter", counterSnapshot.name()); |
| 61 | + assertEquals(tags, counterSnapshot.tags()); |
| 62 | + assertEquals(1, counterSnapshot.value()); |
| 63 | + } |
| 64 | + |
| 65 | + @Test |
| 66 | + public void createWithPrefixAndTags() { |
| 67 | + Map<String, String> tags = ImmutableMap.of("key", "value"); |
| 68 | + TestScope testScope = TestScope.create("prefix", tags); |
| 69 | + testScope.tagged(ImmutableMap.of("other_key", "other_value")).counter("counter").inc(1); |
| 70 | + |
| 71 | + Snapshot snapshot = testScope.snapshot(); |
| 72 | + assertNotNull(snapshot); |
| 73 | + |
| 74 | + Map<ScopeKey, CounterSnapshot> counters = snapshot.counters(); |
| 75 | + assertNotNull(counters); |
| 76 | + assertEquals(1, counters.size()); |
| 77 | + |
| 78 | + ImmutableMap<String, String> totalTags = ImmutableMap.of("key", "value", "other_key", "other_value"); |
| 79 | + CounterSnapshot counterSnapshot = counters.get(new ScopeKey("prefix.counter", totalTags)); |
| 80 | + |
| 81 | + assertNotNull(counterSnapshot); |
| 82 | + assertEquals("prefix.counter", counterSnapshot.name()); |
| 83 | + assertEquals(totalTags, counterSnapshot.tags()); |
| 84 | + assertEquals(1, counterSnapshot.value()); |
| 85 | + } |
| 86 | + |
| 87 | + @Test |
| 88 | + public void testCreateWithTagsAndSubscope() { |
| 89 | + ImmutableMap<String, String> tags = ImmutableMap.of("key", "value"); |
| 90 | + TestScope testScope = TestScope.create("", tags); |
| 91 | + |
| 92 | + ImmutableMap<String, String> subScopeTags = ImmutableMap.of("key", "other_value"); |
| 93 | + testScope.tagged(subScopeTags).subScope("subscope").counter("counter").inc(1); |
| 94 | + |
| 95 | + Snapshot snapshot = testScope.snapshot(); |
| 96 | + assertNotNull(snapshot); |
| 97 | + |
| 98 | + Map<ScopeKey, CounterSnapshot> counters = snapshot.counters(); |
| 99 | + assertNotNull(counters); |
| 100 | + assertEquals(1, counters.size()); |
| 101 | + |
| 102 | + CounterSnapshot counterSnapshot = counters.get(new ScopeKey("subscope.counter", subScopeTags)); |
| 103 | + assertNotNull(counterSnapshot); |
| 104 | + |
| 105 | + assertEquals("subscope.counter", counterSnapshot.name()); |
| 106 | + assertEquals(subScopeTags, counterSnapshot.tags()); |
| 107 | + assertEquals(1, counterSnapshot.value()); |
| 108 | + } |
| 109 | +} |
| 110 | + |
0 commit comments