Browse Source
This commit moves `encodeUrl` and `registerUrlEncoder` from ServerHttpResponse to ServerWebExchange. It also renames `encodeUrl` to `transformUrl` and `registerUrlEncoder` to `addUrlTransformer` to make it clearer that these methods do not perform actual URL encodings (i.e. they do not replaceinvalid characters). The `add` prefix (instead of `register`) makes it clearer that each function is added in addition to the previous one. Issue: SPR-15924pull/1507/merge
10 changed files with 110 additions and 74 deletions
@ -0,0 +1,60 @@
@@ -0,0 +1,60 @@
|
||||
/* |
||||
* 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.web.server.adapter; |
||||
|
||||
import org.junit.Before; |
||||
import org.junit.Test; |
||||
|
||||
import org.springframework.mock.http.server.reactive.test.MockServerHttpRequest; |
||||
import org.springframework.mock.http.server.reactive.test.MockServerWebExchange; |
||||
import org.springframework.web.server.ServerWebExchange; |
||||
|
||||
import static org.junit.Assert.*; |
||||
|
||||
/** |
||||
* @author Arjen Poutsma |
||||
*/ |
||||
public class ServerWebExchangeTests { |
||||
|
||||
private ServerWebExchange exchange; |
||||
|
||||
@Before |
||||
public void createExchange() { |
||||
MockServerHttpRequest request = MockServerHttpRequest.get("http://example.com").build(); |
||||
this.exchange = new MockServerWebExchange(request); |
||||
} |
||||
|
||||
@Test |
||||
public void transformUrlDefault() throws Exception { |
||||
assertEquals("/foo", this.exchange.transformUrl("/foo")); |
||||
} |
||||
|
||||
@Test |
||||
public void transformUrlWithEncoder() throws Exception { |
||||
this.exchange.addUrlTransformer(s -> s + "?nonce=123"); |
||||
assertEquals("/foo?nonce=123", this.exchange.transformUrl("/foo")); |
||||
} |
||||
|
||||
@Test |
||||
public void transformUrlWithMultipleEncoders() throws Exception { |
||||
this.exchange.addUrlTransformer(s -> s + ";p=abc"); |
||||
this.exchange.addUrlTransformer(s -> s + "?q=123"); |
||||
assertEquals("/foo;p=abc?q=123", this.exchange.transformUrl("/foo")); |
||||
} |
||||
|
||||
|
||||
} |
Loading…
Reference in new issue