/* * 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.autoconfigure.jmx; import org.junit.After; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; import org.springframework.beans.DirectFieldAccessor; import org.springframework.beans.factory.NoSuchBeanDefinitionException; import org.springframework.boot.autoconfigure.integration.IntegrationAutoConfiguration; import org.springframework.context.ConfigurableApplicationContext; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.integration.jmx.config.EnableIntegrationMBeanExport; import org.springframework.integration.monitor.IntegrationMBeanExporter; import org.springframework.jmx.export.MBeanExporter; import org.springframework.jmx.export.annotation.ManagedAttribute; import org.springframework.jmx.export.annotation.ManagedOperation; import org.springframework.jmx.export.annotation.ManagedResource; import org.springframework.jmx.export.naming.MetadataNamingStrategy; import org.springframework.mock.env.MockEnvironment; import org.springframework.test.util.ReflectionTestUtils; import static org.assertj.core.api.Assertions.assertThat; /** * Tests for {@link JmxAutoConfiguration} * * @author Christian Dupuis */ public class JmxAutoConfigurationTests { @Rule public ExpectedException thrown = ExpectedException.none(); private AnnotationConfigApplicationContext context; @After public void tearDown() { if (this.context != null) { this.context.close(); if (this.context.getParent() != null) { ((ConfigurableApplicationContext) this.context.getParent()).close(); } } } @Test public void testDefaultMBeanExport() { this.context = new AnnotationConfigApplicationContext(); this.context.register(JmxAutoConfiguration.class); this.context.refresh(); assertThat(this.context.getBean(MBeanExporter.class)).isNotNull(); } @Test public void testEnabledMBeanExport() { MockEnvironment env = new MockEnvironment(); env.setProperty("spring.jmx.enabled", "true"); this.context = new AnnotationConfigApplicationContext(); this.context.setEnvironment(env); this.context.register(JmxAutoConfiguration.class); this.context.refresh(); assertThat(this.context.getBean(MBeanExporter.class)).isNotNull(); } @Test(expected = NoSuchBeanDefinitionException.class) public void testDisabledMBeanExport() { MockEnvironment env = new MockEnvironment(); env.setProperty("spring.jmx.enabled", "false"); this.context = new AnnotationConfigApplicationContext(); this.context.setEnvironment(env); this.context.register(TestConfiguration.class, JmxAutoConfiguration.class); this.context.refresh(); this.context.getBean(MBeanExporter.class); } @Test public void testDefaultDomainConfiguredOnMBeanExport() { MockEnvironment env = new MockEnvironment(); env.setProperty("spring.jmx.enabled", "true"); env.setProperty("spring.jmx.default-domain", "my-test-domain"); this.context = new AnnotationConfigApplicationContext(); this.context.setEnvironment(env); this.context.register(TestConfiguration.class, JmxAutoConfiguration.class); this.context.refresh(); MBeanExporter mBeanExporter = this.context.getBean(MBeanExporter.class); assertThat(mBeanExporter).isNotNull(); MetadataNamingStrategy naming = (MetadataNamingStrategy) ReflectionTestUtils .getField(mBeanExporter, "namingStrategy"); assertThat(ReflectionTestUtils.getField(naming, "defaultDomain")) .isEqualTo("my-test-domain"); } @Test public void testBasicParentContext() { this.context = new AnnotationConfigApplicationContext(); this.context.register(JmxAutoConfiguration.class); this.context.refresh(); AnnotationConfigApplicationContext parent = this.context; this.context = new AnnotationConfigApplicationContext(); this.context.setParent(parent); this.context.register(JmxAutoConfiguration.class); this.context.refresh(); } @Test public void testParentContext() throws Exception { this.context = new AnnotationConfigApplicationContext(); this.context.register(JmxAutoConfiguration.class, TestConfiguration.class); this.context.refresh(); AnnotationConfigApplicationContext parent = this.context; this.context = new AnnotationConfigApplicationContext(); this.context.setParent(parent); this.context.register(JmxAutoConfiguration.class, TestConfiguration.class); this.context.refresh(); } @Test public void customJmxDomain() { this.context = new AnnotationConfigApplicationContext(); this.context.register(CustomJmxDomainConfiguration.class, JmxAutoConfiguration.class, IntegrationAutoConfiguration.class); this.context.refresh(); IntegrationMBeanExporter mbeanExporter = this.context .getBean(IntegrationMBeanExporter.class); DirectFieldAccessor dfa = new DirectFieldAccessor(mbeanExporter); assertThat(dfa.getPropertyValue("domain")).isEqualTo("foo.my"); } @Configuration @EnableIntegrationMBeanExport(defaultDomain = "foo.my") public static class CustomJmxDomainConfiguration { } @Configuration public static class TestConfiguration { @Bean public Counter counter() { return new Counter(); } @ManagedResource public static class Counter { private int counter = 0; @ManagedAttribute public int get() { return this.counter; } @ManagedOperation public void increment() { this.counter++; } } } }