|
| 1 | +/* |
| 2 | + * Copyright The OpenTelemetry Authors |
| 3 | + * SPDX-License-Identifier: Apache-2.0 |
| 4 | + */ |
| 5 | + |
| 6 | +package io.opentelemetry.instrumentation.jmx.engine.unit; |
| 7 | + |
| 8 | +import static org.junit.jupiter.api.Assertions.assertEquals; |
| 9 | +import static org.junit.jupiter.api.Assertions.assertFalse; |
| 10 | +import static org.junit.jupiter.api.Assertions.assertNull; |
| 11 | +import static org.junit.jupiter.api.Assertions.assertTrue; |
| 12 | + |
| 13 | +import java.util.stream.Stream; |
| 14 | +import org.junit.jupiter.api.Test; |
| 15 | +import org.junit.jupiter.params.ParameterizedTest; |
| 16 | +import org.junit.jupiter.params.provider.Arguments; |
| 17 | +import org.junit.jupiter.params.provider.CsvSource; |
| 18 | +import org.junit.jupiter.params.provider.MethodSource; |
| 19 | + |
| 20 | +class UnitConverterFactoryTest { |
| 21 | + |
| 22 | + @ParameterizedTest |
| 23 | + @CsvSource({ |
| 24 | + "1000000000,ns, 1.0", |
| 25 | + "25,ns, 0.000000025", |
| 26 | + "96614101945,ns, 96.614101945", |
| 27 | + "0,ns, 0", |
| 28 | + "1000,ms, 1.0", |
| 29 | + "25,ms, 0.025", |
| 30 | + "9661410,ms, 9661.41", |
| 31 | + "0,ms, 0", |
| 32 | + }) |
| 33 | + void shouldSupportPredefined_to_s_Converters( |
| 34 | + Long originalValue, String originalUnit, Double expectedConvertedValue) { |
| 35 | + // Given |
| 36 | + String targetUnit = "s"; |
| 37 | + |
| 38 | + // When |
| 39 | + UnitConverter converter = UnitConverterFactory.getConverter(originalUnit, targetUnit); |
| 40 | + Number actualValue = converter.convert(originalValue); |
| 41 | + |
| 42 | + // Then |
| 43 | + assertEquals(expectedConvertedValue, actualValue); |
| 44 | + assertTrue(converter.isConvertingToDouble()); |
| 45 | + } |
| 46 | + |
| 47 | + @Test |
| 48 | + void shouldSupportCustomConverter() { |
| 49 | + // Given |
| 50 | + String sourceUnit = "MB"; |
| 51 | + String targetUnit = "By"; |
| 52 | + |
| 53 | + // When |
| 54 | + UnitConverterFactory.registerConverter( |
| 55 | + sourceUnit, targetUnit, (megaBytes) -> megaBytes.doubleValue() * 1024 * 1024, false); |
| 56 | + UnitConverter converter = UnitConverterFactory.getConverter(sourceUnit, targetUnit); |
| 57 | + Number actualValue = converter.convert(1.5); |
| 58 | + |
| 59 | + // Then |
| 60 | + assertEquals(1572864, actualValue.longValue()); |
| 61 | + assertFalse(converter.isConvertingToDouble()); |
| 62 | + } |
| 63 | + |
| 64 | + @ParameterizedTest |
| 65 | + @MethodSource("provideUnitsForMissingConverter") |
| 66 | + void shouldHandleMissingConverter(String sourceUnit, String targetUnit) { |
| 67 | + UnitConverter converter = UnitConverterFactory.getConverter(sourceUnit, targetUnit); |
| 68 | + assertNull(converter); |
| 69 | + } |
| 70 | + |
| 71 | + private static Stream<Arguments> provideUnitsForMissingConverter() { |
| 72 | + return Stream.of( |
| 73 | + Arguments.of(null, null), |
| 74 | + Arguments.of("ms", null), |
| 75 | + Arguments.of("ms", ""), |
| 76 | + Arguments.of("ms", "--"), |
| 77 | + Arguments.of("--", "--")); |
| 78 | + } |
| 79 | +} |
0 commit comments