Same session after mutate for WebTestClient mock server

Issue: SPR-15674
This commit is contained in:
Rossen Stoyanchev
2017-06-23 19:17:47 -04:00
parent d57cd37266
commit 043c0eff4f
3 changed files with 95 additions and 2 deletions

View File

@@ -0,0 +1,71 @@
/*
* Copyright 2002-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.test.web.reactive.server;
import org.junit.Test;
import reactor.core.publisher.Mono;
import org.springframework.core.io.buffer.DataBuffer;
import org.springframework.core.io.buffer.DefaultDataBufferFactory;
import org.springframework.http.ResponseCookie;
import org.springframework.web.server.WebHandler;
import static java.nio.charset.StandardCharsets.UTF_8;
/**
* Mock server integration test scenarios.
* @author Rossen Stoyanchev
*/
public class MockServerIntegrationTests {
@Test
public void sameSessionInstanceAfterMutate() throws Exception {
WebHandler webHandler = exchange -> {
if (exchange.getRequest().getURI().getPath().equals("/set")) {
return exchange.getSession()
.doOnNext(session -> session.getAttributes().put("foo", "bar"))
.then();
}
else {
return exchange.getSession()
.map(session -> session.getAttribute("foo").orElse("none"))
.flatMap(value -> {
byte[] bytes = value.toString().getBytes(UTF_8);
DataBuffer buffer = new DefaultDataBufferFactory().wrap(bytes);
return exchange.getResponse().writeWith(Mono.just(buffer));
});
}
};
WebTestClient client = new DefaultMockServerSpec(webHandler).configureClient().build();
// Set the session attribute
EntityExchangeResult<Void> result = client.get().uri("/set").exchange()
.expectStatus().isOk().expectBody().isEmpty();
ResponseCookie session = result.getResponseCookies().getFirst("SESSION");
// Now get attribute
client.mutate().build()
.get().uri("/get")
.cookie(session.getName(), session.getValue())
.exchange()
.expectBody(String.class).isEqualTo("bar");
}
}