Spencer Gibb
8 years ago
26 changed files with 471 additions and 67 deletions
@ -0,0 +1,32 @@
@@ -0,0 +1,32 @@
|
||||
/* |
||||
* Copyright 2013-2017 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.ribbon; |
||||
|
||||
import lombok.Data; |
||||
import org.springframework.boot.context.properties.ConfigurationProperties; |
||||
|
||||
import java.util.Arrays; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* @author Rico Pahlisch |
||||
*/ |
||||
@Data |
||||
@ConfigurationProperties("ribbon") |
||||
public class ServerIntrospectorProperties { |
||||
private List<Integer> securePorts = Arrays.asList(443,8443); |
||||
} |
@ -0,0 +1,39 @@
@@ -0,0 +1,39 @@
|
||||
/* |
||||
* Copyright 2017 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 org.springframework.context.annotation.Bean; |
||||
import org.springframework.context.annotation.Configuration; |
||||
|
||||
/** |
||||
* Responsible for adding in a marker bean to trigger activation of |
||||
* {@link ZuulServerAutoConfiguration} |
||||
* |
||||
* @author Biju Kunjummen |
||||
*/ |
||||
|
||||
@Configuration |
||||
public class ZuulProxyMarkerConfiguration { |
||||
@Bean |
||||
public Marker zuulProxyMarkerBean() { |
||||
return new Marker(); |
||||
} |
||||
|
||||
class Marker { |
||||
} |
||||
} |
@ -0,0 +1,39 @@
@@ -0,0 +1,39 @@
|
||||
/* |
||||
* Copyright 2017 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 org.springframework.context.annotation.Bean; |
||||
import org.springframework.context.annotation.Configuration; |
||||
|
||||
/** |
||||
* Responsible for adding in a marker bean to trigger activation of |
||||
* {@link ZuulServerAutoConfiguration} |
||||
* |
||||
* @author Biju Kunjummen |
||||
*/ |
||||
|
||||
@Configuration |
||||
public class ZuulServerMarkerConfiguration { |
||||
@Bean |
||||
public Marker zuulServerMarkerBean() { |
||||
return new Marker(); |
||||
} |
||||
|
||||
class Marker { |
||||
} |
||||
} |
@ -0,0 +1,63 @@
@@ -0,0 +1,63 @@
|
||||
/* |
||||
* Copyright 2013-2017 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.ribbon; |
||||
|
||||
import com.netflix.loadbalancer.Server; |
||||
import org.junit.Assert; |
||||
import org.junit.Test; |
||||
import org.junit.runner.RunWith; |
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.boot.context.properties.EnableConfigurationProperties; |
||||
import org.springframework.boot.test.context.SpringBootTest; |
||||
import org.springframework.context.annotation.Bean; |
||||
import org.springframework.context.annotation.Configuration; |
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; |
||||
|
||||
import static org.mockito.Mockito.mock; |
||||
import static org.mockito.Mockito.when; |
||||
|
||||
/** |
||||
* @author Rico Pahlisch |
||||
*/ |
||||
@RunWith(SpringJUnit4ClassRunner.class) |
||||
@SpringBootTest(classes = DefaultServerIntrospectorDefaultTest.TestConfiguration.class) |
||||
public class DefaultServerIntrospectorDefaultTest { |
||||
|
||||
@Autowired |
||||
private ServerIntrospector serverIntrospector; |
||||
|
||||
@Test |
||||
public void testDefaultSslPorts(){ |
||||
Server serverMock = mock(Server.class); |
||||
when(serverMock.getPort()).thenReturn(443); |
||||
Assert.assertTrue(serverIntrospector.isSecure(serverMock)); |
||||
when(serverMock.getPort()).thenReturn(8443); |
||||
Assert.assertTrue(serverIntrospector.isSecure(serverMock)); |
||||
|
||||
when(serverMock.getPort()).thenReturn(16443); |
||||
Assert.assertFalse(serverIntrospector.isSecure(serverMock)); |
||||
} |
||||
|
||||
@Configuration |
||||
@EnableConfigurationProperties(ServerIntrospectorProperties.class) |
||||
protected static class TestConfiguration { |
||||
@Bean |
||||
public DefaultServerIntrospector defaultServerIntrospector(){ |
||||
return new DefaultServerIntrospector(); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,65 @@
@@ -0,0 +1,65 @@
|
||||
/* |
||||
* Copyright 2013-2017 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.ribbon; |
||||
|
||||
import com.netflix.loadbalancer.Server; |
||||
import org.junit.Assert; |
||||
import org.junit.Test; |
||||
import org.junit.runner.RunWith; |
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.boot.context.properties.ConfigurationProperties; |
||||
import org.springframework.boot.context.properties.EnableConfigurationProperties; |
||||
import org.springframework.boot.test.context.SpringBootTest; |
||||
import org.springframework.context.annotation.Bean; |
||||
import org.springframework.context.annotation.Configuration; |
||||
import org.springframework.test.context.TestPropertySource; |
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; |
||||
|
||||
import static org.mockito.Mockito.mock; |
||||
import static org.mockito.Mockito.when; |
||||
|
||||
/** |
||||
* @author Rico Pahlisch |
||||
*/ |
||||
@RunWith(SpringJUnit4ClassRunner.class) |
||||
@SpringBootTest(classes = DefaultServerIntrospectorTest.TestConfiguration.class) |
||||
@TestPropertySource(properties = { "ribbon.securePorts=12345,556" }) |
||||
public class DefaultServerIntrospectorTest { |
||||
|
||||
@Autowired |
||||
private ServerIntrospector serverIntrospector; |
||||
|
||||
@Test |
||||
public void testSecurePortConfiguration(){ |
||||
Server serverMock = mock(Server.class); |
||||
when(serverMock.getPort()).thenReturn(12345); |
||||
Assert.assertTrue(serverIntrospector.isSecure(serverMock)); |
||||
when(serverMock.getPort()).thenReturn(556); |
||||
Assert.assertTrue(serverIntrospector.isSecure(serverMock)); |
||||
when(serverMock.getPort()).thenReturn(443); |
||||
Assert.assertFalse(serverIntrospector.isSecure(serverMock)); |
||||
} |
||||
|
||||
@Configuration |
||||
@EnableConfigurationProperties(ServerIntrospectorProperties.class) |
||||
protected static class TestConfiguration { |
||||
@Bean |
||||
public DefaultServerIntrospector defaultServerIntrospector(){ |
||||
return new DefaultServerIntrospector(); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,62 @@
@@ -0,0 +1,62 @@
|
||||
/* |
||||
* Copyright 2017 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 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.cloud.netflix.zuul.filters.CompositeRouteLocator; |
||||
import org.springframework.cloud.netflix.zuul.filters.RouteLocator; |
||||
import org.springframework.cloud.netflix.zuul.filters.route.RibbonRoutingFilter; |
||||
import org.springframework.context.annotation.Configuration; |
||||
import org.springframework.test.context.junit4.SpringRunner; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* To test the auto-configuration of Zuul Proxy |
||||
* |
||||
* @author Biju Kunjummen |
||||
* |
||||
*/ |
||||
|
||||
@RunWith(SpringRunner.class) |
||||
@SpringBootTest |
||||
public class ZuulProxyAutoConfigurationTests { |
||||
|
||||
@Autowired |
||||
private RouteLocator routeLocator; |
||||
|
||||
@Autowired(required = false) |
||||
private RibbonRoutingFilter ribbonRoutingFilter; |
||||
|
||||
@Test |
||||
public void testAutoConfiguredBeans() { |
||||
assertThat(routeLocator).isInstanceOf(CompositeRouteLocator.class); |
||||
assertThat(this.ribbonRoutingFilter).isNotNull(); |
||||
} |
||||
|
||||
|
||||
@Configuration |
||||
@EnableAutoConfiguration |
||||
@EnableZuulProxy |
||||
static class TestConfig { |
||||
} |
||||
} |
@ -0,0 +1,62 @@
@@ -0,0 +1,62 @@
|
||||
/* |
||||
* Copyright 2017 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 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.cloud.netflix.zuul.filters.CompositeRouteLocator; |
||||
import org.springframework.cloud.netflix.zuul.filters.RouteLocator; |
||||
import org.springframework.cloud.netflix.zuul.filters.route.RibbonRoutingFilter; |
||||
import org.springframework.context.annotation.Configuration; |
||||
import org.springframework.test.context.junit4.SpringRunner; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* To test the auto-configuration of Zuul Proxy |
||||
* |
||||
* @author Biju Kunjummen |
||||
* |
||||
*/ |
||||
|
||||
@RunWith(SpringRunner.class) |
||||
@SpringBootTest |
||||
public class ZuulServerAutoConfigurationTests { |
||||
|
||||
@Autowired |
||||
private RouteLocator routeLocator; |
||||
|
||||
@Autowired(required = false) |
||||
private RibbonRoutingFilter ribbonRoutingFilter; |
||||
|
||||
@Test |
||||
public void testAutoConfiguredBeans() { |
||||
assertThat(routeLocator).isInstanceOf(CompositeRouteLocator.class); |
||||
assertThat(ribbonRoutingFilter).isNull(); |
||||
} |
||||
|
||||
|
||||
@Configuration |
||||
@EnableAutoConfiguration |
||||
@EnableZuulServer |
||||
static class TestConfig { |
||||
} |
||||
} |
Loading…
Reference in new issue