环境
- Spring Boot:1.5.13.RELEASE
- 云:Edgware.SR3
- 云 AWS:1.2.2.RELEASE
- 爪哇 8
- OSX 10.13.4
问题
我正在尝试为 SQS 编写集成测试。
我有一个运行 SQS 的本地运行localstack docker容器TCP/4576
在我的测试代码中,我定义了一个 SQS 客户端,其端点设置为本地 4576,并且可以成功连接并创建队列、发送消息和删除队列。我还可以使用 SQS 客户端接收消息并提取我发送的消息。
我的问题是,如果我删除手动接收消息的代码以允许另一个组件获取消息,似乎什么都没有发生。我有一个注释如下的弹簧组件:
听众
@Component
public class MyListener {
@SqsListener(value = "my_queue", deletionPolicy = ON_SUCCESS)
public void receive(final MyMsg msg) {
System.out.println("GOT THE MESSAGE: "+ msg.toString());
}
}
测试
@RunWith(SpringRunner.class)
@SpringBootTest(properties = "spring.profiles.active=test")
public class MyTest {
@Autowired
private AmazonSQSAsync amazonSQS;
@Autowired
private SimpleMessageListenerContainer container;
private String queueUrl;
@Before
public void setUp() {
queueUrl = amazonSQS.createQueue("my_queue").getQueueUrl();
}
@After
public void tearDown() {
amazonSQS.deleteQueue(queueUrl);
}
@Test
public void name() throws InterruptedException {
amazonSQS.sendMessage(new SendMessageRequest(queueUrl, "hello"));
System.out.println("isRunning:" + container.isRunning());
System.out.println("isActive:" + container.isActive());
System.out.println("isRunningOnQueue:" + container.isRunning("my_queue"));
Thread.sleep(30_000);
System.out.println("GOT MESSAGE: " + amazonSQS.receiveMessage(queueUrl).getMessages().size());
}
@TestConfiguration
@EnableSqs
public static class SQSConfiguration {
@Primary
@Bean(destroyMethod = "shutdown")
public AmazonSQSAsync amazonSQS() {
final AwsClientBuilder.EndpointConfiguration endpoint = new AwsClientBuilder.EndpointConfiguration("http://127.0.0.1:4576", "eu-west-1");
return new AmazonSQSBufferedAsyncClient(AmazonSQSAsyncClientBuilder
.standard()
.withCredentials(new AWSStaticCredentialsProvider(new BasicAWSCredentials("key", "secret")))
.withEndpointConfiguration(endpoint)
.build());
}
}
}
在测试日志中,我看到:
oscamlistener.QueueMessageHandler :在 MyListener 类上找到 1 个消息处理程序方法:{public void MyListener.receive(MyMsg)=org.springframework.cloud.aws.messaging.listener.QueueMessageHandler$MappingInformation@1cd4082a} 2018-05-31 22:50: 39.582 信息 16329 ---
oscamlistener.QueueMessageHandler :将“org.springframework.cloud.aws.messaging.listener.QueueMessageHandler$MappingInformation@1cd4082a”映射到公共 void MyListener.receive(MyMsg)
其次是:
正在运行:真
活动:真
isRunningOnQueue:false
得到消息:1
这表明,在发送消息之间的 30 秒暂停中,容器没有接收到它,当我手动轮询消息时,它在队列中,我可以使用它。
我的问题是,为什么不调用侦听器,为什么isRunningOnQueue:false
行表明它不是为该队列自动启动的?
请注意,我还尝试设置我自己的SimpleMessageListenerContainer
bean,将 autostart 显式设置为 true(无论如何都是默认值)并且观察到行为没有变化。我认为应该配置一个应该org.springframework.cloud.aws.messaging.config.annotation.SqsConfiguration#simpleMessageListenerContainer
为我轮询消息@EnableSqs
的自动启动。SimpleMessageListenerContainer
我也设置了
logging.level.org.apache.http=DEBUG
logging.level.org.springframework.cloud=DEBUG
在我的测试属性中,可以看到 HTTP 调用创建队列、发送消息和删除等,但没有接收 HTTP 调用(除了我在测试结束时的手动调用)。