8 changed files with 4 additions and 335 deletions
@ -1,51 +0,0 @@
@@ -1,51 +0,0 @@
|
||||
/* |
||||
* Copyright 2012-2023 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.autoconfigure.influx; |
||||
|
||||
import java.net.URI; |
||||
|
||||
import org.springframework.boot.autoconfigure.service.connection.ConnectionDetails; |
||||
|
||||
/** |
||||
* Details required to establish a connection to an InfluxDB service. |
||||
* |
||||
* @author Moritz Halbritter |
||||
* @author Andy Wilkinson |
||||
* @author Phillip Webb |
||||
* @since 3.1.0 |
||||
*/ |
||||
public interface InfluxDbConnectionDetails extends ConnectionDetails { |
||||
|
||||
/** |
||||
* URL of the InfluxDB instance to which to connect. |
||||
* @return the URL of the InfluxDB instance to which to connect |
||||
*/ |
||||
URI getUrl(); |
||||
|
||||
/** |
||||
* Login user. |
||||
* @return the login user or {@code null} |
||||
*/ |
||||
String getUsername(); |
||||
|
||||
/** |
||||
* Login password. |
||||
* @return the login password or {@code null} |
||||
*/ |
||||
String getPassword(); |
||||
|
||||
} |
||||
@ -1,76 +0,0 @@
@@ -1,76 +0,0 @@
|
||||
/* |
||||
* Copyright 2012-2023 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.testcontainers.service.connection.influx; |
||||
|
||||
import java.net.URI; |
||||
|
||||
import org.testcontainers.containers.InfluxDBContainer; |
||||
|
||||
import org.springframework.boot.autoconfigure.influx.InfluxDbConnectionDetails; |
||||
import org.springframework.boot.testcontainers.service.connection.ContainerConnectionDetailsFactory; |
||||
import org.springframework.boot.testcontainers.service.connection.ContainerConnectionSource; |
||||
import org.springframework.boot.testcontainers.service.connection.ServiceConnection; |
||||
|
||||
/** |
||||
* {@link ContainerConnectionDetailsFactory} to create {@link InfluxDbConnectionDetails} |
||||
* from a {@link ServiceConnection @ServiceConnection}-annotated |
||||
* {@link InfluxDBContainer}. |
||||
* |
||||
* @author Moritz Halbritter |
||||
* @author Andy Wilkinson |
||||
* @author Phillip Webb |
||||
*/ |
||||
class InfluxDbContainerConnectionDetailsFactory |
||||
extends ContainerConnectionDetailsFactory<InfluxDbConnectionDetails, InfluxDBContainer<?>> { |
||||
|
||||
@Override |
||||
protected InfluxDbConnectionDetails getContainerConnectionDetails( |
||||
ContainerConnectionSource<InfluxDBContainer<?>> source) { |
||||
return new InfluxDbContainerConnectionDetails(source); |
||||
} |
||||
|
||||
/** |
||||
* {@link InfluxDbConnectionDetails} backed by a {@link ContainerConnectionSource}. |
||||
*/ |
||||
private static final class InfluxDbContainerConnectionDetails extends ContainerConnectionDetails |
||||
implements InfluxDbConnectionDetails { |
||||
|
||||
private final InfluxDBContainer<?> container; |
||||
|
||||
private InfluxDbContainerConnectionDetails(ContainerConnectionSource<InfluxDBContainer<?>> source) { |
||||
super(source); |
||||
this.container = source.getContainer(); |
||||
} |
||||
|
||||
@Override |
||||
public String getUsername() { |
||||
return this.container.getUsername(); |
||||
} |
||||
|
||||
@Override |
||||
public String getPassword() { |
||||
return this.container.getPassword(); |
||||
} |
||||
|
||||
@Override |
||||
public URI getUrl() { |
||||
return URI.create(this.container.getUrl()); |
||||
} |
||||
|
||||
} |
||||
|
||||
} |
||||
@ -1,20 +0,0 @@
@@ -1,20 +0,0 @@
|
||||
/* |
||||
* Copyright 2012-2023 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. |
||||
*/ |
||||
|
||||
/** |
||||
* Support for testcontainers InfluxDB service connections. |
||||
*/ |
||||
package org.springframework.boot.testcontainers.service.connection.influx; |
||||
@ -1,64 +0,0 @@
@@ -1,64 +0,0 @@
|
||||
/* |
||||
* Copyright 2012-2023 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.testcontainers.service.connection.influx; |
||||
|
||||
import org.influxdb.InfluxDB; |
||||
import org.junit.jupiter.api.Test; |
||||
import org.testcontainers.containers.InfluxDBContainer; |
||||
import org.testcontainers.junit.jupiter.Container; |
||||
import org.testcontainers.junit.jupiter.Testcontainers; |
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.boot.autoconfigure.ImportAutoConfiguration; |
||||
import org.springframework.boot.autoconfigure.influx.InfluxDbAutoConfiguration; |
||||
import org.springframework.boot.testcontainers.service.connection.ServiceConnection; |
||||
import org.springframework.boot.testsupport.testcontainers.DockerImageNames; |
||||
import org.springframework.context.annotation.Configuration; |
||||
import org.springframework.test.context.junit.jupiter.SpringJUnitConfig; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* Tests for {@link InfluxDbContainerConnectionDetailsFactory}. |
||||
* |
||||
* @author Moritz Halbritter |
||||
* @author Andy Wilkinson |
||||
* @author Phillip Webb |
||||
*/ |
||||
@SpringJUnitConfig |
||||
@Testcontainers(disabledWithoutDocker = true) |
||||
class InfluxDbContainerConnectionDetailsFactoryIntegrationTests { |
||||
|
||||
@Container |
||||
@ServiceConnection |
||||
static final InfluxDBContainer<?> influxDbService = new InfluxDBContainer<>(DockerImageNames.influxDb()); |
||||
|
||||
@Autowired |
||||
private InfluxDB influxDb; |
||||
|
||||
@Test |
||||
void connectionCanBeMadeToInfluxDbContainer() { |
||||
assertThat(this.influxDb.version()).isEqualTo("v" + DockerImageNames.influxDb().getVersionPart()); |
||||
} |
||||
|
||||
@Configuration(proxyBeanMethods = false) |
||||
@ImportAutoConfiguration(InfluxDbAutoConfiguration.class) |
||||
static class TestConfiguration { |
||||
|
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue