Merge pull request #25721 from shakuzen
* pr/25721: Polish "Support sending metrics to InfluxDB v2" Support sending metrics to InfluxDB v2 Closes gh-25721pull/25377/head
commit
b61e4bbe08
@ -0,0 +1,61 @@
|
||||
/*
|
||||
* Copyright 2012-2021 the original author or 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
|
||||
*
|
||||
* https://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 org.springframework.boot.actuate.autoconfigure.metrics.export.influx;
|
||||
|
||||
import io.micrometer.influx.InfluxApiVersion;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
/**
|
||||
* Tests for {@link InfluxPropertiesConfigAdapter}.
|
||||
*
|
||||
* @author Stephane Nicoll
|
||||
*/
|
||||
class InfluxPropertiesConfigAdapterTests {
|
||||
|
||||
@Test
|
||||
void adaptInfluxV1BasicConfig() {
|
||||
InfluxProperties properties = new InfluxProperties();
|
||||
properties.setDb("test-db");
|
||||
properties.setUri("https://influx.example.com:8086");
|
||||
properties.setUserName("user");
|
||||
properties.setPassword("secret");
|
||||
InfluxPropertiesConfigAdapter adapter = new InfluxPropertiesConfigAdapter(properties);
|
||||
assertThat(adapter.apiVersion()).isEqualTo(InfluxApiVersion.V1);
|
||||
assertThat(adapter.db()).isEqualTo("test-db");
|
||||
assertThat(adapter.uri()).isEqualTo("https://influx.example.com:8086");
|
||||
assertThat(adapter.userName()).isEqualTo("user");
|
||||
assertThat(adapter.password()).isEqualTo("secret");
|
||||
}
|
||||
|
||||
@Test
|
||||
void adaptInfluxV2BasicConfig() {
|
||||
InfluxProperties properties = new InfluxProperties();
|
||||
properties.setOrg("test-org");
|
||||
properties.setBucket("test-bucket");
|
||||
properties.setUri("https://influx.example.com:8086");
|
||||
properties.setToken("token");
|
||||
InfluxPropertiesConfigAdapter adapter = new InfluxPropertiesConfigAdapter(properties);
|
||||
assertThat(adapter.apiVersion()).isEqualTo(InfluxApiVersion.V2);
|
||||
assertThat(adapter.org()).isEqualTo("test-org");
|
||||
assertThat(adapter.bucket()).isEqualTo("test-bucket");
|
||||
assertThat(adapter.uri()).isEqualTo("https://influx.example.com:8086");
|
||||
assertThat(adapter.token()).isEqualTo("token");
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue