Browse Source
* ManagementProperties and ServerProperties now support an address property * For example set management.port=9001,management.address=127.0.0.1 to listen on port 9001 but only for connections from the localhost [Fixes #49395783]pull/1/head
13 changed files with 313 additions and 69 deletions
@ -0,0 +1,148 @@ |
|||||||
|
package org.springframework.bootstrap.sample.service; |
||||||
|
|
||||||
|
import java.io.IOException; |
||||||
|
import java.util.ArrayList; |
||||||
|
import java.util.List; |
||||||
|
import java.util.Map; |
||||||
|
import java.util.concurrent.Callable; |
||||||
|
import java.util.concurrent.Executors; |
||||||
|
import java.util.concurrent.Future; |
||||||
|
import java.util.concurrent.TimeUnit; |
||||||
|
|
||||||
|
import org.junit.AfterClass; |
||||||
|
import org.junit.BeforeClass; |
||||||
|
import org.junit.Test; |
||||||
|
import org.springframework.bootstrap.SpringApplication; |
||||||
|
import org.springframework.context.ConfigurableApplicationContext; |
||||||
|
import org.springframework.http.HttpRequest; |
||||||
|
import org.springframework.http.HttpStatus; |
||||||
|
import org.springframework.http.ResponseEntity; |
||||||
|
import org.springframework.http.client.ClientHttpRequestExecution; |
||||||
|
import org.springframework.http.client.ClientHttpRequestInterceptor; |
||||||
|
import org.springframework.http.client.ClientHttpResponse; |
||||||
|
import org.springframework.http.client.InterceptingClientHttpRequestFactory; |
||||||
|
import org.springframework.http.client.SimpleClientHttpRequestFactory; |
||||||
|
import org.springframework.security.crypto.codec.Base64; |
||||||
|
import org.springframework.web.client.DefaultResponseErrorHandler; |
||||||
|
import org.springframework.web.client.RestTemplate; |
||||||
|
|
||||||
|
import static org.junit.Assert.assertEquals; |
||||||
|
import static org.junit.Assert.assertTrue; |
||||||
|
|
||||||
|
/** |
||||||
|
* Integration tests for separate management and main service ports. |
||||||
|
* |
||||||
|
* @author Dave Syer |
||||||
|
* |
||||||
|
*/ |
||||||
|
public class VarzAddressServiceBootstrapApplicationTests { |
||||||
|
|
||||||
|
private static ConfigurableApplicationContext context; |
||||||
|
|
||||||
|
private static int port = 9000; |
||||||
|
private static int managementPort = 9001; |
||||||
|
|
||||||
|
@BeforeClass |
||||||
|
public static void start() throws Exception { |
||||||
|
final String[] args = new String[] { "--server.port=" + port, |
||||||
|
"--management.port=" + managementPort }; |
||||||
|
Future<ConfigurableApplicationContext> future = Executors |
||||||
|
.newSingleThreadExecutor().submit( |
||||||
|
new Callable<ConfigurableApplicationContext>() { |
||||||
|
@Override |
||||||
|
public ConfigurableApplicationContext call() throws Exception { |
||||||
|
return (ConfigurableApplicationContext) SpringApplication |
||||||
|
.run(ServiceBootstrapApplication.class, args); |
||||||
|
} |
||||||
|
}); |
||||||
|
context = future.get(10, TimeUnit.SECONDS); |
||||||
|
} |
||||||
|
|
||||||
|
@AfterClass |
||||||
|
public static void stop() { |
||||||
|
if (context != null) { |
||||||
|
context.close(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testHome() throws Exception { |
||||||
|
@SuppressWarnings("rawtypes") |
||||||
|
ResponseEntity<Map> entity = getRestTemplate("user", "password").getForEntity( |
||||||
|
"http://localhost:" + port, Map.class); |
||||||
|
assertEquals(HttpStatus.OK, entity.getStatusCode()); |
||||||
|
@SuppressWarnings("unchecked") |
||||||
|
Map<String, Object> body = entity.getBody(); |
||||||
|
assertEquals("Hello Phil", body.get("message")); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testVarz() throws Exception { |
||||||
|
testHome(); // makes sure some requests have been made
|
||||||
|
@SuppressWarnings("rawtypes") |
||||||
|
ResponseEntity<Map> entity = getRestTemplate().getForEntity( |
||||||
|
"http://localhost:" + managementPort + "/varz", Map.class); |
||||||
|
assertEquals(HttpStatus.OK, entity.getStatusCode()); |
||||||
|
@SuppressWarnings("unchecked") |
||||||
|
Map<String, Object> body = entity.getBody(); |
||||||
|
assertTrue("Wrong body: " + body, body.containsKey("counter.status.200.root")); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testHealthz() throws Exception { |
||||||
|
ResponseEntity<String> entity = getRestTemplate().getForEntity( |
||||||
|
"http://localhost:" + managementPort + "/healthz", String.class); |
||||||
|
assertEquals(HttpStatus.OK, entity.getStatusCode()); |
||||||
|
assertEquals("ok", entity.getBody()); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testErrorPage() throws Exception { |
||||||
|
@SuppressWarnings("rawtypes") |
||||||
|
ResponseEntity<Map> entity = getRestTemplate().getForEntity( |
||||||
|
"http://localhost:" + managementPort + "/error", Map.class); |
||||||
|
assertEquals(HttpStatus.OK, entity.getStatusCode()); |
||||||
|
@SuppressWarnings("unchecked") |
||||||
|
Map<String, Object> body = entity.getBody(); |
||||||
|
assertEquals(999, body.get("status")); |
||||||
|
} |
||||||
|
|
||||||
|
private RestTemplate getRestTemplate() { |
||||||
|
return getRestTemplate(null, null); |
||||||
|
} |
||||||
|
|
||||||
|
private RestTemplate getRestTemplate(final String username, final String password) { |
||||||
|
|
||||||
|
List<ClientHttpRequestInterceptor> interceptors = new ArrayList<ClientHttpRequestInterceptor>(); |
||||||
|
|
||||||
|
if (username != null) { |
||||||
|
|
||||||
|
interceptors.add(new ClientHttpRequestInterceptor() { |
||||||
|
|
||||||
|
@Override |
||||||
|
public ClientHttpResponse intercept(HttpRequest request, byte[] body, |
||||||
|
ClientHttpRequestExecution execution) throws IOException { |
||||||
|
request.getHeaders().add( |
||||||
|
"Authorization", |
||||||
|
"Basic " |
||||||
|
+ new String(Base64 |
||||||
|
.encode((username + ":" + password) |
||||||
|
.getBytes()))); |
||||||
|
return execution.execute(request, body); |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
RestTemplate restTemplate = new RestTemplate( |
||||||
|
new InterceptingClientHttpRequestFactory( |
||||||
|
new SimpleClientHttpRequestFactory(), interceptors)); |
||||||
|
restTemplate.setErrorHandler(new DefaultResponseErrorHandler() { |
||||||
|
@Override |
||||||
|
public void handleError(ClientHttpResponse response) throws IOException { |
||||||
|
} |
||||||
|
}); |
||||||
|
return restTemplate; |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,54 @@ |
|||||||
|
/* |
||||||
|
* 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.bootstrap.service.properties; |
||||||
|
|
||||||
|
import java.net.InetAddress; |
||||||
|
import java.util.Collections; |
||||||
|
|
||||||
|
import org.junit.Test; |
||||||
|
import org.springframework.beans.MutablePropertyValues; |
||||||
|
import org.springframework.bootstrap.bind.RelaxedDataBinder; |
||||||
|
|
||||||
|
import static org.junit.Assert.assertEquals; |
||||||
|
import static org.junit.Assert.assertFalse; |
||||||
|
|
||||||
|
/** |
||||||
|
* Externalized configuration for server properties |
||||||
|
* |
||||||
|
* @author Dave Syer |
||||||
|
* |
||||||
|
*/ |
||||||
|
public class ServerPropertiesTests { |
||||||
|
|
||||||
|
private ServerProperties properties = new ServerProperties(); |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testAddressBinding() throws Exception { |
||||||
|
RelaxedDataBinder binder = new RelaxedDataBinder(this.properties, "server"); |
||||||
|
binder.bind(new MutablePropertyValues(Collections.singletonMap("server.address", |
||||||
|
"127.0.0.1"))); |
||||||
|
assertFalse(binder.getBindingResult().hasErrors()); |
||||||
|
assertEquals(InetAddress.getLocalHost(), this.properties.getAddress()); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testPortBinding() throws Exception { |
||||||
|
new RelaxedDataBinder(this.properties, "server").bind(new MutablePropertyValues( |
||||||
|
Collections.singletonMap("server.port", "9000"))); |
||||||
|
assertEquals(9000, this.properties.getPort()); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,43 @@ |
|||||||
|
/* |
||||||
|
* 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.bootstrap.bind; |
||||||
|
|
||||||
|
import java.beans.PropertyEditor; |
||||||
|
import java.beans.PropertyEditorSupport; |
||||||
|
import java.net.InetAddress; |
||||||
|
import java.net.UnknownHostException; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Dave Syer |
||||||
|
* |
||||||
|
*/ |
||||||
|
public class InetAddressEditor extends PropertyEditorSupport implements PropertyEditor { |
||||||
|
|
||||||
|
@Override |
||||||
|
public String getAsText() { |
||||||
|
return ((InetAddress) getValue()).getHostAddress(); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void setAsText(String text) throws IllegalArgumentException { |
||||||
|
try { |
||||||
|
setValue(InetAddress.getByName(text)); |
||||||
|
} catch (UnknownHostException e) { |
||||||
|
throw new IllegalArgumentException("Cannot locate host", e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
Loading…
Reference in new issue