6 changed files with 195 additions and 0 deletions
@ -0,0 +1,17 @@
@@ -0,0 +1,17 @@
|
||||
plugins { |
||||
id "java" |
||||
id "org.springframework.boot.docker-test" |
||||
} |
||||
|
||||
description = "Spring Boot Artemis smoke test" |
||||
|
||||
dependencies { |
||||
dockerTestImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")) |
||||
dockerTestImplementation(project(":spring-boot-project:spring-boot-testcontainers")) |
||||
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker")) |
||||
dockerTestImplementation("org.awaitility:awaitility") |
||||
dockerTestImplementation("org.testcontainers:junit-jupiter") |
||||
dockerTestImplementation("org.testcontainers:activemq") |
||||
|
||||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-artemis")) |
||||
} |
||||
@ -0,0 +1,61 @@
@@ -0,0 +1,61 @@
|
||||
/* |
||||
* Copyright 2012-2025 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 smoketest.artemis; |
||||
|
||||
import java.time.Duration; |
||||
|
||||
import org.awaitility.Awaitility; |
||||
import org.junit.jupiter.api.Test; |
||||
import org.junit.jupiter.api.extension.ExtendWith; |
||||
import org.testcontainers.activemq.ArtemisContainer; |
||||
import org.testcontainers.junit.jupiter.Container; |
||||
import org.testcontainers.junit.jupiter.Testcontainers; |
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.boot.test.context.SpringBootTest; |
||||
import org.springframework.boot.test.system.CapturedOutput; |
||||
import org.springframework.boot.test.system.OutputCaptureExtension; |
||||
import org.springframework.boot.testcontainers.service.connection.ServiceConnection; |
||||
import org.springframework.boot.testsupport.container.TestImage; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* Integration tests for demo application. |
||||
* |
||||
* @author Eddú Meléndez |
||||
* @author Stephane Nicoll |
||||
*/ |
||||
@SpringBootTest |
||||
@Testcontainers(disabledWithoutDocker = true) |
||||
@ExtendWith(OutputCaptureExtension.class) |
||||
class SampleArtemisTests { |
||||
|
||||
@Container |
||||
@ServiceConnection |
||||
private static final ArtemisContainer container = TestImage.container(ArtemisContainer.class); |
||||
|
||||
@Autowired |
||||
private Producer producer; |
||||
|
||||
@Test |
||||
void sendSimpleMessage(CapturedOutput output) { |
||||
this.producer.send("Test message"); |
||||
Awaitility.waitAtMost(Duration.ofMinutes(1)).untilAsserted(() -> assertThat(output).contains("Test message")); |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,30 @@
@@ -0,0 +1,30 @@
|
||||
/* |
||||
* 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 smoketest.artemis; |
||||
|
||||
import org.springframework.jms.annotation.JmsListener; |
||||
import org.springframework.stereotype.Component; |
||||
|
||||
@Component |
||||
public class Consumer { |
||||
|
||||
@JmsListener(destination = "sample.queue") |
||||
public void receiveQueue(String text) { |
||||
System.out.println(text); |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,45 @@
@@ -0,0 +1,45 @@
|
||||
/* |
||||
* 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 smoketest.artemis; |
||||
|
||||
import jakarta.jms.Queue; |
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.boot.CommandLineRunner; |
||||
import org.springframework.jms.core.JmsMessagingTemplate; |
||||
import org.springframework.stereotype.Component; |
||||
|
||||
@Component |
||||
public class Producer implements CommandLineRunner { |
||||
|
||||
@Autowired |
||||
private JmsMessagingTemplate jmsMessagingTemplate; |
||||
|
||||
@Autowired |
||||
private Queue queue; |
||||
|
||||
@Override |
||||
public void run(String... args) throws Exception { |
||||
send("Sample message"); |
||||
System.out.println("Message was sent to the Queue"); |
||||
} |
||||
|
||||
public void send(String msg) { |
||||
this.jmsMessagingTemplate.convertAndSend(this.queue, msg); |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,40 @@
@@ -0,0 +1,40 @@
|
||||
/* |
||||
* 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 smoketest.artemis; |
||||
|
||||
import jakarta.jms.Queue; |
||||
import org.apache.activemq.artemis.jms.client.ActiveMQQueue; |
||||
|
||||
import org.springframework.boot.SpringApplication; |
||||
import org.springframework.boot.autoconfigure.SpringBootApplication; |
||||
import org.springframework.context.annotation.Bean; |
||||
import org.springframework.jms.annotation.EnableJms; |
||||
|
||||
@SpringBootApplication |
||||
@EnableJms |
||||
public class SampleArtemisApplication { |
||||
|
||||
@Bean |
||||
public Queue queue() { |
||||
return new ActiveMQQueue("sample.queue"); |
||||
} |
||||
|
||||
public static void main(String[] args) { |
||||
SpringApplication.run(SampleArtemisApplication.class, args); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue