|
| 1 | +// Copyright (c) 2020 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 getInstance() { |
| 38 | + TestScope testScope = TestScope.create(); |
| 39 | + assertNotNull(testScope); |
| 40 | + assertThat(testScope, instanceOf(Scope.class)); |
| 41 | + assertThat(testScope, instanceOf(ScopeImpl.class)); |
| 42 | + |
| 43 | + assertNotNull(testScope.capabilities()); |
| 44 | + assertFalse(testScope.capabilities().reporting()); |
| 45 | + assertFalse(testScope.capabilities().tagging()); |
| 46 | + } |
| 47 | + |
| 48 | + @Test |
| 49 | + public void prefixTags() { |
| 50 | + Map<String, String> tags = ImmutableMap.of("key", "value"); |
| 51 | + TestScope testScope = TestScope.create("prefix", tags); |
| 52 | + testScope.counter("counter").inc(1); |
| 53 | + |
| 54 | + Snapshot snapshot = testScope.snapshot(); |
| 55 | + assertNotNull(snapshot); |
| 56 | + |
| 57 | + Map<String, CounterSnapshot> counters = snapshot.counters(); |
| 58 | + assertNotNull(counters); |
| 59 | + assertEquals(1, counters.size()); |
| 60 | + assertNotNull(counters.get("prefix.counter+key=value")); |
| 61 | + assertEquals("prefix.counter", counters.get("prefix.counter+key=value").name()); |
| 62 | + assertEquals(tags, counters.get("prefix.counter+key=value").tags()); |
| 63 | + assertEquals(1, counters.get("prefix.counter+key=value").value()); |
| 64 | + } |
| 65 | +} |
0 commit comments