2017-01-26 20:34:40 +01:00
|
|
|
package com.baeldung.cachecontrol;
|
|
|
|
|
|
|
|
import com.jayway.restassured.http.ContentType;
|
|
|
|
import org.junit.Test;
|
|
|
|
import org.junit.runner.RunWith;
|
|
|
|
import org.springframework.test.context.ContextConfiguration;
|
|
|
|
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
|
|
import org.springframework.test.context.support.AnnotationConfigContextLoader;
|
|
|
|
|
|
|
|
import static com.jayway.restassured.RestAssured.given;
|
|
|
|
|
|
|
|
@RunWith(SpringJUnit4ClassRunner.class)
|
|
|
|
@ContextConfiguration(classes = {TestConfig.class}, loader = AnnotationConfigContextLoader.class)
|
2017-02-04 18:02:28 +01:00
|
|
|
public class ResourceEndpointLiveTest {
|
2017-01-26 20:34:40 +01:00
|
|
|
private static final String URL_PREFIX = "http://localhost:8080";
|
|
|
|
|
2017-01-26 21:47:52 +01:00
|
|
|
@Test
|
|
|
|
public void givenServiceEndpoint_whenGetRequestForUser_shouldResponseWithCacheControlMaxAge() {
|
|
|
|
given()
|
|
|
|
.when()
|
|
|
|
.get(URL_PREFIX + "/users/Michael")
|
|
|
|
.then()
|
|
|
|
.contentType(ContentType.JSON).and().statusCode(200).and()
|
|
|
|
.header("Cache-Control", "max-age=60");
|
|
|
|
}
|
2017-01-26 20:34:40 +01:00
|
|
|
|
|
|
|
@Test
|
|
|
|
public void givenServiceEndpoint_whenGetRequestForNotCacheableContent_shouldResponseWithCacheControlNoCache() {
|
|
|
|
given()
|
|
|
|
.when()
|
|
|
|
.get(URL_PREFIX + "/timestamp")
|
|
|
|
.then()
|
|
|
|
.contentType(ContentType.JSON).and().statusCode(200).and()
|
2017-01-26 21:47:52 +01:00
|
|
|
.header("Cache-Control", "no-store");
|
2017-01-26 20:34:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void givenServiceEndpoint_whenGetRequestForPrivateUser_shouldResponseWithSecurityDefaultCacheControl() {
|
|
|
|
given()
|
|
|
|
.when()
|
|
|
|
.get(URL_PREFIX + "/private/users/Michael")
|
|
|
|
.then()
|
|
|
|
.contentType(ContentType.JSON).and().statusCode(200).and()
|
|
|
|
.header("Cache-Control", "no-cache, no-store, max-age=0, must-revalidate");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|