Add support for adding cookies as headers in MockHttpServletResponse

Issue: SPR-17110
This commit is contained in:
Vedran Pavic
2018-08-01 14:38:06 +02:00
committed by Rossen Stoyanchev
parent a8a1fc6de5
commit bb2db87c2f
6 changed files with 374 additions and 1 deletions

View File

@@ -0,0 +1,66 @@
/*
* Copyright 2002-2018 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.mock.web;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Unit tests for {@link MockCookie}.
*
* @author Vedran Pavic
*/
public class MockCookieTests {
@Test
public void constructCookie() {
MockCookie cookie = new MockCookie("SESSION", "123");
assertEquals("SESSION", cookie.getName());
assertEquals("123", cookie.getValue());
}
@Test
public void setSameSite() {
MockCookie cookie = new MockCookie("SESSION", "123");
cookie.setSameSite("Strict");
assertEquals("Strict", cookie.getSameSite());
}
@Test
public void parseValidHeader() {
MockCookie cookie = MockCookie.parse(
"SESSION=123; Domain=example.com; Max-Age=60; Path=/; Secure; HttpOnly; SameSite=Lax");
assertEquals("SESSION", cookie.getName());
assertEquals("123", cookie.getValue());
assertEquals("example.com", cookie.getDomain());
assertEquals(60, cookie.getMaxAge());
assertEquals("/", cookie.getPath());
assertTrue(cookie.getSecure());
assertTrue(cookie.isHttpOnly());
assertEquals("Lax", cookie.getSameSite());
}
@Test(expected = IllegalArgumentException.class)
public void parseInvalidHeader() {
MockCookie.parse("invalid");
}
}

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2018 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.
@@ -322,4 +322,35 @@ public class MockHttpServletResponseTests {
assertEquals(HttpServletResponse.SC_NOT_FOUND, response.getStatus());
}
@Test
public void setCookieHeaderValid() {
response.addHeader(HttpHeaders.SET_COOKIE, "SESSION=123; Path=/; Secure; HttpOnly; SameSite=Lax");
Cookie cookie = response.getCookie("SESSION");
assertNotNull(cookie);
assertTrue(cookie instanceof MockCookie);
assertEquals("SESSION", cookie.getName());
assertEquals("123", cookie.getValue());
assertEquals("/", cookie.getPath());
assertTrue(cookie.getSecure());
assertTrue(cookie.isHttpOnly());
assertEquals("Lax", ((MockCookie) cookie).getSameSite());
}
@Test
public void addMockCookie() {
MockCookie mockCookie = new MockCookie("SESSION", "123");
mockCookie.setPath("/");
mockCookie.setDomain("example.com");
mockCookie.setMaxAge(0);
mockCookie.setSecure(true);
mockCookie.setHttpOnly(true);
mockCookie.setSameSite("Lax");
response.addCookie(mockCookie);
assertEquals("SESSION=123; Path=/; Domain=example.com; Max-Age=0; " +
"Expires=Thu, 1 Jan 1970 00:00:00 GMT; Secure; HttpOnly; SameSite=Lax",
response.getHeader(HttpHeaders.SET_COOKIE));
}
}