Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-cloud-netflix
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
spring-cloud-netflix
Commits
910167de
Commit
910167de
authored
Apr 26, 2017
by
Biju Kunjummen
Committed by
Spencer Gibb
Apr 26, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ribbon based on Eureka disabled, if Eureka client is not enabled (#1892)
Ribbon client configuration based on Eureka is disabled if eureka.client.enabed is set to false. Fixes gh-335
parent
29fb58de
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
105 additions
and
2 deletions
+105
-2
RibbonEurekaAutoConfiguration.java
.../netflix/ribbon/eureka/RibbonEurekaAutoConfiguration.java
+9
-2
EurekaDisabledRibbonClientIntegrationTests.java
...on/eureka/EurekaDisabledRibbonClientIntegrationTests.java
+94
-0
RibbonEurekaAutoConfigurationTests.java
...lix/ribbon/eureka/RibbonEurekaAutoConfigurationTests.java
+2
-0
No files found.
spring-cloud-netflix-eureka-client/src/main/java/org/springframework/cloud/netflix/ribbon/eureka/RibbonEurekaAutoConfiguration.java
View file @
910167de
/*
* Copyright 2013-201
4
the original author or authors.
* Copyright 2013-201
7
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.
...
...
@@ -38,7 +38,11 @@ import com.netflix.discovery.EurekaClient;
import
com.netflix.niws.loadbalancer.DiscoveryEnabledNIWSServerList
;
/**
* Spring configuration for configuring Ribbon defaults to be Eureka based
* if Eureka client is enabled
*
* @author Dave Syer
* @author Biju Kunjummen
*/
@Configuration
@EnableConfigurationProperties
...
...
@@ -65,8 +69,11 @@ public class RibbonEurekaAutoConfiguration {
@ConditionalOnBean
(
SpringClientFactory
.
class
)
@ConditionalOnProperty
(
value
=
"ribbon.eureka.enabled"
,
matchIfMissing
=
true
)
static
class
Defaults
{}
@ConditionalOnBean
(
EurekaClient
.
class
)
static
class
EurekaBeans
{}
@ConditionalOnProperty
(
value
=
"eureka.client.enabled"
,
matchIfMissing
=
true
)
static
class
OnEurekaClientEnabled
{}
}
}
spring-cloud-netflix-eureka-client/src/test/java/org/springframework/cloud/netflix/ribbon/eureka/EurekaDisabledRibbonClientIntegrationTests.java
0 → 100644
View file @
910167de
/*
* 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
.
ribbon
.
eureka
;
import
com.netflix.loadbalancer.Server
;
import
com.netflix.loadbalancer.ZoneAvoidanceRule
;
import
com.netflix.loadbalancer.ZoneAwareLoadBalancer
;
import
com.netflix.niws.loadbalancer.NIWSDiscoveryPing
;
import
org.junit.Test
;
import
org.junit.runner.RunWith
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.boot.autoconfigure.PropertyPlaceholderAutoConfiguration
;
import
org.springframework.boot.test.context.SpringBootTest
;
import
org.springframework.cloud.commons.util.UtilAutoConfiguration
;
import
org.springframework.cloud.netflix.archaius.ArchaiusAutoConfiguration
;
import
org.springframework.cloud.netflix.eureka.EurekaClientAutoConfiguration
;
import
org.springframework.cloud.netflix.eureka.EurekaDiscoveryClientConfiguration
;
import
org.springframework.cloud.netflix.ribbon.RibbonAutoConfiguration
;
import
org.springframework.cloud.netflix.ribbon.RibbonClient
;
import
org.springframework.cloud.netflix.ribbon.ServerIntrospector
;
import
org.springframework.cloud.netflix.ribbon.SpringClientFactory
;
import
org.springframework.cloud.netflix.ribbon.eureka.EurekaRibbonClientPreprocessorIntegrationTests.TestConfiguration
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.context.annotation.Import
;
import
org.springframework.test.annotation.DirtiesContext
;
import
org.springframework.test.context.junit4.SpringJUnit4ClassRunner
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
/**
* Ribbon Eureka client should be disabled if Eureka client is not enabled
*
* @author Biju Kunjummen
*/
@RunWith
(
SpringJUnit4ClassRunner
.
class
)
@SpringBootTest
(
classes
=
TestConfiguration
.
class
,
properties
=
"eureka.client.enabled=false"
)
@DirtiesContext
public
class
EurekaDisabledRibbonClientIntegrationTests
{
@Autowired
private
SpringClientFactory
factory
;
@Test
public
void
serverListShouldNotBeEurekaBased
()
throws
Exception
{
assertThat
(
getLoadBalancer
().
getServerListImpl
())
.
isNotInstanceOf
(
DomainExtractingServerList
.
class
);
}
@Test
public
void
ruleDefaultsToZoneAvoidance
()
throws
Exception
{
ZoneAvoidanceRule
.
class
.
cast
(
getLoadBalancer
().
getRule
());
}
@Test
public
void
pingShouldNotBeEurekaBased
()
throws
Exception
{
assertThat
(
getLoadBalancer
().
getPing
()).
isNotInstanceOf
(
NIWSDiscoveryPing
.
class
);
}
@Test
public
void
serverIntrospectorShouldNotBeEurekaBased
()
throws
Exception
{
assertThat
(
this
.
factory
.
getInstance
(
"foo"
,
ServerIntrospector
.
class
))
.
isNotInstanceOf
(
EurekaServerIntrospector
.
class
);
}
@SuppressWarnings
(
"unchecked"
)
private
ZoneAwareLoadBalancer
<
Server
>
getLoadBalancer
()
{
return
(
ZoneAwareLoadBalancer
<
Server
>)
this
.
factory
.
getLoadBalancer
(
"foo"
);
}
@Configuration
@RibbonClient
(
"foo"
)
@Import
({
UtilAutoConfiguration
.
class
,
PropertyPlaceholderAutoConfiguration
.
class
,
ArchaiusAutoConfiguration
.
class
,
RibbonAutoConfiguration
.
class
,
EurekaDiscoveryClientConfiguration
.
class
,
EurekaClientAutoConfiguration
.
class
,
RibbonEurekaAutoConfiguration
.
class
})
protected
static
class
TestConfiguration
{
}
}
spring-cloud-netflix-eureka-client/src/test/java/org/springframework/cloud/netflix/ribbon/eureka/RibbonEurekaAutoConfigurationTests.java
View file @
910167de
...
...
@@ -30,6 +30,7 @@ import org.springframework.cloud.client.ServiceInstance;
import
org.springframework.cloud.client.discovery.EnableDiscoveryClient
;
import
org.springframework.cloud.client.loadbalancer.LoadBalancerClient
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.test.annotation.DirtiesContext
;
import
org.springframework.test.context.junit4.SpringRunner
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
...
...
@@ -42,6 +43,7 @@ import static org.springframework.boot.test.context.SpringBootTest.WebEnvironmen
@SpringBootTest
(
classes
=
RibbonEurekaAutoConfigurationTests
.
EurekaClientDisabledApp
.
class
,
properties
=
{
"eureka.client.enabled=false"
,
"spring.application.name=eurekadisabledtest"
},
webEnvironment
=
RANDOM_PORT
)
@DirtiesContext
public
class
RibbonEurekaAutoConfigurationTests
{
@Autowired
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment