/* * Copyright 2018, OpenCensus Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package io.opencensus.metrics; import static com.google.common.truth.Truth.assertThat; import java.util.Arrays; import java.util.Collections; import java.util.List; import java.util.Map; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; import org.junit.runner.RunWith; import org.junit.runners.JUnit4; /** Unit tests for {@link MetricOptions}. */ @RunWith(JUnit4.class) public class MetricOptionsTest { @Rule public ExpectedException thrown = ExpectedException.none(); private static final String DESCRIPTION = "test_description"; private static final String UNIT = "1"; private static final LabelKey LABEL_KEY = LabelKey.create("test_key", "test key description"); private static final List LABEL_KEYS = Collections.singletonList(LABEL_KEY); private static final LabelValue LABEL_VALUE = LabelValue.create("test_value"); private static final Map CONSTANT_LABELS = Collections.singletonMap(LabelKey.create("test_key_1", "test key description"), LABEL_VALUE); @Test public void nullDescription() { thrown.expect(NullPointerException.class); thrown.expectMessage("description"); MetricOptions.builder().setDescription(null).build(); } @Test public void nullUnit() { thrown.expect(NullPointerException.class); thrown.expectMessage("unit"); MetricOptions.builder().setUnit(null).build(); } @Test public void nullLabelKeys() { thrown.expect(NullPointerException.class); thrown.expectMessage("labelKeys"); MetricOptions.builder().setLabelKeys(null).build(); } @Test public void labelKeys_WithNullElement() { List labelKeys = Collections.singletonList(null); thrown.expect(NullPointerException.class); thrown.expectMessage("labelKeys elements"); MetricOptions.builder().setLabelKeys(labelKeys).build(); } @Test public void sameLabelKeyInLabelsKey() { thrown.expect(IllegalArgumentException.class); thrown.expectMessage("Invalid LabelKey in labelKeys"); MetricOptions.builder() .setLabelKeys(Arrays.asList(LABEL_KEY, LABEL_KEY)) .setConstantLabels(Collections.singletonMap(LABEL_KEY, LABEL_VALUE)) .build(); } @Test public void nullConstantLabels() { thrown.expect(NullPointerException.class); thrown.expectMessage("constantLabels"); MetricOptions.builder().setConstantLabels(null).build(); } @Test public void constantLabels_WithNullKey() { Map constantLabels = Collections.singletonMap(null, LABEL_VALUE); thrown.expect(NullPointerException.class); thrown.expectMessage("constantLabels elements"); MetricOptions.builder().setConstantLabels(constantLabels).build(); } @Test public void constantLabels_WithNullValue() { Map constantLabels = Collections.singletonMap(LABEL_KEY, null); thrown.expect(NullPointerException.class); thrown.expectMessage("constantLabels elements"); MetricOptions.builder().setConstantLabels(constantLabels).build(); } @Test public void sameLabelKeyInConstantLabelsAndLabelsKey() { thrown.expect(IllegalArgumentException.class); thrown.expectMessage("Invalid LabelKey in constantLabels"); MetricOptions.builder() .setLabelKeys(LABEL_KEYS) .setConstantLabels(Collections.singletonMap(LABEL_KEY, LABEL_VALUE)) .build(); } @Test public void setAndGet() { MetricOptions metricOptions = MetricOptions.builder() .setDescription(DESCRIPTION) .setUnit(UNIT) .setLabelKeys(LABEL_KEYS) .setConstantLabels(CONSTANT_LABELS) .build(); assertThat(metricOptions.getDescription()).isEqualTo(DESCRIPTION); assertThat(metricOptions.getUnit()).isEqualTo(UNIT); assertThat(metricOptions.getLabelKeys()).isEqualTo(LABEL_KEYS); assertThat(metricOptions.getConstantLabels()).isEqualTo(CONSTANT_LABELS); } }