aboutsummaryrefslogtreecommitdiffstats
path: root/ms/blueprintsprocessor/modules/commons/rest-lib/src/test/kotlin
diff options
context:
space:
mode:
authorJozsef Csongvai <jozsef.csongvai@bell.ca>2020-11-11 19:18:31 -0500
committerJozsef Csongvai <jozsef.csongvai@bell.ca>2020-11-12 09:51:28 -0500
commit8ab6b99ad6acc07978977bba42c335dbcdf23116 (patch)
tree314a2d2043265dea6da62481c5c5800136cab1ca /ms/blueprintsprocessor/modules/commons/rest-lib/src/test/kotlin
parentefc4ccc5334af213456cb105bb0c55663736a190 (diff)
Remove URI encoding in BlueprintWebClientService
Malformed uri's should be handled by resource resolution in the cba Issue-ID: CCSDK-2980 Change-Id: I5c1cf97519a882ff5cf99e9850c65df9ba6d9c36 Signed-off-by: Jozsef Csongvai <jozsef.csongvai@bell.ca>
Diffstat (limited to 'ms/blueprintsprocessor/modules/commons/rest-lib/src/test/kotlin')
-rw-r--r--ms/blueprintsprocessor/modules/commons/rest-lib/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/rest/service/RestClientServiceTest.kt13
1 files changed, 0 insertions, 13 deletions
diff --git a/ms/blueprintsprocessor/modules/commons/rest-lib/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/rest/service/RestClientServiceTest.kt b/ms/blueprintsprocessor/modules/commons/rest-lib/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/rest/service/RestClientServiceTest.kt
index 23ac1635b..1778eadbd 100644
--- a/ms/blueprintsprocessor/modules/commons/rest-lib/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/rest/service/RestClientServiceTest.kt
+++ b/ms/blueprintsprocessor/modules/commons/rest-lib/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/rest/service/RestClientServiceTest.kt
@@ -132,19 +132,6 @@ class RestClientServiceTest {
}
@Test
- fun testGetPathParamWithWhitespace() {
- val restClientService = bluePrintRestLibPropertyService
- .blueprintWebClientService("sample")
- val response = restClientService.exchangeResource(
- HttpMethod.GET.name, "/sample/path/id 3/get", ""
- )
- assertEquals(
- "path param id:id 3", response.body,
- "failed to get query param response"
- )
- }
-
- @Test
fun testPatch() {
val restClientService = bluePrintRestLibPropertyService
.blueprintWebClientService("sample")