/* * * * Copyright 2013-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.cloud.netflix.zuul; import java.util.Map; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.boot.test.web.client.TestRestTemplate; import org.springframework.context.ApplicationListener; import org.springframework.context.annotation.Configuration; import org.springframework.stereotype.Component; import org.springframework.test.annotation.DirtiesContext; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.springframework.web.bind.annotation.RestController; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; /** * @author Ryan Baxter */ @RunWith(SpringJUnit4ClassRunner.class) @SpringBootTest( webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, value = {"zuul.routes.sslservice.url=https://localhost:8443", "management.security.enabled=false"}) @DirtiesContext public class RoutesEndpointIntegrationTests { @Autowired private TestRestTemplate restTemplate; @Autowired private SimpleZuulProxyApplication.RoutesRefreshListener refreshListener; @Test public void getRoutesTest() { Map<String, String> routes = restTemplate.getForObject("/admin/routes", Map.class); assertEquals("https://localhost:8443", routes.get("/sslservice/**")); } @Test public void postRoutesTest() { Map<String, String> routes = restTemplate.postForObject("/admin/routes", null, Map.class); assertEquals("https://localhost:8443", routes.get("/sslservice/**")); assertTrue(refreshListener.wasCalled()); } @Configuration @EnableAutoConfiguration @RestController @EnableZuulProxy static class SimpleZuulProxyApplication { @Component static class RoutesRefreshListener implements ApplicationListener<RoutesRefreshedEvent> { private boolean called = false; @Override public void onApplicationEvent(RoutesRefreshedEvent routesRefreshedEvent) { called = true; } public boolean wasCalled() { return called; } } } }