|
| 1 | +package no.nav.personbruker.dittnav.common.metrics.influxdb |
| 2 | + |
| 3 | +import io.mockk.coEvery |
| 4 | +import io.mockk.mockk |
| 5 | +import io.mockk.slot |
| 6 | +import kotlinx.coroutines.runBlocking |
| 7 | +import org.amshove.kluent.* |
| 8 | +import org.influxdb.dto.Point |
| 9 | +import org.junit.jupiter.api.Test |
| 10 | +import java.util.concurrent.TimeUnit |
| 11 | + |
| 12 | +internal class InfluxMetricsReporterTest { |
| 13 | + val dataPointRelay: DataPointRelay = mockk() |
| 14 | + |
| 15 | + val databaseName = "testdb" |
| 16 | + val retentionPolicyName = "retention" |
| 17 | + val application = "testApp" |
| 18 | + val cluster = "test" |
| 19 | + val namespace = "test1" |
| 20 | + |
| 21 | + val influxConfig = InfluxConfig( |
| 22 | + "", |
| 23 | + "", |
| 24 | + "", |
| 25 | + 0, |
| 26 | + databaseName, |
| 27 | + retentionPolicyName, |
| 28 | + application, |
| 29 | + cluster, |
| 30 | + namespace |
| 31 | + ) |
| 32 | + |
| 33 | + val metricsReporter = InfluxMetricsReporter(influxConfig, dataPointRelay) |
| 34 | + |
| 35 | + @Test |
| 36 | + fun `Should construct a data point and add time of measurement and application-global tags`() { |
| 37 | + |
| 38 | + val pointSlot = slot<Point>() |
| 39 | + |
| 40 | + val measurementName = "INVENTORY" |
| 41 | + |
| 42 | + val fieldName = "value" |
| 43 | + val fieldVal = 123 |
| 44 | + |
| 45 | + val tagName = "type" |
| 46 | + val tagVal = "APPLE" |
| 47 | + |
| 48 | + coEvery { dataPointRelay.submitDataPoint(capture(pointSlot)) } returns Unit |
| 49 | + |
| 50 | + val fields = mapOf(fieldName to fieldVal) |
| 51 | + val tags = mapOf(tagName to tagVal) |
| 52 | + |
| 53 | + val start = System.currentTimeMillis() |
| 54 | + |
| 55 | + runBlocking { |
| 56 | + metricsReporter.registerDataPoint(measurementName, fields, tags) |
| 57 | + } |
| 58 | + |
| 59 | + val point = pointSlot.captured |
| 60 | + |
| 61 | + val resultMeasurement: String = point.getPrivateField("measurement") |
| 62 | + val resultFields: Map<String, Any> = point.getPrivateField("fields") |
| 63 | + val resultTags: Map<String, String> = point.getPrivateField("tags") |
| 64 | + val resultTime: Long = point.getPrivateField("time") |
| 65 | + val resultPrecision: TimeUnit = point.getPrivateField("precision") |
| 66 | + |
| 67 | + val end = System.currentTimeMillis() |
| 68 | + |
| 69 | + |
| 70 | + resultMeasurement `should be equal to` measurementName |
| 71 | + resultFields `should be equal to` fields |
| 72 | + resultTags.values `should contain same` listOf(application, cluster, namespace, tagVal) |
| 73 | + resultTime `should be greater or equal to` start |
| 74 | + resultTime `should be less or equal to` end |
| 75 | + resultPrecision `should be equal to` TimeUnit.MILLISECONDS |
| 76 | + } |
| 77 | + |
| 78 | + private inline fun <reified T: Any> Point.getPrivateField(fieldName: String): T { |
| 79 | + return this::class.java.getDeclaredField(fieldName).let { |
| 80 | + it.isAccessible = true |
| 81 | + val field = it.get(this) |
| 82 | + |
| 83 | + if (field is T) { |
| 84 | + field |
| 85 | + } else { |
| 86 | + throw TypeCastException("Could not fetch private field '$fieldName' as ${T::class.simpleName}") |
| 87 | + } |
| 88 | + } |
| 89 | + } |
| 90 | +} |
0 commit comments