/* * Copyright 2012-2016 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 * * http://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.boot.actuate.endpoint; import java.util.Map; import org.junit.After; import org.junit.Test; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.boot.context.properties.EnableConfigurationProperties; import org.springframework.context.ConfigurableApplicationContext; 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; /** * Tests for {@link ConfigurationPropertiesReportEndpoint} when used with a parent * context. * * @author Dave Syer */ public class ConfigurationPropertiesReportEndpointParentTests { private AnnotationConfigApplicationContext context; @After public void close() { if (this.context != null) { this.context.close(); if (this.context.getParent() != null) { ((ConfigurableApplicationContext) this.context.getParent()).close(); } } } @Test public void testInvoke() throws Exception { AnnotationConfigApplicationContext parent = new AnnotationConfigApplicationContext(); parent.register(Parent.class); parent.refresh(); this.context = new AnnotationConfigApplicationContext(); this.context.setParent(parent); this.context.register(Config.class); this.context.refresh(); ConfigurationPropertiesReportEndpoint endpoint = this.context .getBean(ConfigurationPropertiesReportEndpoint.class); Map<String, Object> result = endpoint.invoke(); assertThat(result).containsKey("parent"); assertThat(result).hasSize(3); // the endpoint, the test props and the parent // System.err.println(result); } @Test public void testInvokeWithFactory() throws Exception { AnnotationConfigApplicationContext parent = new AnnotationConfigApplicationContext(); parent.register(Parent.class); parent.refresh(); this.context = new AnnotationConfigApplicationContext(); this.context.setParent(parent); this.context.register(Factory.class); this.context.refresh(); ConfigurationPropertiesReportEndpoint endpoint = this.context .getBean(ConfigurationPropertiesReportEndpoint.class); Map<String, Object> result = endpoint.invoke(); assertThat(result.containsKey("parent")).isTrue(); assertThat(result).hasSize(3); // the endpoint, the test props and the parent // System.err.println(result); } @Configuration @EnableConfigurationProperties public static class Parent { @Bean public TestProperties testProperties() { return new TestProperties(); } } @Configuration @EnableConfigurationProperties public static class Config { @Bean public ConfigurationPropertiesReportEndpoint endpoint() { return new ConfigurationPropertiesReportEndpoint(); } @Bean public TestProperties someProperties() { return new TestProperties(); } } @Configuration @EnableConfigurationProperties public static class Factory { @Bean public ConfigurationPropertiesReportEndpoint endpoint() { return new ConfigurationPropertiesReportEndpoint(); } @Bean @ConfigurationProperties(prefix = "other") public OtherProperties otherProperties() { return new OtherProperties(); } } public static class OtherProperties { } @ConfigurationProperties(prefix = "test") public static class TestProperties { private String myTestProperty = "654321"; public String getMyTestProperty() { return this.myTestProperty; } public void setMyTestProperty(String myTestProperty) { this.myTestProperty = myTestProperty; } } }