-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Testcontainers for RabbitMQ modules
* Remove `ownConnection` feature from RabbitMQ modules. It does not bring too much value over Spring Boot config. Plus no one else modules tries to mimic such a behavior. So, fully rely on Spring Boot auto-configuration for RabbitMQ as well.
- Loading branch information
1 parent
f509b15
commit 26479fb
Showing
9 changed files
with
96 additions
and
233 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
...sumer/src/test/java/org/springframework/cloud/fn/consumer/rabbit/RabbitTestContainer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* Copyright 2022-2024 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.cloud.fn.consumer.rabbit; | ||
|
||
import java.io.IOException; | ||
|
||
import org.junit.jupiter.api.BeforeAll; | ||
import org.testcontainers.containers.RabbitMQContainer; | ||
import org.testcontainers.junit.jupiter.Testcontainers; | ||
|
||
import org.springframework.test.context.DynamicPropertyRegistry; | ||
import org.springframework.test.context.DynamicPropertySource; | ||
|
||
/** | ||
* Provides a static {@link RabbitMQContainer} that can be shared across test classes. | ||
* | ||
* @author Chris Bono | ||
* @author Gary Russell | ||
* @author Artem Bilan | ||
*/ | ||
@Testcontainers(disabledWithoutDocker = true) | ||
public interface RabbitTestContainer { | ||
|
||
RabbitMQContainer RABBITMQ = new RabbitMQContainer("rabbitmq").withExposedPorts(5672, 5552); | ||
|
||
@BeforeAll | ||
static void startContainer() throws IOException, InterruptedException { | ||
RABBITMQ.start(); | ||
RABBITMQ.execInContainer("rabbitmq-plugins", "enable", "rabbitmq_stream"); | ||
} | ||
|
||
@DynamicPropertySource | ||
static void RabbitMqProperties(DynamicPropertyRegistry propertyRegistry) { | ||
propertyRegistry.add("spring.rabbitmq.port", () -> RABBITMQ.getMappedPort(5672)); | ||
propertyRegistry.add("spring.rabbitmq.stream.port", () -> RABBITMQ.getMappedPort(5552)); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.