Validating RocketMQ Properties Runtime Hints in Spring Cloud Alibaba
This test suite validates the runtime hints registration for RocketMQ properties provider in Spring Cloud Alibaba’s stream binder implementation. It ensures proper reflection configuration for RocketMQ consumer and producer properties handling during AOT processing.
Test Coverage Overview
Implementation Analysis
Technical Details
Best Practices Demonstrated
alibaba/spring-cloud-alibaba
spring-cloud-alibaba-starters/spring-cloud-starter-stream-rocketmq/src/test/java/com/alibaba/cloud/stream/binder/rocketmq/aot/hint/RocketMQSpecificPropertiesProviderHintsTests.java
/*
* Copyright 2013-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 com.alibaba.cloud.stream.binder.rocketmq.aot.hint;
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import com.alibaba.cloud.stream.binder.rocketmq.properties.RocketMQConsumerProperties;
import com.alibaba.cloud.stream.binder.rocketmq.properties.RocketMQProducerProperties;
import com.alibaba.cloud.stream.binder.rocketmq.properties.RocketMQSpecificPropertiesProvider;
import org.junit.jupiter.api.Test;
import org.springframework.aot.hint.RuntimeHints;
import org.springframework.aot.hint.predicate.RuntimeHintsPredicates;
import org.springframework.util.ReflectionUtils;
import static org.assertj.core.api.Assertions.assertThat;
/**
* @author ChengPu raozihao
*/
public class RocketMQSpecificPropertiesProviderHintsTests {
@Test
public void shouldRegisterHints() {
Constructor<RocketMQSpecificPropertiesProvider> constructor;
try {
constructor = RocketMQSpecificPropertiesProvider.class.getConstructor();
}
catch (NoSuchMethodException e) {
throw new RuntimeException(e);
}
Method getConsumer = ReflectionUtils.findMethod(RocketMQSpecificPropertiesProvider.class, "getConsumer");
Method setConsumer = ReflectionUtils.findMethod(RocketMQSpecificPropertiesProvider.class, "setConsumer", RocketMQConsumerProperties.class);
Method getProducer = ReflectionUtils.findMethod(RocketMQSpecificPropertiesProvider.class, "getProducer");
Method setProducer = ReflectionUtils.findMethod(RocketMQSpecificPropertiesProvider.class, "setProducer", RocketMQProducerProperties.class);
RuntimeHints hints = new RuntimeHints();
new RocketMQSpecificPropertiesProviderHints().registerHints(hints, getClass().getClassLoader());
assertThat(RuntimeHintsPredicates.reflection().onConstructor(constructor)).accepts(hints);
assertThat(RuntimeHintsPredicates.reflection().onMethod(getConsumer)).accepts(hints);
assertThat(RuntimeHintsPredicates.reflection().onMethod(setConsumer)).accepts(hints);
assertThat(RuntimeHintsPredicates.reflection().onMethod(getProducer)).accepts(hints);
assertThat(RuntimeHintsPredicates.reflection().onMethod(setProducer)).accepts(hints);
}
}