Package org.springframework.boot.actuate.endpoint

Source Code of org.springframework.boot.actuate.endpoint.AutoConfigurationReportEndpointTests$Config

/*
* Copyright 2012-2013 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 javax.annotation.PostConstruct;

import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.actuate.endpoint.AutoConfigurationReportEndpoint.Report;
import org.springframework.boot.autoconfigure.condition.ConditionEvaluationReport;
import org.springframework.boot.autoconfigure.condition.ConditionOutcome;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Condition;
import org.springframework.context.annotation.Configuration;

import static org.junit.Assert.assertTrue;
import static org.mockito.Mockito.mock;

/**
* Tests for {@link AutoConfigurationReportEndpoint}.
*
* @author Greg Turnquist
* @author Phillip Webb
*/
public class AutoConfigurationReportEndpointTests extends
    AbstractEndpointTests<AutoConfigurationReportEndpoint> {

  public AutoConfigurationReportEndpointTests() {
    super(Config.class, AutoConfigurationReportEndpoint.class, "autoconfig", true,
        "endpoints.autoconfig");
  }

  @Test
  public void invoke() throws Exception {
    Report report = getEndpointBean().invoke();
    assertTrue(report.getPositiveMatches().isEmpty());
    assertTrue(report.getNegativeMatches().containsKey("a"));
  }

  @Configuration
  @EnableConfigurationProperties
  public static class Config {

    @Autowired
    private ConfigurableApplicationContext context;

    @PostConstruct
    public void setupAutoConfigurationReport() {
      ConditionEvaluationReport report = ConditionEvaluationReport.get(this.context
          .getBeanFactory());
      report.recordConditionEvaluation("a", mock(Condition.class),
          mock(ConditionOutcome.class));
    }

    @Bean
    public AutoConfigurationReportEndpoint endpoint() {
      return new AutoConfigurationReportEndpoint();
    }
  }

}
TOP

Related Classes of org.springframework.boot.actuate.endpoint.AutoConfigurationReportEndpointTests$Config

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.