|
| 1 | +/* |
| 2 | + * Copyright 2012-2021 the original author or authors. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * https://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | + |
| 17 | +package org.springframework.boot.actuate.metrics.system; |
| 18 | + |
| 19 | +import java.io.File; |
| 20 | +import java.util.Arrays; |
| 21 | +import java.util.Collections; |
| 22 | + |
| 23 | +import io.micrometer.core.instrument.MeterRegistry; |
| 24 | +import io.micrometer.core.instrument.Tags; |
| 25 | +import io.micrometer.core.instrument.simple.SimpleMeterRegistry; |
| 26 | +import org.junit.jupiter.api.Test; |
| 27 | + |
| 28 | +import static org.assertj.core.api.Assertions.assertThat; |
| 29 | + |
| 30 | +/** |
| 31 | + * Tests for {@link DiskSpaceMetricsBinder}. |
| 32 | + * |
| 33 | + * @author Chris Bono |
| 34 | + */ |
| 35 | +class DiskSpaceMetricsBinderTests { |
| 36 | + |
| 37 | + @Test |
| 38 | + void diskSpaceMetricsWithSinglePath() { |
| 39 | + MeterRegistry meterRegistry = new SimpleMeterRegistry(); |
| 40 | + File path = new File("."); |
| 41 | + DiskSpaceMetricsBinder metricsBinder = new DiskSpaceMetricsBinder(Collections.singletonList(path), |
| 42 | + Tags.empty()); |
| 43 | + metricsBinder.bindTo(meterRegistry); |
| 44 | + |
| 45 | + Tags tags = Tags.of("path", path.getAbsolutePath()); |
| 46 | + assertThat(meterRegistry.get("disk.free").tags(tags).gauge()).isNotNull(); |
| 47 | + assertThat(meterRegistry.get("disk.total").tags(tags).gauge()).isNotNull(); |
| 48 | + } |
| 49 | + |
| 50 | + @Test |
| 51 | + void diskSpaceMetricsWithMultiplePaths() { |
| 52 | + MeterRegistry meterRegistry = new SimpleMeterRegistry(); |
| 53 | + File path1 = new File("."); |
| 54 | + File path2 = new File(".."); |
| 55 | + DiskSpaceMetricsBinder metricsBinder = new DiskSpaceMetricsBinder(Arrays.asList(path1, path2), Tags.empty()); |
| 56 | + metricsBinder.bindTo(meterRegistry); |
| 57 | + |
| 58 | + Tags tags = Tags.of("path", path1.getAbsolutePath()); |
| 59 | + assertThat(meterRegistry.get("disk.free").tags(tags).gauge()).isNotNull(); |
| 60 | + assertThat(meterRegistry.get("disk.total").tags(tags).gauge()).isNotNull(); |
| 61 | + tags = Tags.of("path", path2.getAbsolutePath()); |
| 62 | + assertThat(meterRegistry.get("disk.free").tags(tags).gauge()).isNotNull(); |
| 63 | + assertThat(meterRegistry.get("disk.total").tags(tags).gauge()).isNotNull(); |
| 64 | + } |
| 65 | + |
| 66 | + @Test |
| 67 | + void diskSpaceMetricsWithCustomTags() { |
| 68 | + MeterRegistry meterRegistry = new SimpleMeterRegistry(); |
| 69 | + File path = new File("."); |
| 70 | + Tags customTags = Tags.of("foo", "bar"); |
| 71 | + DiskSpaceMetricsBinder metricsBinder = new DiskSpaceMetricsBinder(Collections.singletonList(path), customTags); |
| 72 | + metricsBinder.bindTo(meterRegistry); |
| 73 | + |
| 74 | + Tags tags = Tags.of("path", path.getAbsolutePath(), "foo", "bar"); |
| 75 | + assertThat(meterRegistry.get("disk.free").tags(tags).gauge()).isNotNull(); |
| 76 | + assertThat(meterRegistry.get("disk.total").tags(tags).gauge()).isNotNull(); |
| 77 | + } |
| 78 | + |
| 79 | +} |
0 commit comments