-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#9502] Backport: Fix path of reactor-netty server
- Loading branch information
1 parent
cddbcc1
commit fdd293e
Showing
6 changed files
with
159 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
...netty/src/main/java/com/navercorp/pinpoint/plugin/reactor/netty/interceptor/UriUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
* Copyright 2022 NAVER Corp. | ||
* | ||
* 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 com.navercorp.pinpoint.plugin.reactor.netty.interceptor; | ||
|
||
public class UriUtils { | ||
|
||
public static String path(final String uri) { | ||
if (uri == null) { | ||
return null; | ||
} | ||
|
||
String path = uri; | ||
int index = path.indexOf('?'); | ||
if (index > -1) { | ||
path = path.substring(0, index); | ||
} | ||
index = path.indexOf('#'); | ||
if (index > -1) { | ||
path = path.substring(0, index); | ||
} | ||
|
||
return path; | ||
} | ||
|
||
public static String params(final String uri) { | ||
if (uri == null) { | ||
return null; | ||
} | ||
|
||
String params = uri; | ||
int index = params.indexOf('?'); | ||
if (index == -1) { | ||
return null; | ||
} | ||
params = params.substring(index + 1, params.length()); | ||
index = params.indexOf('#'); | ||
if (index > -1) { | ||
params = params.substring(0, index); | ||
} | ||
|
||
return params; | ||
} | ||
} |
52 changes: 52 additions & 0 deletions
52
...y/src/test/java/com/navercorp/pinpoint/plugin/reactor/netty/interceptor/UriUtilsTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* Copyright 2022 NAVER Corp. | ||
* | ||
* 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 com.navercorp.pinpoint.plugin.reactor.netty.interceptor; | ||
|
||
import org.junit.Test; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
public class UriUtilsTest { | ||
|
||
@Test | ||
public void path() throws Exception { | ||
assertEquals("", UriUtils.path("")); | ||
assertEquals("/", UriUtils.path("/")); | ||
assertEquals("//", UriUtils.path("//")); | ||
assertEquals("///", UriUtils.path("///")); | ||
assertEquals("/foo", UriUtils.path("/foo")); | ||
assertEquals("/foo/", UriUtils.path("/foo/")); | ||
assertEquals("/", UriUtils.path("/?bar")); | ||
assertEquals("/foo", UriUtils.path("/foo?bar")); | ||
assertEquals("/", UriUtils.path("/#bar")); | ||
assertEquals("/foo", UriUtils.path("/foo#bar")); | ||
assertEquals("/foo", UriUtils.path("/foo?bar#baz")); | ||
assertEquals("/foo", UriUtils.path("/foo?bar={}")); | ||
} | ||
|
||
@Test | ||
public void params() throws Exception { | ||
assertEquals(null, UriUtils.params("/")); | ||
assertEquals(null, UriUtils.params("/foo")); | ||
assertEquals(null, UriUtils.params("/foo&bar")); | ||
assertEquals("bar=baz", UriUtils.params("/foo?bar=baz")); | ||
assertEquals("bar=baz", UriUtils.params("/?bar=baz")); | ||
assertEquals("bar=baz", UriUtils.params("?bar=baz")); | ||
assertEquals("bar", UriUtils.params("?bar")); | ||
assertEquals("bar={}", UriUtils.params("/foo?bar={}")); | ||
} | ||
} |