48 lines
1.8 KiB
Java
48 lines
1.8 KiB
Java
package com.baeldung.client;
|
|
|
|
import static org.hamcrest.Matchers.equalTo;
|
|
import static org.hamcrest.Matchers.is;
|
|
import static org.junit.Assert.assertThat;
|
|
|
|
import com.baeldung.client.spring.ClientConfig;
|
|
import com.baeldung.web.dto.Foo;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.http.HttpMethod;
|
|
import org.springframework.http.ResponseEntity;
|
|
import org.springframework.test.context.ContextConfiguration;
|
|
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
import org.springframework.test.context.support.AnnotationConfigContextLoader;
|
|
import org.springframework.web.client.ResourceAccessException;
|
|
import org.springframework.web.client.RestTemplate;
|
|
|
|
@RunWith(SpringJUnit4ClassRunner.class)
|
|
@ContextConfiguration(classes = { ClientConfig.class }, loader = AnnotationConfigContextLoader.class)
|
|
public class ClientLiveTest {
|
|
|
|
@Autowired
|
|
private RestTemplate secureRestTemplate;
|
|
|
|
// tests
|
|
|
|
@Test
|
|
public final void whenContextIsBootstrapped_thenNoExceptions() {
|
|
//
|
|
}
|
|
|
|
@Test
|
|
public final void whenSecuredRestApiIsConsumed_then200OK() {
|
|
final ResponseEntity<Foo> responseEntity = secureRestTemplate.exchange("http://localhost:8082/httpclient-simple/api/foos/1", HttpMethod.GET, null, Foo.class);
|
|
assertThat(responseEntity.getStatusCode().value(), is(200));
|
|
}
|
|
|
|
@Test(expected = ResourceAccessException.class)
|
|
public final void whenHttpsUrlIsConsumed_thenException() {
|
|
final String urlOverHttps = "https://localhost:8443/httpclient-simple/api/bars/1";
|
|
final ResponseEntity<String> response = new RestTemplate().exchange(urlOverHttps, HttpMethod.GET, null, String.class);
|
|
assertThat(response.getStatusCode().value(), equalTo(200));
|
|
}
|
|
|
|
}
|