Support refresh specific ConfigurationPropertiesBean
parent
2b6837b8cf
commit
9d45b28d52
@ -0,0 +1,82 @@
|
||||
/*
|
||||
* Copyright 2013-2022 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.nacos;
|
||||
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import org.springframework.beans.factory.BeanFactoryUtils;
|
||||
import org.springframework.cloud.context.properties.ConfigurationPropertiesBeans;
|
||||
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
/**
|
||||
* NacosConfigAutoConfiguration Tester.
|
||||
*
|
||||
* @author freeman
|
||||
*/
|
||||
public class NacosConfigAutoConfigurationTest {
|
||||
|
||||
AnnotationConfigApplicationContext context;
|
||||
|
||||
@BeforeEach
|
||||
public void reset() {
|
||||
// compatible with legacy tests
|
||||
System.setProperty("spring.cloud.bootstrap.enabled", "true");
|
||||
context = new AnnotationConfigApplicationContext(
|
||||
NacosConfigAutoConfiguration.class, Config.class);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void noImports_thenCreateProperties() {
|
||||
assertThat(BeanFactoryUtils.beanNamesForTypeIncludingAncestors(context,
|
||||
NacosConfigProperties.class).length).isEqualTo(1);
|
||||
assertThat(context.getBean(NacosConfigProperties.class).getServerAddr())
|
||||
.isEqualTo("127.0.0.1:8848");
|
||||
context.close();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void imports_thenNoCreateProperties() {
|
||||
// mock import
|
||||
context.registerBean(NacosConfigProperties.class, () -> {
|
||||
NacosConfigProperties properties = new NacosConfigProperties();
|
||||
properties.setServerAddr("localhost");
|
||||
return properties;
|
||||
});
|
||||
|
||||
assertThat(BeanFactoryUtils.beanNamesForTypeIncludingAncestors(context,
|
||||
NacosConfigProperties.class).length).isEqualTo(1);
|
||||
assertThat(context.getBean(NacosConfigProperties.class).getServerAddr())
|
||||
.isEqualTo("localhost");
|
||||
context.close();
|
||||
}
|
||||
|
||||
@Configuration
|
||||
static class Config {
|
||||
|
||||
@Bean
|
||||
public ConfigurationPropertiesBeans beans() {
|
||||
return new ConfigurationPropertiesBeans();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue